ubuntuusers.de

kern.log

Autor:
peterst
Datum:
8. Juni 2015 18:47
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
Jun  8 15:01:00 iMac kernel: [    0.000000] Initializing cgroup subsys cpuset
Jun  8 15:01:00 iMac kernel: [    0.000000] Initializing cgroup subsys cpu
Jun  8 15:01:00 iMac kernel: [    0.000000] Initializing cgroup subsys cpuacct
Jun  8 15:01:00 iMac kernel: [    0.000000] Linux version 3.16.0-30-generic (buildd@kissel) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #40~14.04.1-Ubuntu SMP Thu Jan 15 17:43:14 UTC 2015 (Ubuntu 3.16.0-30.40~14.04.1-generic 3.16.7-ckt3)
Jun  8 15:01:00 iMac kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-30-generic root=UUID=d0f0acaf-84e8-410d-bdf2-2e6caf6d8d79 ro quiet splash vt.handoff=7 nomodeset
Jun  8 15:01:00 iMac kernel: [    0.000000] KERNEL supported cpus:
Jun  8 15:01:00 iMac kernel: [    0.000000]   Intel GenuineIntel
Jun  8 15:01:00 iMac kernel: [    0.000000]   AMD AuthenticAMD
Jun  8 15:01:00 iMac kernel: [    0.000000]   Centaur CentaurHauls
Jun  8 15:01:00 iMac kernel: [    0.000000] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf65cfff] usable
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf65d000-0x00000000bf6eefff] ACPI NVS
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf6ef000-0x00000000bf7f5fff] ACPI data
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7f6000-0x00000000bf7fefff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7ff000-0x00000000bf7fffff] ACPI data
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
Jun  8 15:01:00 iMac kernel: [    0.000000] NX (Execute Disable) protection: active
Jun  8 15:01:00 iMac kernel: [    0.000000] SMBIOS 2.4 present.
Jun  8 15:01:00 iMac kernel: [    0.000000] DMI: Apple Inc. iMac11,1/Mac-F2268DAE, BIOS    IM111.88Z.0034.B02.1003171314 03/17/10
Jun  8 15:01:00 iMac kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun  8 15:01:00 iMac kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun  8 15:01:00 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  8 15:01:00 iMac kernel: [    0.000000] e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000
Jun  8 15:01:00 iMac kernel: [    0.000000] MTRR default type: write-back
Jun  8 15:01:00 iMac kernel: [    0.000000] MTRR fixed ranges enabled:
Jun  8 15:01:00 iMac kernel: [    0.000000]   00000-9FFFF write-back
Jun  8 15:01:00 iMac kernel: [    0.000000]   A0000-BFFFF uncachable
Jun  8 15:01:00 iMac kernel: [    0.000000]   C0000-DFFFF write-protect
Jun  8 15:01:00 iMac kernel: [    0.000000]   E0000-FFFFF uncachable
Jun  8 15:01:00 iMac kernel: [    0.000000] MTRR variable ranges enabled:
Jun  8 15:01:00 iMac kernel: [    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
Jun  8 15:01:00 iMac kernel: [    0.000000]   1 disabled
Jun  8 15:01:00 iMac kernel: [    0.000000]   2 disabled
Jun  8 15:01:00 iMac kernel: [    0.000000]   3 disabled
Jun  8 15:01:00 iMac kernel: [    0.000000]   4 disabled
Jun  8 15:01:00 iMac kernel: [    0.000000]   5 disabled
Jun  8 15:01:00 iMac kernel: [    0.000000]   6 disabled
Jun  8 15:01:00 iMac kernel: [    0.000000]   7 disabled
Jun  8 15:01:00 iMac kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun  8 15:01:00 iMac kernel: [    0.000000] e820: last_pfn = 0xbf65d max_arch_pfn = 0x400000000
Jun  8 15:01:00 iMac kernel: [    0.000000] Scanning 1 areas for low memory corruption
Jun  8 15:01:00 iMac kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
Jun  8 15:01:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Jun  8 15:01:00 iMac kernel: [    0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
Jun  8 15:01:00 iMac kernel: [    0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
Jun  8 15:01:00 iMac kernel: [    0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
Jun  8 15:01:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23fe00000-0x23fffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0x23fe00000-0x23fffffff] page 2M
Jun  8 15:01:00 iMac kernel: [    0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
Jun  8 15:01:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23c000000-0x23fdfffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0x23c000000-0x23fdfffff] page 2M
Jun  8 15:01:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0x200000000-0x23bffffff] page 2M
Jun  8 15:01:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xbf65cfff]
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0x00200000-0xbf5fffff] page 2M
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0xbf600000-0xbf65cfff] page 4k
Jun  8 15:01:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
Jun  8 15:01:00 iMac kernel: [    0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
Jun  8 15:01:00 iMac kernel: [    0.000000] BRK [0x01fc3000, 0x01fc3fff] PGTABLE
Jun  8 15:01:00 iMac kernel: [    0.000000] RAMDISK: [mem 0x35adc000-0x36d65fff]
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: Early table checksum verification disabled
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE )
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: XSDT 0x00000000BF70E1C0 00008C (v01 APPLE  Apple00  00000034      01000013)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: FACP 0x00000000BF70B000 0000F4 (v04 APPLE  Apple00  00000034 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: DSDT 0x00000000BF6FF000 0050F3 (v01 APPLE  iMac     00110001 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: FACS 0x00000000BF665000 000040
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: ASF! 0x00000000BF70D000 0000A5 (v32 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: HPET 0x00000000BF70A000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF709000 0000BC (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF708000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: MCFG 0x00000000BF707000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: SBST 0x00000000BF706000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: ECDT 0x00000000BF705000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FB000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FA000 000774 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6F8000 000A10 (v01 PmRef  CpuPm    00003000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FE000 0000FA (v01 SataRe SataPri  00001000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FD000 0000FA (v01 SataRe SataSec  00001000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  8 15:01:00 iMac kernel: [    0.000000] No NUMA configuration found
Jun  8 15:01:00 iMac kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]   NODE_DATA [mem 0x23fff6000-0x23fffafff]
Jun  8 15:01:00 iMac kernel: [    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
Jun  8 15:01:00 iMac kernel: [    0.000000] Zone ranges:
Jun  8 15:01:00 iMac kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000]   Normal   [mem 0x100000000-0x23fffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] Movable zone start for each node
Jun  8 15:01:00 iMac kernel: [    0.000000] Early memory node ranges
Jun  8 15:01:00 iMac kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
Jun  8 15:01:00 iMac kernel: [    0.000000]   node   0: [mem 0x00100000-0xbf65cfff]
Jun  8 15:01:00 iMac kernel: [    0.000000]   node   0: [mem 0x100000000-0x23fffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] On node 0 totalpages: 2094587
Jun  8 15:01:00 iMac kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Jun  8 15:01:00 iMac kernel: [    0.000000]   DMA zone: 21 pages reserved
Jun  8 15:01:00 iMac kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Jun  8 15:01:00 iMac kernel: [    0.000000]   DMA32 zone: 12186 pages used for memmap
Jun  8 15:01:00 iMac kernel: [    0.000000]   DMA32 zone: 779869 pages, LIFO batch:31
Jun  8 15:01:00 iMac kernel: [    0.000000]   Normal zone: 20480 pages used for memmap
Jun  8 15:01:00 iMac kernel: [    0.000000]   Normal zone: 1310720 pages, LIFO batch:31
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun  8 15:01:00 iMac kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: IRQ0 used by override.
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: IRQ2 used by override.
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: IRQ9 used by override.
Jun  8 15:01:00 iMac kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Jun  8 15:01:00 iMac kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun  8 15:01:00 iMac kernel: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun  8 15:01:00 iMac kernel: [    0.000000] nr_irqs_gsi: 40
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf65d000-0xbf6eefff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf6ef000-0xbf7f5fff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7f6000-0xbf7fefff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7ff000-0xbf7fffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed1afff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Jun  8 15:01:00 iMac kernel: [    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun  8 15:01:00 iMac kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Jun  8 15:01:00 iMac kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jun  8 15:01:00 iMac kernel: [    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023fc00000 s82304 r8192 d24192 u262144
Jun  8 15:01:00 iMac kernel: [    0.000000] pcpu-alloc: s82304 r8192 d24192 u262144 alloc=1*2097152
Jun  8 15:01:00 iMac kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun  8 15:01:00 iMac kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2061836
Jun  8 15:01:00 iMac kernel: [    0.000000] Policy zone: Normal
Jun  8 15:01:00 iMac kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-30-generic root=UUID=d0f0acaf-84e8-410d-bdf2-2e6caf6d8d79 ro quiet splash vt.handoff=7 nomodeset
Jun  8 15:01:00 iMac kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun  8 15:01:00 iMac kernel: [    0.000000] AGP: Checking aperture...
Jun  8 15:01:00 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  8 15:01:00 iMac kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jun  8 15:01:00 iMac kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun  8 15:01:00 iMac kernel: [    0.000000] Memory: 8144824K/8378348K available (7615K kernel code, 1131K rwdata, 3596K rodata, 1356K init, 1300K bss, 233524K reserved)
Jun  8 15:01:00 iMac kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun  8 15:01:00 iMac kernel: [    0.000000] Hierarchical RCU implementation.
Jun  8 15:01:00 iMac kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Jun  8 15:01:00 iMac kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jun  8 15:01:00 iMac kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Jun  8 15:01:00 iMac kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Jun  8 15:01:00 iMac kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jun  8 15:01:00 iMac kernel: [    0.000000] NR_IRQS:16640 nr_irqs:744 16
Jun  8 15:01:00 iMac kernel: [    0.000000] vt handoff: transparent VT on vt#7
Jun  8 15:01:00 iMac kernel: [    0.000000] Console: colour dummy device 80x25
Jun  8 15:01:00 iMac kernel: [    0.000000] console [tty0] enabled
Jun  8 15:01:00 iMac kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Jun  8 15:01:00 iMac kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun  8 15:01:00 iMac kernel: [    0.000000] hpet clockevent registered
Jun  8 15:01:00 iMac kernel: [    0.000000] tsc: Fast TSC calibration failed
Jun  8 15:01:00 iMac kernel: [    0.000000] tsc: Unable to calibrate against PIT
Jun  8 15:01:00 iMac kernel: [    0.000000] tsc: using HPET reference calibration
Jun  8 15:01:00 iMac kernel: [    0.000000] tsc: Detected 2792.991 MHz processor
Jun  8 15:01:00 iMac kernel: [    0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5585.98 BogoMIPS (lpj=11171964)
Jun  8 15:01:00 iMac kernel: [    0.000032] pid_max: default: 32768 minimum: 301
Jun  8 15:01:00 iMac kernel: [    0.000040] ACPI: Core revision 20140424
Jun  8 15:01:00 iMac kernel: [    0.005358] ACPI: All ACPI Tables successfully acquired
Jun  8 15:01:00 iMac kernel: [    0.005580] Security Framework initialized
Jun  8 15:01:00 iMac kernel: [    0.005598] AppArmor: AppArmor initialized
Jun  8 15:01:00 iMac kernel: [    0.005599] Yama: becoming mindful.
Jun  8 15:01:00 iMac kernel: [    0.006076] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun  8 15:01:00 iMac kernel: [    0.007835] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun  8 15:01:00 iMac kernel: [    0.008634] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  8 15:01:00 iMac kernel: [    0.008643] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  8 15:01:00 iMac kernel: [    0.008875] Initializing cgroup subsys memory
Jun  8 15:01:00 iMac kernel: [    0.008896] Initializing cgroup subsys devices
Jun  8 15:01:00 iMac kernel: [    0.008901] Initializing cgroup subsys freezer
Jun  8 15:01:00 iMac kernel: [    0.008904] Initializing cgroup subsys net_cls
Jun  8 15:01:00 iMac kernel: [    0.008908] Initializing cgroup subsys blkio
Jun  8 15:01:00 iMac kernel: [    0.008911] Initializing cgroup subsys perf_event
Jun  8 15:01:00 iMac kernel: [    0.008913] Initializing cgroup subsys net_prio
Jun  8 15:01:00 iMac kernel: [    0.008919] Initializing cgroup subsys hugetlb
Jun  8 15:01:00 iMac kernel: [    0.008938] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.008939] CPU: Physical Processor ID: 0
Jun  8 15:01:00 iMac kernel: [    0.008940] CPU: Processor Core ID: 0
Jun  8 15:01:00 iMac kernel: [    0.008944] mce: CPU supports 9 MCE banks
Jun  8 15:01:00 iMac kernel: [    0.008952] CPU0: Thermal monitoring enabled (TM1)
Jun  8 15:01:00 iMac kernel: [    0.008960] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jun  8 15:01:00 iMac kernel: [    0.008960] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jun  8 15:01:00 iMac kernel: [    0.008960] tlb_flushall_shift: 6
Jun  8 15:01:00 iMac kernel: [    0.009037] Freeing SMP alternatives memory: 32K (ffffffff81e6f000 - ffffffff81e77000)
Jun  8 15:01:00 iMac kernel: [    0.009718] ftrace: allocating 29209 entries in 115 pages
Jun  8 15:01:00 iMac kernel: [    0.021658] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun  8 15:01:00 iMac kernel: [    0.061382] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz (fam: 06, model: 1e, stepping: 05)
Jun  8 15:01:00 iMac kernel: [    0.167825] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
Jun  8 15:01:00 iMac kernel: [    0.167839] perf_event_intel: CPU erratum AAJ80 worked around
Jun  8 15:01:00 iMac kernel: [    0.167840] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
Jun  8 15:01:00 iMac kernel: [    0.167842] ... version:                3
Jun  8 15:01:00 iMac kernel: [    0.167842] ... bit width:              48
Jun  8 15:01:00 iMac kernel: [    0.167843] ... generic registers:      4
Jun  8 15:01:00 iMac kernel: [    0.167844] ... value mask:             0000ffffffffffff
Jun  8 15:01:00 iMac kernel: [    0.167844] ... max period:             000000007fffffff
Jun  8 15:01:00 iMac kernel: [    0.167845] ... fixed-purpose events:   3
Jun  8 15:01:00 iMac kernel: [    0.167846] ... event mask:             000000070000000f
Jun  8 15:01:00 iMac kernel: [    0.169428] x86: Booting SMP configuration:
Jun  8 15:01:00 iMac kernel: [    0.169429] .... node  #0, CPUs:      #1
Jun  8 15:01:00 iMac kernel: [    0.180517] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.182713] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun  8 15:01:00 iMac kernel: [    0.182796]  #2
Jun  8 15:01:00 iMac kernel: [    0.193836] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.196031]  #3<6>[    0.207071] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.220203]  #4
Jun  8 15:01:00 iMac kernel: [    0.220203] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.233432]  #5
Jun  8 15:01:00 iMac kernel: [    0.233432] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.246562]  #6
Jun  8 15:01:00 iMac kernel: [    0.246562] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.259793]  #7
Jun  8 15:01:00 iMac kernel: [    0.259793] Disabled fast string operations
Jun  8 15:01:00 iMac kernel: [    0.261917] x86: Booted up 1 node, 8 CPUs
Jun  8 15:01:00 iMac kernel: [    0.261920] smpboot: Total of 8 processors activated (44687.85 BogoMIPS)
Jun  8 15:01:00 iMac kernel: [    0.267274] devtmpfs: initialized
Jun  8 15:01:00 iMac kernel: [    0.271045] evm: security.selinux
Jun  8 15:01:00 iMac kernel: [    0.271046] evm: security.SMACK64
Jun  8 15:01:00 iMac kernel: [    0.271046] evm: security.SMACK64EXEC
Jun  8 15:01:00 iMac kernel: [    0.271047] evm: security.SMACK64TRANSMUTE
Jun  8 15:01:00 iMac kernel: [    0.271048] evm: security.SMACK64MMAP
Jun  8 15:01:00 iMac kernel: [    0.271048] evm: security.ima
Jun  8 15:01:00 iMac kernel: [    0.271049] evm: security.capability
Jun  8 15:01:00 iMac kernel: [    0.271097] PM: Registering ACPI NVS region [mem 0xbf65d000-0xbf6eefff] (598016 bytes)
Jun  8 15:01:00 iMac kernel: [    0.271913] pinctrl core: initialized pinctrl subsystem
Jun  8 15:01:00 iMac kernel: [    0.271976] regulator-dummy: no parameters
Jun  8 15:01:00 iMac kernel: [    0.272007] RTC time: 13:00:50, date: 06/08/15
Jun  8 15:01:00 iMac kernel: [    0.272049] NET: Registered protocol family 16
Jun  8 15:01:00 iMac kernel: [    0.272183] cpuidle: using governor ladder
Jun  8 15:01:00 iMac kernel: [    0.272185] cpuidle: using governor menu
Jun  8 15:01:00 iMac kernel: [    0.272229] ACPI: bus type PCI registered
Jun  8 15:01:00 iMac kernel: [    0.272231] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun  8 15:01:00 iMac kernel: [    0.272296] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun  8 15:01:00 iMac kernel: [    0.272299] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun  8 15:01:00 iMac kernel: [    0.272733] PCI: Using configuration type 1 for base access
Jun  8 15:01:00 iMac kernel: [    0.276330] ACPI: Added _OSI(Module Device)
Jun  8 15:01:00 iMac kernel: [    0.276332] ACPI: Added _OSI(Processor Device)
Jun  8 15:01:00 iMac kernel: [    0.276333] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun  8 15:01:00 iMac kernel: [    0.276334] ACPI: Added _OSI(Processor Aggregator Device)
Jun  8 15:01:00 iMac kernel: [    0.277055] ACPI : EC: EC description table is found, configuring boot EC
Jun  8 15:01:00 iMac kernel: [    0.279951] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun  8 15:01:00 iMac kernel: [    0.280233] ACPI: Dynamic OEM Table Load:
Jun  8 15:01:00 iMac kernel: [    0.280240] ACPI: SSDT 0xFFFF880233FA0000 0004BD (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.280513] ACPI: Dynamic OEM Table Load:
Jun  8 15:01:00 iMac kernel: [    0.280518] ACPI: SSDT 0xFFFF880233FA0800 0006E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.288162] ACPI: Dynamic OEM Table Load:
Jun  8 15:01:00 iMac kernel: [    0.288168] ACPI: SSDT 0xFFFF880233C19000 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.292061] ACPI: Dynamic OEM Table Load:
Jun  8 15:01:00 iMac kernel: [    0.292065] ACPI: SSDT 0xFFFF880233F78A00 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
Jun  8 15:01:00 iMac kernel: [    0.296855] ACPI: Interpreter enabled
Jun  8 15:01:00 iMac kernel: [    0.296860] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Jun  8 15:01:00 iMac kernel: [    0.296863] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Jun  8 15:01:00 iMac kernel: [    0.296874] ACPI: (supports S0 S3 S4 S5)
Jun  8 15:01:00 iMac kernel: [    0.296875] ACPI: Using IOAPIC for interrupt routing
Jun  8 15:01:00 iMac kernel: [    0.296897] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun  8 15:01:00 iMac kernel: [    0.300463] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun  8 15:01:00 iMac kernel: [    0.300468] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  8 15:01:00 iMac kernel: [    0.300494] \_SB_.PCI0:_OSC invalid UUID
Jun  8 15:01:00 iMac kernel: [    0.300495] _OSC request data:1 1f 0 
Jun  8 15:01:00 iMac kernel: [    0.300498] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun  8 15:01:00 iMac kernel: [    0.301034] PCI host bridge to bus 0000:00
Jun  8 15:01:00 iMac kernel: [    0.301037] pci_bus 0000:00: root bus resource [bus 00-fe]
Jun  8 15:01:00 iMac kernel: [    0.301038] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Jun  8 15:01:00 iMac kernel: [    0.301039] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Jun  8 15:01:00 iMac kernel: [    0.301041] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun  8 15:01:00 iMac kernel: [    0.301042] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
Jun  8 15:01:00 iMac kernel: [    0.301050] pci 0000:00:00.0: [8086:d131] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.301140] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
Jun  8 15:01:00 iMac kernel: [    0.301187] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.301218] pci 0000:00:03.0: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.301253] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
Jun  8 15:01:00 iMac kernel: [    0.301339] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
Jun  8 15:01:00 iMac kernel: [    0.301425] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
Jun  8 15:01:00 iMac kernel: [    0.301504] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
Jun  8 15:01:00 iMac kernel: [    0.301577] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
Jun  8 15:01:00 iMac kernel: [    0.301646] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
Jun  8 15:01:00 iMac kernel: [    0.301729] pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
Jun  8 15:01:00 iMac kernel: [    0.301767] pci 0000:00:1a.0: reg 0x20: [io  0x3060-0x307f]
Jun  8 15:01:00 iMac kernel: [    0.301860] pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
Jun  8 15:01:00 iMac kernel: [    0.301879] pci 0000:00:1a.7: reg 0x10: [mem 0xd0705c00-0xd0705fff]
Jun  8 15:01:00 iMac kernel: [    0.301960] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.302004] pci 0000:00:1a.7: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.302043] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
Jun  8 15:01:00 iMac kernel: [    0.302058] pci 0000:00:1b.0: reg 0x10: [mem 0xd0700000-0xd0703fff 64bit]
Jun  8 15:01:00 iMac kernel: [    0.302124] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.302156] pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.302189] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
Jun  8 15:01:00 iMac kernel: [    0.302254] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.302286] pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.302320] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
Jun  8 15:01:00 iMac kernel: [    0.302384] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.302416] pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.302449] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
Jun  8 15:01:00 iMac kernel: [    0.302514] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.302545] pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.302578] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
Jun  8 15:01:00 iMac kernel: [    0.302638] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.302670] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.302704] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
Jun  8 15:01:00 iMac kernel: [    0.302763] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.302827] pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
Jun  8 15:01:00 iMac kernel: [    0.302865] pci 0000:00:1d.0: reg 0x20: [io  0x3040-0x305f]
Jun  8 15:01:00 iMac kernel: [    0.302959] pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
Jun  8 15:01:00 iMac kernel: [    0.302977] pci 0000:00:1d.7: reg 0x10: [mem 0xd0705800-0xd0705bff]
Jun  8 15:01:00 iMac kernel: [    0.303058] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.303100] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.303134] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jun  8 15:01:00 iMac kernel: [    0.303228] pci 0000:00:1f.0: [8086:3b02] type 00 class 0x060100
Jun  8 15:01:00 iMac kernel: [    0.303376] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
Jun  8 15:01:00 iMac kernel: [    0.303389] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
Jun  8 15:01:00 iMac kernel: [    0.303396] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
Jun  8 15:01:00 iMac kernel: [    0.303402] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
Jun  8 15:01:00 iMac kernel: [    0.303409] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
Jun  8 15:01:00 iMac kernel: [    0.303415] pci 0000:00:1f.2: reg 0x20: [io  0x3020-0x302f]
Jun  8 15:01:00 iMac kernel: [    0.303421] pci 0000:00:1f.2: reg 0x24: [io  0xffe0-0xffef]
Jun  8 15:01:00 iMac kernel: [    0.303501] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
Jun  8 15:01:00 iMac kernel: [    0.303514] pci 0000:00:1f.3: reg 0x10: [mem 0xd0706000-0xd07060ff 64bit]
Jun  8 15:01:00 iMac kernel: [    0.303532] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Jun  8 15:01:00 iMac kernel: [    0.303603] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
Jun  8 15:01:00 iMac kernel: [    0.303624] pci 0000:00:1f.6: reg 0x10: [mem 0xd0704000-0xd0704fff 64bit]
Jun  8 15:01:00 iMac kernel: [    0.303785] pci 0000:01:00.0: [1002:944a] type 00 class 0x030000
Jun  8 15:01:00 iMac kernel: [    0.303797] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.303805] pci 0000:01:00.0: reg 0x18: [mem 0xd0620000-0xd062ffff 64bit]
Jun  8 15:01:00 iMac kernel: [    0.303811] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun  8 15:01:00 iMac kernel: [    0.303821] pci 0000:01:00.0: reg 0x30: [mem 0xd0600000-0xd061ffff pref]
Jun  8 15:01:00 iMac kernel: [    0.303847] pci 0000:01:00.0: supports D1 D2
Jun  8 15:01:00 iMac kernel: [    0.303863] pci 0000:01:00.0: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.303898] pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
Jun  8 15:01:00 iMac kernel: [    0.303909] pci 0000:01:00.1: reg 0x10: [mem 0xd0630000-0xd0633fff 64bit]
Jun  8 15:01:00 iMac kernel: [    0.303956] pci 0000:01:00.1: supports D1 D2
Jun  8 15:01:00 iMac kernel: [    0.313321] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  8 15:01:00 iMac kernel: [    0.313328] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  8 15:01:00 iMac kernel: [    0.313332] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  8 15:01:00 iMac kernel: [    0.313339] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.313438] pci 0000:02:00.0: [14e4:1684] type 00 class 0x020000
Jun  8 15:01:00 iMac kernel: [    0.313463] pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
Jun  8 15:01:00 iMac kernel: [    0.313607] pci 0000:02:00.0: PME# supported from D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.313645] pci 0000:02:00.0: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.321336] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  8 15:01:00 iMac kernel: [    0.321345] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  8 15:01:00 iMac kernel: [    0.321442] pci 0000:03:00.0: [168c:002a] type 00 class 0x028000
Jun  8 15:01:00 iMac kernel: [    0.321466] pci 0000:03:00.0: reg 0x10: [mem 0xd0400000-0xd040ffff 64bit]
Jun  8 15:01:00 iMac kernel: [    0.321587] pci 0000:03:00.0: supports D1
Jun  8 15:01:00 iMac kernel: [    0.321588] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
Jun  8 15:01:00 iMac kernel: [    0.321616] pci 0000:03:00.0: System wakeup disabled by ACPI
Jun  8 15:01:00 iMac kernel: [    0.321646] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Jun  8 15:01:00 iMac kernel: [    0.321654] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  8 15:01:00 iMac kernel: [    0.321658] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  8 15:01:00 iMac kernel: [    0.321736] pci 0000:04:00.0: [104c:823e] type 01 class 0x060400
Jun  8 15:01:00 iMac kernel: [    0.321860] pci 0000:04:00.0: supports D1 D2
Jun  8 15:01:00 iMac kernel: [    0.329346] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  8 15:01:00 iMac kernel: [    0.329355] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 15:01:00 iMac kernel: [    0.329465] pci 0000:05:00.0: [104c:823f] type 00 class 0x0c0010
Jun  8 15:01:00 iMac kernel: [    0.329490] pci 0000:05:00.0: reg 0x10: [mem 0xd0304000-0xd03047ff]
Jun  8 15:01:00 iMac kernel: [    0.329504] pci 0000:05:00.0: reg 0x14: [mem 0xd0300000-0xd0303fff]
Jun  8 15:01:00 iMac kernel: [    0.329606] pci 0000:05:00.0: supports D1 D2
Jun  8 15:01:00 iMac kernel: [    0.329608] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
Jun  8 15:01:00 iMac kernel: [    0.329703] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  8 15:01:00 iMac kernel: [    0.329715] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 15:01:00 iMac kernel: [    0.329795] acpiphp: Slot [1] registered
Jun  8 15:01:00 iMac kernel: [    0.329799] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  8 15:01:00 iMac kernel: [    0.329803] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  8 15:01:00 iMac kernel: [    0.329852] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  8 15:01:00 iMac kernel: [    0.329856] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  8 15:01:00 iMac kernel: [    0.329921] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
Jun  8 15:01:00 iMac kernel: [    0.329926] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  8 15:01:00 iMac kernel: [    0.329931] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun  8 15:01:00 iMac kernel: [    0.329932] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun  8 15:01:00 iMac kernel: [    0.329933] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun  8 15:01:00 iMac kernel: [    0.329934] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
Jun  8 15:01:00 iMac kernel: [    0.330284] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  8 15:01:00 iMac kernel: [    0.330325] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 15:01:00 iMac kernel: [    0.330365] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  8 15:01:00 iMac kernel: [    0.330403] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 15:01:00 iMac kernel: [    0.330441] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  8 15:01:00 iMac kernel: [    0.330481] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Jun  8 15:01:00 iMac kernel: [    0.330519] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  8 15:01:00 iMac kernel: [    0.330557] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 15:01:00 iMac kernel: [    0.330632] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
Jun  8 15:01:00 iMac kernel: [    0.330635] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  8 15:01:00 iMac kernel: [    0.330638] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun  8 15:01:00 iMac kernel: [    0.330673] PCI host bridge to bus 0000:ff
Jun  8 15:01:00 iMac kernel: [    0.330675] pci_bus 0000:ff: root bus resource [bus ff]
Jun  8 15:01:00 iMac kernel: [    0.330679] pci 0000:ff:00.0: [8086:2c51] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330719] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330760] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330797] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330834] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330869] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330905] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330942] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.330978] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.331013] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.331049] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.331086] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.331122] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.331157] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.331193] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
Jun  8 15:01:00 iMac kernel: [    0.331270] ACPI: Enabled 4 GPEs in block 00 to 3F
Jun  8 15:01:00 iMac kernel: [    0.331289] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
Jun  8 15:01:00 iMac kernel: [    0.331372] vgaarb: setting as boot device: PCI:0000:01:00.0
Jun  8 15:01:00 iMac kernel: [    0.331374] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Jun  8 15:01:00 iMac kernel: [    0.331377] vgaarb: loaded
Jun  8 15:01:00 iMac kernel: [    0.331378] vgaarb: bridge control possible 0000:01:00.0
Jun  8 15:01:00 iMac kernel: [    0.331569] SCSI subsystem initialized
Jun  8 15:01:00 iMac kernel: [    0.331607] libata version 3.00 loaded.
Jun  8 15:01:00 iMac kernel: [    0.331628] ACPI: bus type USB registered
Jun  8 15:01:00 iMac kernel: [    0.331644] usbcore: registered new interface driver usbfs
Jun  8 15:01:00 iMac kernel: [    0.331651] usbcore: registered new interface driver hub
Jun  8 15:01:00 iMac kernel: [    0.331672] usbcore: registered new device driver usb
Jun  8 15:01:00 iMac kernel: [    0.331791] PCI: Using ACPI for IRQ routing
Jun  8 15:01:00 iMac kernel: [    0.337290] PCI: pci_cache_line_size set to 64 bytes
Jun  8 15:01:00 iMac kernel: [    0.337358] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jun  8 15:01:00 iMac kernel: [    0.337360] e820: reserve RAM buffer [mem 0xbf65d000-0xbfffffff]
Jun  8 15:01:00 iMac kernel: [    0.337451] NetLabel: Initializing
Jun  8 15:01:00 iMac kernel: [    0.337452] NetLabel:  domain hash size = 128
Jun  8 15:01:00 iMac kernel: [    0.337453] NetLabel:  protocols = UNLABELED CIPSOv4
Jun  8 15:01:00 iMac kernel: [    0.337463] NetLabel:  unlabeled traffic allowed by default
Jun  8 15:01:00 iMac kernel: [    0.337529] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
Jun  8 15:01:00 iMac kernel: [    0.337535] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
Jun  8 15:01:00 iMac kernel: [    0.337539] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun  8 15:01:00 iMac kernel: [    0.339576] hpet: hpet2 irq 40 for MSI
Jun  8 15:01:00 iMac kernel: [    0.339611] hpet: hpet3 irq 41 for MSI
Jun  8 15:01:00 iMac kernel: [    0.339646] hpet: hpet4 irq 42 for MSI
Jun  8 15:01:00 iMac kernel: [    0.339676] hpet: hpet5 irq 43 for MSI
Jun  8 15:01:00 iMac kernel: [    0.339720] hpet: hpet6 irq 44 for MSI
Jun  8 15:01:00 iMac kernel: [    0.339827] Switched to clocksource hpet
Jun  8 15:01:00 iMac kernel: [    0.344263] AppArmor: AppArmor Filesystem Enabled
Jun  8 15:01:00 iMac kernel: [    0.344291] pnp: PnP ACPI init
Jun  8 15:01:00 iMac kernel: [    0.344304] ACPI: bus type PNP registered
Jun  8 15:01:00 iMac kernel: [    0.344440] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344444] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
Jun  8 15:01:00 iMac kernel: [    0.344493] system 00:01: [io  0x0680-0x069f] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344495] system 00:01: [io  0x1000-0x100f] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344496] system 00:01: [io  0xffff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344497] system 00:01: [io  0xffff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344499] system 00:01: [io  0x0400-0x047f] could not be reserved
Jun  8 15:01:00 iMac kernel: [    0.344500] system 00:01: [io  0x0500-0x057f] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344502] system 00:01: [io  0x164e-0x164f] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344504] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 15:01:00 iMac kernel: [    0.344554] system 00:02: [io  0x06a0-0x06af] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344555] system 00:02: [io  0x06b0-0x06ff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344557] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 15:01:00 iMac kernel: [    0.344579] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun  8 15:01:00 iMac kernel: [    0.344755] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344757] system 00:04: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344759] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344760] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344761] system 00:04: [mem 0xfeb00000-0xfeb03fff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344763] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun  8 15:01:00 iMac kernel: [    0.344764] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
Jun  8 15:01:00 iMac kernel: [    0.344766] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun  8 15:01:00 iMac kernel: [    0.344768] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 15:01:00 iMac kernel: [    0.344918] pnp: PnP ACPI: found 5 devices
Jun  8 15:01:00 iMac kernel: [    0.344919] ACPI: bus type PNP unregistered
Jun  8 15:01:00 iMac kernel: [    0.351205] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351207] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351214] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351216] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351232] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 04-05] add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351234] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-05] add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351240] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351242] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351248] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351250] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351260] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351261] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351263] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351264] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351266] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 15:01:00 iMac kernel: [    0.351267] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351268] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351270] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351271] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351272] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 15:01:00 iMac kernel: [    0.351277] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351280] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351282] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351285] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351287] pci 0000:00:1c.4: BAR 15: assigned [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351289] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jun  8 15:01:00 iMac kernel: [    0.351291] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun  8 15:01:00 iMac kernel: [    0.351293] pci 0000:00:1c.2: BAR 13: assigned [io  0x6000-0x6fff]
Jun  8 15:01:00 iMac kernel: [    0.351295] pci 0000:00:1c.3: BAR 13: assigned [io  0x7000-0x7fff]
Jun  8 15:01:00 iMac kernel: [    0.351296] pci 0000:00:1c.4: BAR 13: assigned [io  0x8000-0x8fff]
Jun  8 15:01:00 iMac kernel: [    0.351299] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  8 15:01:00 iMac kernel: [    0.351301] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  8 15:01:00 iMac kernel: [    0.351304] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  8 15:01:00 iMac kernel: [    0.351306] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351310] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  8 15:01:00 iMac kernel: [    0.351312] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun  8 15:01:00 iMac kernel: [    0.351315] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  8 15:01:00 iMac kernel: [    0.351318] pci 0000:00:1c.0:   bridge window [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351322] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  8 15:01:00 iMac kernel: [    0.351324] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun  8 15:01:00 iMac kernel: [    0.351328] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  8 15:01:00 iMac kernel: [    0.351330] pci 0000:00:1c.1:   bridge window [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351335] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  8 15:01:00 iMac kernel: [    0.351341] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 15:01:00 iMac kernel: [    0.351351] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  8 15:01:00 iMac kernel: [    0.351353] pci 0000:00:1c.2:   bridge window [io  0x6000-0x6fff]
Jun  8 15:01:00 iMac kernel: [    0.351357] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 15:01:00 iMac kernel: [    0.351359] pci 0000:00:1c.2:   bridge window [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351364] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  8 15:01:00 iMac kernel: [    0.351366] pci 0000:00:1c.3:   bridge window [io  0x7000-0x7fff]
Jun  8 15:01:00 iMac kernel: [    0.351369] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  8 15:01:00 iMac kernel: [    0.351372] pci 0000:00:1c.3:   bridge window [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351376] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  8 15:01:00 iMac kernel: [    0.351378] pci 0000:00:1c.4:   bridge window [io  0x8000-0x8fff]
Jun  8 15:01:00 iMac kernel: [    0.351381] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  8 15:01:00 iMac kernel: [    0.351384] pci 0000:00:1c.4:   bridge window [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351389] pci 0000:00:1e.0: PCI bridge to [bus 08]
Jun  8 15:01:00 iMac kernel: [    0.351392] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  8 15:01:00 iMac kernel: [    0.351398] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun  8 15:01:00 iMac kernel: [    0.351400] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun  8 15:01:00 iMac kernel: [    0.351401] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun  8 15:01:00 iMac kernel: [    0.351402] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  8 15:01:00 iMac kernel: [    0.351404] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jun  8 15:01:00 iMac kernel: [    0.351405] pci_bus 0000:01: resource 1 [mem 0xd0600000-0xd06fffff]
Jun  8 15:01:00 iMac kernel: [    0.351406] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351408] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Jun  8 15:01:00 iMac kernel: [    0.351409] pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
Jun  8 15:01:00 iMac kernel: [    0.351410] pci_bus 0000:02: resource 2 [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351411] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
Jun  8 15:01:00 iMac kernel: [    0.351413] pci_bus 0000:03: resource 1 [mem 0xd0400000-0xd04fffff]
Jun  8 15:01:00 iMac kernel: [    0.351414] pci_bus 0000:03: resource 2 [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351415] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
Jun  8 15:01:00 iMac kernel: [    0.351416] pci_bus 0000:04: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  8 15:01:00 iMac kernel: [    0.351418] pci_bus 0000:04: resource 2 [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351419] pci_bus 0000:05: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  8 15:01:00 iMac kernel: [    0.351421] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
Jun  8 15:01:00 iMac kernel: [    0.351422] pci_bus 0000:06: resource 1 [mem 0xd0200000-0xd02fffff]
Jun  8 15:01:00 iMac kernel: [    0.351423] pci_bus 0000:06: resource 2 [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351424] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
Jun  8 15:01:00 iMac kernel: [    0.351426] pci_bus 0000:07: resource 1 [mem 0xd0100000-0xd01fffff]
Jun  8 15:01:00 iMac kernel: [    0.351427] pci_bus 0000:07: resource 2 [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 15:01:00 iMac kernel: [    0.351428] pci_bus 0000:08: resource 1 [mem 0xd0000000-0xd00fffff]
Jun  8 15:01:00 iMac kernel: [    0.351430] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
Jun  8 15:01:00 iMac kernel: [    0.351431] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
Jun  8 15:01:00 iMac kernel: [    0.351432] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
Jun  8 15:01:00 iMac kernel: [    0.351433] pci_bus 0000:08: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  8 15:01:00 iMac kernel: [    0.351457] NET: Registered protocol family 2
Jun  8 15:01:00 iMac kernel: [    0.351639] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun  8 15:01:00 iMac kernel: [    0.351830] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun  8 15:01:00 iMac kernel: [    0.352092] TCP: Hash tables configured (established 65536 bind 65536)
Jun  8 15:01:00 iMac kernel: [    0.352120] TCP: reno registered
Jun  8 15:01:00 iMac kernel: [    0.352129] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun  8 15:01:00 iMac kernel: [    0.352184] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun  8 15:01:00 iMac kernel: [    0.352267] NET: Registered protocol family 1
Jun  8 15:01:00 iMac kernel: [    0.353107] pci 0000:01:00.0: Video device with shadowed ROM
Jun  8 15:01:00 iMac kernel: [    0.353119] PCI: CLS mismatch (256 != 64), using 64 bytes
Jun  8 15:01:00 iMac kernel: [    0.353173] Trying to unpack rootfs image as initramfs...
Jun  8 15:01:00 iMac kernel: [    0.626678] Freeing initrd memory: 18984K (ffff880035adc000 - ffff880036d66000)
Jun  8 15:01:00 iMac kernel: [    0.626712] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun  8 15:01:00 iMac kernel: [    0.626714] software IO TLB [mem 0xbb65d000-0xbf65d000] (64MB) mapped at [ffff8800bb65d000-ffff8800bf65cfff]
Jun  8 15:01:00 iMac kernel: [    0.627040] microcode: CPU0 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627045] microcode: CPU1 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627051] microcode: CPU2 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627056] microcode: CPU3 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627061] microcode: CPU4 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627066] microcode: CPU5 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627073] microcode: CPU6 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627078] microcode: CPU7 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 15:01:00 iMac kernel: [    0.627122] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun  8 15:01:00 iMac kernel: [    0.627143] Scanning for low memory corruption every 60 seconds
Jun  8 15:01:00 iMac kernel: [    0.627164] efifb: dmi detected iMac11,1 - framebuffer at 0xc0000000 (1920x1440, stride 7680)
Jun  8 15:01:00 iMac kernel: [    0.627448] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun  8 15:01:00 iMac kernel: [    0.627477] Initialise system trusted keyring
Jun  8 15:01:00 iMac kernel: [    0.627497] audit: initializing netlink subsys (disabled)
Jun  8 15:01:00 iMac kernel: [    0.627511] audit: type=2000 audit(1433768450.528:1): initialized
Jun  8 15:01:00 iMac kernel: [    0.627775] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun  8 15:01:00 iMac kernel: [    0.629095] zpool: loaded
Jun  8 15:01:00 iMac kernel: [    0.629097] zbud: loaded
Jun  8 15:01:00 iMac kernel: [    0.629236] VFS: Disk quotas dquot_6.5.2
Jun  8 15:01:00 iMac kernel: [    0.629268] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun  8 15:01:00 iMac kernel: [    0.629692] fuse init (API version 7.23)
Jun  8 15:01:00 iMac kernel: [    0.629766] msgmni has been set to 15945
Jun  8 15:01:00 iMac kernel: [    0.629818] Key type big_key registered
Jun  8 15:01:00 iMac kernel: [    0.630117] Key type asymmetric registered
Jun  8 15:01:00 iMac kernel: [    0.630120] Asymmetric key parser 'x509' registered
Jun  8 15:01:00 iMac kernel: [    0.630151] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun  8 15:01:00 iMac kernel: [    0.630203] io scheduler noop registered
Jun  8 15:01:00 iMac kernel: [    0.630205] io scheduler deadline registered (default)
Jun  8 15:01:00 iMac kernel: [    0.630247] io scheduler cfq registered
Jun  8 15:01:00 iMac kernel: [    0.630779] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jun  8 15:01:00 iMac kernel: [    0.630884] pcieport 0000:00:1c.4: enabling device (0000 -> 0003)
Jun  8 15:01:00 iMac kernel: [    0.631014] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun  8 15:01:00 iMac kernel: [    0.631027] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun  8 15:01:00 iMac kernel: [    0.631069] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
Jun  8 15:01:00 iMac kernel: [    0.631070] vesafb: scrolling: redraw
Jun  8 15:01:00 iMac kernel: [    0.631071] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun  8 15:01:00 iMac kernel: [    0.631098] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 10816k, total 10816k
Jun  8 15:01:00 iMac kernel: [    0.631192] Console: switching to colour frame buffer device 240x90
Jun  8 15:01:00 iMac kernel: [    0.631250] fb0: VESA VGA frame buffer device
Jun  8 15:01:00 iMac kernel: [    0.631270] intel_idle: MWAIT substates: 0x1120
Jun  8 15:01:00 iMac kernel: [    0.631279] intel_idle: v0.4 model 0x1E
Jun  8 15:01:00 iMac kernel: [    0.631281] intel_idle: lapic_timer_reliable_states 0x2
Jun  8 15:01:00 iMac kernel: [    0.631596] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun  8 15:01:00 iMac kernel: [    0.631599] ACPI: Power Button [PWRB]
Jun  8 15:01:00 iMac kernel: [    0.631632] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun  8 15:01:00 iMac kernel: [    0.631634] ACPI: Sleep Button [SLPB]
Jun  8 15:01:00 iMac kernel: [    0.631664] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun  8 15:01:00 iMac kernel: [    0.631666] ACPI: Power Button [PWRF]
Jun  8 15:01:00 iMac kernel: [    0.632071] GHES: HEST is not enabled!
Jun  8 15:01:00 iMac kernel: [    0.632168] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun  8 15:01:00 iMac kernel: [    0.633655] Linux agpgart interface v0.103
Jun  8 15:01:00 iMac kernel: [    0.634803] brd: module loaded
Jun  8 15:01:00 iMac kernel: [    0.635376] loop: module loaded
Jun  8 15:01:00 iMac kernel: [    0.635501] ata_piix 0000:00:1f.2: version 2.13
Jun  8 15:01:00 iMac kernel: [    0.635591] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun  8 15:01:00 iMac kernel: [    0.788668] scsi0 : ata_piix
Jun  8 15:01:00 iMac kernel: [    0.788984] scsi1 : ata_piix
Jun  8 15:01:00 iMac kernel: [    0.789080] ata1: SATA max UDMA/133 cmd 0x3088 ctl 0x3094 bmdma 0x3020 irq 19
Jun  8 15:01:00 iMac kernel: [    0.789087] ata2: SATA max UDMA/133 cmd 0x3080 ctl 0x3090 bmdma 0x3028 irq 19
Jun  8 15:01:00 iMac kernel: [    0.789253] libphy: Fixed MDIO Bus: probed
Jun  8 15:01:00 iMac kernel: [    0.789259] tun: Universal TUN/TAP device driver, 1.6
Jun  8 15:01:00 iMac kernel: [    0.789261] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun  8 15:01:00 iMac kernel: [    0.789483] PPP generic driver version 2.4.2
Jun  8 15:01:00 iMac kernel: [    0.789717] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun  8 15:01:00 iMac kernel: [    0.789729] ehci-pci: EHCI PCI platform driver
Jun  8 15:01:00 iMac kernel: [    0.789962] ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.789973] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jun  8 15:01:00 iMac kernel: [    0.789990] ehci-pci 0000:00:1a.7: debug port 2
Jun  8 15:01:00 iMac kernel: [    0.793921] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
Jun  8 15:01:00 iMac kernel: [    0.793933] ehci-pci 0000:00:1a.7: irq 16, io mem 0xd0705c00
Jun  8 15:01:00 iMac kernel: [    0.804398] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun  8 15:01:00 iMac kernel: [    0.804475] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun  8 15:01:00 iMac kernel: [    0.804479] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 15:01:00 iMac kernel: [    0.804483] usb usb1: Product: EHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.804486] usb usb1: Manufacturer: Linux 3.16.0-30-generic ehci_hcd
Jun  8 15:01:00 iMac kernel: [    0.804489] usb usb1: SerialNumber: 0000:00:1a.7
Jun  8 15:01:00 iMac kernel: [    0.804868] hub 1-0:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    0.804882] hub 1-0:1.0: 6 ports detected
Jun  8 15:01:00 iMac kernel: [    0.805377] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.805387] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jun  8 15:01:00 iMac kernel: [    0.805403] ehci-pci 0000:00:1d.7: debug port 2
Jun  8 15:01:00 iMac kernel: [    0.809317] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jun  8 15:01:00 iMac kernel: [    0.809328] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd0705800
Jun  8 15:01:00 iMac kernel: [    0.820414] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun  8 15:01:00 iMac kernel: [    0.820509] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun  8 15:01:00 iMac kernel: [    0.820514] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 15:01:00 iMac kernel: [    0.820517] usb usb2: Product: EHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.820520] usb usb2: Manufacturer: Linux 3.16.0-30-generic ehci_hcd
Jun  8 15:01:00 iMac kernel: [    0.820523] usb usb2: SerialNumber: 0000:00:1d.7
Jun  8 15:01:00 iMac kernel: [    0.820905] hub 2-0:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    0.820918] hub 2-0:1.0: 8 ports detected
Jun  8 15:01:00 iMac kernel: [    0.821264] ehci-platform: EHCI generic platform driver
Jun  8 15:01:00 iMac kernel: [    0.821283] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun  8 15:01:00 iMac kernel: [    0.821292] ohci-pci: OHCI PCI platform driver
Jun  8 15:01:00 iMac kernel: [    0.821316] ohci-platform: OHCI generic platform driver
Jun  8 15:01:00 iMac kernel: [    0.821333] uhci_hcd: USB Universal Host Controller Interface driver
Jun  8 15:01:00 iMac kernel: [    0.821540] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.821550] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jun  8 15:01:00 iMac kernel: [    0.821559] uhci_hcd 0000:00:1a.0: detected 2 ports
Jun  8 15:01:00 iMac kernel: [    0.821594] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003060
Jun  8 15:01:00 iMac kernel: [    0.821671] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun  8 15:01:00 iMac kernel: [    0.821675] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 15:01:00 iMac kernel: [    0.821678] usb usb3: Product: UHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.821682] usb usb3: Manufacturer: Linux 3.16.0-30-generic uhci_hcd
Jun  8 15:01:00 iMac kernel: [    0.821685] usb usb3: SerialNumber: 0000:00:1a.0
Jun  8 15:01:00 iMac kernel: [    0.822032] hub 3-0:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    0.822045] hub 3-0:1.0: 2 ports detected
Jun  8 15:01:00 iMac kernel: [    0.822411] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.822421] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun  8 15:01:00 iMac kernel: [    0.822430] uhci_hcd 0000:00:1d.0: detected 2 ports
Jun  8 15:01:00 iMac kernel: [    0.822452] uhci_hcd 0000:00:1d.0: irq 19, io base 0x00003040
Jun  8 15:01:00 iMac kernel: [    0.822523] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun  8 15:01:00 iMac kernel: [    0.822527] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 15:01:00 iMac kernel: [    0.822530] usb usb4: Product: UHCI Host Controller
Jun  8 15:01:00 iMac kernel: [    0.822533] usb usb4: Manufacturer: Linux 3.16.0-30-generic uhci_hcd
Jun  8 15:01:00 iMac kernel: [    0.822536] usb usb4: SerialNumber: 0000:00:1d.0
Jun  8 15:01:00 iMac kernel: [    0.822831] hub 4-0:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    0.822842] hub 4-0:1.0: 2 ports detected
Jun  8 15:01:00 iMac kernel: [    0.823119] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun  8 15:01:00 iMac kernel: [    1.553398] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    1.625203] tsc: Refined TSC clocksource calibration: 2792.999 MHz
Jun  8 15:01:00 iMac kernel: [    1.685688] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
Jun  8 15:01:00 iMac kernel: [    1.685694] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  8 15:01:00 iMac kernel: [    1.686261] hub 1-1:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    1.686448] hub 1-1:1.0: 4 ports detected
Jun  8 15:01:00 iMac kernel: [    1.797518] usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    1.865839] i8042: No controller found
Jun  8 15:01:00 iMac kernel: [    1.866292] mousedev: PS/2 mouse device common for all mice
Jun  8 15:01:00 iMac kernel: [    1.867105] rtc_cmos 00:03: RTC can wake from S4
Jun  8 15:01:00 iMac kernel: [    1.867426] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun  8 15:01:00 iMac kernel: [    1.867461] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun  8 15:01:00 iMac kernel: [    1.867592] device-mapper: uevent: version 1.0.3
Jun  8 15:01:00 iMac kernel: [    1.867822] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Jun  8 15:01:00 iMac kernel: [    1.867850] ledtrig-cpu: registered to indicate activity on CPUs
Jun  8 15:01:00 iMac kernel: [    1.868045] TCP: cubic registered
Jun  8 15:01:00 iMac kernel: [    1.868266] NET: Registered protocol family 10
Jun  8 15:01:00 iMac kernel: [    1.868765] NET: Registered protocol family 17
Jun  8 15:01:00 iMac kernel: [    1.868788] Key type dns_resolver registered
Jun  8 15:01:00 iMac kernel: [    1.869970] Loading compiled-in X.509 certificates
Jun  8 15:01:00 iMac kernel: [    1.872039] Loaded X.509 cert 'Magrathea: Glacier signing key: 7be2a7200f17f00ca011f70e5a874c37e3e0f6be'
Jun  8 15:01:00 iMac kernel: [    1.872063] registered taskstats version 1
Jun  8 15:01:00 iMac kernel: [    1.876570] Key type trusted registered
Jun  8 15:01:00 iMac kernel: [    1.880464] Key type encrypted registered
Jun  8 15:01:00 iMac kernel: [    1.884311] AppArmor: AppArmor sha1 policy hashing enabled
Jun  8 15:01:00 iMac kernel: [    1.884320] ima: No TPM chip found, activating TPM-bypass!
Jun  8 15:01:00 iMac kernel: [    1.884353] evm: HMAC attrs: 0x1
Jun  8 15:01:00 iMac kernel: [    1.885328]   Magic number: 3:938:27
Jun  8 15:01:00 iMac kernel: [    1.885405] memory memory67: hash matches
Jun  8 15:01:00 iMac kernel: [    1.885499] rtc_cmos 00:03: setting system clock to 2015-06-08 13:00:52 UTC (1433768452)
Jun  8 15:01:00 iMac kernel: [    1.888252] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun  8 15:01:00 iMac kernel: [    1.888253] EDD information not available.
Jun  8 15:01:00 iMac kernel: [    1.888305] PM: Hibernation image not present or could not be loaded.
Jun  8 15:01:00 iMac kernel: [    1.993987] usb 2-1: New USB device found, idVendor=0424, idProduct=2514
Jun  8 15:01:00 iMac kernel: [    1.993993] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  8 15:01:00 iMac kernel: [    1.994416] hub 2-1:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    1.994632] hub 2-1:1.0: 4 ports detected
Jun  8 15:01:00 iMac kernel: [    2.081808] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    2.137790] ata2.01: failed to resume link (SControl 0)
Jun  8 15:01:00 iMac kernel: [    2.137865] ata1.01: failed to resume link (SControl 0)
Jun  8 15:01:00 iMac kernel: [    2.176158] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500
Jun  8 15:01:00 iMac kernel: [    2.176163] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 15:01:00 iMac kernel: [    2.176167] usb 1-1.1: Product: BRCM2046 Hub
Jun  8 15:01:00 iMac kernel: [    2.176170] usb 1-1.1: Manufacturer: Apple Inc.
Jun  8 15:01:00 iMac kernel: [    2.176697] hub 1-1.1:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    2.176889] hub 1-1.1:1.0: 3 ports detected
Jun  8 15:01:00 iMac kernel: [    2.249989] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    2.294004] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun  8 15:01:00 iMac kernel: [    2.294019] ata1.01: SATA link down (SStatus 4 SControl 0)
Jun  8 15:01:00 iMac kernel: [    2.294137] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun  8 15:01:00 iMac kernel: [    2.294151] ata2.01: SATA link down (SStatus 4 SControl 0)
Jun  8 15:01:00 iMac kernel: [    2.294160] ata2.01: link offline, clearing class 3 to NONE
Jun  8 15:01:00 iMac kernel: [    2.302206] ata2.00: ATAPI: OPTIARC DVD RW AD-5680H, 3AHB, max UDMA/100
Jun  8 15:01:00 iMac kernel: [    2.302935] ata1.00: ATA-8: WDC WD1001FALS-40U9B0, 20.04F20, max UDMA/133
Jun  8 15:01:00 iMac kernel: [    2.302940] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun  8 15:01:00 iMac kernel: [    2.311042] ata1.00: configured for UDMA/133
Jun  8 15:01:00 iMac kernel: [    2.311450] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1001FALS-4 4F20 PQ: 0 ANSI: 5
Jun  8 15:01:00 iMac kernel: [    2.312189] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun  8 15:01:00 iMac kernel: [    2.312248] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun  8 15:01:00 iMac kernel: [    2.312252] sd 0:0:0:0: [sda] Write Protect is off
Jun  8 15:01:00 iMac kernel: [    2.312256] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun  8 15:01:00 iMac kernel: [    2.312271] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun  8 15:01:00 iMac kernel: [    2.318121] ata2.00: configured for UDMA/100
Jun  8 15:01:00 iMac kernel: [    2.334570] scsi 1:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5680H  3AHB PQ: 0 ANSI: 5
Jun  8 15:01:00 iMac kernel: [    2.346947] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=8403
Jun  8 15:01:00 iMac kernel: [    2.346953] usb 1-1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun  8 15:01:00 iMac kernel: [    2.346957] usb 1-1.2: Product: Card Reader
Jun  8 15:01:00 iMac kernel: [    2.346960] usb 1-1.2: Manufacturer: Apple
Jun  8 15:01:00 iMac kernel: [    2.346962] usb 1-1.2: SerialNumber: 000000009833
Jun  8 15:01:00 iMac kernel: [    2.363805]  sda: sda1 sda2 sda3
Jun  8 15:01:00 iMac kernel: [    2.364769] sd 0:0:0:0: [sda] Attached SCSI disk
Jun  8 15:01:00 iMac kernel: [    2.373944] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
Jun  8 15:01:00 iMac kernel: [    2.373949] cdrom: Uniform CD-ROM driver Revision: 3.20
Jun  8 15:01:00 iMac kernel: [    2.374298] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun  8 15:01:00 iMac kernel: [    2.374601] sr 1:0:0:0: Attached scsi generic sg1 type 5
Jun  8 15:01:00 iMac kernel: [    2.375883] Freeing unused kernel memory: 1356K (ffffffff81d1c000 - ffffffff81e6f000)
Jun  8 15:01:00 iMac kernel: [    2.375885] Write protecting the kernel read-only data: 12288k
Jun  8 15:01:00 iMac kernel: [    2.377372] Freeing unused kernel memory: 564K (ffff880001773000 - ffff880001800000)
Jun  8 15:01:00 iMac kernel: [    2.378563] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
Jun  8 15:01:00 iMac kernel: [    2.408474] pps_core: LinuxPPS API ver. 1 registered
Jun  8 15:01:00 iMac kernel: [    2.408477] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun  8 15:01:00 iMac kernel: [    2.409709] PTP clock support registered
Jun  8 15:01:00 iMac kernel: [    2.412684] tg3.c:v3.137 (May 11, 2014)
Jun  8 15:01:00 iMac kernel: [    2.432228] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address d4:9a:20:d1:18:0a
Jun  8 15:01:00 iMac kernel: [    2.432232] tg3 0000:02:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
Jun  8 15:01:00 iMac kernel: [    2.432234] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
Jun  8 15:01:00 iMac kernel: [    2.432235] tg3 0000:02:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
Jun  8 15:01:00 iMac kernel: [    2.434246] usb 1-1.4: new high-speed USB device number 5 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    2.466089] firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jun  8 15:01:00 iMac kernel: [    2.535432] usb 1-1.4: New USB device found, idVendor=05ac, idProduct=1006
Jun  8 15:01:00 iMac kernel: [    2.535438] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 15:01:00 iMac kernel: [    2.535442] usb 1-1.4: Product: Keyboard Hub
Jun  8 15:01:00 iMac kernel: [    2.535445] usb 1-1.4: Manufacturer: Apple, Inc.
Jun  8 15:01:00 iMac kernel: [    2.535447] usb 1-1.4: SerialNumber: 000000000000
Jun  8 15:01:00 iMac kernel: [    2.535940] hub 1-1.4:1.0: USB hub found
Jun  8 15:01:00 iMac kernel: [    2.536193] hub 1-1.4:1.0: 3 ports detected
Jun  8 15:01:00 iMac kernel: [    2.540138] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Jun  8 15:01:00 iMac kernel: [    2.540645] scsi2 : usb-storage 1-1.2:1.0
Jun  8 15:01:00 iMac kernel: [    2.540707] usbcore: registered new interface driver usb-storage
Jun  8 15:01:00 iMac kernel: [    2.542163] usbcore: registered new interface driver uas
Jun  8 15:01:00 iMac kernel: [    2.622316] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    2.626409] Switched to clocksource tsc
Jun  8 15:01:00 iMac kernel: [    2.731988] usb 2-1.1: New USB device found, idVendor=05ac, idProduct=8502
Jun  8 15:01:00 iMac kernel: [    2.731991] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 15:01:00 iMac kernel: [    2.731992] usb 2-1.1: Product: Built-in iSight
Jun  8 15:01:00 iMac kernel: [    2.731993] usb 2-1.1: Manufacturer: Apple Inc.
Jun  8 15:01:00 iMac kernel: [    2.731995] usb 2-1.1: SerialNumber: 8T9BKB2B577K3L00
Jun  8 15:01:00 iMac kernel: [    2.806562] usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    2.874660] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun  8 15:01:00 iMac kernel: [    2.928591] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=8242
Jun  8 15:01:00 iMac kernel: [    2.928598] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 15:01:00 iMac kernel: [    2.928602] usb 2-1.2: Product: IR Receiver
Jun  8 15:01:00 iMac kernel: [    2.928605] usb 2-1.2: Manufacturer: Apple Computer, Inc.
Jun  8 15:01:00 iMac kernel: [    2.966733] firewire_core 0000:05:00.0: created device fw0: GUID d49a20fffecbb5b6, S800
Jun  8 15:01:00 iMac kernel: [    2.966897] firewire_core 0000:05:00.0: phy config: new root=ffc1, gap_count=5
Jun  8 15:01:00 iMac kernel: [    3.002770] usb 2-1.4: new low-speed USB device number 5 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    3.124895] usb 2-1.4: New USB device found, idVendor=045e, idProduct=0040
Jun  8 15:01:00 iMac kernel: [    3.124901] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 15:01:00 iMac kernel: [    3.124905] usb 2-1.4: Product: Microsoft Wheel Mouse Optical®
Jun  8 15:01:00 iMac kernel: [    3.124908] usb 2-1.4: Manufacturer: Microsoft
Jun  8 15:01:00 iMac kernel: [    3.194954] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    3.291265] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215
Jun  8 15:01:00 iMac kernel: [    3.291271] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 15:01:00 iMac kernel: [    3.291274] usb 1-1.1.1: Product: Bluetooth USB Host Controller
Jun  8 15:01:00 iMac kernel: [    3.291277] usb 1-1.1.1: Manufacturer: Apple Inc.
Jun  8 15:01:00 iMac kernel: [    3.291280] usb 1-1.1.1: SerialNumber: 64B9E8E21B57
Jun  8 15:01:00 iMac kernel: [    3.363104] usb 1-1.4.2: new low-speed USB device number 7 using ehci-pci
Jun  8 15:01:00 iMac kernel: [    3.409298] random: init urandom read with 111 bits of entropy available
Jun  8 15:01:00 iMac kernel: [    3.461939] usb 1-1.4.2: New USB device found, idVendor=05ac, idProduct=0221
Jun  8 15:01:00 iMac kernel: [    3.461945] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 15:01:00 iMac kernel: [    3.461949] usb 1-1.4.2: Product: Apple Keyboard
Jun  8 15:01:00 iMac kernel: [    3.461952] usb 1-1.4.2: Manufacturer: Apple, Inc
Jun  8 15:01:00 iMac kernel: [    3.541123] scsi 2:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
Jun  8 15:01:00 iMac kernel: [    3.541616] sd 2:0:0:0: Attached scsi generic sg2 type 0
Jun  8 15:01:00 iMac kernel: [    3.543523] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun  8 15:01:00 iMac kernel: [    3.601792] random: nonblocking pool is initialized
Jun  8 15:01:00 iMac kernel: [    4.886066] Adding 8377340k swap on /dev/sda3.  Priority:-1 extents:1 across:8377340k FS
Jun  8 15:01:00 iMac kernel: [    5.985339] firewire_core 0000:05:00.0: created device fw1: GUID 0001db01001234ee, S800
Jun  8 15:01:00 iMac kernel: [    6.580989] lp: driver loaded but no devices found
Jun  8 15:01:00 iMac kernel: [    6.669012] ppdev: user-space parallel port driver
Jun  8 15:01:00 iMac kernel: [    7.122963] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
Jun  8 15:01:00 iMac kernel: [    8.411228] scsi3 : SBP-2 IEEE-1394
Jun  8 15:01:00 iMac kernel: [    8.677054] EDAC MC: Ver: 3.0.0
Jun  8 15:01:00 iMac kernel: [    8.754098] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
Jun  8 15:01:00 iMac kernel: [    8.754139] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jun  8 15:01:00 iMac kernel: [    8.754288] EDAC i7core: Driver loaded, 1 memory controller(s) found.
Jun  8 15:01:00 iMac kernel: [    8.765685] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
Jun  8 15:01:00 iMac kernel: [    8.765690] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 15:01:00 iMac kernel: [    8.765693] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 15:01:00 iMac kernel: [    8.765695] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 15:01:00 iMac kernel: [    8.765696] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 15:01:00 iMac kernel: [    8.765698] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 15:01:00 iMac kernel: [    8.765699] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 15:01:00 iMac kernel: [    8.765701] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 15:01:00 iMac kernel: [    8.765702] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun  8 15:01:00 iMac kernel: [    8.874820] intel ips 0000:00:1f.6: Non-IPS CPU detected.
Jun  8 15:01:00 iMac kernel: [    8.874822] intel ips 0000:00:1f.6: IPS not supported on this CPU
Jun  8 15:01:00 iMac kernel: [    8.906513] firewire_sbp2 fw1.0: logged in to LUN 0000 (0 retries)
Jun  8 15:01:00 iMac kernel: [    8.982410] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun  8 15:01:00 iMac kernel: [    9.441564] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jun  8 15:01:00 iMac kernel: [    9.477289] applesmc: key=297 fan=3 temp=36 index=35 acc=0 lux=2 kbd=0
Jun  8 15:01:00 iMac kernel: [    9.760979] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
Jun  8 15:01:00 iMac kernel: [    9.761075] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jun  8 15:01:00 iMac kernel: [    9.761155] snd_hda_intel 0000:01:00.1: irq 46 for MSI/MSI-X
Jun  8 15:01:00 iMac kernel: [    9.828229] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input3
Jun  8 15:01:00 iMac kernel: [    9.933134] sound hdaudioC0D0: autoconfig: line_outs=2 (0xa/0xb/0x0/0x0/0x0) type:speaker
Jun  8 15:01:00 iMac kernel: [    9.933137] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun  8 15:01:00 iMac kernel: [    9.933139] sound hdaudioC0D0:    hp_outs=1 (0x9/0x0/0x0/0x0/0x0)
Jun  8 15:01:00 iMac kernel: [    9.933140] sound hdaudioC0D0:    mono: mono_out=0x0
Jun  8 15:01:00 iMac kernel: [    9.933141] sound hdaudioC0D0:    dig-out=0x10/0x0
Jun  8 15:01:00 iMac kernel: [    9.933142] sound hdaudioC0D0:    inputs:
Jun  8 15:01:00 iMac kernel: [    9.933144] sound hdaudioC0D0:      Mic=0xd
Jun  8 15:01:00 iMac kernel: [    9.933145] sound hdaudioC0D0:      Line=0xc
Jun  8 15:01:00 iMac kernel: [    9.933146] sound hdaudioC0D0:    dig-in=0xf
Jun  8 15:01:00 iMac kernel: [    9.937411] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Jun  8 15:01:00 iMac kernel: [    9.937505] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
Jun  8 15:01:00 iMac kernel: [    9.938114] input: HDA Intel MID SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
Jun  8 15:01:00 iMac kernel: [   10.001932] [drm] Initialized drm 1.1.0 20060810
Jun  8 15:01:00 iMac kernel: [   10.130870] cfg80211: Calling CRDA to update world regulatory domain
Jun  8 15:01:01 iMac kernel: [   10.528964] hidraw: raw HID events driver (C) Jiri Kosina
Jun  8 15:01:01 iMac kernel: [   10.724894] media: Linux media interface: v0.10
Jun  8 15:01:01 iMac kernel: [   10.729500] usbcore: registered new interface driver usbhid
Jun  8 15:01:01 iMac kernel: [   10.729502] usbhid: USB HID core driver
Jun  8 15:01:01 iMac kernel: [   10.808830] 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  8 15:01:01 iMac kernel: [   10.809191] 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  8 15:01:01 iMac kernel: [   10.809743] 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  8 15:01:01 iMac kernel: [   10.809835] 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  8 15:01:01 iMac kernel: [   10.810884] 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/input9
Jun  8 15:01:01 iMac kernel: [   10.811092] 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/input10
Jun  8 15:01:01 iMac kernel: [   10.811097] appleir 0003:05AC:8242.0001: input,hiddev0,hidraw2: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
Jun  8 15:01:01 iMac kernel: [   10.811591] hid-generic 0003:045E:0040.0002: input,hidraw3: USB HID v1.00 Mouse [Microsoft Microsoft Wheel Mouse Optical®] on usb-0000:00:1d.7-1.4/input0
Jun  8 15:01:01 iMac kernel: [   10.817976] Linux video capture interface: v2.00
Jun  8 15:01:01 iMac kernel: [   11.035096] Bluetooth: Core ver 2.19
Jun  8 15:01:01 iMac kernel: [   11.035111] NET: Registered protocol family 31
Jun  8 15:01:01 iMac kernel: [   11.035112] Bluetooth: HCI device and connection manager initialized
Jun  8 15:01:01 iMac kernel: [   11.035118] Bluetooth: HCI socket layer initialized
Jun  8 15:01:01 iMac kernel: [   11.035120] Bluetooth: L2CAP socket layer initialized
Jun  8 15:01:01 iMac kernel: [   11.035126] Bluetooth: SCO socket layer initialized
Jun  8 15:01:01 iMac kernel: [   11.224047] usbcore: registered new interface driver btusb
Jun  8 15:01:01 iMac kernel: [   11.315878] [drm] VGACON disable radeon kernel modesetting.
Jun  8 15:01:01 iMac kernel: [   11.315882] [drm:radeon_init] *ERROR* No UMS support in radeon module!
Jun  8 15:01:02 iMac kernel: [   11.446589] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8502)
Jun  8 15:01:02 iMac kernel: [   11.451611] 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  8 15:01:02 iMac kernel: [   11.451680] usbcore: registered new interface driver uvcvideo
Jun  8 15:01:02 iMac kernel: [   11.451682] USB Video Class driver (1.1.1)
Jun  8 15:01:02 iMac kernel: [   11.691630] ath: EEPROM regdomain: 0x37
Jun  8 15:01:02 iMac kernel: [   11.691632] ath: EEPROM indicates we should expect a direct regpair map
Jun  8 15:01:02 iMac kernel: [   11.691633] ath: Country alpha2 being used: AW
Jun  8 15:01:02 iMac kernel: [   11.691634] ath: Regpair used: 0x37
Jun  8 15:01:02 iMac kernel: [   11.719546] audit: type=1400 audit(1433768462.320:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=501 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719551] audit: type=1400 audit(1433768462.320:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=501 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719554] audit: type=1400 audit(1433768462.320:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=501 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719563] audit: type=1400 audit(1433768462.320:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=485 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719569] audit: type=1400 audit(1433768462.320:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=485 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719572] audit: type=1400 audit(1433768462.320:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=485 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719939] audit: type=1400 audit(1433768462.320:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=501 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719943] audit: type=1400 audit(1433768462.320:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=501 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719948] audit: type=1400 audit(1433768462.320:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=485 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.719952] audit: type=1400 audit(1433768462.320:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=485 comm="apparmor_parser"
Jun  8 15:01:02 iMac kernel: [   11.817717] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Jun  8 15:01:02 iMac kernel: [   11.817981] cfg80211: Calling CRDA to update world regulatory domain
Jun  8 15:01:02 iMac kernel: [   11.818022] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc900119e0000, irq=17
Jun  8 15:01:02 iMac kernel: [   11.890721] cfg80211: World regulatory domain updated:
Jun  8 15:01:02 iMac kernel: [   11.890723] cfg80211:  DFS Master region: unset
Jun  8 15:01:02 iMac kernel: [   11.890724] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  8 15:01:02 iMac kernel: [   11.890726] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 15:01:02 iMac kernel: [   11.890727] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 15:01:02 iMac kernel: [   11.890729] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 15:01:02 iMac kernel: [   11.890730] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 15:01:02 iMac kernel: [   11.890731] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 15:01:02 iMac kernel: [   11.890872] cfg80211: Calling CRDA for country: AW
Jun  8 15:01:02 iMac kernel: [   11.894058] cfg80211: Regulatory domain changed to country: AW
Jun  8 15:01:02 iMac kernel: [   11.894060] cfg80211:  DFS Master region: unset
Jun  8 15:01:02 iMac kernel: [   11.894061] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  8 15:01:02 iMac kernel: [   11.894062] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  8 15:01:02 iMac kernel: [   11.894064] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  8 15:01:02 iMac kernel: [   11.894065] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
Jun  8 15:01:02 iMac kernel: [   11.894066] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
Jun  8 15:01:04 iMac kernel: [   13.770250] Bluetooth: RFCOMM TTY layer initialized
Jun  8 15:01:04 iMac kernel: [   13.770258] Bluetooth: RFCOMM socket layer initialized
Jun  8 15:01:04 iMac kernel: [   13.770262] Bluetooth: RFCOMM ver 1.11
Jun  8 15:01:04 iMac kernel: [   13.933858] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jun  8 15:01:04 iMac kernel: [   13.933860] Bluetooth: BNEP filters: protocol multicast
Jun  8 15:01:04 iMac kernel: [   13.933866] Bluetooth: BNEP socket layer initialized
Jun  8 15:01:08 iMac kernel: [   18.171978] audit_printk_skb: 162 callbacks suppressed
Jun  8 15:01:08 iMac kernel: [   18.171981] audit: type=1400 audit(1433768468.764:66): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cups-browsed" pid=947 comm="apparmor_parser"
Jun  8 15:01:09 iMac kernel: [   18.700142] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
Jun  8 15:01:10 iMac kernel: [   19.487324] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun  8 15:01:10 iMac kernel: [   19.503360] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Jun  8 15:01:10 iMac kernel: [   20.145475] scsi 3:0:0:0: Direct-Access     SAMSUNG  HD103UJ          1AA0 PQ: 0 ANSI: 4
Jun  8 15:01:10 iMac kernel: [   20.167204] sd 3:0:0:0: Attached scsi generic sg3 type 0
Jun  8 15:01:10 iMac kernel: [   20.168673] sd 3:0:0:0: [sdc] 3907049984 512-byte logical blocks: (2.00 TB/1.81 TiB)
Jun  8 15:01:10 iMac kernel: [   20.169784] sd 3:0:0:0: [sdc] Write Protect is off
Jun  8 15:01:10 iMac kernel: [   20.169787] sd 3:0:0:0: [sdc] Mode Sense: 10 00 00 00
Jun  8 15:01:10 iMac kernel: [   20.170581] sd 3:0:0:0: [sdc] Cache data unavailable
Jun  8 15:01:10 iMac kernel: [   20.170583] sd 3:0:0:0: [sdc] Assuming drive cache: write through
Jun  8 15:01:10 iMac kernel: [   20.185733]  sdc: sdc1
Jun  8 15:01:10 iMac kernel: [   20.192328] sd 3:0:0:0: [sdc] Attached SCSI disk
Jun  8 15:01:11 iMac kernel: [   21.076843] tg3 0000:02:00.0 eth0: Link is up at 100 Mbps, full duplex
Jun  8 15:01:11 iMac kernel: [   21.076850] tg3 0000:02:00.0 eth0: Flow control is on for TX and on for RX
Jun  8 15:01:11 iMac kernel: [   21.076864] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun  8 15:01:12 iMac kernel: [   21.738944] audit: type=1400 audit(1433768472.328:67): apparmor="DENIED" operation="file_inherit" profile="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=962 comm="nm-dhcp-client." lport=46799 family="inet" sock_type="dgram" protocol=17
Jun  8 15:01:12 iMac kernel: [   21.738951] audit: type=1400 audit(1433768472.328:68): apparmor="DENIED" operation="file_inherit" profile="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=962 comm="nm-dhcp-client." lport=54222 family="inet6" sock_type="dgram" protocol=17
Jun  8 15:01:16 iMac kernel: [   26.222964] audit: type=1400 audit(1433768476.808:69): apparmor="DENIED" operation="file_inherit" profile="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1109 comm="nm-dhcp-client." lport=46799 family="inet" sock_type="dgram" protocol=17
Jun  8 15:01:16 iMac kernel: [   26.222971] audit: type=1400 audit(1433768476.808:70): apparmor="DENIED" operation="file_inherit" profile="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1109 comm="nm-dhcp-client." lport=54222 family="inet6" sock_type="dgram" protocol=17
Jun  8 15:03:22 iMac kernel: [  151.906302] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
Jun  8 15:23:38 iMac kernel: [ 1369.766168] perf interrupt took too long (2510 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
Jun  8 17:55:57 iMac kernel: [10517.988667] audit: type=1400 audit(1433778957.545:71): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cups-browsed" pid=20186 comm="apparmor_parser"
Jun  8 17:55:57 iMac kernel: [10518.254974] audit: type=1400 audit(1433778957.813:72): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cups-browsed" pid=20225 comm="apparmor_parser"
Jun  8 17:55:59 iMac kernel: [10519.461828] audit: type=1400 audit(1433778959.017:73): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=20245 comm="apparmor_parser"
Jun  8 17:55:59 iMac kernel: [10519.462113] audit: type=1400 audit(1433778959.017:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=20245 comm="apparmor_parser"
Jun  8 17:55:59 iMac kernel: [10519.515619] audit: type=1400 audit(1433778959.073:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=20282 comm="apparmor_parser"
Jun  8 17:55:59 iMac kernel: [10519.515626] audit: type=1400 audit(1433778959.073:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=20282 comm="apparmor_parser"
Jun  8 17:55:59 iMac kernel: [10519.516092] audit: type=1400 audit(1433778959.073:77): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=20282 comm="apparmor_parser"
Jun  8 17:56:29 iMac kernel: [10549.631941] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
Jun  8 17:56:29 iMac kernel: [10549.647429] JFS: nTxBlock = 8192, nTxLock = 65536
Jun  8 17:56:29 iMac kernel: [10549.671630] ntfs: driver 2.1.30 [Flags: R/O MODULE].
Jun  8 17:56:29 iMac kernel: [10549.699011] QNX4 filesystem 0.2.3 registered.
Jun  8 17:56:29 iMac kernel: [10549.781833] raid6: sse2x1    5897 MB/s
Jun  8 17:56:29 iMac kernel: [10549.849902] raid6: sse2x2    9442 MB/s
Jun  8 17:56:29 iMac kernel: [10549.917972] raid6: sse2x4    7254 MB/s
Jun  8 17:56:29 iMac kernel: [10549.917975] raid6: using algorithm sse2x2 (9442 MB/s)
Jun  8 17:56:29 iMac kernel: [10549.917976] raid6: using ssse3x2 recovery algorithm
Jun  8 17:56:29 iMac kernel: [10549.931818] xor: measuring software checksum speed
Jun  8 17:56:29 iMac kernel: [10549.970082]    prefetch64-sse: 12771.000 MB/sec
Jun  8 17:56:29 iMac kernel: [10550.010065]    generic_sse: 11416.000 MB/sec
Jun  8 17:56:29 iMac kernel: [10550.010069] xor: using function: prefetch64-sse (12771.000 MB/sec)
Jun  8 17:56:29 iMac kernel: [10550.047274] Btrfs loaded
Jun  8 17:56:30 iMac kernel: [10551.428738] audit: type=1400 audit(1433778990.953:78): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=27410 comm="apparmor_parser"
Jun  8 17:56:30 iMac kernel: [10551.428960] audit: type=1400 audit(1433778990.953:79): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=27410 comm="apparmor_parser"
Jun  8 17:56:30 iMac kernel: [10551.429166] audit: type=1400 audit(1433778990.953:80): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=27410 comm="apparmor_parser"
Jun  8 17:56:43 iMac kernel: [10564.098510] audit: type=1400 audit(1433779003.609:81): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/tcpdump" pid=31028 comm="apparmor_parser"
Jun  8 17:57:13 iMac kernel: [10593.803570] audit: type=1400 audit(1433779033.285:82): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/bin/evince" pid=32336 comm="apparmor_parser"
Jun  8 17:57:13 iMac kernel: [10593.815314] audit: type=1400 audit(1433779033.297:83): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="sanitized_helper" pid=32336 comm="apparmor_parser"
Jun  8 17:57:13 iMac kernel: [10593.816931] audit: type=1400 audit(1433779033.297:84): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/bin/evince-previewer" pid=32336 comm="apparmor_parser"
Jun  8 17:57:13 iMac kernel: [10593.827102] audit: type=1400 audit(1433779033.309:85): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="sanitized_helper" pid=32336 comm="apparmor_parser"
Jun  8 17:57:13 iMac kernel: [10593.828266] audit: type=1400 audit(1433779033.309:86): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=32336 comm="apparmor_parser"
Jun  8 17:57:13 iMac kernel: [10593.839066] audit: type=1400 audit(1433779033.321:87): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="sanitized_helper" pid=32336 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [    0.000000] Initializing cgroup subsys cpuset
Jun  8 18:02:07 iMac kernel: [    0.000000] Initializing cgroup subsys cpu
Jun  8 18:02:07 iMac kernel: [    0.000000] Initializing cgroup subsys cpuacct
Jun  8 18:02:07 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  8 18:02:07 iMac kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=d0f0acaf-84e8-410d-bdf2-2e6caf6d8d79 ro quiet splash vt.handoff=7 nomodeset
Jun  8 18:02:07 iMac kernel: [    0.000000] KERNEL supported cpus:
Jun  8 18:02:07 iMac kernel: [    0.000000]   Intel GenuineIntel
Jun  8 18:02:07 iMac kernel: [    0.000000]   AMD AuthenticAMD
Jun  8 18:02:07 iMac kernel: [    0.000000]   Centaur CentaurHauls
Jun  8 18:02:07 iMac kernel: [    0.000000] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf65cfff] usable
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf65d000-0x00000000bf6eefff] ACPI NVS
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf6ef000-0x00000000bf7f5fff] ACPI data
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7f6000-0x00000000bf7fefff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7ff000-0x00000000bf7fffff] ACPI data
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
Jun  8 18:02:07 iMac kernel: [    0.000000] NX (Execute Disable) protection: active
Jun  8 18:02:07 iMac kernel: [    0.000000] SMBIOS 2.4 present.
Jun  8 18:02:07 iMac kernel: [    0.000000] DMI: Apple Inc. iMac11,1/Mac-F2268DAE, BIOS    IM111.88Z.0034.B02.1003171314 03/17/10
Jun  8 18:02:07 iMac kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun  8 18:02:07 iMac kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun  8 18:02:07 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  8 18:02:07 iMac kernel: [    0.000000] e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000
Jun  8 18:02:07 iMac kernel: [    0.000000] MTRR default type: write-back
Jun  8 18:02:07 iMac kernel: [    0.000000] MTRR fixed ranges enabled:
Jun  8 18:02:07 iMac kernel: [    0.000000]   00000-9FFFF write-back
Jun  8 18:02:07 iMac kernel: [    0.000000]   A0000-BFFFF uncachable
Jun  8 18:02:07 iMac kernel: [    0.000000]   C0000-DFFFF write-protect
Jun  8 18:02:07 iMac kernel: [    0.000000]   E0000-FFFFF uncachable
Jun  8 18:02:07 iMac kernel: [    0.000000] MTRR variable ranges enabled:
Jun  8 18:02:07 iMac kernel: [    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
Jun  8 18:02:07 iMac kernel: [    0.000000]   1 disabled
Jun  8 18:02:07 iMac kernel: [    0.000000]   2 disabled
Jun  8 18:02:07 iMac kernel: [    0.000000]   3 disabled
Jun  8 18:02:07 iMac kernel: [    0.000000]   4 disabled
Jun  8 18:02:07 iMac kernel: [    0.000000]   5 disabled
Jun  8 18:02:07 iMac kernel: [    0.000000]   6 disabled
Jun  8 18:02:07 iMac kernel: [    0.000000]   7 disabled
Jun  8 18:02:07 iMac kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun  8 18:02:07 iMac kernel: [    0.000000] e820: last_pfn = 0xbf65d max_arch_pfn = 0x400000000
Jun  8 18:02:07 iMac kernel: [    0.000000] Scanning 1 areas for low memory corruption
Jun  8 18:02:07 iMac kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
Jun  8 18:02:07 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Jun  8 18:02:07 iMac kernel: [    0.000000] BRK [0x01fbd000, 0x01fbdfff] PGTABLE
Jun  8 18:02:07 iMac kernel: [    0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
Jun  8 18:02:07 iMac kernel: [    0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
Jun  8 18:02:07 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23fe00000-0x23fffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0x23fe00000-0x23fffffff] page 2M
Jun  8 18:02:07 iMac kernel: [    0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
Jun  8 18:02:07 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23c000000-0x23fdfffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0x23c000000-0x23fdfffff] page 2M
Jun  8 18:02:07 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0x200000000-0x23bffffff] page 2M
Jun  8 18:02:07 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xbf65cfff]
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0x00200000-0xbf5fffff] page 2M
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0xbf600000-0xbf65cfff] page 4k
Jun  8 18:02:07 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
Jun  8 18:02:07 iMac kernel: [    0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
Jun  8 18:02:07 iMac kernel: [    0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
Jun  8 18:02:07 iMac kernel: [    0.000000] RAMDISK: [mem 0x35ad8000-0x36d63fff]
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: Early table checksum verification disabled
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE )
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: XSDT 0x00000000BF70E1C0 00008C (v01 APPLE  Apple00  00000034      01000013)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: FACP 0x00000000BF70B000 0000F4 (v04 APPLE  Apple00  00000034 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: DSDT 0x00000000BF6FF000 0050F3 (v01 APPLE  iMac     00110001 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: FACS 0x00000000BF665000 000040
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: ASF! 0x00000000BF70D000 0000A5 (v32 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: HPET 0x00000000BF70A000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF709000 0000BC (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF708000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: MCFG 0x00000000BF707000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: SBST 0x00000000BF706000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: ECDT 0x00000000BF705000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FB000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FA000 000774 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6F8000 000A10 (v01 PmRef  CpuPm    00003000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FE000 0000FA (v01 SataRe SataPri  00001000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FD000 0000FA (v01 SataRe SataSec  00001000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  8 18:02:07 iMac kernel: [    0.000000] No NUMA configuration found
Jun  8 18:02:07 iMac kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]   NODE_DATA [mem 0x23fff6000-0x23fffafff]
Jun  8 18:02:07 iMac kernel: [    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
Jun  8 18:02:07 iMac kernel: [    0.000000] Zone ranges:
Jun  8 18:02:07 iMac kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000]   Normal   [mem 0x100000000-0x23fffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] Movable zone start for each node
Jun  8 18:02:07 iMac kernel: [    0.000000] Early memory node ranges
Jun  8 18:02:07 iMac kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
Jun  8 18:02:07 iMac kernel: [    0.000000]   node   0: [mem 0x00100000-0xbf65cfff]
Jun  8 18:02:07 iMac kernel: [    0.000000]   node   0: [mem 0x100000000-0x23fffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] On node 0 totalpages: 2094587
Jun  8 18:02:07 iMac kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Jun  8 18:02:07 iMac kernel: [    0.000000]   DMA zone: 21 pages reserved
Jun  8 18:02:07 iMac kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Jun  8 18:02:07 iMac kernel: [    0.000000]   DMA32 zone: 12186 pages used for memmap
Jun  8 18:02:07 iMac kernel: [    0.000000]   DMA32 zone: 779869 pages, LIFO batch:31
Jun  8 18:02:07 iMac kernel: [    0.000000]   Normal zone: 20480 pages used for memmap
Jun  8 18:02:07 iMac kernel: [    0.000000]   Normal zone: 1310720 pages, LIFO batch:31
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun  8 18:02:07 iMac kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: IRQ0 used by override.
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: IRQ2 used by override.
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: IRQ9 used by override.
Jun  8 18:02:07 iMac kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Jun  8 18:02:07 iMac kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun  8 18:02:07 iMac kernel: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun  8 18:02:07 iMac kernel: [    0.000000] nr_irqs_gsi: 40
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf65d000-0xbf6eefff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf6ef000-0xbf7f5fff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7f6000-0xbf7fefff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7ff000-0xbf7fffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed1afff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Jun  8 18:02:07 iMac kernel: [    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun  8 18:02:07 iMac kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Jun  8 18:02:07 iMac kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jun  8 18:02:07 iMac kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88023fc00000 s81408 r8192 d20992 u262144
Jun  8 18:02:07 iMac kernel: [    0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
Jun  8 18:02:07 iMac kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun  8 18:02:07 iMac kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2061836
Jun  8 18:02:07 iMac kernel: [    0.000000] Policy zone: Normal
Jun  8 18:02:07 iMac kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=d0f0acaf-84e8-410d-bdf2-2e6caf6d8d79 ro quiet splash vt.handoff=7 nomodeset
Jun  8 18:02:07 iMac kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun  8 18:02:07 iMac kernel: [    0.000000] AGP: Checking aperture...
Jun  8 18:02:07 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  8 18:02:07 iMac kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jun  8 18:02:07 iMac kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun  8 18:02:07 iMac kernel: [    0.000000] Memory: 8144852K/8378348K available (7626K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 233496K reserved)
Jun  8 18:02:07 iMac kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun  8 18:02:07 iMac kernel: [    0.000000] Hierarchical RCU implementation.
Jun  8 18:02:07 iMac kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Jun  8 18:02:07 iMac kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jun  8 18:02:07 iMac kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Jun  8 18:02:07 iMac kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Jun  8 18:02:07 iMac kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jun  8 18:02:07 iMac kernel: [    0.000000] NR_IRQS:16640 nr_irqs:744 16
Jun  8 18:02:07 iMac kernel: [    0.000000] vt handoff: transparent VT on vt#7
Jun  8 18:02:07 iMac kernel: [    0.000000] Console: colour dummy device 80x25
Jun  8 18:02:07 iMac kernel: [    0.000000] console [tty0] enabled
Jun  8 18:02:07 iMac kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Jun  8 18:02:07 iMac kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun  8 18:02:07 iMac kernel: [    0.000000] hpet clockevent registered
Jun  8 18:02:07 iMac kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Jun  8 18:02:07 iMac kernel: [    0.000000] tsc: Detected 2793.047 MHz processor
Jun  8 18:02:07 iMac kernel: [    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.09 BogoMIPS (lpj=11172188)
Jun  8 18:02:07 iMac kernel: [    0.000033] pid_max: default: 32768 minimum: 301
Jun  8 18:02:07 iMac kernel: [    0.000040] ACPI: Core revision 20140424
Jun  8 18:02:07 iMac kernel: [    0.005640] ACPI: All ACPI Tables successfully acquired
Jun  8 18:02:07 iMac kernel: [    0.005869] Security Framework initialized
Jun  8 18:02:07 iMac kernel: [    0.005888] AppArmor: AppArmor initialized
Jun  8 18:02:07 iMac kernel: [    0.005889] Yama: becoming mindful.
Jun  8 18:02:07 iMac kernel: [    0.006366] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun  8 18:02:07 iMac kernel: [    0.008051] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun  8 18:02:07 iMac kernel: [    0.008843] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  8 18:02:07 iMac kernel: [    0.008851] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  8 18:02:07 iMac kernel: [    0.009082] Initializing cgroup subsys memory
Jun  8 18:02:07 iMac kernel: [    0.009102] Initializing cgroup subsys devices
Jun  8 18:02:07 iMac kernel: [    0.009107] Initializing cgroup subsys freezer
Jun  8 18:02:07 iMac kernel: [    0.009110] Initializing cgroup subsys net_cls
Jun  8 18:02:07 iMac kernel: [    0.009114] Initializing cgroup subsys blkio
Jun  8 18:02:07 iMac kernel: [    0.009117] Initializing cgroup subsys perf_event
Jun  8 18:02:07 iMac kernel: [    0.009119] Initializing cgroup subsys net_prio
Jun  8 18:02:07 iMac kernel: [    0.009125] Initializing cgroup subsys hugetlb
Jun  8 18:02:07 iMac kernel: [    0.009144] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.009146] CPU: Physical Processor ID: 0
Jun  8 18:02:07 iMac kernel: [    0.009146] CPU: Processor Core ID: 0
Jun  8 18:02:07 iMac kernel: [    0.009151] mce: CPU supports 9 MCE banks
Jun  8 18:02:07 iMac kernel: [    0.009159] CPU0: Thermal monitoring enabled (TM1)
Jun  8 18:02:07 iMac kernel: [    0.009166] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jun  8 18:02:07 iMac kernel: [    0.009166] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jun  8 18:02:07 iMac kernel: [    0.009166] tlb_flushall_shift: 6
Jun  8 18:02:07 iMac kernel: [    0.009252] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
Jun  8 18:02:07 iMac kernel: [    0.009947] ftrace: allocating 29244 entries in 115 pages
Jun  8 18:02:07 iMac kernel: [    0.021869] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun  8 18:02:07 iMac kernel: [    0.061594] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz (fam: 06, model: 1e, stepping: 05)
Jun  8 18:02:07 iMac kernel: [    0.165835] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
Jun  8 18:02:07 iMac kernel: [    0.165849] perf_event_intel: CPU erratum AAJ80 worked around
Jun  8 18:02:07 iMac kernel: [    0.165850] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
Jun  8 18:02:07 iMac kernel: [    0.165851] ... version:                3
Jun  8 18:02:07 iMac kernel: [    0.165852] ... bit width:              48
Jun  8 18:02:07 iMac kernel: [    0.165852] ... generic registers:      4
Jun  8 18:02:07 iMac kernel: [    0.165853] ... value mask:             0000ffffffffffff
Jun  8 18:02:07 iMac kernel: [    0.165854] ... max period:             000000007fffffff
Jun  8 18:02:07 iMac kernel: [    0.165855] ... fixed-purpose events:   3
Jun  8 18:02:07 iMac kernel: [    0.165855] ... event mask:             000000070000000f
Jun  8 18:02:07 iMac kernel: [    0.167410] x86: Booting SMP configuration:
Jun  8 18:02:07 iMac kernel: [    0.167412] .... node  #0, CPUs:      #1
Jun  8 18:02:07 iMac kernel: [    0.178503] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.180699] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun  8 18:02:07 iMac kernel: [    0.180782]  #2
Jun  8 18:02:07 iMac kernel: [    0.191822] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.194015]  #3<6>[    0.205057] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.218289]  #4
Jun  8 18:02:07 iMac kernel: [    0.218290] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.231521]  #5
Jun  8 18:02:07 iMac kernel: [    0.231521] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.244750]  #6
Jun  8 18:02:07 iMac kernel: [    0.244750] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.257983]  #7
Jun  8 18:02:07 iMac kernel: [    0.257983] Disabled fast string operations
Jun  8 18:02:07 iMac kernel: [    0.260100] x86: Booted up 1 node, 8 CPUs
Jun  8 18:02:07 iMac kernel: [    0.260103] smpboot: Total of 8 processors activated (44688.75 BogoMIPS)
Jun  8 18:02:07 iMac kernel: [    0.265457] devtmpfs: initialized
Jun  8 18:02:07 iMac kernel: [    0.269227] evm: security.selinux
Jun  8 18:02:07 iMac kernel: [    0.269229] evm: security.SMACK64
Jun  8 18:02:07 iMac kernel: [    0.269229] evm: security.SMACK64EXEC
Jun  8 18:02:07 iMac kernel: [    0.269230] evm: security.SMACK64TRANSMUTE
Jun  8 18:02:07 iMac kernel: [    0.269231] evm: security.SMACK64MMAP
Jun  8 18:02:07 iMac kernel: [    0.269231] evm: security.ima
Jun  8 18:02:07 iMac kernel: [    0.269232] evm: security.capability
Jun  8 18:02:07 iMac kernel: [    0.269279] PM: Registering ACPI NVS region [mem 0xbf65d000-0xbf6eefff] (598016 bytes)
Jun  8 18:02:07 iMac kernel: [    0.270064] pinctrl core: initialized pinctrl subsystem
Jun  8 18:02:07 iMac kernel: [    0.270127] regulator-dummy: no parameters
Jun  8 18:02:07 iMac kernel: [    0.270158] RTC time: 16:01:54, date: 06/08/15
Jun  8 18:02:07 iMac kernel: [    0.270199] NET: Registered protocol family 16
Jun  8 18:02:07 iMac kernel: [    0.270334] cpuidle: using governor ladder
Jun  8 18:02:07 iMac kernel: [    0.270336] cpuidle: using governor menu
Jun  8 18:02:07 iMac kernel: [    0.270381] ACPI: bus type PCI registered
Jun  8 18:02:07 iMac kernel: [    0.270382] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun  8 18:02:07 iMac kernel: [    0.270447] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun  8 18:02:07 iMac kernel: [    0.270449] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun  8 18:02:07 iMac kernel: [    0.270882] PCI: Using configuration type 1 for base access
Jun  8 18:02:07 iMac kernel: [    0.274341] ACPI: Added _OSI(Module Device)
Jun  8 18:02:07 iMac kernel: [    0.274343] ACPI: Added _OSI(Processor Device)
Jun  8 18:02:07 iMac kernel: [    0.274344] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun  8 18:02:07 iMac kernel: [    0.274345] ACPI: Added _OSI(Processor Aggregator Device)
Jun  8 18:02:07 iMac kernel: [    0.275063] ACPI : EC: EC description table is found, configuring boot EC
Jun  8 18:02:07 iMac kernel: [    0.277984] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun  8 18:02:07 iMac kernel: [    0.278268] ACPI: Dynamic OEM Table Load:
Jun  8 18:02:07 iMac kernel: [    0.278275] ACPI: SSDT 0xFFFF880233FA0000 0004BD (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.278547] ACPI: Dynamic OEM Table Load:
Jun  8 18:02:07 iMac kernel: [    0.278553] ACPI: SSDT 0xFFFF880233FA0800 0006E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.286179] ACPI: Dynamic OEM Table Load:
Jun  8 18:02:07 iMac kernel: [    0.286185] ACPI: SSDT 0xFFFF880233C19000 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.290079] ACPI: Dynamic OEM Table Load:
Jun  8 18:02:07 iMac kernel: [    0.290084] ACPI: SSDT 0xFFFF880233F78A00 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
Jun  8 18:02:07 iMac kernel: [    0.294875] ACPI: Interpreter enabled
Jun  8 18:02:07 iMac kernel: [    0.294880] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Jun  8 18:02:07 iMac kernel: [    0.294883] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Jun  8 18:02:07 iMac kernel: [    0.294894] ACPI: (supports S0 S3 S4 S5)
Jun  8 18:02:07 iMac kernel: [    0.294895] ACPI: Using IOAPIC for interrupt routing
Jun  8 18:02:07 iMac kernel: [    0.294916] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun  8 18:02:07 iMac kernel: [    0.298489] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun  8 18:02:07 iMac kernel: [    0.298494] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  8 18:02:07 iMac kernel: [    0.298520] \_SB_.PCI0:_OSC invalid UUID
Jun  8 18:02:07 iMac kernel: [    0.298521] _OSC request data:1 1f 0 
Jun  8 18:02:07 iMac kernel: [    0.298524] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun  8 18:02:07 iMac kernel: [    0.299061] PCI host bridge to bus 0000:00
Jun  8 18:02:07 iMac kernel: [    0.299064] pci_bus 0000:00: root bus resource [bus 00-fe]
Jun  8 18:02:07 iMac kernel: [    0.299066] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Jun  8 18:02:07 iMac kernel: [    0.299067] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Jun  8 18:02:07 iMac kernel: [    0.299068] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun  8 18:02:07 iMac kernel: [    0.299070] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
Jun  8 18:02:07 iMac kernel: [    0.299077] pci 0000:00:00.0: [8086:d131] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.299167] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
Jun  8 18:02:07 iMac kernel: [    0.299214] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.299244] pci 0000:00:03.0: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.299279] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
Jun  8 18:02:07 iMac kernel: [    0.299365] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
Jun  8 18:02:07 iMac kernel: [    0.299451] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
Jun  8 18:02:07 iMac kernel: [    0.299529] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
Jun  8 18:02:07 iMac kernel: [    0.299602] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
Jun  8 18:02:07 iMac kernel: [    0.299671] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
Jun  8 18:02:07 iMac kernel: [    0.299754] pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
Jun  8 18:02:07 iMac kernel: [    0.299792] pci 0000:00:1a.0: reg 0x20: [io  0x3060-0x307f]
Jun  8 18:02:07 iMac kernel: [    0.299885] pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
Jun  8 18:02:07 iMac kernel: [    0.299903] pci 0000:00:1a.7: reg 0x10: [mem 0xd0705c00-0xd0705fff]
Jun  8 18:02:07 iMac kernel: [    0.299984] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.300029] pci 0000:00:1a.7: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.300068] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
Jun  8 18:02:07 iMac kernel: [    0.300082] pci 0000:00:1b.0: reg 0x10: [mem 0xd0700000-0xd0703fff 64bit]
Jun  8 18:02:07 iMac kernel: [    0.300148] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.300180] pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.300213] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
Jun  8 18:02:07 iMac kernel: [    0.300277] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.300309] pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.300344] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
Jun  8 18:02:07 iMac kernel: [    0.300407] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.300439] pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.300472] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
Jun  8 18:02:07 iMac kernel: [    0.300536] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.300568] pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.300600] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
Jun  8 18:02:07 iMac kernel: [    0.300659] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.300691] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.300725] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
Jun  8 18:02:07 iMac kernel: [    0.300784] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.300848] pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
Jun  8 18:02:07 iMac kernel: [    0.300886] pci 0000:00:1d.0: reg 0x20: [io  0x3040-0x305f]
Jun  8 18:02:07 iMac kernel: [    0.300979] pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
Jun  8 18:02:07 iMac kernel: [    0.300998] pci 0000:00:1d.7: reg 0x10: [mem 0xd0705800-0xd0705bff]
Jun  8 18:02:07 iMac kernel: [    0.301079] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.301121] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.301155] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jun  8 18:02:07 iMac kernel: [    0.301248] pci 0000:00:1f.0: [8086:3b02] type 00 class 0x060100
Jun  8 18:02:07 iMac kernel: [    0.301396] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
Jun  8 18:02:07 iMac kernel: [    0.301410] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
Jun  8 18:02:07 iMac kernel: [    0.301416] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
Jun  8 18:02:07 iMac kernel: [    0.301423] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
Jun  8 18:02:07 iMac kernel: [    0.301429] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
Jun  8 18:02:07 iMac kernel: [    0.301436] pci 0000:00:1f.2: reg 0x20: [io  0x3020-0x302f]
Jun  8 18:02:07 iMac kernel: [    0.301442] pci 0000:00:1f.2: reg 0x24: [io  0xffe0-0xffef]
Jun  8 18:02:07 iMac kernel: [    0.301521] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
Jun  8 18:02:07 iMac kernel: [    0.301534] pci 0000:00:1f.3: reg 0x10: [mem 0xd0706000-0xd07060ff 64bit]
Jun  8 18:02:07 iMac kernel: [    0.301552] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Jun  8 18:02:07 iMac kernel: [    0.301622] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
Jun  8 18:02:07 iMac kernel: [    0.301643] pci 0000:00:1f.6: reg 0x10: [mem 0xd0704000-0xd0704fff 64bit]
Jun  8 18:02:07 iMac kernel: [    0.301805] pci 0000:01:00.0: [1002:944a] type 00 class 0x030000
Jun  8 18:02:07 iMac kernel: [    0.301817] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.301825] pci 0000:01:00.0: reg 0x18: [mem 0xd0620000-0xd062ffff 64bit]
Jun  8 18:02:07 iMac kernel: [    0.301830] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun  8 18:02:07 iMac kernel: [    0.301840] pci 0000:01:00.0: reg 0x30: [mem 0xd0600000-0xd061ffff pref]
Jun  8 18:02:07 iMac kernel: [    0.301866] pci 0000:01:00.0: supports D1 D2
Jun  8 18:02:07 iMac kernel: [    0.301882] pci 0000:01:00.0: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.301917] pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
Jun  8 18:02:07 iMac kernel: [    0.301928] pci 0000:01:00.1: reg 0x10: [mem 0xd0630000-0xd0633fff 64bit]
Jun  8 18:02:07 iMac kernel: [    0.301975] pci 0000:01:00.1: supports D1 D2
Jun  8 18:02:07 iMac kernel: [    0.311322] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  8 18:02:07 iMac kernel: [    0.311328] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  8 18:02:07 iMac kernel: [    0.311333] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  8 18:02:07 iMac kernel: [    0.311340] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.311439] pci 0000:02:00.0: [14e4:1684] type 00 class 0x020000
Jun  8 18:02:07 iMac kernel: [    0.311464] pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
Jun  8 18:02:07 iMac kernel: [    0.311608] pci 0000:02:00.0: PME# supported from D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.311646] pci 0000:02:00.0: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.319346] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  8 18:02:07 iMac kernel: [    0.319354] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  8 18:02:07 iMac kernel: [    0.319453] pci 0000:03:00.0: [168c:002a] type 00 class 0x028000
Jun  8 18:02:07 iMac kernel: [    0.319476] pci 0000:03:00.0: reg 0x10: [mem 0xd0400000-0xd040ffff 64bit]
Jun  8 18:02:07 iMac kernel: [    0.319597] pci 0000:03:00.0: supports D1
Jun  8 18:02:07 iMac kernel: [    0.319598] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
Jun  8 18:02:07 iMac kernel: [    0.319627] pci 0000:03:00.0: System wakeup disabled by ACPI
Jun  8 18:02:07 iMac kernel: [    0.319656] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Jun  8 18:02:07 iMac kernel: [    0.319664] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  8 18:02:07 iMac kernel: [    0.319668] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  8 18:02:07 iMac kernel: [    0.319746] pci 0000:04:00.0: [104c:823e] type 01 class 0x060400
Jun  8 18:02:07 iMac kernel: [    0.319870] pci 0000:04:00.0: supports D1 D2
Jun  8 18:02:07 iMac kernel: [    0.327360] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  8 18:02:07 iMac kernel: [    0.327368] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:02:07 iMac kernel: [    0.327479] pci 0000:05:00.0: [104c:823f] type 00 class 0x0c0010
Jun  8 18:02:07 iMac kernel: [    0.327504] pci 0000:05:00.0: reg 0x10: [mem 0xd0304000-0xd03047ff]
Jun  8 18:02:07 iMac kernel: [    0.327517] pci 0000:05:00.0: reg 0x14: [mem 0xd0300000-0xd0303fff]
Jun  8 18:02:07 iMac kernel: [    0.327620] pci 0000:05:00.0: supports D1 D2
Jun  8 18:02:07 iMac kernel: [    0.327621] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
Jun  8 18:02:07 iMac kernel: [    0.327717] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  8 18:02:07 iMac kernel: [    0.327728] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:02:07 iMac kernel: [    0.327808] acpiphp: Slot [1] registered
Jun  8 18:02:07 iMac kernel: [    0.327812] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  8 18:02:07 iMac kernel: [    0.327817] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  8 18:02:07 iMac kernel: [    0.327865] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  8 18:02:07 iMac kernel: [    0.327869] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  8 18:02:07 iMac kernel: [    0.327935] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
Jun  8 18:02:07 iMac kernel: [    0.327939] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  8 18:02:07 iMac kernel: [    0.327944] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun  8 18:02:07 iMac kernel: [    0.327945] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun  8 18:02:07 iMac kernel: [    0.327947] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun  8 18:02:07 iMac kernel: [    0.327948] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
Jun  8 18:02:07 iMac kernel: [    0.328300] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  8 18:02:07 iMac kernel: [    0.328342] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 18:02:07 iMac kernel: [    0.328382] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  8 18:02:07 iMac kernel: [    0.328421] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 18:02:07 iMac kernel: [    0.328459] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  8 18:02:07 iMac kernel: [    0.328501] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Jun  8 18:02:07 iMac kernel: [    0.328540] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  8 18:02:07 iMac kernel: [    0.328579] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 18:02:07 iMac kernel: [    0.328654] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
Jun  8 18:02:07 iMac kernel: [    0.328657] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  8 18:02:07 iMac kernel: [    0.328660] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun  8 18:02:07 iMac kernel: [    0.328696] PCI host bridge to bus 0000:ff
Jun  8 18:02:07 iMac kernel: [    0.328698] pci_bus 0000:ff: root bus resource [bus ff]
Jun  8 18:02:07 iMac kernel: [    0.328702] pci 0000:ff:00.0: [8086:2c51] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.328741] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.328781] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.328818] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.328856] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.328892] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.328928] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.328964] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329000] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329035] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329071] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329109] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329145] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329181] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329217] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
Jun  8 18:02:07 iMac kernel: [    0.329295] ACPI: Enabled 4 GPEs in block 00 to 3F
Jun  8 18:02:07 iMac kernel: [    0.329314] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
Jun  8 18:02:07 iMac kernel: [    0.329395] vgaarb: setting as boot device: PCI:0000:01:00.0
Jun  8 18:02:07 iMac kernel: [    0.329397] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Jun  8 18:02:07 iMac kernel: [    0.329400] vgaarb: loaded
Jun  8 18:02:07 iMac kernel: [    0.329401] vgaarb: bridge control possible 0000:01:00.0
Jun  8 18:02:07 iMac kernel: [    0.329597] SCSI subsystem initialized
Jun  8 18:02:07 iMac kernel: [    0.329635] libata version 3.00 loaded.
Jun  8 18:02:07 iMac kernel: [    0.329656] ACPI: bus type USB registered
Jun  8 18:02:07 iMac kernel: [    0.329672] usbcore: registered new interface driver usbfs
Jun  8 18:02:07 iMac kernel: [    0.329679] usbcore: registered new interface driver hub
Jun  8 18:02:07 iMac kernel: [    0.329698] usbcore: registered new device driver usb
Jun  8 18:02:07 iMac kernel: [    0.329815] PCI: Using ACPI for IRQ routing
Jun  8 18:02:07 iMac kernel: [    0.335283] PCI: pci_cache_line_size set to 64 bytes
Jun  8 18:02:07 iMac kernel: [    0.335352] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jun  8 18:02:07 iMac kernel: [    0.335353] e820: reserve RAM buffer [mem 0xbf65d000-0xbfffffff]
Jun  8 18:02:07 iMac kernel: [    0.335443] NetLabel: Initializing
Jun  8 18:02:07 iMac kernel: [    0.335445] NetLabel:  domain hash size = 128
Jun  8 18:02:07 iMac kernel: [    0.335445] NetLabel:  protocols = UNLABELED CIPSOv4
Jun  8 18:02:07 iMac kernel: [    0.335455] NetLabel:  unlabeled traffic allowed by default
Jun  8 18:02:07 iMac kernel: [    0.335522] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
Jun  8 18:02:07 iMac kernel: [    0.335528] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
Jun  8 18:02:07 iMac kernel: [    0.335532] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun  8 18:02:07 iMac kernel: [    0.337567] hpet: hpet2 irq 40 for MSI
Jun  8 18:02:07 iMac kernel: [    0.337602] hpet: hpet3 irq 41 for MSI
Jun  8 18:02:07 iMac kernel: [    0.337636] hpet: hpet4 irq 42 for MSI
Jun  8 18:02:07 iMac kernel: [    0.337666] hpet: hpet5 irq 43 for MSI
Jun  8 18:02:07 iMac kernel: [    0.337711] hpet: hpet6 irq 44 for MSI
Jun  8 18:02:07 iMac kernel: [    0.337817] Switched to clocksource hpet
Jun  8 18:02:07 iMac kernel: [    0.342325] AppArmor: AppArmor Filesystem Enabled
Jun  8 18:02:07 iMac kernel: [    0.342352] pnp: PnP ACPI init
Jun  8 18:02:07 iMac kernel: [    0.342365] ACPI: bus type PNP registered
Jun  8 18:02:07 iMac kernel: [    0.342506] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342510] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
Jun  8 18:02:07 iMac kernel: [    0.342558] system 00:01: [io  0x0680-0x069f] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342560] system 00:01: [io  0x1000-0x100f] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342561] system 00:01: [io  0xffff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342563] system 00:01: [io  0xffff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342564] system 00:01: [io  0x0400-0x047f] could not be reserved
Jun  8 18:02:07 iMac kernel: [    0.342566] system 00:01: [io  0x0500-0x057f] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342567] system 00:01: [io  0x164e-0x164f] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342569] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 18:02:07 iMac kernel: [    0.342619] system 00:02: [io  0x06a0-0x06af] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342621] system 00:02: [io  0x06b0-0x06ff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342623] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 18:02:07 iMac kernel: [    0.342645] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun  8 18:02:07 iMac kernel: [    0.342823] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342825] system 00:04: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342826] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342827] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342829] system 00:04: [mem 0xfeb00000-0xfeb03fff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342830] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun  8 18:02:07 iMac kernel: [    0.342832] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
Jun  8 18:02:07 iMac kernel: [    0.342833] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun  8 18:02:07 iMac kernel: [    0.342835] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 18:02:07 iMac kernel: [    0.342987] pnp: PnP ACPI: found 5 devices
Jun  8 18:02:07 iMac kernel: [    0.342988] ACPI: bus type PNP unregistered
Jun  8 18:02:07 iMac kernel: [    0.349249] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349252] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349259] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349261] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349277] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 04-05] add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349278] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-05] add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349285] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349286] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349292] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349294] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349304] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349305] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349307] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349308] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349309] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:02:07 iMac kernel: [    0.349311] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349312] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349313] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349315] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349316] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:02:07 iMac kernel: [    0.349320] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349323] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349326] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349328] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349330] pci 0000:00:1c.4: BAR 15: assigned [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349332] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jun  8 18:02:07 iMac kernel: [    0.349334] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun  8 18:02:07 iMac kernel: [    0.349336] pci 0000:00:1c.2: BAR 13: assigned [io  0x6000-0x6fff]
Jun  8 18:02:07 iMac kernel: [    0.349338] pci 0000:00:1c.3: BAR 13: assigned [io  0x7000-0x7fff]
Jun  8 18:02:07 iMac kernel: [    0.349339] pci 0000:00:1c.4: BAR 13: assigned [io  0x8000-0x8fff]
Jun  8 18:02:07 iMac kernel: [    0.349342] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  8 18:02:07 iMac kernel: [    0.349344] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  8 18:02:07 iMac kernel: [    0.349347] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  8 18:02:07 iMac kernel: [    0.349349] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349352] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  8 18:02:07 iMac kernel: [    0.349354] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun  8 18:02:07 iMac kernel: [    0.349358] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  8 18:02:07 iMac kernel: [    0.349361] pci 0000:00:1c.0:   bridge window [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349365] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  8 18:02:07 iMac kernel: [    0.349367] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun  8 18:02:07 iMac kernel: [    0.349370] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  8 18:02:07 iMac kernel: [    0.349373] pci 0000:00:1c.1:   bridge window [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349377] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  8 18:02:07 iMac kernel: [    0.349383] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:02:07 iMac kernel: [    0.349394] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  8 18:02:07 iMac kernel: [    0.349396] pci 0000:00:1c.2:   bridge window [io  0x6000-0x6fff]
Jun  8 18:02:07 iMac kernel: [    0.349399] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:02:07 iMac kernel: [    0.349402] pci 0000:00:1c.2:   bridge window [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349406] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  8 18:02:07 iMac kernel: [    0.349408] pci 0000:00:1c.3:   bridge window [io  0x7000-0x7fff]
Jun  8 18:02:07 iMac kernel: [    0.349411] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  8 18:02:07 iMac kernel: [    0.349414] pci 0000:00:1c.3:   bridge window [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349418] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  8 18:02:07 iMac kernel: [    0.349420] pci 0000:00:1c.4:   bridge window [io  0x8000-0x8fff]
Jun  8 18:02:07 iMac kernel: [    0.349424] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  8 18:02:07 iMac kernel: [    0.349426] pci 0000:00:1c.4:   bridge window [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349431] pci 0000:00:1e.0: PCI bridge to [bus 08]
Jun  8 18:02:07 iMac kernel: [    0.349434] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  8 18:02:07 iMac kernel: [    0.349441] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun  8 18:02:07 iMac kernel: [    0.349442] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun  8 18:02:07 iMac kernel: [    0.349443] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun  8 18:02:07 iMac kernel: [    0.349444] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  8 18:02:07 iMac kernel: [    0.349446] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jun  8 18:02:07 iMac kernel: [    0.349447] pci_bus 0000:01: resource 1 [mem 0xd0600000-0xd06fffff]
Jun  8 18:02:07 iMac kernel: [    0.349448] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349450] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Jun  8 18:02:07 iMac kernel: [    0.349451] pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
Jun  8 18:02:07 iMac kernel: [    0.349452] pci_bus 0000:02: resource 2 [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349454] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
Jun  8 18:02:07 iMac kernel: [    0.349455] pci_bus 0000:03: resource 1 [mem 0xd0400000-0xd04fffff]
Jun  8 18:02:07 iMac kernel: [    0.349456] pci_bus 0000:03: resource 2 [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349457] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
Jun  8 18:02:07 iMac kernel: [    0.349459] pci_bus 0000:04: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  8 18:02:07 iMac kernel: [    0.349460] pci_bus 0000:04: resource 2 [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349461] pci_bus 0000:05: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  8 18:02:07 iMac kernel: [    0.349462] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
Jun  8 18:02:07 iMac kernel: [    0.349464] pci_bus 0000:06: resource 1 [mem 0xd0200000-0xd02fffff]
Jun  8 18:02:07 iMac kernel: [    0.349465] pci_bus 0000:06: resource 2 [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349466] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
Jun  8 18:02:07 iMac kernel: [    0.349467] pci_bus 0000:07: resource 1 [mem 0xd0100000-0xd01fffff]
Jun  8 18:02:07 iMac kernel: [    0.349469] pci_bus 0000:07: resource 2 [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 18:02:07 iMac kernel: [    0.349470] pci_bus 0000:08: resource 1 [mem 0xd0000000-0xd00fffff]
Jun  8 18:02:07 iMac kernel: [    0.349471] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
Jun  8 18:02:07 iMac kernel: [    0.349473] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
Jun  8 18:02:07 iMac kernel: [    0.349474] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
Jun  8 18:02:07 iMac kernel: [    0.349475] pci_bus 0000:08: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  8 18:02:07 iMac kernel: [    0.349500] NET: Registered protocol family 2
Jun  8 18:02:07 iMac kernel: [    0.349688] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun  8 18:02:07 iMac kernel: [    0.349886] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun  8 18:02:07 iMac kernel: [    0.350140] TCP: Hash tables configured (established 65536 bind 65536)
Jun  8 18:02:07 iMac kernel: [    0.350167] TCP: reno registered
Jun  8 18:02:07 iMac kernel: [    0.350175] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun  8 18:02:07 iMac kernel: [    0.350228] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun  8 18:02:07 iMac kernel: [    0.350311] NET: Registered protocol family 1
Jun  8 18:02:07 iMac kernel: [    0.351150] pci 0000:01:00.0: Video device with shadowed ROM
Jun  8 18:02:07 iMac kernel: [    0.351162] PCI: CLS mismatch (256 != 64), using 64 bytes
Jun  8 18:02:07 iMac kernel: [    0.351217] Trying to unpack rootfs image as initramfs...
Jun  8 18:02:07 iMac kernel: [    0.624520] Freeing initrd memory: 18992K (ffff880035ad8000 - ffff880036d64000)
Jun  8 18:02:07 iMac kernel: [    0.624555] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun  8 18:02:07 iMac kernel: [    0.624558] software IO TLB [mem 0xbb65d000-0xbf65d000] (64MB) mapped at [ffff8800bb65d000-ffff8800bf65cfff]
Jun  8 18:02:07 iMac kernel: [    0.624885] microcode: CPU0 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624891] microcode: CPU1 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624897] microcode: CPU2 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624902] microcode: CPU3 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624907] microcode: CPU4 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624912] microcode: CPU5 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624918] microcode: CPU6 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624923] microcode: CPU7 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:02:07 iMac kernel: [    0.624968] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun  8 18:02:07 iMac kernel: [    0.624990] Scanning for low memory corruption every 60 seconds
Jun  8 18:02:07 iMac kernel: [    0.625011] efifb: dmi detected iMac11,1 - framebuffer at 0xc0000000 (1920x1440, stride 7680)
Jun  8 18:02:07 iMac kernel: [    0.625295] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun  8 18:02:07 iMac kernel: [    0.625324] Initialise system trusted keyring
Jun  8 18:02:07 iMac kernel: [    0.625343] audit: initializing netlink subsys (disabled)
Jun  8 18:02:07 iMac kernel: [    0.625358] audit: type=2000 audit(1433779314.516:1): initialized
Jun  8 18:02:07 iMac kernel: [    0.625619] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun  8 18:02:07 iMac kernel: [    0.626944] zpool: loaded
Jun  8 18:02:07 iMac kernel: [    0.626945] zbud: loaded
Jun  8 18:02:07 iMac kernel: [    0.627078] VFS: Disk quotas dquot_6.5.2
Jun  8 18:02:07 iMac kernel: [    0.627109] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun  8 18:02:07 iMac kernel: [    0.627537] fuse init (API version 7.23)
Jun  8 18:02:07 iMac kernel: [    0.627613] msgmni has been set to 15945
Jun  8 18:02:07 iMac kernel: [    0.627667] Key type big_key registered
Jun  8 18:02:07 iMac kernel: [    0.627956] Key type asymmetric registered
Jun  8 18:02:07 iMac kernel: [    0.627958] Asymmetric key parser 'x509' registered
Jun  8 18:02:07 iMac kernel: [    0.627990] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun  8 18:02:07 iMac kernel: [    0.628040] io scheduler noop registered
Jun  8 18:02:07 iMac kernel: [    0.628042] io scheduler deadline registered (default)
Jun  8 18:02:07 iMac kernel: [    0.628085] io scheduler cfq registered
Jun  8 18:02:07 iMac kernel: [    0.628618] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jun  8 18:02:07 iMac kernel: [    0.628723] pcieport 0000:00:1c.4: enabling device (0000 -> 0003)
Jun  8 18:02:07 iMac kernel: [    0.628854] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun  8 18:02:07 iMac kernel: [    0.628867] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun  8 18:02:07 iMac kernel: [    0.628909] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
Jun  8 18:02:07 iMac kernel: [    0.628910] vesafb: scrolling: redraw
Jun  8 18:02:07 iMac kernel: [    0.628912] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun  8 18:02:07 iMac kernel: [    0.633299] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 10816k, total 10816k
Jun  8 18:02:07 iMac kernel: [    0.633429] Console: switching to colour frame buffer device 240x90
Jun  8 18:02:07 iMac kernel: [    0.633487] fb0: VESA VGA frame buffer device
Jun  8 18:02:07 iMac kernel: [    0.633513] intel_idle: MWAIT substates: 0x1120
Jun  8 18:02:07 iMac kernel: [    0.633525] intel_idle: v0.4 model 0x1E
Jun  8 18:02:07 iMac kernel: [    0.633526] intel_idle: lapic_timer_reliable_states 0x2
Jun  8 18:02:07 iMac kernel: [    0.633847] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun  8 18:02:07 iMac kernel: [    0.633851] ACPI: Power Button [PWRB]
Jun  8 18:02:07 iMac kernel: [    0.633885] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun  8 18:02:07 iMac kernel: [    0.633887] ACPI: Sleep Button [SLPB]
Jun  8 18:02:07 iMac kernel: [    0.633919] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun  8 18:02:07 iMac kernel: [    0.633920] ACPI: Power Button [PWRF]
Jun  8 18:02:07 iMac kernel: [    0.634334] GHES: HEST is not enabled!
Jun  8 18:02:07 iMac kernel: [    0.634423] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun  8 18:02:07 iMac kernel: [    0.635758] Linux agpgart interface v0.103
Jun  8 18:02:07 iMac kernel: [    0.636846] brd: module loaded
Jun  8 18:02:07 iMac kernel: [    0.637392] loop: module loaded
Jun  8 18:02:07 iMac kernel: [    0.637514] ata_piix 0000:00:1f.2: version 2.13
Jun  8 18:02:07 iMac kernel: [    0.637598] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun  8 18:02:07 iMac kernel: [    0.790696] scsi0 : ata_piix
Jun  8 18:02:07 iMac kernel: [    0.791228] scsi1 : ata_piix
Jun  8 18:02:07 iMac kernel: [    0.791322] ata1: SATA max UDMA/133 cmd 0x3088 ctl 0x3094 bmdma 0x3020 irq 19
Jun  8 18:02:07 iMac kernel: [    0.791329] ata2: SATA max UDMA/133 cmd 0x3080 ctl 0x3090 bmdma 0x3028 irq 19
Jun  8 18:02:07 iMac kernel: [    0.791451] libphy: Fixed MDIO Bus: probed
Jun  8 18:02:07 iMac kernel: [    0.791454] tun: Universal TUN/TAP device driver, 1.6
Jun  8 18:02:07 iMac kernel: [    0.791455] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun  8 18:02:07 iMac kernel: [    0.791571] PPP generic driver version 2.4.2
Jun  8 18:02:07 iMac kernel: [    0.791670] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun  8 18:02:07 iMac kernel: [    0.791680] ehci-pci: EHCI PCI platform driver
Jun  8 18:02:07 iMac kernel: [    0.791834] ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.791841] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jun  8 18:02:07 iMac kernel: [    0.791852] ehci-pci 0000:00:1a.7: debug port 2
Jun  8 18:02:07 iMac kernel: [    0.795762] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
Jun  8 18:02:07 iMac kernel: [    0.795775] ehci-pci 0000:00:1a.7: irq 16, io mem 0xd0705c00
Jun  8 18:02:07 iMac kernel: [    0.806457] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun  8 18:02:07 iMac kernel: [    0.806530] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun  8 18:02:07 iMac kernel: [    0.806534] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:02:07 iMac kernel: [    0.806538] usb usb1: Product: EHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.806541] usb usb1: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  8 18:02:07 iMac kernel: [    0.806544] usb usb1: SerialNumber: 0000:00:1a.7
Jun  8 18:02:07 iMac kernel: [    0.806891] hub 1-0:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    0.806897] hub 1-0:1.0: 6 ports detected
Jun  8 18:02:07 iMac kernel: [    0.807091] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.807095] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jun  8 18:02:07 iMac kernel: [    0.807105] ehci-pci 0000:00:1d.7: debug port 2
Jun  8 18:02:07 iMac kernel: [    0.811036] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jun  8 18:02:07 iMac kernel: [    0.811050] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd0705800
Jun  8 18:02:07 iMac kernel: [    0.822474] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun  8 18:02:07 iMac kernel: [    0.822552] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun  8 18:02:07 iMac kernel: [    0.822557] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:02:07 iMac kernel: [    0.822560] usb usb2: Product: EHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.822563] usb usb2: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  8 18:02:07 iMac kernel: [    0.822566] usb usb2: SerialNumber: 0000:00:1d.7
Jun  8 18:02:07 iMac kernel: [    0.822905] hub 2-0:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    0.822910] hub 2-0:1.0: 8 ports detected
Jun  8 18:02:07 iMac kernel: [    0.823046] ehci-platform: EHCI generic platform driver
Jun  8 18:02:07 iMac kernel: [    0.823053] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun  8 18:02:07 iMac kernel: [    0.823056] ohci-pci: OHCI PCI platform driver
Jun  8 18:02:07 iMac kernel: [    0.823065] ohci-platform: OHCI generic platform driver
Jun  8 18:02:07 iMac kernel: [    0.823073] uhci_hcd: USB Universal Host Controller Interface driver
Jun  8 18:02:07 iMac kernel: [    0.823153] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.823157] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jun  8 18:02:07 iMac kernel: [    0.823162] uhci_hcd 0000:00:1a.0: detected 2 ports
Jun  8 18:02:07 iMac kernel: [    0.823186] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003060
Jun  8 18:02:07 iMac kernel: [    0.823218] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun  8 18:02:07 iMac kernel: [    0.823220] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:02:07 iMac kernel: [    0.823221] usb usb3: Product: UHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.823222] usb usb3: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  8 18:02:07 iMac kernel: [    0.823223] usb usb3: SerialNumber: 0000:00:1a.0
Jun  8 18:02:07 iMac kernel: [    0.823568] hub 3-0:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    0.823573] hub 3-0:1.0: 2 ports detected
Jun  8 18:02:07 iMac kernel: [    0.823718] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.823722] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun  8 18:02:07 iMac kernel: [    0.823727] uhci_hcd 0000:00:1d.0: detected 2 ports
Jun  8 18:02:07 iMac kernel: [    0.823743] uhci_hcd 0000:00:1d.0: irq 19, io base 0x00003040
Jun  8 18:02:07 iMac kernel: [    0.823773] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun  8 18:02:07 iMac kernel: [    0.823775] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:02:07 iMac kernel: [    0.823776] usb usb4: Product: UHCI Host Controller
Jun  8 18:02:07 iMac kernel: [    0.823777] usb usb4: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  8 18:02:07 iMac kernel: [    0.823778] usb usb4: SerialNumber: 0000:00:1d.0
Jun  8 18:02:07 iMac kernel: [    0.824147] hub 4-0:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    0.824155] hub 4-0:1.0: 2 ports detected
Jun  8 18:02:07 iMac kernel: [    0.824259] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun  8 18:02:07 iMac kernel: [    1.555250] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    1.623181] tsc: Refined TSC clocksource calibration: 2792.999 MHz
Jun  8 18:02:07 iMac kernel: [    1.687779] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
Jun  8 18:02:07 iMac kernel: [    1.687781] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  8 18:02:07 iMac kernel: [    1.688175] hub 1-1:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    1.688454] hub 1-1:1.0: 4 ports detected
Jun  8 18:02:07 iMac kernel: [    1.799495] usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    1.866949] i8042: No controller found
Jun  8 18:02:07 iMac kernel: [    1.867458] mousedev: PS/2 mouse device common for all mice
Jun  8 18:02:07 iMac kernel: [    1.868271] rtc_cmos 00:03: RTC can wake from S4
Jun  8 18:02:07 iMac kernel: [    1.868557] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun  8 18:02:07 iMac kernel: [    1.868591] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun  8 18:02:07 iMac kernel: [    1.868697] device-mapper: uevent: version 1.0.3
Jun  8 18:02:07 iMac kernel: [    1.868892] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Jun  8 18:02:07 iMac kernel: [    1.868923] ledtrig-cpu: registered to indicate activity on CPUs
Jun  8 18:02:07 iMac kernel: [    1.869071] TCP: cubic registered
Jun  8 18:02:07 iMac kernel: [    1.869157] NET: Registered protocol family 10
Jun  8 18:02:07 iMac kernel: [    1.869482] NET: Registered protocol family 17
Jun  8 18:02:07 iMac kernel: [    1.869503] Key type dns_resolver registered
Jun  8 18:02:07 iMac kernel: [    1.870226] Loading compiled-in X.509 certificates
Jun  8 18:02:07 iMac kernel: [    1.871018] Loaded X.509 cert 'Magrathea: Glacier signing key: c284edaccf0b473652c34d23bec356944236e63b'
Jun  8 18:02:07 iMac kernel: [    1.871033] registered taskstats version 1
Jun  8 18:02:07 iMac kernel: [    1.875166] Key type trusted registered
Jun  8 18:02:07 iMac kernel: [    1.882478] Key type encrypted registered
Jun  8 18:02:07 iMac kernel: [    1.882492] AppArmor: AppArmor sha1 policy hashing enabled
Jun  8 18:02:07 iMac kernel: [    1.882498] ima: No TPM chip found, activating TPM-bypass!
Jun  8 18:02:07 iMac kernel: [    1.882527] evm: HMAC attrs: 0x1
Jun  8 18:02:07 iMac kernel: [    1.883253]   Magic number: 3:259:34
Jun  8 18:02:07 iMac kernel: [    1.883313] memory memory70: hash matches
Jun  8 18:02:07 iMac kernel: [    1.883475] rtc_cmos 00:03: setting system clock to 2015-06-08 16:01:56 UTC (1433779316)
Jun  8 18:02:07 iMac kernel: [    1.885400] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun  8 18:02:07 iMac kernel: [    1.885402] EDD information not available.
Jun  8 18:02:07 iMac kernel: [    1.885455] PM: Hibernation image not present or could not be loaded.
Jun  8 18:02:07 iMac kernel: [    1.932148] usb 2-1: New USB device found, idVendor=0424, idProduct=2514
Jun  8 18:02:07 iMac kernel: [    1.932153] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  8 18:02:07 iMac kernel: [    1.932702] hub 2-1:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    1.932892] hub 2-1:1.0: 4 ports detected
Jun  8 18:02:07 iMac kernel: [    2.019736] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    2.114044] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500
Jun  8 18:02:07 iMac kernel: [    2.114050] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:02:07 iMac kernel: [    2.114054] usb 1-1.1: Product: BRCM2046 Hub
Jun  8 18:02:07 iMac kernel: [    2.114057] usb 1-1.1: Manufacturer: Apple Inc.
Jun  8 18:02:07 iMac kernel: [    2.114453] hub 1-1.1:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    2.114647] hub 1-1.1:1.0: 3 ports detected
Jun  8 18:02:07 iMac kernel: [    2.139713] ata2.01: failed to resume link (SControl 0)
Jun  8 18:02:07 iMac kernel: [    2.139791] ata1.01: failed to resume link (SControl 0)
Jun  8 18:02:07 iMac kernel: [    2.187876] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    2.284727] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=8403
Jun  8 18:02:07 iMac kernel: [    2.284731] usb 1-1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun  8 18:02:07 iMac kernel: [    2.284734] usb 1-1.2: Product: Card Reader
Jun  8 18:02:07 iMac kernel: [    2.284737] usb 1-1.2: Manufacturer: Apple
Jun  8 18:02:07 iMac kernel: [    2.284740] usb 1-1.2: SerialNumber: 000000009833
Jun  8 18:02:07 iMac kernel: [    2.295927] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun  8 18:02:07 iMac kernel: [    2.295942] ata2.01: SATA link down (SStatus 4 SControl 0)
Jun  8 18:02:07 iMac kernel: [    2.295954] ata2.01: link offline, clearing class 3 to NONE
Jun  8 18:02:07 iMac kernel: [    2.296065] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun  8 18:02:07 iMac kernel: [    2.296076] ata1.01: SATA link down (SStatus 4 SControl 0)
Jun  8 18:02:07 iMac kernel: [    2.304168] ata2.00: ATAPI: OPTIARC DVD RW AD-5680H, 3AHB, max UDMA/100
Jun  8 18:02:07 iMac kernel: [    2.304798] ata1.00: ATA-8: WDC WD1001FALS-40U9B0, 20.04F20, max UDMA/133
Jun  8 18:02:07 iMac kernel: [    2.304803] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun  8 18:02:07 iMac kernel: [    2.312831] ata1.00: configured for UDMA/133
Jun  8 18:02:07 iMac kernel: [    2.313180] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1001FALS-4 4F20 PQ: 0 ANSI: 5
Jun  8 18:02:07 iMac kernel: [    2.313737] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun  8 18:02:07 iMac kernel: [    2.313770] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun  8 18:02:07 iMac kernel: [    2.313784] sd 0:0:0:0: [sda] Write Protect is off
Jun  8 18:02:07 iMac kernel: [    2.313785] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun  8 18:02:07 iMac kernel: [    2.313796] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun  8 18:02:07 iMac kernel: [    2.320057] ata2.00: configured for UDMA/100
Jun  8 18:02:07 iMac kernel: [    2.336529] scsi 1:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5680H  3AHB PQ: 0 ANSI: 5
Jun  8 18:02:07 iMac kernel: [    2.372094] usb 1-1.4: new high-speed USB device number 5 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    2.375753] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
Jun  8 18:02:07 iMac kernel: [    2.375758] cdrom: Uniform CD-ROM driver Revision: 3.20
Jun  8 18:02:07 iMac kernel: [    2.376119] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun  8 18:02:07 iMac kernel: [    2.376356] sr 1:0:0:0: Attached scsi generic sg1 type 5
Jun  8 18:02:07 iMac kernel: [    2.381558]  sda: sda1 sda2 sda3
Jun  8 18:02:07 iMac kernel: [    2.382257] sd 0:0:0:0: [sda] Attached SCSI disk
Jun  8 18:02:07 iMac kernel: [    2.383571] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
Jun  8 18:02:07 iMac kernel: [    2.383573] Write protecting the kernel read-only data: 12288k
Jun  8 18:02:07 iMac kernel: [    2.385051] Freeing unused kernel memory: 556K (ffff880001775000 - ffff880001800000)
Jun  8 18:02:07 iMac kernel: [    2.386225] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
Jun  8 18:02:07 iMac kernel: [    2.416862] pps_core: LinuxPPS API ver. 1 registered
Jun  8 18:02:07 iMac kernel: [    2.416865] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun  8 18:02:07 iMac kernel: [    2.418213] PTP clock support registered
Jun  8 18:02:07 iMac kernel: [    2.421385] tg3.c:v3.137 (May 11, 2014)
Jun  8 18:02:07 iMac kernel: [    2.443367] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address d4:9a:20:d1:18:0a
Jun  8 18:02:07 iMac kernel: [    2.443370] tg3 0000:02:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
Jun  8 18:02:07 iMac kernel: [    2.443372] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
Jun  8 18:02:07 iMac kernel: [    2.443373] tg3 0000:02:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
Jun  8 18:02:07 iMac kernel: [    2.473093] usb 1-1.4: New USB device found, idVendor=05ac, idProduct=1006
Jun  8 18:02:07 iMac kernel: [    2.473099] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 18:02:07 iMac kernel: [    2.473103] usb 1-1.4: Product: Keyboard Hub
Jun  8 18:02:07 iMac kernel: [    2.473106] usb 1-1.4: Manufacturer: Apple, Inc.
Jun  8 18:02:07 iMac kernel: [    2.473109] usb 1-1.4: SerialNumber: 000000000000
Jun  8 18:02:07 iMac kernel: [    2.473594] hub 1-1.4:1.0: USB hub found
Jun  8 18:02:07 iMac kernel: [    2.473817] hub 1-1.4:1.0: 3 ports detected
Jun  8 18:02:07 iMac kernel: [    2.476116] firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jun  8 18:02:07 iMac kernel: [    2.477701] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Jun  8 18:02:07 iMac kernel: [    2.477824] scsi2 : usb-storage 1-1.2:1.0
Jun  8 18:02:07 iMac kernel: [    2.477882] usbcore: registered new interface driver usb-storage
Jun  8 18:02:07 iMac kernel: [    2.479190] usbcore: registered new interface driver uas
Jun  8 18:02:07 iMac kernel: [    2.560218] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    2.624330] Switched to clocksource tsc
Jun  8 18:02:07 iMac kernel: [    2.670322] usb 2-1.1: New USB device found, idVendor=05ac, idProduct=8502
Jun  8 18:02:07 iMac kernel: [    2.670324] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 18:02:07 iMac kernel: [    2.670326] usb 2-1.1: Product: Built-in iSight
Jun  8 18:02:07 iMac kernel: [    2.670327] usb 2-1.1: Manufacturer: Apple Inc.
Jun  8 18:02:07 iMac kernel: [    2.670328] usb 2-1.1: SerialNumber: 8T9BKB2B577K3L00
Jun  8 18:02:07 iMac kernel: [    2.744273] usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    2.842664] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=8242
Jun  8 18:02:07 iMac kernel: [    2.842667] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:02:07 iMac kernel: [    2.842668] usb 2-1.2: Product: IR Receiver
Jun  8 18:02:07 iMac kernel: [    2.842669] usb 2-1.2: Manufacturer: Apple Computer, Inc.
Jun  8 18:02:07 iMac kernel: [    2.847682] hidraw: raw HID events driver (C) Jiri Kosina
Jun  8 18:02:07 iMac kernel: [    2.851541] usbcore: registered new interface driver usbhid
Jun  8 18:02:07 iMac kernel: [    2.851542] usbhid: USB HID core driver
Jun  8 18:02:07 iMac kernel: [    2.886128] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun  8 18:02:07 iMac kernel: [    2.920647] usb 2-1.4: new low-speed USB device number 5 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    2.976643] firewire_core 0000:05:00.0: created device fw0: GUID d49a20fffecbb5b6, S800
Jun  8 18:02:07 iMac kernel: [    2.976762] firewire_core 0000:05:00.0: phy config: new root=ffc1, gap_count=5
Jun  8 18:02:07 iMac kernel: [    3.043266] usb 2-1.4: New USB device found, idVendor=045e, idProduct=0040
Jun  8 18:02:07 iMac kernel: [    3.043272] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:02:07 iMac kernel: [    3.043276] usb 2-1.4: Product: Microsoft Wheel Mouse Optical®
Jun  8 18:02:07 iMac kernel: [    3.043279] usb 2-1.4: Manufacturer: Microsoft
Jun  8 18:02:07 iMac kernel: [    3.120843] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    3.217532] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215
Jun  8 18:02:07 iMac kernel: [    3.217538] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 18:02:07 iMac kernel: [    3.217541] usb 1-1.1.1: Product: Bluetooth USB Host Controller
Jun  8 18:02:07 iMac kernel: [    3.217545] usb 1-1.1.1: Manufacturer: Apple Inc.
Jun  8 18:02:07 iMac kernel: [    3.217547] usb 1-1.1.1: SerialNumber: 64B9E8E21B57
Jun  8 18:02:07 iMac kernel: [    3.288986] usb 1-1.4.2: new low-speed USB device number 7 using ehci-pci
Jun  8 18:02:07 iMac kernel: [    3.387704] usb 1-1.4.2: New USB device found, idVendor=05ac, idProduct=0221
Jun  8 18:02:07 iMac kernel: [    3.387710] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:02:07 iMac kernel: [    3.387713] usb 1-1.4.2: Product: Apple Keyboard
Jun  8 18:02:07 iMac kernel: [    3.387716] usb 1-1.4.2: Manufacturer: Apple, Inc
Jun  8 18:02:07 iMac kernel: [    3.479013] scsi 2:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
Jun  8 18:02:07 iMac kernel: [    3.479647] sd 2:0:0:0: Attached scsi generic sg2 type 0
Jun  8 18:02:07 iMac kernel: [    3.481182] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun  8 18:02:07 iMac kernel: [    3.526090] random: init urandom read with 124 bits of entropy available
Jun  8 18:02:07 iMac kernel: [    3.617924] random: nonblocking pool is initialized
Jun  8 18:02:07 iMac kernel: [    5.239805] Adding 8377340k swap on /dev/sda3.  Priority:-1 extents:1 across:8377340k FS
Jun  8 18:02:07 iMac kernel: [    7.545590] lp: driver loaded but no devices found
Jun  8 18:02:07 iMac kernel: [    7.644342] ppdev: user-space parallel port driver
Jun  8 18:02:07 iMac kernel: [    8.322737] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
Jun  8 18:02:07 iMac kernel: [    9.369717] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
Jun  8 18:02:07 iMac kernel: [    9.369723] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:02:07 iMac kernel: [    9.369726] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 18:02:07 iMac kernel: [    9.369728] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:02:07 iMac kernel: [    9.369729] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 18:02:07 iMac kernel: [    9.369731] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:02:07 iMac kernel: [    9.369732] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 18:02:07 iMac kernel: [    9.369734] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:02:07 iMac kernel: [    9.369735] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun  8 18:02:07 iMac kernel: [    9.398585] EDAC MC: Ver: 3.0.0
Jun  8 18:02:07 iMac kernel: [    9.465242] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
Jun  8 18:02:07 iMac kernel: [    9.465284] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jun  8 18:02:07 iMac kernel: [    9.465430] EDAC i7core: Driver loaded, 1 memory controller(s) found.
Jun  8 18:02:07 iMac kernel: [    9.482541] intel ips 0000:00:1f.6: Non-IPS CPU detected.
Jun  8 18:02:07 iMac kernel: [    9.482544] intel ips 0000:00:1f.6: IPS not supported on this CPU
Jun  8 18:02:07 iMac kernel: [    9.579017] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun  8 18:02:07 iMac kernel: [   10.154623] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jun  8 18:02:07 iMac kernel: [   10.506381] applesmc: key=297 fan=3 temp=36 index=35 acc=0 lux=2 kbd=0
Jun  8 18:02:07 iMac kernel: [   10.658367] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
Jun  8 18:02:07 iMac kernel: [   10.658480] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jun  8 18:02:07 iMac kernel: [   10.658612] snd_hda_intel 0000:01:00.1: irq 46 for MSI/MSI-X
Jun  8 18:02:07 iMac kernel: [   10.772978] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input3
Jun  8 18:02:07 iMac kernel: [   10.915609] [drm] Initialized drm 1.1.0 20060810
Jun  8 18:02:07 iMac kernel: [   11.041563] sound hdaudioC0D0: autoconfig: line_outs=2 (0xa/0xb/0x0/0x0/0x0) type:speaker
Jun  8 18:02:07 iMac kernel: [   11.041567] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun  8 18:02:07 iMac kernel: [   11.041570] sound hdaudioC0D0:    hp_outs=1 (0x9/0x0/0x0/0x0/0x0)
Jun  8 18:02:07 iMac kernel: [   11.041572] sound hdaudioC0D0:    mono: mono_out=0x0
Jun  8 18:02:07 iMac kernel: [   11.041573] sound hdaudioC0D0:    dig-out=0x10/0x0
Jun  8 18:02:07 iMac kernel: [   11.041575] sound hdaudioC0D0:    inputs:
Jun  8 18:02:07 iMac kernel: [   11.041577] sound hdaudioC0D0:      Mic=0xd
Jun  8 18:02:07 iMac kernel: [   11.041579] sound hdaudioC0D0:      Line=0xc
Jun  8 18:02:07 iMac kernel: [   11.041581] sound hdaudioC0D0:    dig-in=0xf
Jun  8 18:02:07 iMac kernel: [   11.045692] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Jun  8 18:02:07 iMac kernel: [   11.045776] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
Jun  8 18:02:07 iMac kernel: [   11.045868] input: HDA Intel MID SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
Jun  8 18:02:07 iMac kernel: [   11.072119] cfg80211: Calling CRDA to update world regulatory domain
Jun  8 18:02:07 iMac kernel: [   11.571930] 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/input7
Jun  8 18:02:07 iMac kernel: [   11.572280] appleir 0003:05AC:8242.0001: input,hiddev0,hidraw0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
Jun  8 18:02:07 iMac kernel: [   11.573483] 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/input8
Jun  8 18:02:07 iMac kernel: [   11.573583] apple 0003:05AC:0221.0003: input,hidraw1: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input0
Jun  8 18:02:07 iMac kernel: [   11.574231] 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/input9
Jun  8 18:02:07 iMac kernel: [   11.574340] apple 0003:05AC:0221.0004: input,hidraw2: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input1
Jun  8 18:02:07 iMac kernel: [   11.574411] 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/input10
Jun  8 18:02:07 iMac kernel: [   11.574554] hid-generic 0003:045E:0040.0002: input,hidraw3: USB HID v1.00 Mouse [Microsoft Microsoft Wheel Mouse Optical®] on usb-0000:00:1d.7-1.4/input0
Jun  8 18:02:07 iMac kernel: [   11.688465] media: Linux media interface: v0.10
Jun  8 18:02:07 iMac kernel: [   11.761658] Linux video capture interface: v2.00
Jun  8 18:02:07 iMac kernel: [   11.922099] Bluetooth: Core ver 2.19
Jun  8 18:02:07 iMac kernel: [   11.922114] NET: Registered protocol family 31
Jun  8 18:02:07 iMac kernel: [   11.922116] Bluetooth: HCI device and connection manager initialized
Jun  8 18:02:07 iMac kernel: [   11.922123] Bluetooth: HCI socket layer initialized
Jun  8 18:02:07 iMac kernel: [   11.922125] Bluetooth: L2CAP socket layer initialized
Jun  8 18:02:07 iMac kernel: [   11.922134] Bluetooth: SCO socket layer initialized
Jun  8 18:02:07 iMac kernel: [   12.123806] usbcore: registered new interface driver btusb
Jun  8 18:02:07 iMac kernel: [   12.168316] [drm] VGACON disable radeon kernel modesetting.
Jun  8 18:02:07 iMac kernel: [   12.168319] [drm:radeon_init] *ERROR* No UMS support in radeon module!
Jun  8 18:02:07 iMac kernel: [   12.505472] ath: EEPROM regdomain: 0x37
Jun  8 18:02:07 iMac kernel: [   12.505474] ath: EEPROM indicates we should expect a direct regpair map
Jun  8 18:02:07 iMac kernel: [   12.505475] ath: Country alpha2 being used: AW
Jun  8 18:02:07 iMac kernel: [   12.505476] ath: Regpair used: 0x37
Jun  8 18:02:07 iMac kernel: [   12.517309] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8502)
Jun  8 18:02:07 iMac kernel: [   12.522601] 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  8 18:02:07 iMac kernel: [   12.522707] usbcore: registered new interface driver uvcvideo
Jun  8 18:02:07 iMac kernel: [   12.522708] USB Video Class driver (1.1.1)
Jun  8 18:02:07 iMac kernel: [   12.603899] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Jun  8 18:02:07 iMac kernel: [   12.604188] cfg80211: Calling CRDA to update world regulatory domain
Jun  8 18:02:07 iMac kernel: [   12.604239] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc90011a40000, irq=17
Jun  8 18:02:07 iMac kernel: [   12.867577] cfg80211: World regulatory domain updated:
Jun  8 18:02:07 iMac kernel: [   12.867579] cfg80211:  DFS Master region: unset
Jun  8 18:02:07 iMac kernel: [   12.867580] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  8 18:02:07 iMac kernel: [   12.867582] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:02:07 iMac kernel: [   12.867583] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:02:07 iMac kernel: [   12.867584] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:02:07 iMac kernel: [   12.867585] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:02:07 iMac kernel: [   12.867586] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:02:07 iMac kernel: [   12.867593] cfg80211: Calling CRDA for country: AW
Jun  8 18:02:07 iMac kernel: [   12.871649] cfg80211: Regulatory domain changed to country: AW
Jun  8 18:02:07 iMac kernel: [   12.871651] cfg80211:  DFS Master region: unset
Jun  8 18:02:07 iMac kernel: [   12.871652] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  8 18:02:07 iMac kernel: [   12.871653] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  8 18:02:07 iMac kernel: [   12.871654] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  8 18:02:07 iMac kernel: [   12.871655] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
Jun  8 18:02:07 iMac kernel: [   12.871656] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
Jun  8 18:02:07 iMac kernel: [   13.002990] audit: type=1400 audit(1433779327.605:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=484 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.002996] audit: type=1400 audit(1433779327.605:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=484 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.002999] audit: type=1400 audit(1433779327.605:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=484 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.003136] audit: type=1400 audit(1433779327.605:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=552 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.003144] audit: type=1400 audit(1433779327.605:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=552 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.003150] audit: type=1400 audit(1433779327.605:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=552 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.003157] audit: type=1400 audit(1433779327.605:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=485 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.003163] audit: type=1400 audit(1433779327.605:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=485 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.003167] audit: type=1400 audit(1433779327.605:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=485 comm="apparmor_parser"
Jun  8 18:02:07 iMac kernel: [   13.003355] audit: type=1400 audit(1433779327.605:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=484 comm="apparmor_parser"
Jun  8 18:02:09 iMac kernel: [   15.310363] Bluetooth: RFCOMM TTY layer initialized
Jun  8 18:02:09 iMac kernel: [   15.310373] Bluetooth: RFCOMM socket layer initialized
Jun  8 18:02:09 iMac kernel: [   15.310377] Bluetooth: RFCOMM ver 1.11
Jun  8 18:02:10 iMac kernel: [   15.396788] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jun  8 18:02:10 iMac kernel: [   15.396790] Bluetooth: BNEP filters: protocol multicast
Jun  8 18:02:10 iMac kernel: [   15.396798] Bluetooth: BNEP socket layer initialized
Jun  8 18:02:13 iMac kernel: [   18.768455] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
Jun  8 18:02:14 iMac kernel: [   19.553437] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun  8 18:02:14 iMac kernel: [   19.582421] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Jun  8 18:02:15 iMac kernel: [   20.629034] audit_printk_skb: 183 callbacks suppressed
Jun  8 18:02:15 iMac kernel: [   20.629037] audit: type=1400 audit(1433779335.221:73): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1029 comm="apparmor_parser"
Jun  8 18:02:15 iMac kernel: [   21.145179] tg3 0000:02:00.0 eth0: Link is up at 100 Mbps, full duplex
Jun  8 18:02:15 iMac kernel: [   21.145185] tg3 0000:02:00.0 eth0: Flow control is on for TX and on for RX
Jun  8 18:02:15 iMac kernel: [   21.145195] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun  8 18:02:40 iMac kernel: [   45.448436] audit: type=1400 audit(1433779360.021:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2105 comm="apparmor_parser"
Jun  8 18:02:40 iMac kernel: [   45.448443] audit: type=1400 audit(1433779360.021:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2105 comm="apparmor_parser"
Jun  8 18:02:40 iMac kernel: [   45.448749] audit: type=1400 audit(1433779360.021:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2105 comm="apparmor_parser"
Jun  8 18:02:49 iMac kernel: [   55.103617] firewire_core 0000:05:00.0: giving up on node ffc0: reading config rom failed: timeout
Jun  8 18:11:43 iMac kernel: [    0.000000] Initializing cgroup subsys cpuset
Jun  8 18:11:43 iMac kernel: [    0.000000] Initializing cgroup subsys cpu
Jun  8 18:11:43 iMac kernel: [    0.000000] Initializing cgroup subsys cpuacct
Jun  8 18:11:43 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  8 18:11:43 iMac kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=d0f0acaf-84e8-410d-bdf2-2e6caf6d8d79 ro quiet splash vt.handoff=7
Jun  8 18:11:43 iMac kernel: [    0.000000] KERNEL supported cpus:
Jun  8 18:11:43 iMac kernel: [    0.000000]   Intel GenuineIntel
Jun  8 18:11:43 iMac kernel: [    0.000000]   AMD AuthenticAMD
Jun  8 18:11:43 iMac kernel: [    0.000000]   Centaur CentaurHauls
Jun  8 18:11:43 iMac kernel: [    0.000000] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf65cfff] usable
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf65d000-0x00000000bf6eefff] ACPI NVS
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf6ef000-0x00000000bf7f5fff] ACPI data
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7f6000-0x00000000bf7fefff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7ff000-0x00000000bf7fffff] ACPI data
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
Jun  8 18:11:43 iMac kernel: [    0.000000] NX (Execute Disable) protection: active
Jun  8 18:11:43 iMac kernel: [    0.000000] SMBIOS 2.4 present.
Jun  8 18:11:43 iMac kernel: [    0.000000] DMI: Apple Inc. iMac11,1/Mac-F2268DAE, BIOS    IM111.88Z.0034.B02.1003171314 03/17/10
Jun  8 18:11:43 iMac kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun  8 18:11:43 iMac kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun  8 18:11:43 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  8 18:11:43 iMac kernel: [    0.000000] e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000
Jun  8 18:11:43 iMac kernel: [    0.000000] MTRR default type: write-back
Jun  8 18:11:43 iMac kernel: [    0.000000] MTRR fixed ranges enabled:
Jun  8 18:11:43 iMac kernel: [    0.000000]   00000-9FFFF write-back
Jun  8 18:11:43 iMac kernel: [    0.000000]   A0000-BFFFF uncachable
Jun  8 18:11:43 iMac kernel: [    0.000000]   C0000-DFFFF write-protect
Jun  8 18:11:43 iMac kernel: [    0.000000]   E0000-FFFFF uncachable
Jun  8 18:11:43 iMac kernel: [    0.000000] MTRR variable ranges enabled:
Jun  8 18:11:43 iMac kernel: [    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
Jun  8 18:11:43 iMac kernel: [    0.000000]   1 disabled
Jun  8 18:11:43 iMac kernel: [    0.000000]   2 disabled
Jun  8 18:11:43 iMac kernel: [    0.000000]   3 disabled
Jun  8 18:11:43 iMac kernel: [    0.000000]   4 disabled
Jun  8 18:11:43 iMac kernel: [    0.000000]   5 disabled
Jun  8 18:11:43 iMac kernel: [    0.000000]   6 disabled
Jun  8 18:11:43 iMac kernel: [    0.000000]   7 disabled
Jun  8 18:11:43 iMac kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun  8 18:11:43 iMac kernel: [    0.000000] e820: last_pfn = 0xbf65d max_arch_pfn = 0x400000000
Jun  8 18:11:43 iMac kernel: [    0.000000] Scanning 1 areas for low memory corruption
Jun  8 18:11:43 iMac kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
Jun  8 18:11:43 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Jun  8 18:11:43 iMac kernel: [    0.000000] BRK [0x01fbd000, 0x01fbdfff] PGTABLE
Jun  8 18:11:43 iMac kernel: [    0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
Jun  8 18:11:43 iMac kernel: [    0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
Jun  8 18:11:43 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23fe00000-0x23fffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0x23fe00000-0x23fffffff] page 2M
Jun  8 18:11:43 iMac kernel: [    0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
Jun  8 18:11:43 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23c000000-0x23fdfffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0x23c000000-0x23fdfffff] page 2M
Jun  8 18:11:43 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0x200000000-0x23bffffff] page 2M
Jun  8 18:11:43 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xbf65cfff]
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0x00200000-0xbf5fffff] page 2M
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0xbf600000-0xbf65cfff] page 4k
Jun  8 18:11:43 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
Jun  8 18:11:43 iMac kernel: [    0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
Jun  8 18:11:43 iMac kernel: [    0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
Jun  8 18:11:43 iMac kernel: [    0.000000] RAMDISK: [mem 0x35ad8000-0x36d63fff]
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: Early table checksum verification disabled
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE )
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: XSDT 0x00000000BF70E1C0 00008C (v01 APPLE  Apple00  00000034      01000013)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: FACP 0x00000000BF70B000 0000F4 (v04 APPLE  Apple00  00000034 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: DSDT 0x00000000BF6FF000 0050F3 (v01 APPLE  iMac     00110001 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: FACS 0x00000000BF665000 000040
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: ASF! 0x00000000BF70D000 0000A5 (v32 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: HPET 0x00000000BF70A000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF709000 0000BC (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF708000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: MCFG 0x00000000BF707000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: SBST 0x00000000BF706000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: ECDT 0x00000000BF705000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FB000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FA000 000774 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6F8000 000A10 (v01 PmRef  CpuPm    00003000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FE000 0000FA (v01 SataRe SataPri  00001000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FD000 0000FA (v01 SataRe SataSec  00001000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  8 18:11:43 iMac kernel: [    0.000000] No NUMA configuration found
Jun  8 18:11:43 iMac kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]   NODE_DATA [mem 0x23fff6000-0x23fffafff]
Jun  8 18:11:43 iMac kernel: [    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
Jun  8 18:11:43 iMac kernel: [    0.000000] Zone ranges:
Jun  8 18:11:43 iMac kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000]   Normal   [mem 0x100000000-0x23fffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] Movable zone start for each node
Jun  8 18:11:43 iMac kernel: [    0.000000] Early memory node ranges
Jun  8 18:11:43 iMac kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
Jun  8 18:11:43 iMac kernel: [    0.000000]   node   0: [mem 0x00100000-0xbf65cfff]
Jun  8 18:11:43 iMac kernel: [    0.000000]   node   0: [mem 0x100000000-0x23fffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] On node 0 totalpages: 2094587
Jun  8 18:11:43 iMac kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Jun  8 18:11:43 iMac kernel: [    0.000000]   DMA zone: 21 pages reserved
Jun  8 18:11:43 iMac kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Jun  8 18:11:43 iMac kernel: [    0.000000]   DMA32 zone: 12186 pages used for memmap
Jun  8 18:11:43 iMac kernel: [    0.000000]   DMA32 zone: 779869 pages, LIFO batch:31
Jun  8 18:11:43 iMac kernel: [    0.000000]   Normal zone: 20480 pages used for memmap
Jun  8 18:11:43 iMac kernel: [    0.000000]   Normal zone: 1310720 pages, LIFO batch:31
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun  8 18:11:43 iMac kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: IRQ0 used by override.
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: IRQ2 used by override.
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: IRQ9 used by override.
Jun  8 18:11:43 iMac kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Jun  8 18:11:43 iMac kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun  8 18:11:43 iMac kernel: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun  8 18:11:43 iMac kernel: [    0.000000] nr_irqs_gsi: 40
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf65d000-0xbf6eefff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf6ef000-0xbf7f5fff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7f6000-0xbf7fefff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7ff000-0xbf7fffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed1afff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Jun  8 18:11:43 iMac kernel: [    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun  8 18:11:43 iMac kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Jun  8 18:11:43 iMac kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jun  8 18:11:43 iMac kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88023fc00000 s81408 r8192 d20992 u262144
Jun  8 18:11:43 iMac kernel: [    0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
Jun  8 18:11:43 iMac kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun  8 18:11:43 iMac kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2061836
Jun  8 18:11:43 iMac kernel: [    0.000000] Policy zone: Normal
Jun  8 18:11:43 iMac kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=d0f0acaf-84e8-410d-bdf2-2e6caf6d8d79 ro quiet splash vt.handoff=7
Jun  8 18:11:43 iMac kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun  8 18:11:43 iMac kernel: [    0.000000] AGP: Checking aperture...
Jun  8 18:11:43 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  8 18:11:43 iMac kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jun  8 18:11:43 iMac kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun  8 18:11:43 iMac kernel: [    0.000000] Memory: 8144852K/8378348K available (7626K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 233496K reserved)
Jun  8 18:11:43 iMac kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun  8 18:11:43 iMac kernel: [    0.000000] Hierarchical RCU implementation.
Jun  8 18:11:43 iMac kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Jun  8 18:11:43 iMac kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jun  8 18:11:43 iMac kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Jun  8 18:11:43 iMac kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Jun  8 18:11:43 iMac kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jun  8 18:11:43 iMac kernel: [    0.000000] NR_IRQS:16640 nr_irqs:744 16
Jun  8 18:11:43 iMac kernel: [    0.000000] vt handoff: transparent VT on vt#7
Jun  8 18:11:43 iMac kernel: [    0.000000] Console: colour dummy device 80x25
Jun  8 18:11:43 iMac kernel: [    0.000000] console [tty0] enabled
Jun  8 18:11:43 iMac kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Jun  8 18:11:43 iMac kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun  8 18:11:43 iMac kernel: [    0.000000] hpet clockevent registered
Jun  8 18:11:43 iMac kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Jun  8 18:11:43 iMac kernel: [    0.000000] tsc: Detected 2792.777 MHz processor
Jun  8 18:11:43 iMac kernel: [    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5585.55 BogoMIPS (lpj=11171108)
Jun  8 18:11:43 iMac kernel: [    0.000033] pid_max: default: 32768 minimum: 301
Jun  8 18:11:43 iMac kernel: [    0.000040] ACPI: Core revision 20140424
Jun  8 18:11:43 iMac kernel: [    0.004384] ACPI: All ACPI Tables successfully acquired
Jun  8 18:11:43 iMac kernel: [    0.004619] Security Framework initialized
Jun  8 18:11:43 iMac kernel: [    0.004638] AppArmor: AppArmor initialized
Jun  8 18:11:43 iMac kernel: [    0.004639] Yama: becoming mindful.
Jun  8 18:11:43 iMac kernel: [    0.005116] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun  8 18:11:43 iMac kernel: [    0.006821] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun  8 18:11:43 iMac kernel: [    0.007600] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  8 18:11:43 iMac kernel: [    0.007609] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  8 18:11:43 iMac kernel: [    0.007841] Initializing cgroup subsys memory
Jun  8 18:11:43 iMac kernel: [    0.007861] Initializing cgroup subsys devices
Jun  8 18:11:43 iMac kernel: [    0.007867] Initializing cgroup subsys freezer
Jun  8 18:11:43 iMac kernel: [    0.007870] Initializing cgroup subsys net_cls
Jun  8 18:11:43 iMac kernel: [    0.007873] Initializing cgroup subsys blkio
Jun  8 18:11:43 iMac kernel: [    0.007877] Initializing cgroup subsys perf_event
Jun  8 18:11:43 iMac kernel: [    0.007878] Initializing cgroup subsys net_prio
Jun  8 18:11:43 iMac kernel: [    0.007884] Initializing cgroup subsys hugetlb
Jun  8 18:11:43 iMac kernel: [    0.007903] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.007905] CPU: Physical Processor ID: 0
Jun  8 18:11:43 iMac kernel: [    0.007905] CPU: Processor Core ID: 0
Jun  8 18:11:43 iMac kernel: [    0.007910] mce: CPU supports 9 MCE banks
Jun  8 18:11:43 iMac kernel: [    0.007918] CPU0: Thermal monitoring enabled (TM1)
Jun  8 18:11:43 iMac kernel: [    0.007925] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jun  8 18:11:43 iMac kernel: [    0.007925] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jun  8 18:11:43 iMac kernel: [    0.007925] tlb_flushall_shift: 6
Jun  8 18:11:43 iMac kernel: [    0.008012] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
Jun  8 18:11:43 iMac kernel: [    0.008690] ftrace: allocating 29244 entries in 115 pages
Jun  8 18:11:43 iMac kernel: [    0.020661] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun  8 18:11:43 iMac kernel: [    0.060382] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz (fam: 06, model: 1e, stepping: 05)
Jun  8 18:11:43 iMac kernel: [    0.165621] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
Jun  8 18:11:43 iMac kernel: [    0.165634] perf_event_intel: CPU erratum AAJ80 worked around
Jun  8 18:11:43 iMac kernel: [    0.165635] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
Jun  8 18:11:43 iMac kernel: [    0.165637] ... version:                3
Jun  8 18:11:43 iMac kernel: [    0.165638] ... bit width:              48
Jun  8 18:11:43 iMac kernel: [    0.165638] ... generic registers:      4
Jun  8 18:11:43 iMac kernel: [    0.165639] ... value mask:             0000ffffffffffff
Jun  8 18:11:43 iMac kernel: [    0.165640] ... max period:             000000007fffffff
Jun  8 18:11:43 iMac kernel: [    0.165640] ... fixed-purpose events:   3
Jun  8 18:11:43 iMac kernel: [    0.165641] ... event mask:             000000070000000f
Jun  8 18:11:43 iMac kernel: [    0.167199] x86: Booting SMP configuration:
Jun  8 18:11:43 iMac kernel: [    0.167201] .... node  #0, CPUs:      #1
Jun  8 18:11:43 iMac kernel: [    0.178297] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.180494] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun  8 18:11:43 iMac kernel: [    0.180577]  #2
Jun  8 18:11:43 iMac kernel: [    0.191616] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.193810]  #3<6>[    0.204851] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.218083]  #4
Jun  8 18:11:43 iMac kernel: [    0.218084] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.231313]  #5
Jun  8 18:11:43 iMac kernel: [    0.231314] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.244541]  #6
Jun  8 18:11:43 iMac kernel: [    0.244542] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.257775]  #7
Jun  8 18:11:43 iMac kernel: [    0.257775] Disabled fast string operations
Jun  8 18:11:43 iMac kernel: [    0.259890] x86: Booted up 1 node, 8 CPUs
Jun  8 18:11:43 iMac kernel: [    0.259894] smpboot: Total of 8 processors activated (44684.43 BogoMIPS)
Jun  8 18:11:43 iMac kernel: [    0.265237] devtmpfs: initialized
Jun  8 18:11:43 iMac kernel: [    0.269007] evm: security.selinux
Jun  8 18:11:43 iMac kernel: [    0.269008] evm: security.SMACK64
Jun  8 18:11:43 iMac kernel: [    0.269009] evm: security.SMACK64EXEC
Jun  8 18:11:43 iMac kernel: [    0.269010] evm: security.SMACK64TRANSMUTE
Jun  8 18:11:43 iMac kernel: [    0.269010] evm: security.SMACK64MMAP
Jun  8 18:11:43 iMac kernel: [    0.269011] evm: security.ima
Jun  8 18:11:43 iMac kernel: [    0.269012] evm: security.capability
Jun  8 18:11:43 iMac kernel: [    0.269056] PM: Registering ACPI NVS region [mem 0xbf65d000-0xbf6eefff] (598016 bytes)
Jun  8 18:11:43 iMac kernel: [    0.269838] pinctrl core: initialized pinctrl subsystem
Jun  8 18:11:43 iMac kernel: [    0.269900] regulator-dummy: no parameters
Jun  8 18:11:43 iMac kernel: [    0.269931] RTC time: 16:11:28, date: 06/08/15
Jun  8 18:11:43 iMac kernel: [    0.269973] NET: Registered protocol family 16
Jun  8 18:11:43 iMac kernel: [    0.270105] cpuidle: using governor ladder
Jun  8 18:11:43 iMac kernel: [    0.270107] cpuidle: using governor menu
Jun  8 18:11:43 iMac kernel: [    0.270149] ACPI: bus type PCI registered
Jun  8 18:11:43 iMac kernel: [    0.270151] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun  8 18:11:43 iMac kernel: [    0.270215] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun  8 18:11:43 iMac kernel: [    0.270217] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun  8 18:11:43 iMac kernel: [    0.270650] PCI: Using configuration type 1 for base access
Jun  8 18:11:43 iMac kernel: [    0.274151] ACPI: Added _OSI(Module Device)
Jun  8 18:11:43 iMac kernel: [    0.274153] ACPI: Added _OSI(Processor Device)
Jun  8 18:11:43 iMac kernel: [    0.274154] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun  8 18:11:43 iMac kernel: [    0.274155] ACPI: Added _OSI(Processor Aggregator Device)
Jun  8 18:11:43 iMac kernel: [    0.274877] ACPI : EC: EC description table is found, configuring boot EC
Jun  8 18:11:43 iMac kernel: [    0.277785] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun  8 18:11:43 iMac kernel: [    0.278071] ACPI: Dynamic OEM Table Load:
Jun  8 18:11:43 iMac kernel: [    0.278078] ACPI: SSDT 0xFFFF880233FA8000 0004BD (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.278350] ACPI: Dynamic OEM Table Load:
Jun  8 18:11:43 iMac kernel: [    0.278355] ACPI: SSDT 0xFFFF880233FA8800 0006E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.285959] ACPI: Dynamic OEM Table Load:
Jun  8 18:11:43 iMac kernel: [    0.285965] ACPI: SSDT 0xFFFF880233C19000 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.289861] ACPI: Dynamic OEM Table Load:
Jun  8 18:11:43 iMac kernel: [    0.289866] ACPI: SSDT 0xFFFF880233F80A00 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
Jun  8 18:11:43 iMac kernel: [    0.294654] ACPI: Interpreter enabled
Jun  8 18:11:43 iMac kernel: [    0.294659] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Jun  8 18:11:43 iMac kernel: [    0.294662] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Jun  8 18:11:43 iMac kernel: [    0.294673] ACPI: (supports S0 S3 S4 S5)
Jun  8 18:11:43 iMac kernel: [    0.294674] ACPI: Using IOAPIC for interrupt routing
Jun  8 18:11:43 iMac kernel: [    0.294695] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun  8 18:11:43 iMac kernel: [    0.298265] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun  8 18:11:43 iMac kernel: [    0.298270] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  8 18:11:43 iMac kernel: [    0.298296] \_SB_.PCI0:_OSC invalid UUID
Jun  8 18:11:43 iMac kernel: [    0.298297] _OSC request data:1 1f 0 
Jun  8 18:11:43 iMac kernel: [    0.298300] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun  8 18:11:43 iMac kernel: [    0.298835] PCI host bridge to bus 0000:00
Jun  8 18:11:43 iMac kernel: [    0.298837] pci_bus 0000:00: root bus resource [bus 00-fe]
Jun  8 18:11:43 iMac kernel: [    0.298839] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Jun  8 18:11:43 iMac kernel: [    0.298840] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Jun  8 18:11:43 iMac kernel: [    0.298842] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun  8 18:11:43 iMac kernel: [    0.298843] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
Jun  8 18:11:43 iMac kernel: [    0.298851] pci 0000:00:00.0: [8086:d131] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.298940] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
Jun  8 18:11:43 iMac kernel: [    0.298987] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.299018] pci 0000:00:03.0: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.299052] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
Jun  8 18:11:43 iMac kernel: [    0.299138] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
Jun  8 18:11:43 iMac kernel: [    0.299222] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
Jun  8 18:11:43 iMac kernel: [    0.299301] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
Jun  8 18:11:43 iMac kernel: [    0.299374] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
Jun  8 18:11:43 iMac kernel: [    0.299444] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
Jun  8 18:11:43 iMac kernel: [    0.299527] pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
Jun  8 18:11:43 iMac kernel: [    0.299565] pci 0000:00:1a.0: reg 0x20: [io  0x3060-0x307f]
Jun  8 18:11:43 iMac kernel: [    0.299658] pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
Jun  8 18:11:43 iMac kernel: [    0.299677] pci 0000:00:1a.7: reg 0x10: [mem 0xd0705c00-0xd0705fff]
Jun  8 18:11:43 iMac kernel: [    0.299758] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.299803] pci 0000:00:1a.7: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.299841] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
Jun  8 18:11:43 iMac kernel: [    0.299856] pci 0000:00:1b.0: reg 0x10: [mem 0xd0700000-0xd0703fff 64bit]
Jun  8 18:11:43 iMac kernel: [    0.299922] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.299954] pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.299987] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
Jun  8 18:11:43 iMac kernel: [    0.300051] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.300083] pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.300118] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
Jun  8 18:11:43 iMac kernel: [    0.300181] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.300213] pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.300246] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
Jun  8 18:11:43 iMac kernel: [    0.300310] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.300342] pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.300375] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
Jun  8 18:11:43 iMac kernel: [    0.300434] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.300466] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.300500] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
Jun  8 18:11:43 iMac kernel: [    0.300559] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.300623] pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
Jun  8 18:11:43 iMac kernel: [    0.300660] pci 0000:00:1d.0: reg 0x20: [io  0x3040-0x305f]
Jun  8 18:11:43 iMac kernel: [    0.300754] pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
Jun  8 18:11:43 iMac kernel: [    0.300772] pci 0000:00:1d.7: reg 0x10: [mem 0xd0705800-0xd0705bff]
Jun  8 18:11:43 iMac kernel: [    0.300853] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.300896] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.300930] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jun  8 18:11:43 iMac kernel: [    0.301023] pci 0000:00:1f.0: [8086:3b02] type 00 class 0x060100
Jun  8 18:11:43 iMac kernel: [    0.301171] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
Jun  8 18:11:43 iMac kernel: [    0.301184] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
Jun  8 18:11:43 iMac kernel: [    0.301191] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
Jun  8 18:11:43 iMac kernel: [    0.301197] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
Jun  8 18:11:43 iMac kernel: [    0.301204] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
Jun  8 18:11:43 iMac kernel: [    0.301210] pci 0000:00:1f.2: reg 0x20: [io  0x3020-0x302f]
Jun  8 18:11:43 iMac kernel: [    0.301216] pci 0000:00:1f.2: reg 0x24: [io  0xffe0-0xffef]
Jun  8 18:11:43 iMac kernel: [    0.301295] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
Jun  8 18:11:43 iMac kernel: [    0.301309] pci 0000:00:1f.3: reg 0x10: [mem 0xd0706000-0xd07060ff 64bit]
Jun  8 18:11:43 iMac kernel: [    0.301326] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Jun  8 18:11:43 iMac kernel: [    0.301397] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
Jun  8 18:11:43 iMac kernel: [    0.301417] pci 0000:00:1f.6: reg 0x10: [mem 0xd0704000-0xd0704fff 64bit]
Jun  8 18:11:43 iMac kernel: [    0.301579] pci 0000:01:00.0: [1002:944a] type 00 class 0x030000
Jun  8 18:11:43 iMac kernel: [    0.301591] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.301599] pci 0000:01:00.0: reg 0x18: [mem 0xd0620000-0xd062ffff 64bit]
Jun  8 18:11:43 iMac kernel: [    0.301604] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun  8 18:11:43 iMac kernel: [    0.301614] pci 0000:01:00.0: reg 0x30: [mem 0xd0600000-0xd061ffff pref]
Jun  8 18:11:43 iMac kernel: [    0.301640] pci 0000:01:00.0: supports D1 D2
Jun  8 18:11:43 iMac kernel: [    0.301656] pci 0000:01:00.0: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.301691] pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
Jun  8 18:11:43 iMac kernel: [    0.301703] pci 0000:01:00.1: reg 0x10: [mem 0xd0630000-0xd0633fff 64bit]
Jun  8 18:11:43 iMac kernel: [    0.301749] pci 0000:01:00.1: supports D1 D2
Jun  8 18:11:43 iMac kernel: [    0.311104] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  8 18:11:43 iMac kernel: [    0.311110] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  8 18:11:43 iMac kernel: [    0.311115] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  8 18:11:43 iMac kernel: [    0.311121] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.311222] pci 0000:02:00.0: [14e4:1684] type 00 class 0x020000
Jun  8 18:11:43 iMac kernel: [    0.311246] pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
Jun  8 18:11:43 iMac kernel: [    0.311391] pci 0000:02:00.0: PME# supported from D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.311429] pci 0000:02:00.0: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.319119] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  8 18:11:43 iMac kernel: [    0.319127] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  8 18:11:43 iMac kernel: [    0.319226] pci 0000:03:00.0: [168c:002a] type 00 class 0x028000
Jun  8 18:11:43 iMac kernel: [    0.319250] pci 0000:03:00.0: reg 0x10: [mem 0xd0400000-0xd040ffff 64bit]
Jun  8 18:11:43 iMac kernel: [    0.319370] pci 0000:03:00.0: supports D1
Jun  8 18:11:43 iMac kernel: [    0.319372] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
Jun  8 18:11:43 iMac kernel: [    0.319400] pci 0000:03:00.0: System wakeup disabled by ACPI
Jun  8 18:11:43 iMac kernel: [    0.319428] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Jun  8 18:11:43 iMac kernel: [    0.319436] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  8 18:11:43 iMac kernel: [    0.319440] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  8 18:11:43 iMac kernel: [    0.319518] pci 0000:04:00.0: [104c:823e] type 01 class 0x060400
Jun  8 18:11:43 iMac kernel: [    0.319642] pci 0000:04:00.0: supports D1 D2
Jun  8 18:11:43 iMac kernel: [    0.327129] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  8 18:11:43 iMac kernel: [    0.327137] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:11:43 iMac kernel: [    0.327248] pci 0000:05:00.0: [104c:823f] type 00 class 0x0c0010
Jun  8 18:11:43 iMac kernel: [    0.327273] pci 0000:05:00.0: reg 0x10: [mem 0xd0304000-0xd03047ff]
Jun  8 18:11:43 iMac kernel: [    0.327287] pci 0000:05:00.0: reg 0x14: [mem 0xd0300000-0xd0303fff]
Jun  8 18:11:43 iMac kernel: [    0.327389] pci 0000:05:00.0: supports D1 D2
Jun  8 18:11:43 iMac kernel: [    0.327391] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
Jun  8 18:11:43 iMac kernel: [    0.327487] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  8 18:11:43 iMac kernel: [    0.327498] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:11:43 iMac kernel: [    0.327579] acpiphp: Slot [1] registered
Jun  8 18:11:43 iMac kernel: [    0.327583] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  8 18:11:43 iMac kernel: [    0.327588] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  8 18:11:43 iMac kernel: [    0.327636] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  8 18:11:43 iMac kernel: [    0.327641] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  8 18:11:43 iMac kernel: [    0.327706] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
Jun  8 18:11:43 iMac kernel: [    0.327711] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  8 18:11:43 iMac kernel: [    0.327716] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun  8 18:11:43 iMac kernel: [    0.327717] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun  8 18:11:43 iMac kernel: [    0.327718] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun  8 18:11:43 iMac kernel: [    0.327720] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
Jun  8 18:11:43 iMac kernel: [    0.328073] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  8 18:11:43 iMac kernel: [    0.328114] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 18:11:43 iMac kernel: [    0.328154] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  8 18:11:43 iMac kernel: [    0.328194] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 18:11:43 iMac kernel: [    0.328232] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  8 18:11:43 iMac kernel: [    0.328273] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Jun  8 18:11:43 iMac kernel: [    0.328313] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  8 18:11:43 iMac kernel: [    0.328352] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  8 18:11:43 iMac kernel: [    0.328427] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
Jun  8 18:11:43 iMac kernel: [    0.328430] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  8 18:11:43 iMac kernel: [    0.328434] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun  8 18:11:43 iMac kernel: [    0.328469] PCI host bridge to bus 0000:ff
Jun  8 18:11:43 iMac kernel: [    0.328471] pci_bus 0000:ff: root bus resource [bus ff]
Jun  8 18:11:43 iMac kernel: [    0.328475] pci 0000:ff:00.0: [8086:2c51] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328514] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328554] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328591] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328629] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328665] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328701] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328737] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328773] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328808] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328844] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328882] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328918] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328953] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.328989] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
Jun  8 18:11:43 iMac kernel: [    0.329068] ACPI: Enabled 4 GPEs in block 00 to 3F
Jun  8 18:11:43 iMac kernel: [    0.329087] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
Jun  8 18:11:43 iMac kernel: [    0.329168] vgaarb: setting as boot device: PCI:0000:01:00.0
Jun  8 18:11:43 iMac kernel: [    0.329169] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Jun  8 18:11:43 iMac kernel: [    0.329172] vgaarb: loaded
Jun  8 18:11:43 iMac kernel: [    0.329173] vgaarb: bridge control possible 0000:01:00.0
Jun  8 18:11:43 iMac kernel: [    0.329370] SCSI subsystem initialized
Jun  8 18:11:43 iMac kernel: [    0.329410] libata version 3.00 loaded.
Jun  8 18:11:43 iMac kernel: [    0.329435] ACPI: bus type USB registered
Jun  8 18:11:43 iMac kernel: [    0.329451] usbcore: registered new interface driver usbfs
Jun  8 18:11:43 iMac kernel: [    0.329458] usbcore: registered new interface driver hub
Jun  8 18:11:43 iMac kernel: [    0.329473] usbcore: registered new device driver usb
Jun  8 18:11:43 iMac kernel: [    0.329584] PCI: Using ACPI for IRQ routing
Jun  8 18:11:43 iMac kernel: [    0.335083] PCI: pci_cache_line_size set to 64 bytes
Jun  8 18:11:43 iMac kernel: [    0.335150] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jun  8 18:11:43 iMac kernel: [    0.335152] e820: reserve RAM buffer [mem 0xbf65d000-0xbfffffff]
Jun  8 18:11:43 iMac kernel: [    0.335244] NetLabel: Initializing
Jun  8 18:11:43 iMac kernel: [    0.335245] NetLabel:  domain hash size = 128
Jun  8 18:11:43 iMac kernel: [    0.335246] NetLabel:  protocols = UNLABELED CIPSOv4
Jun  8 18:11:43 iMac kernel: [    0.335254] NetLabel:  unlabeled traffic allowed by default
Jun  8 18:11:43 iMac kernel: [    0.335319] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
Jun  8 18:11:43 iMac kernel: [    0.335326] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
Jun  8 18:11:43 iMac kernel: [    0.335330] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun  8 18:11:43 iMac kernel: [    0.337379] hpet: hpet2 irq 40 for MSI
Jun  8 18:11:43 iMac kernel: [    0.337416] hpet: hpet3 irq 41 for MSI
Jun  8 18:11:43 iMac kernel: [    0.337454] hpet: hpet4 irq 42 for MSI
Jun  8 18:11:43 iMac kernel: [    0.337486] hpet: hpet5 irq 43 for MSI
Jun  8 18:11:43 iMac kernel: [    0.337520] hpet: hpet6 irq 44 for MSI
Jun  8 18:11:43 iMac kernel: [    0.337621] Switched to clocksource hpet
Jun  8 18:11:43 iMac kernel: [    0.342140] AppArmor: AppArmor Filesystem Enabled
Jun  8 18:11:43 iMac kernel: [    0.342167] pnp: PnP ACPI init
Jun  8 18:11:43 iMac kernel: [    0.342180] ACPI: bus type PNP registered
Jun  8 18:11:43 iMac kernel: [    0.342323] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342327] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
Jun  8 18:11:43 iMac kernel: [    0.342374] system 00:01: [io  0x0680-0x069f] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342375] system 00:01: [io  0x1000-0x100f] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342377] system 00:01: [io  0xffff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342378] system 00:01: [io  0xffff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342380] system 00:01: [io  0x0400-0x047f] could not be reserved
Jun  8 18:11:43 iMac kernel: [    0.342381] system 00:01: [io  0x0500-0x057f] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342382] system 00:01: [io  0x164e-0x164f] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342384] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 18:11:43 iMac kernel: [    0.342437] system 00:02: [io  0x06a0-0x06af] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342439] system 00:02: [io  0x06b0-0x06ff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342441] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 18:11:43 iMac kernel: [    0.342464] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun  8 18:11:43 iMac kernel: [    0.342640] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342642] system 00:04: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342644] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342645] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342646] system 00:04: [mem 0xfeb00000-0xfeb03fff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342648] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun  8 18:11:43 iMac kernel: [    0.342649] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
Jun  8 18:11:43 iMac kernel: [    0.342651] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun  8 18:11:43 iMac kernel: [    0.342652] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  8 18:11:43 iMac kernel: [    0.342805] pnp: PnP ACPI: found 5 devices
Jun  8 18:11:43 iMac kernel: [    0.342806] ACPI: bus type PNP unregistered
Jun  8 18:11:43 iMac kernel: [    0.349062] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349065] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349071] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349073] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349089] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 04-05] add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349091] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-05] add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349097] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349100] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349107] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349108] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349118] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349120] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349121] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349122] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349124] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  8 18:11:43 iMac kernel: [    0.349125] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349126] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349128] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349129] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349130] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  8 18:11:43 iMac kernel: [    0.349135] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349138] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349140] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349142] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349145] pci 0000:00:1c.4: BAR 15: assigned [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349147] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jun  8 18:11:43 iMac kernel: [    0.349149] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun  8 18:11:43 iMac kernel: [    0.349151] pci 0000:00:1c.2: BAR 13: assigned [io  0x6000-0x6fff]
Jun  8 18:11:43 iMac kernel: [    0.349152] pci 0000:00:1c.3: BAR 13: assigned [io  0x7000-0x7fff]
Jun  8 18:11:43 iMac kernel: [    0.349154] pci 0000:00:1c.4: BAR 13: assigned [io  0x8000-0x8fff]
Jun  8 18:11:43 iMac kernel: [    0.349157] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  8 18:11:43 iMac kernel: [    0.349159] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  8 18:11:43 iMac kernel: [    0.349162] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  8 18:11:43 iMac kernel: [    0.349164] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349168] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  8 18:11:43 iMac kernel: [    0.349170] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun  8 18:11:43 iMac kernel: [    0.349173] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  8 18:11:43 iMac kernel: [    0.349176] pci 0000:00:1c.0:   bridge window [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349180] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  8 18:11:43 iMac kernel: [    0.349182] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun  8 18:11:43 iMac kernel: [    0.349185] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  8 18:11:43 iMac kernel: [    0.349188] pci 0000:00:1c.1:   bridge window [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349193] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  8 18:11:43 iMac kernel: [    0.349198] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:11:43 iMac kernel: [    0.349209] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  8 18:11:43 iMac kernel: [    0.349211] pci 0000:00:1c.2:   bridge window [io  0x6000-0x6fff]
Jun  8 18:11:43 iMac kernel: [    0.349214] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  8 18:11:43 iMac kernel: [    0.349217] pci 0000:00:1c.2:   bridge window [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349221] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  8 18:11:43 iMac kernel: [    0.349223] pci 0000:00:1c.3:   bridge window [io  0x7000-0x7fff]
Jun  8 18:11:43 iMac kernel: [    0.349226] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  8 18:11:43 iMac kernel: [    0.349229] pci 0000:00:1c.3:   bridge window [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349233] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  8 18:11:43 iMac kernel: [    0.349235] pci 0000:00:1c.4:   bridge window [io  0x8000-0x8fff]
Jun  8 18:11:43 iMac kernel: [    0.349239] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  8 18:11:43 iMac kernel: [    0.349241] pci 0000:00:1c.4:   bridge window [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349246] pci 0000:00:1e.0: PCI bridge to [bus 08]
Jun  8 18:11:43 iMac kernel: [    0.349249] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  8 18:11:43 iMac kernel: [    0.349256] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun  8 18:11:43 iMac kernel: [    0.349257] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun  8 18:11:43 iMac kernel: [    0.349258] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun  8 18:11:43 iMac kernel: [    0.349259] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  8 18:11:43 iMac kernel: [    0.349261] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jun  8 18:11:43 iMac kernel: [    0.349262] pci_bus 0000:01: resource 1 [mem 0xd0600000-0xd06fffff]
Jun  8 18:11:43 iMac kernel: [    0.349263] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349264] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Jun  8 18:11:43 iMac kernel: [    0.349266] pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
Jun  8 18:11:43 iMac kernel: [    0.349267] pci_bus 0000:02: resource 2 [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349268] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
Jun  8 18:11:43 iMac kernel: [    0.349270] pci_bus 0000:03: resource 1 [mem 0xd0400000-0xd04fffff]
Jun  8 18:11:43 iMac kernel: [    0.349271] pci_bus 0000:03: resource 2 [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349272] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
Jun  8 18:11:43 iMac kernel: [    0.349273] pci_bus 0000:04: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  8 18:11:43 iMac kernel: [    0.349275] pci_bus 0000:04: resource 2 [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349276] pci_bus 0000:05: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  8 18:11:43 iMac kernel: [    0.349277] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
Jun  8 18:11:43 iMac kernel: [    0.349279] pci_bus 0000:06: resource 1 [mem 0xd0200000-0xd02fffff]
Jun  8 18:11:43 iMac kernel: [    0.349280] pci_bus 0000:06: resource 2 [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349281] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
Jun  8 18:11:43 iMac kernel: [    0.349282] pci_bus 0000:07: resource 1 [mem 0xd0100000-0xd01fffff]
Jun  8 18:11:43 iMac kernel: [    0.349284] pci_bus 0000:07: resource 2 [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  8 18:11:43 iMac kernel: [    0.349285] pci_bus 0000:08: resource 1 [mem 0xd0000000-0xd00fffff]
Jun  8 18:11:43 iMac kernel: [    0.349286] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
Jun  8 18:11:43 iMac kernel: [    0.349287] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
Jun  8 18:11:43 iMac kernel: [    0.349289] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
Jun  8 18:11:43 iMac kernel: [    0.349290] pci_bus 0000:08: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  8 18:11:43 iMac kernel: [    0.349311] NET: Registered protocol family 2
Jun  8 18:11:43 iMac kernel: [    0.349502] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun  8 18:11:43 iMac kernel: [    0.349700] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun  8 18:11:43 iMac kernel: [    0.349954] TCP: Hash tables configured (established 65536 bind 65536)
Jun  8 18:11:43 iMac kernel: [    0.349980] TCP: reno registered
Jun  8 18:11:43 iMac kernel: [    0.349988] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun  8 18:11:43 iMac kernel: [    0.350042] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun  8 18:11:43 iMac kernel: [    0.350122] NET: Registered protocol family 1
Jun  8 18:11:43 iMac kernel: [    0.350965] pci 0000:01:00.0: Video device with shadowed ROM
Jun  8 18:11:43 iMac kernel: [    0.350977] PCI: CLS mismatch (256 != 64), using 64 bytes
Jun  8 18:11:43 iMac kernel: [    0.351032] Trying to unpack rootfs image as initramfs...
Jun  8 18:11:43 iMac kernel: [    0.624257] Freeing initrd memory: 18992K (ffff880035ad8000 - ffff880036d64000)
Jun  8 18:11:43 iMac kernel: [    0.624291] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun  8 18:11:43 iMac kernel: [    0.624294] software IO TLB [mem 0xbb65d000-0xbf65d000] (64MB) mapped at [ffff8800bb65d000-ffff8800bf65cfff]
Jun  8 18:11:43 iMac kernel: [    0.624622] microcode: CPU0 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624627] microcode: CPU1 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624634] microcode: CPU2 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624639] microcode: CPU3 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624644] microcode: CPU4 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624648] microcode: CPU5 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624653] microcode: CPU6 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624660] microcode: CPU7 sig=0x106e5, pf=0x2, revision=0x3
Jun  8 18:11:43 iMac kernel: [    0.624704] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun  8 18:11:43 iMac kernel: [    0.624724] Scanning for low memory corruption every 60 seconds
Jun  8 18:11:43 iMac kernel: [    0.624745] efifb: dmi detected iMac11,1 - framebuffer at 0xc0000000 (1920x1440, stride 7680)
Jun  8 18:11:43 iMac kernel: [    0.625033] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun  8 18:11:43 iMac kernel: [    0.625063] Initialise system trusted keyring
Jun  8 18:11:43 iMac kernel: [    0.625082] audit: initializing netlink subsys (disabled)
Jun  8 18:11:43 iMac kernel: [    0.625095] audit: type=2000 audit(1433779888.516:1): initialized
Jun  8 18:11:43 iMac kernel: [    0.625357] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun  8 18:11:43 iMac kernel: [    0.626684] zpool: loaded
Jun  8 18:11:43 iMac kernel: [    0.626685] zbud: loaded
Jun  8 18:11:43 iMac kernel: [    0.626816] VFS: Disk quotas dquot_6.5.2
Jun  8 18:11:43 iMac kernel: [    0.626847] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun  8 18:11:43 iMac kernel: [    0.627261] fuse init (API version 7.23)
Jun  8 18:11:43 iMac kernel: [    0.627336] msgmni has been set to 15945
Jun  8 18:11:43 iMac kernel: [    0.627390] Key type big_key registered
Jun  8 18:11:43 iMac kernel: [    0.627679] Key type asymmetric registered
Jun  8 18:11:43 iMac kernel: [    0.627681] Asymmetric key parser 'x509' registered
Jun  8 18:11:43 iMac kernel: [    0.627714] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun  8 18:11:43 iMac kernel: [    0.627767] io scheduler noop registered
Jun  8 18:11:43 iMac kernel: [    0.627769] io scheduler deadline registered (default)
Jun  8 18:11:43 iMac kernel: [    0.627810] io scheduler cfq registered
Jun  8 18:11:43 iMac kernel: [    0.628339] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jun  8 18:11:43 iMac kernel: [    0.628443] pcieport 0000:00:1c.4: enabling device (0000 -> 0003)
Jun  8 18:11:43 iMac kernel: [    0.628575] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun  8 18:11:43 iMac kernel: [    0.628588] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun  8 18:11:43 iMac kernel: [    0.628631] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
Jun  8 18:11:43 iMac kernel: [    0.628631] vesafb: scrolling: redraw
Jun  8 18:11:43 iMac kernel: [    0.628633] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun  8 18:11:43 iMac kernel: [    0.633021] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 10816k, total 10816k
Jun  8 18:11:43 iMac kernel: [    0.633150] Console: switching to colour frame buffer device 240x90
Jun  8 18:11:43 iMac kernel: [    0.633208] fb0: VESA VGA frame buffer device
Jun  8 18:11:43 iMac kernel: [    0.633235] intel_idle: MWAIT substates: 0x1120
Jun  8 18:11:43 iMac kernel: [    0.633246] intel_idle: v0.4 model 0x1E
Jun  8 18:11:43 iMac kernel: [    0.633247] intel_idle: lapic_timer_reliable_states 0x2
Jun  8 18:11:43 iMac kernel: [    0.633568] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun  8 18:11:43 iMac kernel: [    0.633571] ACPI: Power Button [PWRB]
Jun  8 18:11:43 iMac kernel: [    0.633605] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun  8 18:11:43 iMac kernel: [    0.633607] ACPI: Sleep Button [SLPB]
Jun  8 18:11:43 iMac kernel: [    0.633638] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun  8 18:11:43 iMac kernel: [    0.633639] ACPI: Power Button [PWRF]
Jun  8 18:11:43 iMac kernel: [    0.634043] GHES: HEST is not enabled!
Jun  8 18:11:43 iMac kernel: [    0.634131] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun  8 18:11:43 iMac kernel: [    0.635470] Linux agpgart interface v0.103
Jun  8 18:11:43 iMac kernel: [    0.636561] brd: module loaded
Jun  8 18:11:43 iMac kernel: [    0.637107] loop: module loaded
Jun  8 18:11:43 iMac kernel: [    0.637232] ata_piix 0000:00:1f.2: version 2.13
Jun  8 18:11:43 iMac kernel: [    0.637316] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun  8 18:11:43 iMac kernel: [    0.790472] scsi0 : ata_piix
Jun  8 18:11:43 iMac kernel: [    0.791051] scsi1 : ata_piix
Jun  8 18:11:43 iMac kernel: [    0.791145] ata1: SATA max UDMA/133 cmd 0x3088 ctl 0x3094 bmdma 0x3020 irq 19
Jun  8 18:11:43 iMac kernel: [    0.791152] ata2: SATA max UDMA/133 cmd 0x3080 ctl 0x3090 bmdma 0x3028 irq 19
Jun  8 18:11:43 iMac kernel: [    0.791273] libphy: Fixed MDIO Bus: probed
Jun  8 18:11:43 iMac kernel: [    0.791276] tun: Universal TUN/TAP device driver, 1.6
Jun  8 18:11:43 iMac kernel: [    0.791277] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun  8 18:11:43 iMac kernel: [    0.791399] PPP generic driver version 2.4.2
Jun  8 18:11:43 iMac kernel: [    0.791601] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun  8 18:11:43 iMac kernel: [    0.791612] ehci-pci: EHCI PCI platform driver
Jun  8 18:11:43 iMac kernel: [    0.791750] ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.791756] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jun  8 18:11:43 iMac kernel: [    0.791767] ehci-pci 0000:00:1a.7: debug port 2
Jun  8 18:11:43 iMac kernel: [    0.795684] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
Jun  8 18:11:43 iMac kernel: [    0.795700] ehci-pci 0000:00:1a.7: irq 16, io mem 0xd0705c00
Jun  8 18:11:43 iMac kernel: [    0.806261] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun  8 18:11:43 iMac kernel: [    0.806334] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun  8 18:11:43 iMac kernel: [    0.806338] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:11:43 iMac kernel: [    0.806342] usb usb1: Product: EHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.806345] usb usb1: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  8 18:11:43 iMac kernel: [    0.806348] usb usb1: SerialNumber: 0000:00:1a.7
Jun  8 18:11:43 iMac kernel: [    0.806727] hub 1-0:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    0.806733] hub 1-0:1.0: 6 ports detected
Jun  8 18:11:43 iMac kernel: [    0.806928] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.806933] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jun  8 18:11:43 iMac kernel: [    0.806942] ehci-pci 0000:00:1d.7: debug port 2
Jun  8 18:11:43 iMac kernel: [    0.810867] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jun  8 18:11:43 iMac kernel: [    0.810881] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd0705800
Jun  8 18:11:43 iMac kernel: [    0.822278] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun  8 18:11:43 iMac kernel: [    0.822355] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun  8 18:11:43 iMac kernel: [    0.822360] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:11:43 iMac kernel: [    0.822363] usb usb2: Product: EHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.822366] usb usb2: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  8 18:11:43 iMac kernel: [    0.822369] usb usb2: SerialNumber: 0000:00:1d.7
Jun  8 18:11:43 iMac kernel: [    0.822730] hub 2-0:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    0.822735] hub 2-0:1.0: 8 ports detected
Jun  8 18:11:43 iMac kernel: [    0.822869] ehci-platform: EHCI generic platform driver
Jun  8 18:11:43 iMac kernel: [    0.822875] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun  8 18:11:43 iMac kernel: [    0.822879] ohci-pci: OHCI PCI platform driver
Jun  8 18:11:43 iMac kernel: [    0.822888] ohci-platform: OHCI generic platform driver
Jun  8 18:11:43 iMac kernel: [    0.822895] uhci_hcd: USB Universal Host Controller Interface driver
Jun  8 18:11:43 iMac kernel: [    0.822976] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.822980] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jun  8 18:11:43 iMac kernel: [    0.822985] uhci_hcd 0000:00:1a.0: detected 2 ports
Jun  8 18:11:43 iMac kernel: [    0.823009] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003060
Jun  8 18:11:43 iMac kernel: [    0.823041] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun  8 18:11:43 iMac kernel: [    0.823043] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:11:43 iMac kernel: [    0.823044] usb usb3: Product: UHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.823045] usb usb3: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  8 18:11:43 iMac kernel: [    0.823046] usb usb3: SerialNumber: 0000:00:1a.0
Jun  8 18:11:43 iMac kernel: [    0.823409] hub 3-0:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    0.823420] hub 3-0:1.0: 2 ports detected
Jun  8 18:11:43 iMac kernel: [    0.823566] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.823570] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun  8 18:11:43 iMac kernel: [    0.823575] uhci_hcd 0000:00:1d.0: detected 2 ports
Jun  8 18:11:43 iMac kernel: [    0.823591] uhci_hcd 0000:00:1d.0: irq 19, io base 0x00003040
Jun  8 18:11:43 iMac kernel: [    0.823621] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun  8 18:11:43 iMac kernel: [    0.823623] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  8 18:11:43 iMac kernel: [    0.823624] usb usb4: Product: UHCI Host Controller
Jun  8 18:11:43 iMac kernel: [    0.823625] usb usb4: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  8 18:11:43 iMac kernel: [    0.823626] usb usb4: SerialNumber: 0000:00:1d.0
Jun  8 18:11:43 iMac kernel: [    0.823971] hub 4-0:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    0.823975] hub 4-0:1.0: 2 ports detected
Jun  8 18:11:43 iMac kernel: [    0.824080] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun  8 18:11:43 iMac kernel: [    1.555047] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    1.622986] tsc: Refined TSC clocksource calibration: 2792.999 MHz
Jun  8 18:11:43 iMac kernel: [    1.687580] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
Jun  8 18:11:43 iMac kernel: [    1.687583] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  8 18:11:43 iMac kernel: [    1.687975] hub 1-1:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    1.688256] hub 1-1:1.0: 4 ports detected
Jun  8 18:11:43 iMac kernel: [    1.799244] usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    1.866676] i8042: No controller found
Jun  8 18:11:43 iMac kernel: [    1.867148] mousedev: PS/2 mouse device common for all mice
Jun  8 18:11:43 iMac kernel: [    1.868386] rtc_cmos 00:03: RTC can wake from S4
Jun  8 18:11:43 iMac kernel: [    1.868715] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun  8 18:11:43 iMac kernel: [    1.868751] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun  8 18:11:43 iMac kernel: [    1.868844] device-mapper: uevent: version 1.0.3
Jun  8 18:11:43 iMac kernel: [    1.869117] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Jun  8 18:11:43 iMac kernel: [    1.869150] ledtrig-cpu: registered to indicate activity on CPUs
Jun  8 18:11:43 iMac kernel: [    1.869286] TCP: cubic registered
Jun  8 18:11:43 iMac kernel: [    1.869372] NET: Registered protocol family 10
Jun  8 18:11:43 iMac kernel: [    1.869732] NET: Registered protocol family 17
Jun  8 18:11:43 iMac kernel: [    1.869753] Key type dns_resolver registered
Jun  8 18:11:43 iMac kernel: [    1.870754] Loading compiled-in X.509 certificates
Jun  8 18:11:43 iMac kernel: [    1.871668] Loaded X.509 cert 'Magrathea: Glacier signing key: c284edaccf0b473652c34d23bec356944236e63b'
Jun  8 18:11:43 iMac kernel: [    1.871683] registered taskstats version 1
Jun  8 18:11:43 iMac kernel: [    1.876055] Key type trusted registered
Jun  8 18:11:43 iMac kernel: [    1.883803] Key type encrypted registered
Jun  8 18:11:43 iMac kernel: [    1.883815] AppArmor: AppArmor sha1 policy hashing enabled
Jun  8 18:11:43 iMac kernel: [    1.883820] ima: No TPM chip found, activating TPM-bypass!
Jun  8 18:11:43 iMac kernel: [    1.883846] evm: HMAC attrs: 0x1
Jun  8 18:11:43 iMac kernel: [    1.884606]   Magic number: 3:912:185
Jun  8 18:11:43 iMac kernel: [    1.884842] rtc_cmos 00:03: setting system clock to 2015-06-08 16:11:30 UTC (1433779890)
Jun  8 18:11:43 iMac kernel: [    1.886827] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun  8 18:11:43 iMac kernel: [    1.886828] EDD information not available.
Jun  8 18:11:43 iMac kernel: [    1.886880] PM: Hibernation image not present or could not be loaded.
Jun  8 18:11:43 iMac kernel: [    1.932033] usb 2-1: New USB device found, idVendor=0424, idProduct=2514
Jun  8 18:11:43 iMac kernel: [    1.932039] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  8 18:11:43 iMac kernel: [    1.932634] hub 2-1:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    1.932822] hub 2-1:1.0: 4 ports detected
Jun  8 18:11:43 iMac kernel: [    2.019538] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    2.113719] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500
Jun  8 18:11:43 iMac kernel: [    2.113725] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:11:43 iMac kernel: [    2.113728] usb 1-1.1: Product: BRCM2046 Hub
Jun  8 18:11:43 iMac kernel: [    2.113731] usb 1-1.1: Manufacturer: Apple Inc.
Jun  8 18:11:43 iMac kernel: [    2.114127] hub 1-1.1:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    2.114348] hub 1-1.1:1.0: 3 ports detected
Jun  8 18:11:43 iMac kernel: [    2.139491] ata2.01: failed to resume link (SControl 0)
Jun  8 18:11:43 iMac kernel: [    2.139565] ata1.01: failed to resume link (SControl 0)
Jun  8 18:11:43 iMac kernel: [    2.187677] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    2.284527] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=8403
Jun  8 18:11:43 iMac kernel: [    2.284532] usb 1-1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun  8 18:11:43 iMac kernel: [    2.284535] usb 1-1.2: Product: Card Reader
Jun  8 18:11:43 iMac kernel: [    2.284538] usb 1-1.2: Manufacturer: Apple
Jun  8 18:11:43 iMac kernel: [    2.284540] usb 1-1.2: SerialNumber: 000000009833
Jun  8 18:11:43 iMac kernel: [    2.295734] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun  8 18:11:43 iMac kernel: [    2.295750] ata2.01: SATA link down (SStatus 4 SControl 0)
Jun  8 18:11:43 iMac kernel: [    2.295762] ata2.01: link offline, clearing class 3 to NONE
Jun  8 18:11:43 iMac kernel: [    2.295873] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun  8 18:11:43 iMac kernel: [    2.295883] ata1.01: SATA link down (SStatus 4 SControl 0)
Jun  8 18:11:43 iMac kernel: [    2.303904] ata2.00: ATAPI: OPTIARC DVD RW AD-5680H, 3AHB, max UDMA/100
Jun  8 18:11:43 iMac kernel: [    2.304443] ata1.00: ATA-8: WDC WD1001FALS-40U9B0, 20.04F20, max UDMA/133
Jun  8 18:11:43 iMac kernel: [    2.304447] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun  8 18:11:43 iMac kernel: [    2.312497] ata1.00: configured for UDMA/133
Jun  8 18:11:43 iMac kernel: [    2.312907] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1001FALS-4 4F20 PQ: 0 ANSI: 5
Jun  8 18:11:43 iMac kernel: [    2.313521] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun  8 18:11:43 iMac kernel: [    2.313554] sd 0:0:0:0: [sda] Write Protect is off
Jun  8 18:11:43 iMac kernel: [    2.313556] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun  8 18:11:43 iMac kernel: [    2.313567] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun  8 18:11:43 iMac kernel: [    2.313606] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun  8 18:11:43 iMac kernel: [    2.319926] ata2.00: configured for UDMA/100
Jun  8 18:11:43 iMac kernel: [    2.336380] scsi 1:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5680H  3AHB PQ: 0 ANSI: 5
Jun  8 18:11:43 iMac kernel: [    2.371814]  sda: sda1 sda2 sda3
Jun  8 18:11:43 iMac kernel: [    2.371847] usb 1-1.4: new high-speed USB device number 5 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    2.372704] sd 0:0:0:0: [sda] Attached SCSI disk
Jun  8 18:11:43 iMac kernel: [    2.375486] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
Jun  8 18:11:43 iMac kernel: [    2.375490] cdrom: Uniform CD-ROM driver Revision: 3.20
Jun  8 18:11:43 iMac kernel: [    2.375826] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun  8 18:11:43 iMac kernel: [    2.376005] sr 1:0:0:0: Attached scsi generic sg1 type 5
Jun  8 18:11:43 iMac kernel: [    2.377422] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
Jun  8 18:11:43 iMac kernel: [    2.377424] Write protecting the kernel read-only data: 12288k
Jun  8 18:11:43 iMac kernel: [    2.378904] Freeing unused kernel memory: 556K (ffff880001775000 - ffff880001800000)
Jun  8 18:11:43 iMac kernel: [    2.380089] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
Jun  8 18:11:43 iMac kernel: [    2.411455] pps_core: LinuxPPS API ver. 1 registered
Jun  8 18:11:43 iMac kernel: [    2.411457] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun  8 18:11:43 iMac kernel: [    2.413219] PTP clock support registered
Jun  8 18:11:43 iMac kernel: [    2.416491] tg3.c:v3.137 (May 11, 2014)
Jun  8 18:11:43 iMac kernel: [    2.439150] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address d4:9a:20:d1:18:0a
Jun  8 18:11:43 iMac kernel: [    2.439154] tg3 0000:02:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
Jun  8 18:11:43 iMac kernel: [    2.439155] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
Jun  8 18:11:43 iMac kernel: [    2.439157] tg3 0000:02:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
Jun  8 18:11:43 iMac kernel: [    2.471879] firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jun  8 18:11:43 iMac kernel: [    2.472967] usb 1-1.4: New USB device found, idVendor=05ac, idProduct=1006
Jun  8 18:11:43 iMac kernel: [    2.472973] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 18:11:43 iMac kernel: [    2.472977] usb 1-1.4: Product: Keyboard Hub
Jun  8 18:11:43 iMac kernel: [    2.472980] usb 1-1.4: Manufacturer: Apple, Inc.
Jun  8 18:11:43 iMac kernel: [    2.472983] usb 1-1.4: SerialNumber: 000000000000
Jun  8 18:11:43 iMac kernel: [    2.473527] hub 1-1.4:1.0: USB hub found
Jun  8 18:11:43 iMac kernel: [    2.473690] hub 1-1.4:1.0: 3 ports detected
Jun  8 18:11:43 iMac kernel: [    2.477390] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Jun  8 18:11:43 iMac kernel: [    2.477731] scsi2 : usb-storage 1-1.2:1.0
Jun  8 18:11:43 iMac kernel: [    2.477794] usbcore: registered new interface driver usb-storage
Jun  8 18:11:43 iMac kernel: [    2.479204] usbcore: registered new interface driver uas
Jun  8 18:11:43 iMac kernel: [    2.560058] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    2.624168] Switched to clocksource tsc
Jun  8 18:11:43 iMac kernel: [    2.670081] usb 2-1.1: New USB device found, idVendor=05ac, idProduct=8502
Jun  8 18:11:43 iMac kernel: [    2.670087] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 18:11:43 iMac kernel: [    2.670090] usb 2-1.1: Product: Built-in iSight
Jun  8 18:11:43 iMac kernel: [    2.670094] usb 2-1.1: Manufacturer: Apple Inc.
Jun  8 18:11:43 iMac kernel: [    2.670096] usb 2-1.1: SerialNumber: 8T9BKB2B577K3L00
Jun  8 18:11:43 iMac kernel: [    2.756270] usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    2.854374] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=8242
Jun  8 18:11:43 iMac kernel: [    2.854377] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:11:43 iMac kernel: [    2.854378] usb 2-1.2: Product: IR Receiver
Jun  8 18:11:43 iMac kernel: [    2.854379] usb 2-1.2: Manufacturer: Apple Computer, Inc.
Jun  8 18:11:43 iMac kernel: [    2.858825] hidraw: raw HID events driver (C) Jiri Kosina
Jun  8 18:11:43 iMac kernel: [    2.862602] usbcore: registered new interface driver usbhid
Jun  8 18:11:43 iMac kernel: [    2.862604] usbhid: USB HID core driver
Jun  8 18:11:43 iMac kernel: [    2.891251] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun  8 18:11:43 iMac kernel: [    2.928454] usb 2-1.4: new low-speed USB device number 5 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    2.972676] firewire_core 0000:05:00.0: created device fw0: GUID d49a20fffecbb5b6, S800
Jun  8 18:11:43 iMac kernel: [    2.972712] firewire_core 0000:05:00.0: phy config: new root=ffc1, gap_count=5
Jun  8 18:11:43 iMac kernel: [    3.051197] usb 2-1.4: New USB device found, idVendor=045e, idProduct=0040
Jun  8 18:11:43 iMac kernel: [    3.051203] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:11:43 iMac kernel: [    3.051207] usb 2-1.4: Product: Microsoft Wheel Mouse Optical®
Jun  8 18:11:43 iMac kernel: [    3.051210] usb 2-1.4: Manufacturer: Microsoft
Jun  8 18:11:43 iMac kernel: [    3.128624] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    3.224974] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215
Jun  8 18:11:43 iMac kernel: [    3.224980] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  8 18:11:43 iMac kernel: [    3.224984] usb 1-1.1.1: Product: Bluetooth USB Host Controller
Jun  8 18:11:43 iMac kernel: [    3.224987] usb 1-1.1.1: Manufacturer: Apple Inc.
Jun  8 18:11:43 iMac kernel: [    3.224990] usb 1-1.1.1: SerialNumber: 64B9E8E21B57
Jun  8 18:11:43 iMac kernel: [    3.296795] usb 1-1.4.2: new low-speed USB device number 7 using ehci-pci
Jun  8 18:11:43 iMac kernel: [    3.395637] usb 1-1.4.2: New USB device found, idVendor=05ac, idProduct=0221
Jun  8 18:11:43 iMac kernel: [    3.395643] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  8 18:11:43 iMac kernel: [    3.395647] usb 1-1.4.2: Product: Apple Keyboard
Jun  8 18:11:43 iMac kernel: [    3.395650] usb 1-1.4.2: Manufacturer: Apple, Inc
Jun  8 18:11:43 iMac kernel: [    3.478972] scsi 2:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
Jun  8 18:11:43 iMac kernel: [    3.479596] sd 2:0:0:0: Attached scsi generic sg2 type 0
Jun  8 18:11:43 iMac kernel: [    3.481438] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun  8 18:11:43 iMac kernel: [    3.493001] random: nonblocking pool is initialized
Jun  8 18:11:43 iMac kernel: [    9.567787] Adding 8377340k swap on /dev/sda3.  Priority:-1 extents:1 across:8377340k FS
Jun  8 18:11:43 iMac kernel: [   10.363076] lp: driver loaded but no devices found
Jun  8 18:11:43 iMac kernel: [   10.368006] ppdev: user-space parallel port driver
Jun  8 18:11:43 iMac kernel: [   10.398922] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun  8 18:11:43 iMac kernel: [   10.406361] [drm] Initialized drm 1.1.0 20060810
Jun  8 18:11:43 iMac kernel: [   10.421289] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
Jun  8 18:11:43 iMac kernel: [   10.421294] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:11:43 iMac kernel: [   10.421297] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 18:11:43 iMac kernel: [   10.421300] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:11:43 iMac kernel: [   10.421301] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 18:11:43 iMac kernel: [   10.421303] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:11:43 iMac kernel: [   10.421304] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  8 18:11:43 iMac kernel: [   10.421306] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  8 18:11:43 iMac kernel: [   10.421307] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun  8 18:11:43 iMac kernel: [   10.428850] cfg80211: Calling CRDA to update world regulatory domain
Jun  8 18:11:43 iMac kernel: [   10.430321] intel ips 0000:00:1f.6: Non-IPS CPU detected.
Jun  8 18:11:43 iMac kernel: [   10.430323] intel ips 0000:00:1f.6: IPS not supported on this CPU
Jun  8 18:11:43 iMac kernel: [   10.434115] EDAC MC: Ver: 3.0.0
Jun  8 18:11:43 iMac kernel: [   10.435621] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
Jun  8 18:11:43 iMac kernel: [   10.435660] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jun  8 18:11:43 iMac kernel: [   10.435816] EDAC i7core: Driver loaded, 1 memory controller(s) found.
Jun  8 18:11:43 iMac kernel: [   10.455841] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
Jun  8 18:11:43 iMac kernel: [   10.455956] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jun  8 18:11:43 iMac kernel: [   10.455982] snd_hda_intel 0000:01:00.1: irq 46 for MSI/MSI-X
Jun  8 18:11:43 iMac kernel: [   10.467641] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input3
Jun  8 18:11:43 iMac kernel: [   10.471381] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jun  8 18:11:43 iMac kernel: [   10.478286] sound hdaudioC0D0: autoconfig: line_outs=2 (0xa/0xb/0x0/0x0/0x0) type:speaker
Jun  8 18:11:43 iMac kernel: [   10.478290] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun  8 18:11:43 iMac kernel: [   10.478292] sound hdaudioC0D0:    hp_outs=1 (0x9/0x0/0x0/0x0/0x0)
Jun  8 18:11:43 iMac kernel: [   10.478294] sound hdaudioC0D0:    mono: mono_out=0x0
Jun  8 18:11:43 iMac kernel: [   10.478296] sound hdaudioC0D0:    dig-out=0x10/0x0
Jun  8 18:11:43 iMac kernel: [   10.478298] sound hdaudioC0D0:    inputs:
Jun  8 18:11:43 iMac kernel: [   10.478300] sound hdaudioC0D0:      Mic=0xd
Jun  8 18:11:43 iMac kernel: [   10.478302] sound hdaudioC0D0:      Line=0xc
Jun  8 18:11:43 iMac kernel: [   10.478303] sound hdaudioC0D0:    dig-in=0xf
Jun  8 18:11:43 iMac kernel: [   10.482480] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Jun  8 18:11:43 iMac kernel: [   10.482571] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
Jun  8 18:11:43 iMac kernel: [   10.482658] input: HDA Intel MID SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
Jun  8 18:11:43 iMac kernel: [   10.586078] [drm] radeon kernel modesetting enabled.
Jun  8 18:11:43 iMac kernel: [   10.586133] checking generic (c0000000 a90000) vs hw (c0000000 10000000)
Jun  8 18:11:43 iMac kernel: [   10.586135] fb: switching to radeondrmfb from VESA VGA
Jun  8 18:11:43 iMac kernel: [   10.586173] Console: switching to colour dummy device 80x25
Jun  8 18:11:43 iMac kernel: [   10.586460] [drm] initializing kernel modesetting (RV770 0x1002:0x944A 0x106B:0x00B5).
Jun  8 18:11:43 iMac kernel: [   10.586471] [drm] register mmio base: 0xD0620000
Jun  8 18:11:43 iMac kernel: [   10.586472] [drm] register mmio size: 65536
Jun  8 18:11:43 iMac kernel: [   10.586490] radeon 0000:01:00.0: Invalid ROM contents
Jun  8 18:11:43 iMac kernel: [   10.586516] ATOM BIOS: 113
Jun  8 18:11:43 iMac kernel: [   10.586563] radeon 0000:01:00.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
Jun  8 18:11:43 iMac kernel: [   10.586566] radeon 0000:01:00.0: GTT: 1024M 0x0000000020000000 - 0x000000005FFFFFFF
Jun  8 18:11:43 iMac kernel: [   10.586567] [drm] Detected VRAM RAM=512M, BAR=256M
Jun  8 18:11:43 iMac kernel: [   10.586568] [drm] RAM width 256bits DDR
Jun  8 18:11:43 iMac kernel: [   10.586810] [TTM] Zone  kernel: Available graphics memory: 4083142 kiB
Jun  8 18:11:43 iMac kernel: [   10.586812] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
Jun  8 18:11:43 iMac kernel: [   10.586813] [TTM] Initializing pool allocator
Jun  8 18:11:43 iMac kernel: [   10.586817] [TTM] Initializing DMA pool allocator
Jun  8 18:11:43 iMac kernel: [   10.586831] [drm] radeon: 512M of VRAM memory ready
Jun  8 18:11:43 iMac kernel: [   10.586832] [drm] radeon: 1024M of GTT memory ready.
Jun  8 18:11:43 iMac kernel: [   10.586840] [drm] Loading RV770 Microcode
Jun  8 18:11:43 iMac kernel: [   10.732140] applesmc: key=297 fan=3 temp=36 index=35 acc=0 lux=2 kbd=0
Jun  8 18:11:43 iMac kernel: [   10.887489] ath: EEPROM regdomain: 0x37
Jun  8 18:11:43 iMac kernel: [   10.887491] ath: EEPROM indicates we should expect a direct regpair map
Jun  8 18:11:43 iMac kernel: [   10.887492] ath: Country alpha2 being used: AW
Jun  8 18:11:43 iMac kernel: [   10.887493] ath: Regpair used: 0x37
Jun  8 18:11:43 iMac kernel: [   10.896059] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Jun  8 18:11:43 iMac kernel: [   10.896369] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc90011a20000, irq=17
Jun  8 18:11:43 iMac kernel: [   10.896488] cfg80211: Calling CRDA to update world regulatory domain
Jun  8 18:11:43 iMac kernel: [   11.043875] cfg80211: World regulatory domain updated:
Jun  8 18:11:43 iMac kernel: [   11.043877] cfg80211:  DFS Master region: unset
Jun  8 18:11:43 iMac kernel: [   11.043878] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  8 18:11:43 iMac kernel: [   11.043880] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:11:43 iMac kernel: [   11.043881] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:11:43 iMac kernel: [   11.043882] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:11:43 iMac kernel: [   11.043883] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:11:43 iMac kernel: [   11.043884] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  8 18:11:43 iMac kernel: [   11.043892] cfg80211: Calling CRDA for country: AW
Jun  8 18:11:43 iMac kernel: [   11.047572] cfg80211: Regulatory domain changed to country: AW
Jun  8 18:11:43 iMac kernel: [   11.047574] cfg80211:  DFS Master region: unset
Jun  8 18:11:43 iMac kernel: [   11.047575] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  8 18:11:43 iMac kernel: [   11.047576] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  8 18:11:43 iMac kernel: [   11.047577] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  8 18:11:43 iMac kernel: [   11.047579] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
Jun  8 18:11:43 iMac kernel: [   11.047579] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
Jun  8 18:11:43 iMac kernel: [   11.412455] audit: type=1400 audit(1433779900.012:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=482 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412460] audit: type=1400 audit(1433779900.012:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=482 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412464] audit: type=1400 audit(1433779900.012:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=482 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412791] audit: type=1400 audit(1433779900.016:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=482 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412795] audit: type=1400 audit(1433779900.016:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=482 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412961] audit: type=1400 audit(1433779900.016:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=482 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412974] audit: type=1400 audit(1433779900.016:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=454 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412980] audit: type=1400 audit(1433779900.016:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=454 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412984] audit: type=1400 audit(1433779900.016:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=454 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.412990] audit: type=1400 audit(1433779900.016:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=453 comm="apparmor_parser"
Jun  8 18:11:43 iMac kernel: [   11.502561] 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/input7
Jun  8 18:11:43 iMac kernel: [   11.502670] 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  8 18:11:43 iMac kernel: [   11.503179] 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/input8
Jun  8 18:11:43 iMac kernel: [   11.503268] apple 0003:05AC:0221.0003: input,hidraw1: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input0
Jun  8 18:11:43 iMac kernel: [   11.503533] media: Linux media interface: v0.10
Jun  8 18:11:43 iMac kernel: [   11.504131] 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/input9
Jun  8 18:11:43 iMac kernel: [   11.504291] apple 0003:05AC:0221.0004: input,hidraw2: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input1
Jun  8 18:11:43 iMac kernel: [   11.506584] 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  8 18:11:43 iMac kernel: [   11.509537] 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  8 18:11:43 iMac kernel: [   11.509648] Linux video capture interface: v2.00
Jun  8 18:11:43 iMac kernel: [   11.510220] Bluetooth: Core ver 2.19
Jun  8 18:11:43 iMac kernel: [   11.510235] NET: Registered protocol family 31
Jun  8 18:11:43 iMac kernel: [   11.510237] Bluetooth: HCI device and connection manager initialized
Jun  8 18:11:43 iMac kernel: [   11.510245] Bluetooth: HCI socket layer initialized
Jun  8 18:11:43 iMac kernel: [   11.510247] Bluetooth: L2CAP socket layer initialized
Jun  8 18:11:43 iMac kernel: [   11.510257] Bluetooth: SCO socket layer initialized
Jun  8 18:11:43 iMac kernel: [   11.515304] usbcore: registered new interface driver btusb
Jun  8 18:11:43 iMac kernel: [   11.520215] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8502)
Jun  8 18:11:43 iMac kernel: [   11.525453] 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  8 18:11:43 iMac kernel: [   11.525623] usbcore: registered new interface driver uvcvideo
Jun  8 18:11:43 iMac kernel: [   11.525624] USB Video Class driver (1.1.1)
Jun  8 18:11:43 iMac kernel: [   11.553762] [drm] External GPIO thermal controller with fan control
Jun  8 18:11:43 iMac kernel: [   11.553785] [drm] radeon: power management initialized
Jun  8 18:11:43 iMac kernel: [   11.553793] [drm] GART: num cpu pages 262144, num gpu pages 262144
Jun  8 18:11:43 iMac kernel: [   11.555028] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
Jun  8 18:11:43 iMac kernel: [   11.571510] [drm] PCIE GART of 1024M enabled (table at 0x0000000000040000).
Jun  8 18:11:43 iMac kernel: [   11.571564] radeon 0000:01:00.0: WB enabled
Jun  8 18:11:43 iMac kernel: [   11.571567] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0xffff88022b2d1c00
Jun  8 18:11:43 iMac kernel: [   11.571568] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c and cpu addr 0xffff88022b2d1c0c
Jun  8 18:11:43 iMac kernel: [   11.571570] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jun  8 18:11:43 iMac kernel: [   11.571570] [drm] Driver supports precise vblank timestamp query.
Jun  8 18:11:43 iMac kernel: [   11.571572] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
Jun  8 18:11:43 iMac kernel: [   11.571587] radeon 0000:01:00.0: irq 47 for MSI/MSI-X
Jun  8 18:11:43 iMac kernel: [   11.571595] radeon 0000:01:00.0: radeon: using MSI.
Jun  8 18:11:43 iMac kernel: [   11.571615] [drm] radeon: irq initialized.
Jun  8 18:11:43 iMac kernel: [   11.618109] [drm] ring test on 0 succeeded in 1 usecs
Jun  8 18:11:43 iMac kernel: [   11.618115] [drm] ring test on 3 succeeded in 2 usecs
Jun  8 18:11:43 iMac kernel: [   11.618336] [drm] ib test on ring 0 succeeded in 0 usecs
Jun  8 18:11:43 iMac kernel: [   11.618353] [drm] ib test on ring 3 succeeded in 0 usecs
Jun  8 18:11:43 iMac kernel: [   11.619162] [drm] radeon atom DIG backlight initialized
Jun  8 18:11:43 iMac kernel: [   11.619164] [drm] Radeon Display Connectors
Jun  8 18:11:43 iMac kernel: [   11.619165] [drm] Connector 0:
Jun  8 18:11:43 iMac kernel: [   11.619166] [drm]   DP-1
Jun  8 18:11:43 iMac kernel: [   11.619166] [drm]   HPD2
Jun  8 18:11:43 iMac kernel: [   11.619167] [drm]   DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
Jun  8 18:11:43 iMac kernel: [   11.619168] [drm]   Encoders:
Jun  8 18:11:43 iMac kernel: [   11.619169] [drm]     DFP1: INTERNAL_UNIPHY
Jun  8 18:11:43 iMac kernel: [   11.619170] [drm] Connector 1:
Jun  8 18:11:43 iMac kernel: [   11.619170] [drm]   eDP-1
Jun  8 18:11:43 iMac kernel: [   11.619171] [drm]   HPD3
Jun  8 18:11:43 iMac kernel: [   11.619172] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
Jun  8 18:11:43 iMac kernel: [   11.619173] [drm]   Encoders:
Jun  8 18:11:43 iMac kernel: [   11.619173] [drm]     LCD1: INTERNAL_UNIPHY
Jun  8 18:11:43 iMac kernel: [   11.619174] [drm] Connector 2:
Jun  8 18:11:43 iMac kernel: [   11.619175] [drm]   VGA-1
Jun  8 18:11:43 iMac kernel: [   11.619176] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
Jun  8 18:11:43 iMac kernel: [   11.619176] [drm]   Encoders:
Jun  8 18:11:43 iMac kernel: [   11.619177] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
Jun  8 18:11:43 iMac kernel: [   11.766137] [drm] fb mappable at 0xC0241000
Jun  8 18:11:43 iMac kernel: [   11.766139] [drm] vram apper at 0xC0000000
Jun  8 18:11:43 iMac kernel: [   11.766140] [drm] size 14745600
Jun  8 18:11:43 iMac kernel: [   11.766141] [drm] fb depth is 24
Jun  8 18:11:43 iMac kernel: [   11.766141] [drm]    pitch is 10240
Jun  8 18:11:43 iMac kernel: [   11.766321] fbcon: radeondrmfb (fb0) is primary device
Jun  8 18:11:43 iMac kernel: [   11.766478] Console: switching to colour frame buffer device 320x90
Jun  8 18:11:43 iMac kernel: [   11.766546] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
Jun  8 18:11:43 iMac kernel: [   11.766548] radeon 0000:01:00.0: registered panic notifier
Jun  8 18:11:43 iMac kernel: [   11.777247] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
Jun  8 18:11:43 iMac kernel: [   13.655372] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
Jun  8 18:11:43 iMac kernel: [   15.250918] Bluetooth: RFCOMM TTY layer initialized
Jun  8 18:11:43 iMac kernel: [   15.250931] Bluetooth: RFCOMM socket layer initialized
Jun  8 18:11:43 iMac kernel: [   15.250936] Bluetooth: RFCOMM ver 1.11
Jun  8 18:11:43 iMac kernel: [   15.272381] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jun  8 18:11:43 iMac kernel: [   15.272383] Bluetooth: BNEP filters: protocol multicast
Jun  8 18:11:43 iMac kernel: [   15.272387] Bluetooth: BNEP socket layer initialized
Jun  8 18:11:46 iMac kernel: [   17.772394] tg3 0000:02:00.0: irq 48 for MSI/MSI-X
Jun  8 18:11:47 iMac kernel: [   18.544661] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun  8 18:11:47 iMac kernel: [   18.593171] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Jun  8 18:11:48 iMac kernel: [   20.149078] tg3 0000:02:00.0 eth0: Link is up at 100 Mbps, full duplex
Jun  8 18:11:48 iMac kernel: [   20.149084] tg3 0000:02:00.0 eth0: Flow control is on for TX and on for RX
Jun  8 18:11:48 iMac kernel: [   20.149094] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun  8 18:12:13 iMac kernel: [   45.333861] audit_printk_skb: 186 callbacks suppressed
Jun  8 18:12:13 iMac kernel: [   45.333864] audit: type=1400 audit(1433779933.898:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1745 comm="apparmor_parser"
Jun  8 18:12:13 iMac kernel: [   45.333870] audit: type=1400 audit(1433779933.898:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1745 comm="apparmor_parser"
Jun  8 18:12:13 iMac kernel: [   45.334177] audit: type=1400 audit(1433779933.898:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1745 comm="apparmor_parser"
Jun  8 18:12:23 iMac kernel: [   55.124136] firewire_core 0000:05:00.0: giving up on node ffc0: reading config rom failed: timeout
\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00