summaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: f932ca716cb0499b53c13f04492ae16641cb62db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
$ date
Friday 20 June  10:36:52 EST 2014
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at e99cfa2d0634 Merge tag 'dt-fixes-for-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux
Merging origin/master (894e552cfaa3 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security)
$ git merge origin/master
Updating e99cfa2d0634..894e552cfaa3
Fast-forward
 MAINTAINERS                               |   1 +
 arch/arm/include/asm/ftrace.h             |   2 +-
 arch/arm64/Kconfig                        |   3 +-
 arch/arm64/boot/dts/apm-mustang.dts       |   4 +
 arch/arm64/boot/dts/apm-storm.dtsi        |  36 +++-
 arch/arm64/configs/defconfig              |  15 ++
 arch/arm64/crypto/ghash-ce-core.S         |  92 ++++-----
 arch/arm64/crypto/ghash-ce-glue.c         |   5 +-
 arch/arm64/include/asm/Kbuild             |   1 -
 arch/arm64/include/asm/dma-mapping.h      |   2 -
 arch/arm64/include/asm/pgtable.h          |   2 +-
 arch/arm64/include/uapi/asm/posix_types.h |  10 +
 arch/arm64/include/uapi/asm/sigcontext.h  |   2 +-
 arch/arm64/kernel/entry-ftrace.S          |   2 +-
 arch/arm64/kernel/entry.S                 |   1 -
 arch/arm64/kernel/ptrace.c                |  32 ++-
 arch/arm64/mm/init.c                      |  10 +-
 arch/sparc/crypto/aes_glue.c              |   6 +-
 arch/sparc/include/asm/atomic_32.h        |   8 +-
 arch/sparc/include/asm/atomic_64.h        |  18 +-
 arch/sparc/include/asm/auxio.h            |   7 +
 arch/sparc/include/asm/auxio_32.h         |   6 +-
 arch/sparc/include/asm/auxio_64.h         |   6 +-
 arch/sparc/include/asm/bitext.h           |   6 +-
 arch/sparc/include/asm/bitops_32.h        |   6 +-
 arch/sparc/include/asm/bitops_64.h        |  24 +--
 arch/sparc/include/asm/btext.h            |   2 +-
 arch/sparc/include/asm/bug.h              |   4 +-
 arch/sparc/include/asm/cacheflush_32.h    |   8 +-
 arch/sparc/include/asm/cacheflush_64.h    |  24 +--
 arch/sparc/include/asm/checksum_32.h      |   4 +-
 arch/sparc/include/asm/checksum_64.h      |  32 +--
 arch/sparc/include/asm/cmpxchg_32.h       |   6 +-
 arch/sparc/include/asm/cmpxchg_64.h       |   4 +-
 arch/sparc/include/asm/cpudata.h          |  10 +
 arch/sparc/include/asm/cpudata_64.h       |   5 -
 arch/sparc/include/asm/delay_32.h         |   4 +-
 arch/sparc/include/asm/delay_64.h         |   4 +-
 arch/sparc/include/asm/device.h           |   2 +-
 arch/sparc/include/asm/dma-mapping.h      |   2 +-
 arch/sparc/include/asm/ebus_dma.h         |  16 +-
 arch/sparc/include/asm/floppy_32.h        |  14 +-
 arch/sparc/include/asm/floppy_64.h        |   2 +-
 arch/sparc/include/asm/ftrace.h           |   6 +-
 arch/sparc/include/asm/highmem.h          |  10 +-
 arch/sparc/include/asm/hvtramp.h          |   2 +-
 arch/sparc/include/asm/hypervisor.h       | 325 +++++++++++++++---------------
 arch/sparc/include/asm/idprom.h           |   2 +-
 arch/sparc/include/asm/io-unit.h          |   2 +-
 arch/sparc/include/asm/io_32.h            | 299 +++++----------------------
 arch/sparc/include/asm/io_64.h            |  21 +-
 arch/sparc/include/asm/iommu_32.h         |  10 +-
 arch/sparc/include/asm/iommu_64.h         |   6 +-
 arch/sparc/include/asm/irq_32.h           |   3 +-
 arch/sparc/include/asm/irq_64.h           |  44 ++--
 arch/sparc/include/asm/irqflags_32.h      |   6 +-
 arch/sparc/include/asm/kdebug_64.h        |   2 +-
 arch/sparc/include/asm/kgdb.h             |   5 +-
 arch/sparc/include/asm/kprobes.h          |   8 +-
 arch/sparc/include/asm/ldc.h              |  66 +++---
 arch/sparc/include/asm/leon.h             |  54 ++---
 arch/sparc/include/asm/leon_pci.h         |   4 +-
 arch/sparc/include/asm/mc146818rtc.h      |   5 +
 arch/sparc/include/asm/mdesc.h            |  32 +--
 arch/sparc/include/asm/mmu_64.h           |   6 +-
 arch/sparc/include/asm/mmu_context_64.h   |  24 ++-
 arch/sparc/include/asm/nmi.h              |  10 +-
 arch/sparc/include/asm/oplib_32.h         |  68 +++----
 arch/sparc/include/asm/oplib_64.h         | 112 +++++-----
 arch/sparc/include/asm/page.h             |   3 +
 arch/sparc/include/asm/page_64.h          |   8 +-
 arch/sparc/include/asm/pci_64.h           |  14 +-
 arch/sparc/include/asm/pcic.h             |   8 +-
 arch/sparc/include/asm/pcr.h              |   6 +-
 arch/sparc/include/asm/pgalloc_32.h       |   2 +
 arch/sparc/include/asm/pgalloc_64.h       |  16 +-
 arch/sparc/include/asm/pgtable_32.h       |  11 +-
 arch/sparc/include/asm/pgtable_64.h       |  58 +++---
 arch/sparc/include/asm/processor_32.h     |   5 +-
 arch/sparc/include/asm/processor_64.h     |   6 +-
 arch/sparc/include/asm/prom.h             |  24 +--
 arch/sparc/include/asm/ptrace.h           |   2 +-
 arch/sparc/include/asm/setup.h            |  39 +++-
 arch/sparc/include/asm/sfp-machine_32.h   |  28 +--
 arch/sparc/include/asm/smp_32.h           |   6 +-
 arch/sparc/include/asm/smp_64.h           |  24 ++-
 arch/sparc/include/asm/spitfire.h         |   2 +-
 arch/sparc/include/asm/stacktrace.h       |   2 +-
 arch/sparc/include/asm/starfire.h         |   8 +-
 arch/sparc/include/asm/string_32.h        |  12 +-
 arch/sparc/include/asm/string_64.h        |  12 +-
 arch/sparc/include/asm/switch_to_32.h     |   6 +-
 arch/sparc/include/asm/switch_to_64.h     |   4 +-
 arch/sparc/include/asm/syscalls.h         |   8 +-
 arch/sparc/include/asm/timer_32.h         |   6 +-
 arch/sparc/include/asm/timer_64.h         |   6 +-
 arch/sparc/include/asm/tlb_64.h           |   8 +-
 arch/sparc/include/asm/tlbflush_64.h      |  22 +-
 arch/sparc/include/asm/topology_64.h      |   2 +-
 arch/sparc/include/asm/trap_block.h       |   6 +-
 arch/sparc/include/asm/uaccess.h          |   2 +-
 arch/sparc/include/asm/uaccess_32.h       |  14 +-
 arch/sparc/include/asm/uaccess_64.h       |  50 ++---
 arch/sparc/include/asm/vio.h              |  36 ++--
 arch/sparc/include/asm/visasm.h           |   3 +-
 arch/sparc/include/asm/xor_64.h           |  28 +--
 arch/sparc/kernel/Makefile                |   1 -
 arch/sparc/kernel/audit.c                 |   8 +-
 arch/sparc/kernel/auxio_32.c              |   9 +-
 arch/sparc/kernel/btext.c                 |   2 +-
 arch/sparc/kernel/compat_audit.c          |   1 +
 arch/sparc/kernel/cpu.c                   |   1 +
 arch/sparc/kernel/cpumap.h                |   4 +-
 arch/sparc/kernel/devices.c               |  12 +-
 arch/sparc/kernel/entry.h                 | 259 ++++++++++++------------
 arch/sparc/kernel/iommu.c                 |   3 +-
 arch/sparc/kernel/iommu_common.h          |  14 +-
 arch/sparc/kernel/ioport.c                |   6 +-
 arch/sparc/kernel/irq.h                   |  11 +-
 arch/sparc/kernel/irq_32.c                |   1 +
 arch/sparc/kernel/kernel.h                | 124 ++++++++++--
 arch/sparc/kernel/kgdb_64.c               |   2 +
 arch/sparc/kernel/kprobes.c               |   5 +-
 arch/sparc/kernel/leon_kernel.c           |  10 +-
 arch/sparc/kernel/leon_pci.c              |  79 --------
 arch/sparc/kernel/leon_pci_grpci1.c       |  16 +-
 arch/sparc/kernel/leon_pci_grpci2.c       |  22 +-
 arch/sparc/kernel/leon_pmc.c              |   8 +-
 arch/sparc/kernel/leon_smp.c              |  13 +-
 arch/sparc/kernel/of_device_common.c      |   4 +-
 arch/sparc/kernel/pci.c                   |   1 +
 arch/sparc/kernel/pci_impl.h              |  30 +--
 arch/sparc/kernel/pci_sun4v.h             | 156 +++++++-------
 arch/sparc/kernel/pcic.c                  | 116 +----------
 arch/sparc/kernel/perf_event.c            |  23 ++-
 arch/sparc/kernel/process_32.c            |  12 +-
 arch/sparc/kernel/process_64.c            |   2 +-
 arch/sparc/kernel/prom.h                  |   2 +-
 arch/sparc/kernel/prom_64.c               |   5 +-
 arch/sparc/kernel/psycho_common.h         |  22 +-
 arch/sparc/kernel/ptrace_32.c             |   2 +
 arch/sparc/kernel/setup_32.c              |   4 +-
 arch/sparc/kernel/signal32.c              |  56 ++---
 arch/sparc/kernel/signal_32.c             |  11 +-
 arch/sparc/kernel/signal_64.c             |   6 +-
 arch/sparc/kernel/smp_32.c                |  13 +-
 arch/sparc/kernel/smp_64.c                |  16 +-
 arch/sparc/kernel/sun4d_irq.c             |  17 +-
 arch/sparc/kernel/sys_sparc32.c           |   2 +
 arch/sparc/kernel/sys_sparc_32.c          |  10 +-
 arch/sparc/kernel/sys_sparc_64.c          |   1 +
 arch/sparc/kernel/systbls.h               | 124 +++++++++---
 arch/sparc/kernel/tadpole.c               | 126 ------------
 arch/sparc/kernel/time_32.c               |   8 +-
 arch/sparc/kernel/traps_32.c              |   4 +-
 arch/sparc/kernel/traps_64.c              |  11 +-
 arch/sparc/kernel/unaligned_32.c          |   4 +
 arch/sparc/kernel/unaligned_64.c          |   2 +
 arch/sparc/kernel/windows.c               |   3 +
 arch/sparc/lib/Makefile                   |   2 +-
 arch/sparc/math-emu/sfp-util_32.h         |  20 +-
 arch/sparc/math-emu/sfp-util_64.h         |  12 +-
 arch/sparc/mm/fault_32.c                  |   9 +-
 arch/sparc/mm/fault_64.c                  |   4 +-
 arch/sparc/mm/init_32.c                   |   7 +-
 arch/sparc/mm/init_64.c                   |   9 +-
 arch/sparc/mm/init_64.h                   |   4 +-
 arch/sparc/mm/io-unit.c                   |  21 +-
 arch/sparc/mm/iommu.c                     |  25 ++-
 arch/sparc/mm/leon_mm.c                   |   4 +-
 arch/sparc/mm/mm_32.h                     |  24 +++
 arch/sparc/mm/srmmu.c                     |  13 +-
 arch/sparc/mm/srmmu.h                     |   4 -
 arch/sparc/mm/tsb.c                       |   1 +
 arch/sparc/prom/misc_64.c                 |   5 -
 arch/x86/xen/enlighten.c                  |   5 +-
 arch/x86/xen/setup.c                      |  60 +++---
 arch/x86/xen/xen-ops.h                    |   1 +
 drivers/xen/grant-table.c                 |   3 +-
 include/linux/profile.h                   |   1 +
 kernel/sysctl.c                           |   4 -
 181 files changed, 1761 insertions(+), 1960 deletions(-)
 create mode 100644 arch/arm64/include/uapi/asm/posix_types.h
 delete mode 100644 arch/sparc/kernel/tadpole.c
 create mode 100644 arch/sparc/mm/mm_32.h
 delete mode 100644 arch/sparc/mm/srmmu.h
Merging fixes/master (4b660a7f5c80 Linux 3.15-rc6)
$ git merge fixes/master
Already up-to-date.
Merging kbuild-current/rc-fixes (c14105628b2e kbuild: fix a typo in a kbuild document)
$ git merge kbuild-current/rc-fixes
Merge made by the 'recursive' strategy.
 Documentation/DocBook/media/Makefile |  4 ++--
 Documentation/kbuild/makefiles.txt   |  2 +-
 scripts/package/builddeb             | 14 ++++++++------
 scripts/package/buildtar             |  3 +--
 4 files changed, 12 insertions(+), 11 deletions(-)
Merging arc-current/for-curr (89ca3b881987 Linux 3.15-rc4)
$ git merge arc-current/for-curr
Already up-to-date.
Merging arm-current/fixes (6a78371acebf ARM: perf: fix compiler warning with gcc 4.6.4 (and tidy code))
$ git merge arm-current/fixes
Merge made by the 'recursive' strategy.
 arch/arm/common/scoop.c            |  1 -
 arch/arm/include/asm/thread_info.h |  6 ++++++
 arch/arm/kernel/perf_event_v7.c    |  4 ++--
 arch/arm/mach-imx/Kconfig          | 12 ++++++------
 arch/arm/mach-omap2/Kconfig        |  4 ++--
 arch/arm/mach-sti/Kconfig          |  4 ++--
 arch/arm/mach-ux500/Kconfig        |  2 +-
 arch/arm/mach-vexpress/Kconfig     |  2 +-
 arch/arm/mm/Kconfig                |  9 ++++-----
 9 files changed, 24 insertions(+), 20 deletions(-)
Merging m68k-current/for-linus (e8d6dc5ad26e m68k/hp300: Convert printk to pr_foo())
$ git merge m68k-current/for-linus
Already up-to-date.
Merging metag-fixes/fixes (ffe6902b66aa asm-generic: remove _STK_LIM_MAX)
$ git merge metag-fixes/fixes
Already up-to-date.
Merging powerpc-merge/merge (68986c9f0f45 Revert "offb: Add palette hack for little endian")
$ git merge powerpc-merge/merge
Already up-to-date.
Merging sparc/master (8ecc1bad4c9b sparc64: fix format string mismatch in arch/sparc/kernel/sysfs.c)
$ git merge sparc/master
Already up-to-date.
Merging net/master (6f9a093b66ce net: filter: fix upper BPF instruction limit)
$ git merge net/master
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/ptp/testptp.c               |  5 +++-
 MAINTAINERS                               | 11 +-------
 drivers/isdn/hisax/Kconfig                | 11 +-------
 drivers/net/bonding/bond_main.c           |  9 +++++++
 drivers/net/can/slcan.c                   | 37 +++++++++++++++++++-------
 drivers/net/ethernet/freescale/fec_main.c |  8 +++++-
 drivers/net/ethernet/marvell/skge.c       |  7 +++++
 drivers/net/ethernet/tile/tilegx.c        |  1 -
 drivers/net/hyperv/netvsc.c               |  2 +-
 drivers/net/slip/slip.c                   | 36 +++++++++++++++++++-------
 drivers/net/slip/slip.h                   |  1 +
 drivers/net/vmxnet3/vmxnet3_drv.c         |  7 +++--
 drivers/net/vmxnet3/vmxnet3_ethtool.c     | 12 ++++++---
 drivers/net/vmxnet3/vmxnet3_int.h         |  5 ++++
 drivers/ptp/Kconfig                       |  2 +-
 include/net/netfilter/nf_tables.h         |  6 ++---
 net/core/filter.c                         |  2 +-
 net/core/net-sysfs.c                      |  4 +--
 net/ipv4/tcp_fastopen.c                   |  2 +-
 net/netfilter/ipvs/ip_vs_ctl.c            |  2 +-
 net/netfilter/nf_conntrack_netlink.c      | 20 +++++++++-----
 net/netfilter/nf_nat_core.c               | 35 ++++++++++++++++++++++++-
 net/netfilter/nf_tables_api.c             | 11 +++++---
 net/netfilter/nft_compat.c                | 18 +++++++++++++
 net/netfilter/nft_nat.c                   | 14 +++++-----
 net/sctp/sysctl.c                         | 43 +++++++++++++++++--------------
 26 files changed, 215 insertions(+), 96 deletions(-)
Merging ipsec/master (7171511eaec5 Linux 3.16-rc1)
$ git merge ipsec/master
Already up-to-date.
Merging sound-current/for-linus (8d42fda9ea98 Merge branch 'topic/core-vuln-fixes' into for-linus)
$ git merge sound-current/for-linus
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/i915/intel_pm.c    | 14 ++++---
 include/drm/i915_powerwell.h       |  4 +-
 include/sound/core.h               |  2 +
 sound/core/control.c               | 78 +++++++++++++++++++++++++-------------
 sound/core/init.c                  |  1 +
 sound/pci/hda/hda_i915.c           | 12 +++---
 sound/pci/hda/hda_i915.h           |  4 +-
 sound/pci/hda/hda_intel.c          |  7 +++-
 sound/soc/codecs/Kconfig           | 12 +++++-
 sound/soc/codecs/Makefile          |  4 ++
 sound/soc/codecs/sigmadsp-i2c.c    | 35 +++++++++++++++++
 sound/soc/codecs/sigmadsp-regmap.c | 36 ++++++++++++++++++
 sound/soc/codecs/sigmadsp.c        | 65 +------------------------------
 sound/soc/codecs/sigmadsp.h        | 20 ++++++++++
 sound/soc/fsl/fsl_dma.c            |  4 +-
 sound/soc/fsl/fsl_spdif.c          |  6 +--
 sound/soc/pxa/Kconfig              | 11 +++---
 sound/soc/sh/rcar/core.c           |  2 +-
 sound/soc/soc-dapm.c               | 29 +++++++-------
 19 files changed, 213 insertions(+), 133 deletions(-)
 create mode 100644 sound/soc/codecs/sigmadsp-i2c.c
 create mode 100644 sound/soc/codecs/sigmadsp-regmap.c
Merging pci-current/for-linus (d066c946a866 PCI: Fix unaligned access in AF transaction pending test)
$ git merge pci-current/for-linus
Merge made by the 'recursive' strategy.
 drivers/pci/pci.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
Merging wireless/master (616a8394b5df rt2x00: fix rfkill regression on rt2500pci)
$ git merge wireless/master
Merge made by the 'recursive' strategy.
 drivers/net/wireless/b43/Kconfig        |   2 +-
 drivers/net/wireless/b43/main.c         |   1 +
 drivers/net/wireless/b43/xmit.c         |  10 ++-
 drivers/net/wireless/mwifiex/pcie.c     |   4 +-
 drivers/net/wireless/mwifiex/util.h     |  43 ++++++++++---
 drivers/net/wireless/rt2x00/rt2500pci.c |   7 ++-
 drivers/net/wireless/rt2x00/rt2800usb.c |  39 +++++++++++-
 drivers/net/wireless/rt2x00/rt2x00.h    |   1 +
 drivers/net/wireless/rt2x00/rt2x00dev.c |  24 +++++++-
 drivers/net/wireless/rt2x00/rt2x00mac.c |   2 +
 drivers/net/wireless/rt2x00/rt2x00usb.h |   1 +
 net/bluetooth/hci_conn.c                |   7 +--
 net/bluetooth/hci_event.c               |  17 +++++-
 net/bluetooth/l2cap_core.c              |   8 ++-
 net/bluetooth/l2cap_sock.c              |   5 --
 net/bluetooth/mgmt.c                    | 104 +++++++++++++++++---------------
 net/bluetooth/smp.c                     |   9 ++-
 17 files changed, 196 insertions(+), 88 deletions(-)
Merging driver-core.current/driver-core-linus (7171511eaec5 Linux 3.16-rc1)
$ git merge driver-core.current/driver-core-linus
Already up-to-date.
Merging tty.current/tty-linus (60efcf0414be tty/serial: fix 8250 early console option passing to regular console)
$ git merge tty.current/tty-linus
Merge made by the 'recursive' strategy.
 drivers/tty/n_tty.c                  | 19 ++++++++++---------
 drivers/tty/serial/8250/8250_core.c  |  2 +-
 drivers/tty/serial/8250/8250_early.c |  5 ++++-
 drivers/tty/serial/altera_uart.c     |  6 ++++++
 drivers/tty/serial/amba-pl010.c      |  2 +-
 drivers/tty/serial/amba-pl011.c      |  2 +-
 drivers/tty/serial/atmel_serial.c    |  2 +-
 drivers/tty/serial/bcm63xx_uart.c    |  2 +-
 drivers/tty/serial/bfin_uart.c       |  2 +-
 drivers/tty/serial/dz.c              |  2 +-
 drivers/tty/serial/earlycon.c        |  2 +-
 drivers/tty/serial/efm32-uart.c      |  2 +-
 drivers/tty/serial/fsl_lpuart.c      |  2 +-
 drivers/tty/serial/ip22zilog.c       |  2 +-
 drivers/tty/serial/m32r_sio.c        |  2 +-
 drivers/tty/serial/max310x.c         |  2 +-
 drivers/tty/serial/mcf.c             |  6 ++++++
 drivers/tty/serial/mfd.c             |  2 +-
 drivers/tty/serial/mpsc.c            |  2 +-
 drivers/tty/serial/msm_serial.c      |  2 +-
 drivers/tty/serial/mxs-auart.c       |  2 +-
 drivers/tty/serial/netx-serial.c     |  2 +-
 drivers/tty/serial/pmac_zilog.c      |  2 +-
 drivers/tty/serial/pnx8xxx_uart.c    |  2 +-
 drivers/tty/serial/pxa.c             |  2 +-
 drivers/tty/serial/samsung.c         |  2 +-
 drivers/tty/serial/sb1250-duart.c    |  2 +-
 drivers/tty/serial/sccnxp.c          |  2 +-
 drivers/tty/serial/serial_ks8695.c   |  2 +-
 drivers/tty/serial/serial_txx9.c     |  2 +-
 drivers/tty/serial/sirfsoc_uart.c    |  2 +-
 drivers/tty/serial/st-asc.c          |  2 +-
 drivers/tty/serial/sunsab.c          |  2 +-
 drivers/tty/serial/sunsu.c           |  2 +-
 drivers/tty/serial/sunzilog.c        |  2 +-
 drivers/tty/serial/ucc_uart.c        |  2 +-
 drivers/tty/serial/vr41xx_siu.c      |  2 +-
 drivers/tty/serial/zs.c              |  2 +-
 38 files changed, 60 insertions(+), 44 deletions(-)
Merging usb.current/usb-linus (32b36eeae6a8 USB: usbtest: add a timeout for scatter-gather tests)
$ git merge usb.current/usb-linus
Merge made by the 'recursive' strategy.
 drivers/usb/core/hub.c        | 33 +++++++++-------
 drivers/usb/core/hub.h        |  2 +
 drivers/usb/core/port.c       | 89 +++++++++++++++++++++++++++++++------------
 drivers/usb/host/pci-quirks.c | 19 +++++++--
 drivers/usb/host/xhci-hub.c   |  2 +-
 drivers/usb/misc/usbtest.c    | 16 +++++++-
 6 files changed, 119 insertions(+), 42 deletions(-)
Merging usb-gadget-fixes/fixes (5d881802c407 usb: musb: core: Handle Babble condition only in HOST mode)
$ git merge usb-gadget-fixes/fixes
Merge made by the 'recursive' strategy.
 drivers/usb/dwc3/Kconfig            |  1 +
 drivers/usb/dwc3/dwc3-omap.c        | 17 ++++++++++++++---
 drivers/usb/dwc3/gadget.c           |  8 ++++----
 drivers/usb/gadget/configfs.c       | 37 +++++++++++++++++++------------------
 drivers/usb/gadget/configfs.h       |  1 +
 drivers/usb/gadget/f_fs.c           | 12 +++++++-----
 drivers/usb/gadget/f_rndis.c        |  6 ++++--
 drivers/usb/gadget/inode.c          |  7 ++++++-
 drivers/usb/gadget/u_ether.c        |  3 +++
 drivers/usb/musb/musb_core.c        |  2 +-
 drivers/usb/musb/ux500.c            |  1 -
 drivers/usb/renesas_usbhs/fifo.c    |  8 ++++++++
 include/uapi/linux/usb/functionfs.h |  2 +-
 tools/usb/Makefile                  |  6 +++++-
 tools/usb/ffs-test.c                | 20 ++++++++++++++++++--
 15 files changed, 92 insertions(+), 39 deletions(-)
Merging staging.current/staging-linus (88513624be04 staging: comedi: addi_apci_1564: add addi_watchdog dependency)
$ git merge staging.current/staging-linus
Merge made by the 'recursive' strategy.
 drivers/iio/adc/at91_adc.c                          | 16 ++++++++--------
 drivers/iio/adc/men_z188_adc.c                      |  4 ++--
 drivers/iio/adc/twl4030-madc.c                      |  1 +
 drivers/iio/common/hid-sensors/hid-sensor-trigger.c |  3 +++
 drivers/iio/magnetometer/ak8975.c                   |  9 +--------
 drivers/iio/pressure/mpl3115.c                      |  6 +++---
 drivers/staging/comedi/Kconfig                      |  1 +
 drivers/staging/iio/Kconfig                         |  9 +++++----
 drivers/staging/iio/adc/mxs-lradc.c                 | 12 ++++++++----
 drivers/staging/iio/light/tsl2x7x_core.c            |  8 ++++++--
 drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c   |  2 +-
 drivers/staging/rtl8723au/os_dep/os_intfs.c         |  4 +++-
 12 files changed, 42 insertions(+), 33 deletions(-)
Merging char-misc.current/char-misc-linus (b29f680c4fe3 Revert "uio: fix vma io range check in mmap")
$ git merge char-misc.current/char-misc-linus
Merge made by the 'recursive' strategy.
 drivers/uio/uio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging input-current/for-linus (31972f6e517d Input: ti_am335x_tsc - warn about incorrect spelling)
$ git merge input-current/for-linus
Merge made by the 'recursive' strategy.
 drivers/input/tablet/wacom_wac.c          | 28 +++++++---------------------
 drivers/input/touchscreen/ti_am335x_tsc.c |  5 ++++-
 2 files changed, 11 insertions(+), 22 deletions(-)
Merging md-current/for-linus (d47648fcf061 raid5: avoid finding "discard" stripe)
$ git merge md-current/for-linus
Already up-to-date.
Merging crypto-current/master (3901c1124ec5 crypto: s390 - fix aes,des ctr mode concurrency finding.)
$ git merge crypto-current/master
Already up-to-date.
Merging ide/master (5b40dd30bbfa ide: Fix SC1200 dependencies)
$ git merge ide/master
Merge made by the 'recursive' strategy.
 drivers/ide/Kconfig     | 5 ++++-
 drivers/ide/ide-probe.c | 8 +++++---
 2 files changed, 9 insertions(+), 4 deletions(-)
Merging dwmw2/master (5950f0803ca9 pcmcia: remove RPX board stuff)
$ git merge dwmw2/master
Already up-to-date.
Merging devicetree-current/devicetree/merge (4b660a7f5c80 Linux 3.15-rc6)
$ git merge devicetree-current/devicetree/merge
Already up-to-date.
Merging rr-fixes/fixes (79465d2fd48e module: remove warning about waiting module removal.)
$ git merge rr-fixes/fixes
Already up-to-date.
Merging mfd-fixes/master (73beb63d290f mfd: rtsx_pcr: Disable interrupts before cancelling delayed works)
$ git merge mfd-fixes/master
Already up-to-date.
Merging vfio-fixes/for-linus (239a87020b26 Merge branch 'for-joerg/arm-smmu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/will/linux into for-linus)
$ git merge vfio-fixes/for-linus
Already up-to-date.
Merging drm-intel-fixes/for-linux-next-fixes (4a11e398b39b drm/i915: cache hw power well enabled state)
$ git merge drm-intel-fixes/for-linux-next-fixes
Auto-merging drivers/video/console/vgacon.c
Auto-merging drivers/tty/vt/vt.c
Auto-merging drivers/gpu/drm/i915/intel_pm.c
Auto-merging drivers/gpu/drm/i915/i915_irq.c
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/i915/i915_dma.c         | 47 +++++++++++++++++++++++++++++----
 drivers/gpu/drm/i915/i915_drv.h         |  2 ++
 drivers/gpu/drm/i915/i915_gem_gtt.c     |  9 ++++++-
 drivers/gpu/drm/i915/i915_gpu_error.c   |  3 ++-
 drivers/gpu/drm/i915/i915_irq.c         | 18 ++++++++++---
 drivers/gpu/drm/i915/intel_display.c    |  6 ++---
 drivers/gpu/drm/i915/intel_drv.h        |  4 +--
 drivers/gpu/drm/i915/intel_panel.c      |  5 ++--
 drivers/gpu/drm/i915/intel_pm.c         | 46 ++++++++++++--------------------
 drivers/gpu/drm/i915/intel_ringbuffer.h |  2 +-
 drivers/gpu/drm/i915/intel_sdvo.c       |  4 ++-
 drivers/gpu/drm/i915/intel_uncore.c     |  3 ++-
 drivers/tty/vt/vt.c                     | 24 ++++++++++-------
 drivers/video/console/dummycon.c        |  1 +
 drivers/video/console/vgacon.c          |  1 +
 15 files changed, 114 insertions(+), 61 deletions(-)
Merging asm-generic/master (fb9de7ebc3a2 xtensa: Use generic asm/mmu.h for nommu)
$ git merge asm-generic/master
Already up-to-date.
Merging arc/for-next (230a15f171ba ARC: remove checks for CONFIG_ARC_MMU_V4)
$ git merge arc/for-next
Merge made by the 'recursive' strategy.
 arch/arc/include/asm/cache.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Merging arm/for-next (85ca7a934873 Merge branches 'fixes' and 'misc' into for-next)
$ git merge arm/for-next
Auto-merging arch/arm/boot/compressed/vmlinux.lds.S
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/l2cc.txt     |  3 +++
 arch/arm/boot/compressed/Makefile                  |  5 +---
 arch/arm/boot/compressed/head.S                    |  7 ++---
 .../compressed/{vmlinux.lds.in => vmlinux.lds.S}   | 16 +++++++++--
 arch/arm/mm/cache-l2x0.c                           | 31 ++++++++++++++++++++++
 arch/arm/plat-omap/dma.c                           |  2 ++
 6 files changed, 55 insertions(+), 9 deletions(-)
 rename arch/arm/boot/compressed/{vmlinux.lds.in => vmlinux.lds.S} (81%)
Merging arm-perf/for-next/perf (7171511eaec5 Linux 3.16-rc1)
$ git merge arm-perf/for-next/perf
Already up-to-date.
Merging arm-soc/for-next (f2592714cddc ARM: use menuconfig for sub-arch menus)
$ git merge arm-soc/for-next
Auto-merging arch/arm/mach-vexpress/Kconfig
Auto-merging arch/arm/mach-ux500/Kconfig
Auto-merging arch/arm/mach-sti/Kconfig
Auto-merging arch/arm/mach-omap2/Kconfig
Auto-merging arch/arm/mach-imx/Kconfig
Merge made by the 'recursive' strategy.
 arch/arm/Kconfig                                 | 20 +--------------
 arch/arm/boot/dts/armada-375-db.dts              |  2 ++
 arch/arm/boot/dts/armada-385-db.dts              |  2 ++
 arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts |  2 +-
 arch/arm/configs/multi_v7_defconfig              |  1 +
 arch/arm/configs/omap2plus_defconfig             |  1 +
 arch/arm/mach-bcm/Kconfig                        |  7 +++---
 arch/arm/mach-berlin/Kconfig                     |  6 +----
 arch/arm/mach-cns3xxx/Kconfig                    |  7 +++---
 arch/arm/mach-davinci/Kconfig                    |  1 -
 arch/arm/mach-exynos/Kconfig                     |  7 +-----
 arch/arm/mach-exynos/common.h                    |  1 +
 arch/arm/mach-exynos/exynos.c                    | 31 +++++++++++++++++++++++-
 arch/arm/mach-exynos/platsmp.c                   | 26 ++------------------
 arch/arm/mach-highbank/Kconfig                   |  1 -
 arch/arm/mach-imx/Kconfig                        | 10 +++-----
 arch/arm/mach-integrator/Kconfig                 |  2 +-
 arch/arm/mach-integrator/impd1.c                 | 12 ++++++++-
 arch/arm/mach-keystone/Kconfig                   |  1 +
 arch/arm/mach-moxart/Kconfig                     |  2 +-
 arch/arm/mach-mvebu/Kconfig                      |  8 ++----
 arch/arm/mach-mvebu/pmsu.c                       |  9 ++++++-
 arch/arm/mach-nomadik/Kconfig                    |  4 +--
 arch/arm/mach-omap2/Kconfig                      |  7 ++++--
 arch/arm/mach-omap2/common.h                     |  7 ++++++
 arch/arm/mach-prima2/Kconfig                     |  6 ++---
 arch/arm/mach-qcom/Kconfig                       |  6 +----
 arch/arm/mach-s3c24xx/Kconfig                    |  2 +-
 arch/arm/mach-s3c64xx/Kconfig                    |  4 +--
 arch/arm/mach-s5p64x0/Kconfig                    |  6 +++--
 arch/arm/mach-s5pc100/Kconfig                    |  3 ++-
 arch/arm/mach-s5pv210/Kconfig                    |  3 ++-
 arch/arm/mach-shmobile/Kconfig                   |  6 ++---
 arch/arm/mach-spear/Kconfig                      |  1 -
 arch/arm/mach-sti/Kconfig                        |  2 +-
 arch/arm/mach-tegra/Kconfig                      |  8 +++---
 arch/arm/mach-u300/Kconfig                       |  6 +----
 arch/arm/mach-ux500/Kconfig                      |  7 +-----
 arch/arm/mach-vexpress/Kconfig                   |  8 +++---
 arch/arm/mach-vt8500/Kconfig                     |  1 -
 arch/arm/mach-zynq/Kconfig                       |  1 -
 arch/arm/plat-samsung/Kconfig                    | 28 ++++++---------------
 drivers/bus/Kconfig                              |  2 +-
 drivers/misc/vexpress-syscfg.c                   | 12 ++++++---
 drivers/remoteproc/Kconfig                       |  2 +-
 45 files changed, 132 insertions(+), 159 deletions(-)
Merging bcm2835/for-next (fa389e220254 Linux 3.14-rc6)
$ git merge bcm2835/for-next
Already up-to-date.
Merging berlin/berlin/for-next (251f72d06c59 Merge branch 'berlin/soc' into berlin/for-next)
$ git merge berlin/berlin/for-next
Auto-merging arch/arm/mach-berlin/Kconfig
Merge made by the 'recursive' strategy.
 .../arm/cpu-enable-method/marvell,berlin-smp       | 41 +++++++++
 .../devicetree/bindings/arm/marvell,berlin.txt     | 16 ++++
 arch/arm/boot/dts/berlin2.dtsi                     |  6 ++
 arch/arm/boot/dts/berlin2q-marvell-dmp.dts         |  8 ++
 arch/arm/boot/dts/berlin2q.dtsi                    | 80 +++++++++++++++++
 arch/arm/mach-berlin/Kconfig                       |  3 +
 arch/arm/mach-berlin/Makefile                      |  3 +-
 arch/arm/mach-berlin/headsmp.S                     | 30 +++++++
 arch/arm/mach-berlin/platsmp.c                     | 99 ++++++++++++++++++++++
 9 files changed, 285 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/arm/cpu-enable-method/marvell,berlin-smp
 create mode 100644 arch/arm/mach-berlin/headsmp.S
 create mode 100644 arch/arm/mach-berlin/platsmp.c
Merging cortex-m/for-next (f0d7515372ff ARM: v7m: add trivial suspend support)
$ git merge cortex-m/for-next
Already up-to-date.
Merging ep93xx/ep93xx-for-next (bfb0709fd17b Merge branch 'ep93xx-fixes' into ep93xx-for-next)
$ git merge ep93xx/ep93xx-for-next
Merge made by the 'recursive' strategy.
Merging imx-mxs/for-next (1bee3d4b1624 Merge branch 'imx/dt' into for-next)
$ git merge imx-mxs/for-next
Resolved 'arch/arm/mach-imx/Kconfig' using previous resolution.
Removing include/linux/platform_data/usb-imx_udc.h
Removing arch/arm/mach-imx/mx53.h
Removing arch/arm/mach-imx/mx51.h
Removing arch/arm/mach-imx/mm-imx5.c
Auto-merging arch/arm/mach-imx/mach-imx51.c
Removing arch/arm/mach-imx/iomux-mx51.h
Removing arch/arm/mach-imx/ehci-imx5.c
Removing arch/arm/mach-imx/devices/platform-imx_udc.c
Removing arch/arm/mach-imx/devices-imx51.h
Removing arch/arm/mach-imx/crm-regs-imx5.h
Auto-merging arch/arm/mach-imx/Kconfig
CONFLICT (content): Merge conflict in arch/arm/mach-imx/Kconfig
Auto-merging arch/arm/configs/multi_v7_defconfig
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 977c6697a0bd] Merge remote-tracking branch 'imx-mxs/for-next'
$ git diff -M --stat --summary HEAD^..
 .../devicetree/bindings/clock/imx1-clock.txt       |   26 +
 arch/arm/boot/dts/Makefile                         |   13 +
 .../imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts  |   72 +
 .../imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts  |   45 +
 .../imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts   |   45 +
 arch/arm/boot/dts/imx27-eukrea-cpuimx27.dtsi       |  296 ++++
 .../boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts  |  274 ++++
 arch/arm/boot/dts/imx28-cfa10036.dts               |   22 +
 arch/arm/boot/dts/imx35.dtsi                       |    8 +
 arch/arm/boot/dts/imx51-babbage.dts                |    1 +
 arch/arm/boot/dts/imx6dl-gw51xx.dts                |    2 +-
 arch/arm/boot/dts/imx6dl-gw52xx.dts                |    2 +-
 arch/arm/boot/dts/imx6dl-gw53xx.dts                |    2 +-
 arch/arm/boot/dts/imx6dl-gw54xx.dts                |    2 +-
 arch/arm/boot/dts/imx6dl-hummingboard.dts          |   10 +
 arch/arm/boot/dts/imx6dl-tx6dl-comtft.dts          |  103 ++
 arch/arm/boot/dts/imx6dl-tx6u-801x.dts             |  177 +++
 arch/arm/boot/dts/imx6dl-tx6u-811x.dts             |  150 ++
 arch/arm/boot/dts/imx6q-gw51xx.dts                 |    4 +-
 arch/arm/boot/dts/imx6q-gw52xx.dts                 |    2 +-
 arch/arm/boot/dts/imx6q-gw53xx.dts                 |    2 +-
 arch/arm/boot/dts/imx6q-gw5400-a.dts               |    4 +-
 arch/arm/boot/dts/imx6q-gw54xx.dts                 |    2 +-
 arch/arm/boot/dts/imx6q-tx6q-1010-comtft.dts       |  103 ++
 arch/arm/boot/dts/imx6q-tx6q-1010.dts              |  177 +++
 arch/arm/boot/dts/imx6q-tx6q-1020-comtft.dts       |  136 ++
 arch/arm/boot/dts/imx6q-tx6q-1020.dts              |  210 +++
 arch/arm/boot/dts/imx6q-tx6q-1110.dts              |  154 ++
 arch/arm/boot/dts/imx6q-udoo.dts                   |   32 +
 arch/arm/boot/dts/imx6q.dtsi                       |    8 +
 arch/arm/boot/dts/imx6qdl-cubox-i.dtsi             |   27 +
 arch/arm/boot/dts/imx6qdl-gw51xx.dtsi              |    2 +-
 arch/arm/boot/dts/imx6qdl-gw52xx.dtsi              |    8 +-
 arch/arm/boot/dts/imx6qdl-gw53xx.dtsi              |    6 +-
 arch/arm/boot/dts/imx6qdl-gw54xx.dtsi              |    4 +-
 arch/arm/boot/dts/imx6qdl-microsom.dtsi            |   13 -
 arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi       |    1 +
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi             |    1 +
 arch/arm/boot/dts/imx6qdl-tx6.dtsi                 |  696 +++++++++
 arch/arm/boot/dts/imx6qdl.dtsi                     |   10 +
 arch/arm/boot/dts/imx6sl-evk.dts                   |   16 +-
 arch/arm/boot/dts/imx6sl.dtsi                      |    2 +-
 arch/arm/boot/dts/imx6sx-pinfunc.h                 | 1544 ++++++++++++++++++++
 arch/arm/boot/dts/imx6sx-sdb.dts                   |  210 +++
 arch/arm/boot/dts/imx6sx.dtsi                      | 1202 +++++++++++++++
 arch/arm/configs/imx_v4_v5_defconfig               |    1 +
 arch/arm/configs/imx_v6_v7_defconfig               |    3 +-
 arch/arm/configs/multi_v7_defconfig                |    2 +-
 arch/arm/configs/mxs_defconfig                     |    1 +
 arch/arm/mach-imx/Kconfig                          |   25 +-
 arch/arm/mach-imx/Makefile                         |    4 +-
 arch/arm/mach-imx/clk-imx1.c                       |  157 +-
 arch/arm/mach-imx/clk-imx21.c                      |    7 +-
 arch/arm/mach-imx/clk-imx25.c                      |   12 +-
 arch/arm/mach-imx/clk-imx27.c                      |   89 +-
 arch/arm/mach-imx/clk-imx31.c                      |    6 +-
 arch/arm/mach-imx/clk-imx35.c                      |    6 +-
 arch/arm/mach-imx/clk-imx51-imx53.c                |  175 ++-
 arch/arm/mach-imx/clk-imx6q.c                      |    7 +-
 arch/arm/mach-imx/clk-imx6sl.c                     |    9 +-
 arch/arm/mach-imx/clk-imx6sx.c                     |    7 +-
 arch/arm/mach-imx/clk-vf610.c                      |    2 +
 arch/arm/mach-imx/clk.c                            |   10 +
 arch/arm/mach-imx/clk.h                            |    5 +-
 arch/arm/mach-imx/common.h                         |   23 +-
 arch/arm/mach-imx/cpu-imx5.c                       |   25 +-
 arch/arm/mach-imx/crm-regs-imx5.h                  |  600 --------
 arch/arm/mach-imx/devices-imx51.h                  |   66 -
 arch/arm/mach-imx/devices/Kconfig                  |    6 +-
 arch/arm/mach-imx/devices/Makefile                 |    1 -
 arch/arm/mach-imx/devices/devices-common.h         |   16 -
 arch/arm/mach-imx/devices/platform-fec.c           |   12 -
 arch/arm/mach-imx/devices/platform-fsl-usb2-udc.c  |    5 -
 arch/arm/mach-imx/devices/platform-imx-i2c.c       |   26 -
 arch/arm/mach-imx/devices/platform-imx-keypad.c    |   10 -
 arch/arm/mach-imx/devices/platform-imx-ssi.c       |   20 -
 arch/arm/mach-imx/devices/platform-imx-uart.c      |   22 -
 arch/arm/mach-imx/devices/platform-imx2-wdt.c      |   18 -
 arch/arm/mach-imx/devices/platform-imx_udc.c       |   75 -
 arch/arm/mach-imx/devices/platform-mxc-ehci.c      |    9 -
 arch/arm/mach-imx/devices/platform-mxc_nand.c      |    5 -
 arch/arm/mach-imx/devices/platform-pata_imx.c      |   10 -
 .../mach-imx/devices/platform-sdhci-esdhc-imx.c    |   24 -
 arch/arm/mach-imx/devices/platform-spi_imx.c       |   27 -
 arch/arm/mach-imx/ehci-imx25.c                     |    1 +
 arch/arm/mach-imx/ehci-imx27.c                     |    1 +
 arch/arm/mach-imx/ehci-imx31.c                     |    1 +
 arch/arm/mach-imx/ehci-imx35.c                     |    1 +
 arch/arm/mach-imx/ehci-imx5.c                      |  171 ---
 arch/arm/mach-imx/ehci.h                           |   43 +
 arch/arm/mach-imx/hardware.h                       |    2 -
 arch/arm/mach-imx/imx27-dt.c                       |    6 -
 arch/arm/mach-imx/iomux-mx51.h                     |  827 -----------
 arch/arm/mach-imx/mach-armadillo5x0.c              |    1 +
 arch/arm/mach-imx/mach-cpuimx27.c                  |    1 +
 arch/arm/mach-imx/mach-cpuimx35.c                  |    1 +
 arch/arm/mach-imx/mach-eukrea_cpuimx25.c           |    1 +
 arch/arm/mach-imx/mach-imx27_visstrim_m10.c        |    1 +
 arch/arm/mach-imx/mach-imx50.c                     |    3 +-
 arch/arm/mach-imx/{imx51-dt.c => mach-imx51.c}     |   43 +-
 arch/arm/mach-imx/mach-imx53.c                     |   15 +-
 arch/arm/mach-imx/mach-mx25_3ds.c                  |    1 +
 arch/arm/mach-imx/mach-mx27_3ds.c                  |    1 +
 arch/arm/mach-imx/mach-mx31_3ds.c                  |    1 +
 arch/arm/mach-imx/mach-mx31lilly.c                 |    1 +
 arch/arm/mach-imx/mach-mx31lite.c                  |    1 +
 arch/arm/mach-imx/mach-mx31moboard.c               |    1 +
 arch/arm/mach-imx/mach-mx35_3ds.c                  |    1 +
 arch/arm/mach-imx/mach-pca100.c                    |    1 +
 arch/arm/mach-imx/mach-pcm037.c                    |    1 +
 arch/arm/mach-imx/mach-pcm038.c                    |    1 +
 arch/arm/mach-imx/mach-pcm043.c                    |    1 +
 arch/arm/mach-imx/mach-vpr200.c                    |    1 +
 arch/arm/mach-imx/mm-imx5.c                        |  155 --
 arch/arm/mach-imx/mx31moboard-devboard.c           |    1 +
 arch/arm/mach-imx/mx31moboard-marxbot.c            |    1 +
 arch/arm/mach-imx/mx31moboard-smartbot.c           |    1 +
 arch/arm/mach-imx/mx51.h                           |  346 -----
 arch/arm/mach-imx/mx53.h                           |  342 -----
 arch/arm/mach-imx/pm-imx5.c                        |   98 +-
 arch/arm/mach-imx/time.c                           |   42 +-
 arch/arm/mach-imx/tzic.c                           |    9 +-
 include/dt-bindings/clock/imx1-clock.h             |   40 +
 include/dt-bindings/clock/imx6sl-clock.h           |    3 +-
 include/linux/platform_data/usb-ehci-mxc.h         |   46 -
 include/linux/platform_data/usb-imx_udc.h          |   23 -
 126 files changed, 6375 insertions(+), 3217 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/imx1-clock.txt
 create mode 100644 arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts
 create mode 100644 arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts
 create mode 100644 arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts
 create mode 100644 arch/arm/boot/dts/imx27-eukrea-cpuimx27.dtsi
 create mode 100644 arch/arm/boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-tx6dl-comtft.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-tx6u-801x.dts
 create mode 100644 arch/arm/boot/dts/imx6dl-tx6u-811x.dts
 create mode 100644 arch/arm/boot/dts/imx6q-tx6q-1010-comtft.dts
 create mode 100644 arch/arm/boot/dts/imx6q-tx6q-1010.dts
 create mode 100644 arch/arm/boot/dts/imx6q-tx6q-1020-comtft.dts
 create mode 100644 arch/arm/boot/dts/imx6q-tx6q-1020.dts
 create mode 100644 arch/arm/boot/dts/imx6q-tx6q-1110.dts
 create mode 100644 arch/arm/boot/dts/imx6qdl-tx6.dtsi
 create mode 100755 arch/arm/boot/dts/imx6sx-pinfunc.h
 create mode 100644 arch/arm/boot/dts/imx6sx-sdb.dts
 create mode 100644 arch/arm/boot/dts/imx6sx.dtsi
 delete mode 100644 arch/arm/mach-imx/crm-regs-imx5.h
 delete mode 100644 arch/arm/mach-imx/devices-imx51.h
 delete mode 100644 arch/arm/mach-imx/devices/platform-imx_udc.c
 delete mode 100644 arch/arm/mach-imx/ehci-imx5.c
 create mode 100644 arch/arm/mach-imx/ehci.h
 delete mode 100644 arch/arm/mach-imx/iomux-mx51.h
 rename arch/arm/mach-imx/{imx51-dt.c => mach-imx51.c} (54%)
 delete mode 100644 arch/arm/mach-imx/mm-imx5.c
 delete mode 100644 arch/arm/mach-imx/mx51.h
 delete mode 100644 arch/arm/mach-imx/mx53.h
 create mode 100644 include/dt-bindings/clock/imx1-clock.h
 delete mode 100644 include/linux/platform_data/usb-imx_udc.h
Merging ixp4xx/next (19f949f52599 Linux 3.8)
$ git merge ixp4xx/next
Already up-to-date.
Merging keystone/next (c9eaa447e77e Linux 3.15-rc1)
$ git merge keystone/next
Already up-to-date.
Merging msm/for-next (81cf1e061d00 ARM: msm: Rename msm devicetrees to have standard 'qcom' prefix)
$ git merge msm/for-next
Already up-to-date.
Merging mvebu/for-next (7171511eaec5 Linux 3.16-rc1)
$ git merge mvebu/for-next
Already up-to-date.
Merging renesas/next (44751c65eb0a Merge branch 'soc-cleanup-for-v3.17' into devel)
$ git merge renesas/next
Auto-merging arch/arm/mach-shmobile/rcar-gen2.h
Auto-merging arch/arm/mach-shmobile/common.h
Auto-merging arch/arm/mach-shmobile/Kconfig
Removing arch/arm/boot/dts/r8a7779-marzen-reference.dts
Auto-merging arch/arm/boot/dts/Makefile
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                        |  14 ++
 arch/arm/boot/dts/Makefile                         |   4 +-
 arch/arm/boot/dts/emev2.dtsi                       |   2 +
 arch/arm/boot/dts/r7s72100.dtsi                    |   1 +
 .../boot/dts/r8a7740-armadillo800eva-reference.dts |  12 +-
 arch/arm/boot/dts/r8a7779-marzen-reference.dts     | 121 ------------
 arch/arm/boot/dts/r8a7779-marzen.dts               | 116 ++++++++++-
 arch/arm/boot/dts/r8a7779.dtsi                     | 220 +++++++++++++++++++++
 arch/arm/boot/dts/r8a7790-lager.dts                |  55 +++++-
 arch/arm/boot/dts/r8a7790.dtsi                     | 140 ++++++++++++-
 arch/arm/boot/dts/r8a7791-henninger.dts            |  21 ++
 arch/arm/boot/dts/r8a7791-koelsch.dts              |  67 +++++--
 arch/arm/boot/dts/r8a7791.dtsi                     | 171 +++++++++++++++-
 arch/arm/configs/armadillo800eva_defconfig         |   4 +
 arch/arm/configs/shmobile_defconfig                |  21 +-
 arch/arm/mach-shmobile/Kconfig                     |  25 ++-
 arch/arm/mach-shmobile/Makefile                    |   4 +-
 arch/arm/mach-shmobile/Makefile.boot               |   1 -
 arch/arm/mach-shmobile/board-ape6evm-reference.c   |   2 +-
 arch/arm/mach-shmobile/board-ape6evm.c             |   4 +-
 .../board-armadillo800eva-reference.c              |  10 +-
 arch/arm/mach-shmobile/board-armadillo800eva.c     |  41 +++-
 arch/arm/mach-shmobile/board-bockw-reference.c     |   2 +-
 arch/arm/mach-shmobile/board-bockw.c               |   4 +-
 arch/arm/mach-shmobile/board-genmai-reference.c    |   6 +-
 arch/arm/mach-shmobile/board-genmai.c              |   6 +-
 arch/arm/mach-shmobile/board-koelsch-reference.c   |  24 +--
 arch/arm/mach-shmobile/board-koelsch.c             |   7 +-
 arch/arm/mach-shmobile/board-kzm9g-reference.c     |   2 +-
 arch/arm/mach-shmobile/board-kzm9g.c               |   4 +-
 arch/arm/mach-shmobile/board-lager-reference.c     |  25 +--
 arch/arm/mach-shmobile/board-lager.c               |   8 +-
 arch/arm/mach-shmobile/board-mackerel.c            |  10 +-
 arch/arm/mach-shmobile/board-marzen-reference.c    |  28 ++-
 arch/arm/mach-shmobile/board-marzen.c              |   4 +-
 arch/arm/mach-shmobile/clock-r7s72100.c            |   2 +-
 arch/arm/mach-shmobile/clock-r8a73a4.c             |   4 +-
 arch/arm/mach-shmobile/clock-r8a7740.c             |   4 +-
 arch/arm/mach-shmobile/clock-r8a7778.c             |   4 +-
 arch/arm/mach-shmobile/clock-r8a7779.c             |  26 +--
 arch/arm/mach-shmobile/clock-r8a7790.c             |   5 +-
 arch/arm/mach-shmobile/clock-r8a7791.c             |   6 +-
 arch/arm/mach-shmobile/clock-sh7372.c              |   4 +-
 arch/arm/mach-shmobile/clock-sh73a0.c              |   4 +-
 arch/arm/mach-shmobile/clock.c                     |   6 +-
 arch/arm/mach-shmobile/{include/mach => }/clock.h  |   0
 arch/arm/mach-shmobile/{include/mach => }/common.h |   9 +
 arch/arm/mach-shmobile/console.c                   |   2 +-
 arch/arm/mach-shmobile/cpufreq.c                   |  31 +++
 .../{include/mach => }/dma-register.h              |   0
 arch/arm/mach-shmobile/include/mach/irqs.h         |  16 +-
 arch/arm/mach-shmobile/include/mach/r7s72100.h     |   1 -
 arch/arm/mach-shmobile/include/mach/r8a7740.h      |   2 -
 arch/arm/mach-shmobile/include/mach/r8a7779.h      |  14 +-
 arch/arm/mach-shmobile/include/mach/r8a7790.h      |   3 -
 arch/arm/mach-shmobile/include/mach/r8a7791.h      |   1 +
 arch/arm/mach-shmobile/include/mach/sh7372.h       |   4 -
 arch/arm/mach-shmobile/intc-sh7372.c               |   5 +-
 arch/arm/mach-shmobile/intc-sh73a0.c               |   5 +-
 arch/arm/mach-shmobile/{include/mach => }/intc.h   |   0
 arch/arm/mach-shmobile/irqs.h                      |  21 ++
 arch/arm/mach-shmobile/platsmp-apmu.c              |  62 +++++-
 arch/arm/mach-shmobile/platsmp-scu.c               |   2 +-
 arch/arm/mach-shmobile/platsmp.c                   |   2 +-
 arch/arm/mach-shmobile/pm-r8a7740.c                |   4 +-
 arch/arm/mach-shmobile/pm-r8a7779.c                |  15 +-
 arch/arm/mach-shmobile/pm-r8a7790.c                |   2 +-
 arch/arm/mach-shmobile/pm-r8a7791.c                |  47 +++++
 arch/arm/mach-shmobile/pm-rcar.c                   |   2 +-
 .../arm/mach-shmobile/{include/mach => }/pm-rcar.h |   0
 arch/arm/mach-shmobile/pm-rmobile.c                |   2 +-
 .../mach-shmobile/{include/mach => }/pm-rmobile.h  |   0
 arch/arm/mach-shmobile/pm-sh7372.c                 |   4 +-
 arch/arm/mach-shmobile/pm-sh73a0.c                 |   2 +-
 .../mach-shmobile/{include/mach => }/rcar-gen2.h   |   1 +
 arch/arm/mach-shmobile/setup-emev2.c               |  19 +-
 arch/arm/mach-shmobile/setup-r7s72100.c            |  11 +-
 arch/arm/mach-shmobile/setup-r8a73a4.c             |   6 +-
 arch/arm/mach-shmobile/setup-r8a7740.c             |   8 +-
 arch/arm/mach-shmobile/setup-r8a7778.c             |   4 +-
 arch/arm/mach-shmobile/setup-r8a7779.c             |  49 +++--
 arch/arm/mach-shmobile/setup-r8a7790.c             |  18 +-
 arch/arm/mach-shmobile/setup-r8a7791.c             |   8 +-
 arch/arm/mach-shmobile/setup-rcar-gen2.c           |  76 ++++++-
 arch/arm/mach-shmobile/setup-sh7372.c              |   8 +-
 arch/arm/mach-shmobile/setup-sh73a0.c              |   7 +-
 arch/arm/mach-shmobile/smp-emev2.c                 |   2 +-
 arch/arm/mach-shmobile/smp-r8a7779.c               |   4 +-
 arch/arm/mach-shmobile/smp-r8a7790.c               |   5 +-
 arch/arm/mach-shmobile/smp-r8a7791.c               |   7 +-
 arch/arm/mach-shmobile/smp-sh73a0.c                |   2 +-
 arch/arm/mach-shmobile/timer.c                     |  50 +++--
 include/dt-bindings/clock/r8a7790-clock.h          |  27 +++
 include/dt-bindings/clock/r8a7791-clock.h          |  27 +++
 94 files changed, 1394 insertions(+), 454 deletions(-)
 delete mode 100644 arch/arm/boot/dts/r8a7779-marzen-reference.dts
 rename arch/arm/mach-shmobile/{include/mach => }/clock.h (100%)
 rename arch/arm/mach-shmobile/{include/mach => }/common.h (88%)
 create mode 100644 arch/arm/mach-shmobile/cpufreq.c
 rename arch/arm/mach-shmobile/{include/mach => }/dma-register.h (100%)
 rename arch/arm/mach-shmobile/{include/mach => }/intc.h (100%)
 create mode 100644 arch/arm/mach-shmobile/irqs.h
 create mode 100644 arch/arm/mach-shmobile/pm-r8a7791.c
 rename arch/arm/mach-shmobile/{include/mach => }/pm-rcar.h (100%)
 rename arch/arm/mach-shmobile/{include/mach => }/pm-rmobile.h (100%)
 rename arch/arm/mach-shmobile/{include/mach => }/rcar-gen2.h (85%)
Merging samsung/for-next (c0c3c3590d0d ARM: EXYNOS: fix pm code to check for cortex A9 rather than the SoC)
$ git merge samsung/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/exynos4.dtsi   |  2 +-
 arch/arm/mach-exynos/hotplug.c   |  8 +-------
 arch/arm/mach-exynos/pm.c        | 15 +++++++++------
 drivers/clocksource/exynos_mct.c |  9 +++------
 4 files changed, 14 insertions(+), 20 deletions(-)
Merging tegra/for-next (3236c55e33e9 Merge branch for-3.17/defconfig into for-next)
$ git merge tegra/for-next
Auto-merging drivers/misc/fuse/tegra/speedo-tegra30.c
Auto-merging drivers/misc/fuse/tegra/speedo-tegra20.c
Auto-merging drivers/misc/fuse/tegra/speedo-tegra114.c
Removing arch/arm/mach-tegra/fuse.h
Removing arch/arm/mach-tegra/fuse.c
Removing arch/arm/mach-tegra/apbio.h
Removing arch/arm/mach-tegra/apbio.c
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-driver-tegra-fuse  |  11 +
 Documentation/devicetree/bindings/arm/tegra.txt    |   2 +
 .../bindings/fuse/nvidia,tegra20-fuse.txt          |  40 ++
 .../bindings/misc/nvidia,tegra20-apbmisc.txt       |  13 +
 .../bindings/pci/nvidia,tegra20-pcie.txt           |  30 +-
 arch/arm/boot/dts/Makefile                         |   1 +
 arch/arm/boot/dts/cros-ec-keyboard.dtsi            | 105 ++++
 arch/arm/boot/dts/exynos5250-snow.dts              |  93 +--
 arch/arm/boot/dts/tegra114.dtsi                    |  15 +
 arch/arm/boot/dts/tegra124-jetson-tk1.dts          |   1 +
 arch/arm/boot/dts/tegra124-venice2.dts             | 122 +---
 arch/arm/boot/dts/tegra124.dtsi                    |  30 +
 arch/arm/boot/dts/tegra20-harmony.dts              |   8 +-
 arch/arm/boot/dts/tegra20-medcom-wide.dts          |  61 +-
 arch/arm/boot/dts/tegra20-plutux.dts               |  41 ++
 arch/arm/boot/dts/tegra20-tamonten.dtsi            |  17 +-
 arch/arm/boot/dts/tegra20-tec.dts                  |  41 ++
 arch/arm/boot/dts/tegra20-trimslice.dts            |   8 +-
 arch/arm/boot/dts/tegra20.dtsi                     |  15 +
 arch/arm/boot/dts/tegra30-apalis-eval.dts          | 260 ++++++++
 arch/arm/boot/dts/tegra30-apalis.dtsi              | 673 +++++++++++++++++++++
 arch/arm/boot/dts/tegra30-beaver.dts               |  12 +-
 arch/arm/boot/dts/tegra30-cardhu.dtsi              |  11 +-
 arch/arm/boot/dts/tegra30.dtsi                     |  15 +
 arch/arm/configs/tegra_defconfig                   |  16 +-
 arch/arm/lib/delay.c                               |  26 +-
 arch/arm/mach-tegra/Makefile                       |   5 -
 arch/arm/mach-tegra/apbio.c                        | 206 -------
 arch/arm/mach-tegra/apbio.h                        |  22 -
 arch/arm/mach-tegra/cpuidle.c                      |   2 +-
 arch/arm/mach-tegra/flowctrl.c                     |   2 +-
 arch/arm/mach-tegra/fuse.c                         | 252 --------
 arch/arm/mach-tegra/fuse.h                         |  79 ---
 arch/arm/mach-tegra/hotplug.c                      |   2 +-
 arch/arm/mach-tegra/platsmp.c                      |   2 +-
 arch/arm/mach-tegra/pm.c                           |   2 +-
 arch/arm/mach-tegra/pmc.c                          |  15 +-
 arch/arm/mach-tegra/pmc.h                          |  13 +
 arch/arm/mach-tegra/powergate.c                    |  42 +-
 arch/arm/mach-tegra/reset-handler.S                |   2 +-
 arch/arm/mach-tegra/reset.c                        |   2 +-
 arch/arm/mach-tegra/sleep-tegra30.S                |   2 +-
 arch/arm/mach-tegra/tegra.c                        |   7 +-
 drivers/clocksource/tegra20_timer.c                |  13 +
 drivers/misc/Makefile                              |   1 +
 drivers/misc/fuse/Makefile                         |   1 +
 drivers/misc/fuse/tegra/Makefile                   |   8 +
 drivers/misc/fuse/tegra/fuse-tegra.c               | 154 +++++
 drivers/misc/fuse/tegra/fuse-tegra20.c             | 214 +++++++
 drivers/misc/fuse/tegra/fuse-tegra30.c             | 223 +++++++
 drivers/misc/fuse/tegra/fuse.h                     |  71 +++
 .../misc/fuse/tegra/speedo-tegra114.c              |  53 +-
 drivers/misc/fuse/tegra/speedo-tegra124.c          | 167 +++++
 .../misc/fuse/tegra/speedo-tegra20.c               |  42 +-
 .../misc/fuse/tegra/speedo-tegra30.c               | 173 +++---
 drivers/misc/fuse/tegra/tegra-apbmisc.c            | 110 ++++
 drivers/pci/host/pci-tegra.c                       | 148 +++--
 include/linux/tegra-soc.h                          |  42 ++
 init/calibrate.c                                   |  11 +
 59 files changed, 2726 insertions(+), 1029 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-driver-tegra-fuse
 create mode 100644 Documentation/devicetree/bindings/fuse/nvidia,tegra20-fuse.txt
 create mode 100644 Documentation/devicetree/bindings/misc/nvidia,tegra20-apbmisc.txt
 create mode 100644 arch/arm/boot/dts/cros-ec-keyboard.dtsi
 create mode 100644 arch/arm/boot/dts/tegra30-apalis-eval.dts
 create mode 100644 arch/arm/boot/dts/tegra30-apalis.dtsi
 delete mode 100644 arch/arm/mach-tegra/apbio.c
 delete mode 100644 arch/arm/mach-tegra/apbio.h
 delete mode 100644 arch/arm/mach-tegra/fuse.c
 delete mode 100644 arch/arm/mach-tegra/fuse.h
 create mode 100644 drivers/misc/fuse/Makefile
 create mode 100644 drivers/misc/fuse/tegra/Makefile
 create mode 100644 drivers/misc/fuse/tegra/fuse-tegra.c
 create mode 100644 drivers/misc/fuse/tegra/fuse-tegra20.c
 create mode 100644 drivers/misc/fuse/tegra/fuse-tegra30.c
 create mode 100644 drivers/misc/fuse/tegra/fuse.h
 rename arch/arm/mach-tegra/tegra114_speedo.c => drivers/misc/fuse/tegra/speedo-tegra114.c (55%)
 create mode 100644 drivers/misc/fuse/tegra/speedo-tegra124.c
 rename arch/arm/mach-tegra/tegra20_speedo.c => drivers/misc/fuse/tegra/speedo-tegra20.c (67%)
 rename arch/arm/mach-tegra/tegra30_speedo.c => drivers/misc/fuse/tegra/speedo-tegra30.c (52%)
 create mode 100644 drivers/misc/fuse/tegra/tegra-apbmisc.c
Merging arm64/for-next/core (e3a920afc348 arm64: mm: remove broken &= operator from pmd_mknotpresent)
$ git merge arm64/for-next/core
Already up-to-date.
Merging blackfin/for-linus (51fdc6bf9880 blackfin: defconfigs: add MTD_SPI_NOR (new dependency for M25P80))
$ git merge blackfin/for-linus
Already up-to-date.
Merging c6x/for-linux-next (ae72758f1dd9 c6x: fix build failure caused by cache.h)
$ git merge c6x/for-linux-next
Already up-to-date.
Merging cris/for-next (cd065a010a97 CRISv10: Readd missing header)
$ git merge cris/for-next
Already up-to-date.
Merging hexagon/linux-next (a9a44fdf3296 Hexagon: update CR year for elf.h)
$ git merge hexagon/linux-next
Already up-to-date.
Merging ia64/next (e32634f5d57f pstore: Fix memory leak when decompress using big_oops_buf)
$ git merge ia64/next
Already up-to-date.
Merging m68k/for-next (e8d6dc5ad26e m68k/hp300: Convert printk to pr_foo())
$ git merge m68k/for-next
Already up-to-date.
Merging m68knommu/for-next (83c6bdb827c9 m68knommu: Implement gpio support for m54xx.)
$ git merge m68knommu/for-next
Already up-to-date.
Merging metag/for-next (8bc613befaec metag: hugetlbpage: Remove null pointer checks that could never happen)
$ git merge metag/for-next
Merge made by the 'recursive' strategy.
 arch/metag/mm/hugetlbpage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging microblaze/next (225fba216261 microblaze: Fix typo in head.S s/substract/subtract/)
$ git merge microblaze/next
Already up-to-date.
Merging mips/mips-for-linux-next (2879f1360851 Merge branch '3.16-fixes' into mips-for-linux-next)
$ git merge mips/mips-for-linux-next
Merge made by the 'recursive' strategy.
 arch/mips/include/asm/sigcontext.h      |   2 -
 arch/mips/include/uapi/asm/sigcontext.h |   8 --
 arch/mips/kernel/asm-offsets.c          |   3 -
 arch/mips/kernel/pm-cps.c               |   4 +-
 arch/mips/kernel/r4k_fpu.S              | 213 --------------------------------
 arch/mips/kernel/signal.c               |  79 ++----------
 arch/mips/kernel/signal32.c             |  74 ++---------
 arch/mips/kernel/smp-cps.c              |   2 +-
 arch/mips/math-emu/ieee754.c            |  18 ++-
 arch/mips/net/bpf_jit.c                 | 143 +++++++++++----------
 scripts/recordmcount.h                  |   4 +-
 11 files changed, 105 insertions(+), 445 deletions(-)
Merging openrisc/for-upstream (548dafe880ad openrisc: Use get_signal() signal_setup_done())
$ git merge openrisc/for-upstream
Already up-to-date.
Merging parisc/for-next (6c700d71f7fa [PARISC] hpux: Remove obsolete regs parameter from do_execve() in hpux_execve())
$ git merge parisc/for-next
Already up-to-date.
Merging parisc-hd/for-next (455c6fdbd219 Linux 3.14)
$ git merge parisc-hd/for-next
Already up-to-date.
Merging powerpc/next (68986c9f0f45 Revert "offb: Add palette hack for little endian")
$ git merge powerpc/next
Already up-to-date.
Merging fsl/next (e83eb028bb98 powerpc/fsl: Add fsl,portid-mapping to corenet1-cf chips)
$ git merge fsl/next
Already up-to-date.
Merging mpc5xxx/next (bc7505942233 powerpc/512x: dts: add MPC5125 clock specs)
$ git merge mpc5xxx/next
Already up-to-date.
Merging s390/features (fa73eb4738fc s390/ccwgroup: use ccwgroup_ungroup wrapper)
$ git merge s390/features
Auto-merging drivers/watchdog/Makefile
Auto-merging drivers/watchdog/Kconfig
Removing drivers/s390/char/vmwatchdog.c
Merge made by the 'recursive' strategy.
 arch/s390/configs/default_defconfig     |   5 +-
 arch/s390/configs/gcov_defconfig        |   5 +-
 arch/s390/configs/performance_defconfig |   5 +-
 arch/s390/configs/zfcpdump_defconfig    |   3 +-
 arch/s390/defconfig                     |   8 +-
 arch/s390/include/asm/mmu_context.h     |  33 ++--
 arch/s390/include/asm/switch_to.h       |   4 -
 arch/s390/include/uapi/asm/ucontext.h   |   8 +-
 arch/s390/kernel/compat_linux.h         |   4 +-
 drivers/s390/block/dcssblk.c            |   2 +-
 drivers/s390/char/Makefile              |   1 -
 drivers/s390/char/sclp_vt220.c          |   2 -
 drivers/s390/char/vmlogrdr.c            |   2 +-
 drivers/s390/char/vmwatchdog.c          | 338 --------------------------------
 drivers/s390/cio/airq.c                 |  13 +-
 drivers/s390/cio/ccwgroup.c             |  28 ++-
 drivers/s390/cio/cio.c                  |   2 +
 drivers/s390/cio/device.c               |  71 +++----
 drivers/s390/cio/qdio_debug.c           |  79 +++++++-
 drivers/s390/cio/qdio_debug.h           |   2 +-
 drivers/s390/cio/qdio_main.c            |  16 +-
 drivers/s390/crypto/ap_bus.c            |   4 +-
 drivers/s390/crypto/zcrypt_api.c        |   2 +-
 drivers/watchdog/Kconfig                |   7 +-
 drivers/watchdog/Makefile               |   1 +
 drivers/watchdog/diag288_wdt.c          | 316 +++++++++++++++++++++++++++++
 26 files changed, 505 insertions(+), 456 deletions(-)
 delete mode 100644 drivers/s390/char/vmwatchdog.c
 create mode 100644 drivers/watchdog/diag288_wdt.c
Merging sparc-next/master (311b8935ad4e Merge branch 'sparc_sparse_fixes')
$ git merge sparc-next/master
Already up-to-date.
Merging tile/master (8dfb6948f7d8 tile: use ARRAY_SIZE)
$ git merge tile/master
Merge made by the 'recursive' strategy.
 arch/tile/kernel/traps.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging uml/next (989e59fa41c5 um: Include generic barrier.h)
$ git merge uml/next
Resolved 'arch/um/include/asm/Kbuild' using previous resolution.
Removing arch/x86/um/shared/sysdep/skas_ptrace.h
Removing arch/um/sys-ppc/shared/sysdep/skas_ptrace.h
Removing arch/um/sys-ia64/sysdep/skas_ptrace.h
Removing arch/um/include/shared/skas_ptrace.h
Removing arch/um/include/shared/skas/proc_mm.h
Auto-merging arch/um/include/shared/os.h
Auto-merging arch/um/include/asm/Kbuild
CONFLICT (content): Merge conflict in arch/um/include/asm/Kbuild
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 4ced0df9d39f] Merge remote-tracking branch 'uml/next'
$ git diff -M --stat --summary HEAD^..
 arch/um/include/shared/os.h                 |   2 -
 arch/um/include/shared/skas/proc_mm.h       |  44 ------
 arch/um/include/shared/skas/skas.h          |   3 -
 arch/um/include/shared/skas_ptrace.h        |  14 --
 arch/um/kernel/ptrace.c                     |  32 ----
 arch/um/kernel/reboot.c                     |  35 ++---
 arch/um/kernel/skas/mmu.c                   |  68 +++------
 arch/um/kernel/skas/process.c               |  27 ----
 arch/um/kernel/trap.c                       |   2 +-
 arch/um/kernel/um_arch.c                    |  10 --
 arch/um/os-Linux/process.c                  |  16 --
 arch/um/os-Linux/skas/mem.c                 | 100 ++----------
 arch/um/os-Linux/skas/process.c             | 200 ++++++------------------
 arch/um/os-Linux/start_up.c                 | 154 -------------------
 arch/um/sys-ia64/sysdep/skas_ptrace.h       |  22 ---
 arch/um/sys-ppc/shared/sysdep/skas_ptrace.h |  22 ---
 arch/x86/um/ldt.c                           | 227 ++++++----------------------
 arch/x86/um/shared/sysdep/faultinfo_32.h    |   3 -
 arch/x86/um/shared/sysdep/faultinfo_64.h    |   3 -
 arch/x86/um/shared/sysdep/skas_ptrace.h     |  22 ---
 20 files changed, 148 insertions(+), 858 deletions(-)
 delete mode 100644 arch/um/include/shared/skas/proc_mm.h
 delete mode 100644 arch/um/include/shared/skas_ptrace.h
 delete mode 100644 arch/um/sys-ia64/sysdep/skas_ptrace.h
 delete mode 100644 arch/um/sys-ppc/shared/sysdep/skas_ptrace.h
 delete mode 100644 arch/x86/um/shared/sysdep/skas_ptrace.h
Merging unicore32/unicore32 (8c76c188d498 unicore32: Remove ARCH_HAS_CPUFREQ config option)
$ git merge unicore32/unicore32
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                          |  4 +--
 arch/unicore32/Kconfig               |  6 ----
 arch/unicore32/include/asm/io.h      | 27 +++++++++++++++++
 arch/unicore32/include/asm/pgtable.h | 10 +++----
 arch/unicore32/include/asm/ptrace.h  |  1 +
 arch/unicore32/kernel/clock.c        |  8 ++---
 arch/unicore32/kernel/ksyms.c        | 41 ++-----------------------
 arch/unicore32/kernel/ksyms.h        |  2 --
 arch/unicore32/kernel/module.c       | 11 ++-----
 arch/unicore32/kernel/process.c      |  1 +
 arch/unicore32/kernel/setup.c        |  4 +++
 arch/unicore32/mm/alignment.c        |  1 +
 arch/unicore32/mm/proc-syms.c        |  2 ++
 drivers/rtc/rtc-puv3.c               |  4 +--
 drivers/scsi/mvsas/mv_94xx.c         | 10 +++----
 drivers/scsi/mvsas/mv_94xx.h         | 58 ++++++++++++++++++------------------
 16 files changed, 88 insertions(+), 102 deletions(-)
Merging xtensa/for_next (55b441be5cd6 xtensa: ISS: don't depend on CONFIG_TTY)
$ git merge xtensa/for_next
Already up-to-date.
Merging btrfs/next (c7548af69d9e Btrfs: convert smp_mb__{before,after}_clear_bit)
$ git merge btrfs/next
Already up-to-date.
Merging ceph/master (437f2c0d0c01 rbd: fix ida/idr memory leak)
$ git merge ceph/master
Auto-merging fs/dcache.c
Merge made by the 'recursive' strategy.
 fs/dcache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging cifs/for-next (08bc03539d38 cifs: revalidate mapping prior to satisfying read_iter request with cache=loose)
$ git merge cifs/for-next
Merge made by the 'recursive' strategy.
 fs/cifs/cifsfs.c | 17 +++++++++++++++--
 fs/cifs/link.c   |  2 +-
 2 files changed, 16 insertions(+), 3 deletions(-)
Merging configfs/linux-next (b930c26416c4 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs)
$ git merge configfs/linux-next
Already up-to-date.
Merging ecryptfs/next (9e78d14a9f64 Use %pd in eCryptFS)
$ git merge ecryptfs/next
Auto-merging fs/ecryptfs/inode.c
Auto-merging fs/ecryptfs/file.c
Merge made by the 'recursive' strategy.
 fs/ecryptfs/file.c  |  4 ++--
 fs/ecryptfs/inode.c | 12 ++++++------
 2 files changed, 8 insertions(+), 8 deletions(-)
Merging ext3/for_next (19ef1229bc2e reiserfs: Fix compilation breakage with CONFIG_REISERFS_CHECK)
$ git merge ext3/for_next
Already up-to-date.
Merging ext4/dev (f8409abdc592 Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4)
$ git merge ext4/dev
Already up-to-date.
Merging f2fs/dev (395fd9094524 f2fs: avoid to truncate non-updated page partially)
$ git merge f2fs/dev
Merge made by the 'recursive' strategy.
 fs/f2fs/data.c    | 24 ++++++++++++++++++------
 fs/f2fs/f2fs.h    |  6 ++----
 fs/f2fs/file.c    | 22 ++++++++++++++--------
 fs/f2fs/inode.c   |  1 +
 fs/f2fs/segment.c |  2 --
 fs/f2fs/super.c   |  4 +---
 6 files changed, 36 insertions(+), 23 deletions(-)
Merging fscache/fscache (fe02fb3ec109 FS-Cache: Handle removal of unadded object to the fscache_object_list rb tree)
$ git merge fscache/fscache
Merge made by the 'recursive' strategy.
Merging fuse/for-next (1560c974dcd4 fuse: add renameat2 support)
$ git merge fuse/for-next
Already up-to-date.
Merging gfs2/master (0e48e055a7df GFS2: Prevent recovery before the local journal is set)
$ git merge gfs2/master
Already up-to-date.
Merging jfs/jfs-next (bb5e50aaa805 fs/jfs/super.c: convert simple_str to kstr)
$ git merge jfs/jfs-next
Already up-to-date.
Merging logfs/master (339466142b3f Fix the call to BUG() caused by no free segment found)
$ git merge logfs/master
Auto-merging fs/logfs/super.c
Merge made by the 'recursive' strategy.
 fs/logfs/dev_mtd.c | 2 +-
 fs/logfs/super.c   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
Merging nfs/linux-next (886023c676af NFSv4: test SECINFO RPC_AUTH_GSS pseudoflavors for support)
$ git merge nfs/linux-next
Merge made by the 'recursive' strategy.
 fs/nfs/blocklayout/blocklayout.c |  99 ++++++++--------
 fs/nfs/direct.c                  |  33 ++----
 fs/nfs/filelayout/filelayout.c   | 180 +++++++++++++---------------
 fs/nfs/internal.h                |  11 +-
 fs/nfs/nfs3proc.c                |  21 ++--
 fs/nfs/nfs4_fs.h                 |   8 +-
 fs/nfs/nfs4namespace.c           | 102 +++++++++-------
 fs/nfs/nfs4proc.c                | 107 +++++++++--------
 fs/nfs/nfs4trace.h               |  28 ++---
 fs/nfs/objlayout/objio_osd.c     |  24 ++--
 fs/nfs/objlayout/objlayout.c     |  81 ++++++-------
 fs/nfs/objlayout/objlayout.h     |   8 +-
 fs/nfs/pagelist.c                | 248 ++++++++++++++++++---------------------
 fs/nfs/pnfs.c                    | 161 +++++++------------------
 fs/nfs/pnfs.h                    |  18 ++-
 fs/nfs/proc.c                    |  27 +++--
 fs/nfs/read.c                    |  48 ++++----
 fs/nfs/write.c                   |  80 ++++++-------
 include/linux/nfs_page.h         |  15 ++-
 include/linux/nfs_xdr.h          |  33 ++----
 net/sunrpc/auth.c                |   1 +
 21 files changed, 604 insertions(+), 729 deletions(-)
Merging nfsd/nfsd-next (48385408b455 nfsd4: fix FREE_STATEID lockowner leak)
$ git merge nfsd/nfsd-next
Already up-to-date.
Merging omfs/for-next (976d167615b6 Linux 3.1-rc9)
$ git merge omfs/for-next
Already up-to-date.
Merging squashfs/master (6d565409503f Squashfs: fix failure to unlock pages on decompress error)
$ git merge squashfs/master
Already up-to-date.
Merging v9fs/for-next (f15844e0777f 9P: fix return value in v9fs_fid_xattr_set)
$ git merge v9fs/for-next
Already up-to-date.
Merging ubifs/linux-next (380347e9ca76 UBIFS: Add an assertion for clean_zn_cnt)
$ git merge ubifs/linux-next
Already up-to-date.
Merging xfs/for-next (7691283d0561 Merge branch 'xfs-misc-fixes-3-for-3.16' into for-next)
$ git merge xfs/for-next
Already up-to-date.
Merging file-private-locks/linux-next (7dfeba1f206f locks: set fl_owner for leases back to current->files)
$ git merge file-private-locks/linux-next
Auto-merging include/linux/fs.h
Merge made by the 'recursive' strategy.
 fs/locks.c         | 2 +-
 include/linux/fs.h | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)
Merging vfs/for-next (cd67b9ac44ea switch iov_iter_get_pages() to passing maximal number of pages)
$ git merge vfs/for-next
Merge made by the 'recursive' strategy.
 fs/direct-io.c      |  2 +-
 fs/fuse/file.c      |  4 ++--
 include/linux/uio.h |  2 +-
 mm/iov_iter.c       | 17 ++++++++---------
 4 files changed, 12 insertions(+), 13 deletions(-)
Merging pci/next (7171511eaec5 Linux 3.16-rc1)
$ git merge pci/next
Already up-to-date.
Merging hid/for-next (8e4cfb08c532 Merge branch 'for-3.17/hid-gt683r' into for-next)
$ git merge hid/for-next
Merge made by the 'recursive' strategy.
 .../ABI/testing/sysfs-class-hid-driver-gt683r      |  14 +
 drivers/hid/Kconfig                                |  14 +
 drivers/hid/Makefile                               |   1 +
 drivers/hid/hid-core.c                             |   1 +
 drivers/hid/hid-gt683r.c                           | 309 +++++++++++++++++++++
 drivers/hid/hid-ids.h                              |   2 +-
 drivers/hid/usbhid/hid-core.c                      |   2 +-
 drivers/hid/usbhid/hid-quirks.c                    |   2 +-
 8 files changed, 342 insertions(+), 3 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-class-hid-driver-gt683r
 create mode 100644 drivers/hid/hid-gt683r.c
Merging i2c/i2c/for-next (f0b1f6442b50 Merge tag 'v3.16-rc1' into i2c/for-next)
$ git merge i2c/i2c/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/i2c/i2c-rk3x.txt |  42 ++
 .../devicetree/bindings/i2c/i2c-sunxi-p2wi.txt     |  41 ++
 drivers/i2c/busses/Kconfig                         |  23 +
 drivers/i2c/busses/Makefile                        |   2 +
 drivers/i2c/busses/i2c-rk3x.c                      | 763 +++++++++++++++++++++
 drivers/i2c/busses/i2c-sun6i-p2wi.c                | 345 ++++++++++
 6 files changed, 1216 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-sunxi-p2wi.txt
 create mode 100644 drivers/i2c/busses/i2c-rk3x.c
 create mode 100644 drivers/i2c/busses/i2c-sun6i-p2wi.c
Merging jdelvare-hwmon/master (c7208164e66f Linux 3.15-rc7)
$ git merge jdelvare-hwmon/master
Already up-to-date.
Merging hwmon-staging/hwmon-next (2a3c653051b1 hwmon: (gpio-fan) Convert to devm_hwmon_device_register_with_groups)
$ git merge hwmon-staging/hwmon-next
Merge made by the 'recursive' strategy.
 Documentation/hwmon/powr1220       |  45 +++++
 drivers/hwmon/Kconfig              |  12 ++
 drivers/hwmon/Makefile             |   1 +
 drivers/hwmon/gpio-fan.c           |  17 +-
 drivers/hwmon/powr1220.c           | 391 +++++++++++++++++++++++++++++++++++++
 drivers/hwmon/twl4030-madc-hwmon.c |  38 +---
 6 files changed, 459 insertions(+), 45 deletions(-)
 create mode 100644 Documentation/hwmon/powr1220
 create mode 100644 drivers/hwmon/powr1220.c
Merging v4l-dvb/master (656111f4b9cb Merge branch 'topic/omap3isp' into to_next)
$ git merge v4l-dvb/master
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging kbuild/for-next (bfbf2e950ac8 Merge branch 'kbuild/rc-fixes' into kbuild/for-next)
$ git merge kbuild/for-next
Merge made by the 'recursive' strategy.
 Documentation/lto-build  | 173 +++++++++++++++++++++++++++++++++++++++++++++++
 Makefile                 |  19 +++++-
 arch/x86/Kconfig         |   2 +-
 init/Kconfig             |  73 ++++++++++++++++++++
 kernel/gcov/Kconfig      |   2 +-
 lib/Kconfig.debug        |   2 +-
 scripts/Makefile.lto     |  84 +++++++++++++++++++++++
 scripts/Makefile.modpost |   7 +-
 scripts/link-vmlinux.sh  |   2 +-
 9 files changed, 356 insertions(+), 8 deletions(-)
 create mode 100644 Documentation/lto-build
 create mode 100644 scripts/Makefile.lto
Merging kconfig/for-next (95edca5c523c localmodconfig: Add config depends by default settings)
$ git merge kconfig/for-next
Already up-to-date.
Merging libata/for-next (2e83f386e2c9 Merge branch 'for-3.16-fixes' into for-next)
$ git merge libata/for-next
Merge made by the 'recursive' strategy.
 drivers/ata/ahci_imx.c         | 35 +++++++++++++++++++++++++++++++----
 drivers/ata/ahci_xgene.c       | 10 ----------
 drivers/ata/libahci_platform.c | 20 +++++++++++++++++++-
 drivers/ata/sata_fsl.c         |  5 ++---
 4 files changed, 52 insertions(+), 18 deletions(-)
Merging pm/linux-next (85e1ab79ec13 Merge branch 'pm-cpuidle' into linux-next)
$ git merge pm/linux-next
Auto-merging arch/x86/Kconfig
Merge made by the 'recursive' strategy.
 Documentation/kernel-parameters.txt     | 14 +++++---
 arch/ia64/hp/common/sba_iommu.c         | 64 +++++++++++++++++++--------------
 arch/x86/Kconfig                        |  1 -
 arch/x86/boot/compressed/aslr.c         |  9 ++++-
 drivers/acpi/acpi_extlog.c              | 14 ++++----
 drivers/acpi/acpi_lpss.c                | 15 ++++++++
 drivers/acpi/apei/apei-internal.h       | 10 +++---
 drivers/acpi/apei/ghes.c                | 32 ++++++++---------
 drivers/acpi/battery.c                  | 39 ++++++++++++++++++--
 drivers/acpi/osl.c                      |  3 +-
 drivers/acpi/tables.c                   |  3 +-
 drivers/cpufreq/Kconfig                 |  2 ++
 drivers/cpufreq/cpufreq.c               | 10 +++---
 drivers/cpufreq/intel_pstate.c          |  5 +--
 drivers/cpuidle/cpuidle-armada-370-xp.c |  4 +--
 drivers/firmware/efi/cper.c             | 20 +++++------
 include/acpi/actbl1.h                   | 14 ++++----
 include/acpi/ghes.h                     |  2 +-
 include/acpi/processor.h                | 10 +++---
 include/linux/suspend.h                 |  2 ++
 kernel/power/hibernate.c                | 37 ++++++++++++++++++-
 kernel/power/main.c                     |  6 ++--
 kernel/power/user.c                     |  3 ++
 23 files changed, 213 insertions(+), 106 deletions(-)
Merging idle/next (23a299cd9378 Merge branches 'turbostat' and 'intel_idle' into release)
$ git merge idle/next
Already up-to-date.
Merging apm/for-next (158204397034 apm-emulation: add hibernation APM events to support suspend2disk)
$ git merge apm/for-next
Already up-to-date.
Merging cpupowerutils/master (f16603386b38 cpupower tools: add install target to the debug tools' makefiles)
$ git merge cpupowerutils/master
Already up-to-date.
Merging thermal/next (63745aa72ed1 Merge branches 'armada-375-380-soc-support', 'eduardo-thermal-soc-fixes', 'intel-soc-dts-thermal' and 'thermal-soc-fixes' of .git into next)
$ git merge thermal/next
Already up-to-date.
Merging ieee1394/for-next (165d560bb267 Merge branch 'master' into for-next)
$ git merge ieee1394/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging dlm/next (883854c5457a dlm: keep listening connection alive with sctp mode)
$ git merge dlm/next
Already up-to-date.
Merging swiotlb/linux-next (0cb637bff80d swiotlb: Don't DoS us with 'swiotlb buffer is full' (v2))
$ git merge swiotlb/linux-next
Already up-to-date.
Merging slave-dma/next (7171511eaec5 Linux 3.16-rc1)
$ git merge slave-dma/next
Already up-to-date.
Merging dmaengine/next (fbeec99ad5c0 dma: mv_xor: Rename __mv_xor_slot_cleanup() to mv_xor_slot_cleanup())
$ git merge dmaengine/next
Auto-merging drivers/dma/mv_xor.c
Merge made by the 'recursive' strategy.
 drivers/dma/ioat/dca.c    | 13 ++++----
 drivers/dma/ioat/dma.c    |  2 +-
 drivers/dma/ioat/dma_v3.c |  6 ++--
 drivers/dma/mv_xor.c      | 80 +++++++++++++++++++++++++++++++++++++----------
 4 files changed, 74 insertions(+), 27 deletions(-)
Merging net-next/master (e0f802fbcaa3 tcp: move ir_mark initialization to tcp_openreq_init)
$ git merge net-next/master
Merge made by the 'recursive' strategy.
 drivers/net/ieee802154/mrf24j40.c | 115 +++++++++++++++++++++++++++++---------
 include/net/tcp.h                 |   3 +-
 net/core/dev.c                    |   6 +-
 net/ipv4/tcp_ipv4.c               |   3 +-
 net/ipv6/tcp_ipv6.c               |   3 +-
 5 files changed, 94 insertions(+), 36 deletions(-)
Merging ipsec-next/master (7171511eaec5 Linux 3.16-rc1)
$ git merge ipsec-next/master
Already up-to-date.
Merging wireless-next/master (2e91606f5e1e PCMCIA_HERMES: ioport_map/unmap relies on HAS_IOPORT_MAP)
$ git merge wireless-next/master
Auto-merging drivers/net/wireless/rt2x00/rt2x00mac.c
Auto-merging drivers/net/wireless/rt2x00/rt2x00dev.c
Auto-merging drivers/net/wireless/b43/main.c
Merge made by the 'recursive' strategy.
 drivers/bcma/driver_gpio.c                         |   1 +
 drivers/net/wireless/ath/ath.h                     |   1 +
 drivers/net/wireless/ath/ath9k/Makefile            |   3 +-
 drivers/net/wireless/ath/ath9k/ath9k.h             | 159 +++-
 drivers/net/wireless/ath/ath9k/beacon.c            |  97 ++-
 drivers/net/wireless/ath/ath9k/channel.c           | 685 ++++++++++++++++
 drivers/net/wireless/ath/ath9k/debug.c             |  28 +-
 drivers/net/wireless/ath/ath9k/hw.c                |  23 +-
 drivers/net/wireless/ath/ath9k/hw.h                |   1 +
 drivers/net/wireless/ath/ath9k/init.c              |  55 +-
 drivers/net/wireless/ath/ath9k/link.c              |   6 +-
 drivers/net/wireless/ath/ath9k/main.c              | 892 +++++++++++++++------
 drivers/net/wireless/ath/ath9k/mci.c               |   4 +-
 drivers/net/wireless/ath/ath9k/pci.c               |   1 +
 drivers/net/wireless/ath/ath9k/recv.c              |  16 +-
 drivers/net/wireless/ath/ath9k/tx99.c              |   2 +-
 drivers/net/wireless/ath/ath9k/wow.c               |   1 +
 drivers/net/wireless/ath/ath9k/xmit.c              | 114 ++-
 drivers/net/wireless/ath/wil6210/cfg80211.c        |  68 +-
 drivers/net/wireless/ath/wil6210/debugfs.c         | 304 ++++++-
 drivers/net/wireless/ath/wil6210/interrupt.c       |   3 +
 drivers/net/wireless/ath/wil6210/main.c            |  22 +-
 drivers/net/wireless/ath/wil6210/pcie_bus.c        |  31 +-
 drivers/net/wireless/ath/wil6210/rx_reorder.c      |   1 +
 drivers/net/wireless/ath/wil6210/txrx.c            |  33 +-
 drivers/net/wireless/ath/wil6210/wil6210.h         |  10 +-
 drivers/net/wireless/ath/wil6210/wmi.c             |  40 +-
 drivers/net/wireless/b43/main.c                    |  46 +-
 drivers/net/wireless/b43/phy_common.c              |  21 +-
 drivers/net/wireless/b43/phy_common.h              |  12 +-
 drivers/net/wireless/b43/phy_ht.c                  |   2 +-
 drivers/net/wireless/b43/phy_n.c                   |  88 +-
 drivers/net/wireless/b43/tables_nphy.c             |   2 +-
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.c  |  18 +-
 .../net/wireless/brcm80211/brcmsmac/phy/phy_cmn.c  |   6 +-
 drivers/net/wireless/cw1200/sta.c                  |   3 +-
 drivers/net/wireless/libertas/Kconfig              |   2 +-
 drivers/net/wireless/libertas/cmd.c                |   1 +
 drivers/net/wireless/mwifiex/cfg80211.c            |  46 +-
 drivers/net/wireless/mwifiex/sta_ioctl.c           |   2 +-
 drivers/net/wireless/orinoco/Kconfig               |   4 +-
 drivers/net/wireless/rsi/rsi_91x_core.c            |  85 +-
 drivers/net/wireless/rsi/rsi_91x_debugfs.c         |  10 +-
 drivers/net/wireless/rsi/rsi_91x_mac80211.c        | 143 +++-
 drivers/net/wireless/rsi/rsi_91x_mgmt.c            | 236 ++++--
 drivers/net/wireless/rsi/rsi_91x_pkt.c             |  17 +
 drivers/net/wireless/rsi/rsi_91x_sdio.c            |   6 +-
 drivers/net/wireless/rsi/rsi_91x_sdio_ops.c        |   8 +-
 drivers/net/wireless/rsi/rsi_91x_usb.c             |  28 +-
 drivers/net/wireless/rsi/rsi_main.h                |  12 +
 drivers/net/wireless/rsi/rsi_mgmt.h                |  25 +-
 drivers/net/wireless/rsi/rsi_sdio.h                |   8 +-
 drivers/net/wireless/rt2x00/rt2800lib.c            |  69 +-
 drivers/net/wireless/rt2x00/rt2x00dev.c            |  10 +-
 drivers/net/wireless/rt2x00/rt2x00mac.c            |  20 +-
 drivers/net/wireless/rt2x00/rt2x00mmio.c           |   8 +-
 drivers/net/wireless/rt2x00/rt2x00queue.c          |  21 +-
 drivers/net/wireless/rt2x00/rt2x00queue.h          |   1 +
 drivers/net/wireless/rtl818x/rtl8180/dev.c         |  33 +-
 .../net/wireless/rtlwifi/btcoexist/halbtcoutsrc.h  |   2 +-
 drivers/net/wireless/rtlwifi/rtl8192de/phy.c       |   3 +-
 61 files changed, 2823 insertions(+), 776 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath9k/channel.c
Merging bluetooth/master (34b3b37155d8 Bluetooth: Fix checking for master LTKs)
$ git merge bluetooth/master
Recorded preimage for 'net/bluetooth/smp.c'
Auto-merging net/bluetooth/smp.c
CONFLICT (content): Merge conflict in net/bluetooth/smp.c
Auto-merging net/bluetooth/mgmt.c
Auto-merging net/bluetooth/l2cap_sock.c
Auto-merging net/bluetooth/l2cap_core.c
Auto-merging net/bluetooth/hci_event.c
Auto-merging net/bluetooth/hci_conn.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'net/bluetooth/smp.c'.
[master 50e68ff12e6b] Merge remote-tracking branch 'bluetooth/master'
$ git diff -M --stat --summary HEAD^..
 drivers/bluetooth/Kconfig         |  12 ++---
 drivers/bluetooth/ath3k.c         |   4 +-
 include/net/bluetooth/bluetooth.h |  18 +++----
 include/net/bluetooth/hci.h       |   9 ----
 include/net/bluetooth/hci_core.h  |   2 +-
 include/net/bluetooth/l2cap.h     |   6 +--
 net/bluetooth/a2mp.c              |   7 +--
 net/bluetooth/hci_conn.c          |  12 ++++-
 net/bluetooth/hci_core.c          |  22 ++++----
 net/bluetooth/hci_event.c         |   7 +--
 net/bluetooth/l2cap_core.c        |  33 +++++-------
 net/bluetooth/l2cap_sock.c        |   9 ++--
 net/bluetooth/mgmt.c              |  15 ++++--
 net/bluetooth/smp.c               | 105 +++++++++++++++++++++++++-------------
 net/bluetooth/smp.h               |   7 +++
 15 files changed, 156 insertions(+), 112 deletions(-)
Merging infiniband/for-next (eeaddf3670d4 Merge branches 'core', 'cxgb3', 'cxgb4', 'iser', 'iwpm', 'misc', 'mlx4', 'mlx5', 'noio', 'ocrdma', 'qib', 'srp' and 'usnic' into for-next)
$ git merge infiniband/for-next
Already up-to-date.
Merging mtd/master (7171511eaec5 Linux 3.16-rc1)
$ git merge mtd/master
Already up-to-date.
Merging l2-mtd/master (7171511eaec5 Linux 3.16-rc1)
$ git merge l2-mtd/master
Already up-to-date.
Merging crypto/master (5208ed2ca165 crypto: testmgr - add aead cbc des, des3_ede tests)
$ git merge crypto/master
Already up-to-date.
Merging drm/drm-next (bc1dfff04a5d Merge branch 'drm-nouveau-next' of git://anongit.freedesktop.org/git/nouveau/linux-2.6 into drm-next)
$ git merge drm/drm-next
Already up-to-date.
Merging drm-panel/drm/panel/for-next (7e40b5162b3c drm/panel: make DRM_PANEL_LD9040 depend on SPI)
$ git merge drm-panel/drm/panel/for-next
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/panel/Kconfig | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
Merging drm-intel/for-linux-next (9c33baa6b3bb drivers/i915: Fix unnoticed failure of init_ring_common())
$ git merge drm-intel/for-linux-next
Auto-merging drivers/gpu/drm/i915/intel_uncore.c
Auto-merging drivers/gpu/drm/i915/intel_pm.c
Auto-merging drivers/gpu/drm/i915/intel_drv.h
Auto-merging drivers/gpu/drm/i915/intel_display.c
Auto-merging drivers/gpu/drm/i915/i915_irq.c
Auto-merging drivers/gpu/drm/i915/i915_gem_gtt.c
Auto-merging drivers/gpu/drm/i915/i915_drv.h
Auto-merging drivers/gpu/drm/i915/i915_dma.c
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/drm_crtc.c                    | 357 +++++++---
 drivers/gpu/drm/i915/i915_cmd_parser.c        |   3 +
 drivers/gpu/drm/i915/i915_debugfs.c           |  52 +-
 drivers/gpu/drm/i915/i915_dma.c               |  34 +-
 drivers/gpu/drm/i915/i915_drv.c               |  39 +-
 drivers/gpu/drm/i915/i915_drv.h               |  76 ++-
 drivers/gpu/drm/i915/i915_gem.c               |  97 ++-
 drivers/gpu/drm/i915/i915_gem_context.c       |   3 +-
 drivers/gpu/drm/i915/i915_gem_execbuffer.c    |   8 +-
 drivers/gpu/drm/i915/i915_gem_gtt.c           |  54 +-
 drivers/gpu/drm/i915/i915_gem_gtt.h           |   5 +-
 drivers/gpu/drm/i915/i915_gem_render_state.c  | 161 ++---
 drivers/gpu/drm/i915/i915_gem_stolen.c        |  21 +-
 drivers/gpu/drm/i915/i915_irq.c               | 213 +++---
 drivers/gpu/drm/i915/i915_params.c            |   5 +
 drivers/gpu/drm/i915/i915_reg.h               | 442 ++++++++-----
 drivers/gpu/drm/i915/intel_ddi.c              |   4 +-
 drivers/gpu/drm/i915/intel_display.c          | 903 +++++++++++++++++++++++---
 drivers/gpu/drm/i915/intel_dp.c               | 249 ++++---
 drivers/gpu/drm/i915/intel_drv.h              |  45 +-
 drivers/gpu/drm/i915/intel_dsi.c              |  26 +-
 drivers/gpu/drm/i915/intel_dsi_panel_vbt.c    |   8 +-
 drivers/gpu/drm/i915/intel_dvo.c              |   8 +
 drivers/gpu/drm/i915/intel_fbdev.c            |  30 +-
 drivers/gpu/drm/i915/intel_hdmi.c             |  65 ++
 drivers/gpu/drm/i915/intel_overlay.c          |  13 +-
 drivers/gpu/drm/i915/intel_pm.c               | 370 ++++++++---
 drivers/gpu/drm/i915/intel_renderstate.h      |   2 -
 drivers/gpu/drm/i915/intel_renderstate_gen6.c |   1 +
 drivers/gpu/drm/i915/intel_renderstate_gen7.c |   1 +
 drivers/gpu/drm/i915/intel_renderstate_gen8.c |   1 +
 drivers/gpu/drm/i915/intel_ringbuffer.c       |  12 +-
 drivers/gpu/drm/i915/intel_sprite.c           |   9 +
 drivers/gpu/drm/i915/intel_uncore.c           | 180 +++--
 include/drm/drm_crtc.h                        |   6 +-
 35 files changed, 2576 insertions(+), 927 deletions(-)
Merging drm-tegra/drm/tegra/for-next (1f64ae7c5af0 drm/tegra: sor - Remove obsolete comment)
$ git merge drm-tegra/drm/tegra/for-next
Already up-to-date.
Merging sound/for-next (7f0f20486f4d ALSA: Use dma_zalloc_coherent)
$ git merge sound/for-next
Merge made by the 'recursive' strategy.
 sound/aoa/soundbus/i2sbus/core.c | 12 ++++--------
 sound/sparc/dbri.c               |  6 ++----
 2 files changed, 6 insertions(+), 12 deletions(-)
Merging sound-asoc/for-next (e1f422c43498 Merge remote-tracking branches 'asoc/topic/spdif', 'asoc/topic/wm8904' and 'asoc/topic/wm8985' into asoc-next)
$ git merge sound-asoc/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/sound/wm8904.txt |  33 ++++++
 include/linux/mfd/arizona/core.h                   |   6 ++
 sound/arm/pxa2xx-ac97-lib.c                        |  12 +--
 sound/soc/atmel/atmel_wm8904.c                     |  50 ---------
 sound/soc/codecs/Kconfig                           |   2 +
 sound/soc/codecs/arizona.c                         | 112 +++++++++++++++++++--
 sound/soc/codecs/rl6231.c                          |  19 ----
 sound/soc/codecs/rt5677.c                          |  47 +--------
 sound/soc/codecs/spdif_transmitter.c               |   2 +-
 sound/soc/codecs/wm5102.c                          |  62 ++++++++++++
 sound/soc/codecs/wm8904.c                          |  11 ++
 sound/soc/codecs/wm8985.c                          |   3 -
 sound/soc/codecs/wm8994.c                          |   9 +-
 sound/soc/fsl/fsl_spdif.c                          |  86 ++++++++--------
 sound/soc/fsl/fsl_spdif.h                          |  10 +-
 sound/soc/fsl/fsl_ssi.c                            |   4 +-
 sound/soc/intel/byt-rt5640.c                       |   1 +
 sound/soc/intel/sst-baytrail-ipc.c                 |  30 ++++++
 sound/soc/samsung/Kconfig                          |   2 +-
 19 files changed, 322 insertions(+), 179 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/wm8904.txt
Merging modules/modules-next (4982223e51e8 module: set nx before marking module MODULE_STATE_COMING.)
$ git merge modules/modules-next
Already up-to-date.
Merging virtio/virtio-next (c77fba9ab058 virtio_scsi: don't call virtqueue_add_sgs(... GFP_NOIO) holding spinlock.)
$ git merge virtio/virtio-next
Already up-to-date.
Merging input/next (68807a0c2015 Input: atmel_mxt_ts - fix invalid return from mxt_get_bootloader_version)
$ git merge input/next
Already up-to-date.
Merging input-mt/for-next (5e01dc7b26d9 Linux 3.12)
$ git merge input-mt/for-next
Already up-to-date.
Merging block/for-next (a2d445d44000 block: add __init to blkcg_policy_register)
$ git merge block/for-next
Already up-to-date.
Merging device-mapper/for-next (a27595b04b91 dm crypt: sort writes)
$ git merge device-mapper/for-next
Merge made by the 'recursive' strategy.
 block/bio.c           |   3 +-
 drivers/md/dm-crypt.c | 405 ++++++++++++++++++++++++++------------------------
 2 files changed, 214 insertions(+), 194 deletions(-)
Merging embedded/master (4744b43431e8 embedded: fix vc_translate operator precedence)
$ git merge embedded/master
Already up-to-date.
Merging firmware/master (6e03a201bbe8 firmware: speed up request_firmware(), v3)
$ git merge firmware/master
Already up-to-date.
Merging pcmcia/master (80af9e6d7ae6 pcmcia at91_cf: fix raw gpio number usage)
$ git merge pcmcia/master
Already up-to-date.
Merging mmc/mmc-next (11bc9381b277 mmc: sdhci-s3c: use mmc_of_parse and remove the card_tasklet)
$ git merge mmc/mmc-next
Already up-to-date.
Merging mmc-uh/next (e9c729860d84 mmc: core: Fix DT documentation of eMMC high-speed DDR 1.8/1.2V bindings)
$ git merge mmc-uh/next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mmc/mmc.txt      |   4 +-
 .../devicetree/bindings/mmc/ti-omap-hsmmc.txt      |  54 ++++
 drivers/mmc/core/bus.c                             |  10 +-
 drivers/mmc/core/quirks.c                          |   2 +-
 drivers/mmc/core/sd_ops.c                          |   3 +
 drivers/mmc/host/mmci.c                            | 127 ++++++++-
 drivers/mmc/host/mmci.h                            |  20 ++
 drivers/mmc/host/moxart-mmc.c                      |   1 -
 drivers/mmc/host/omap_hsmmc.c                      | 283 +++++++++++++++++++--
 drivers/mmc/host/sdhci.c                           | 104 +++-----
 drivers/mmc/host/sh_mmcif.c                        |  83 ++----
 drivers/mmc/host/wmt-sdmmc.c                       |  33 ++-
 include/linux/mmc/sdhci.h                          |   3 -
 include/linux/platform_data/mmc-omap.h             |   1 +
 14 files changed, 542 insertions(+), 186 deletions(-)
Merging kgdb/kgdb-next (6bedf31c25dd kdb: Remove unhandled ssb command)
$ git merge kgdb/kgdb-next
Merge made by the 'recursive' strategy.
Merging slab/for-next (201ed0edb712 Merge branch 'slab/next' into for-next)
$ git merge slab/for-next
Auto-merging mm/slub.c
Auto-merging mm/slab_common.c
Merge made by the 'recursive' strategy.
 mm/slab_common.c |  2 +-
 mm/slub.c        | 16 +++++++++-------
 2 files changed, 10 insertions(+), 8 deletions(-)
Merging uclinux/for-next (6dbe51c251a3 Linux 3.9-rc1)
$ git merge uclinux/for-next
Already up-to-date.
Merging md/for-next (053f5b6525ae raid5: speedup sync_request processing)
$ git merge md/for-next
Already up-to-date.
Merging mfd/master (90b128ed1557 Merge tag 'mfd-lee-3.13-3' of git://git.linaro.org/people/ljones/mfd)
$ git merge mfd/master
Already up-to-date.
Merging mfd-lj/for-mfd-next (f4fc540b6633 mfd: Add driver for Maxim 77802 Power Management IC)
$ git merge mfd-lj/for-mfd-next
Auto-merging include/linux/mfd/arizona/core.h
Removing drivers/mfd/max77693-irq.c
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mfd/max77802.txt |  87 +++++
 drivers/extcon/extcon-max77693.c                   |  35 +-
 drivers/gpio/Kconfig                               |  13 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/gpio-crystalcove.c                    | 380 +++++++++++++++++++++
 drivers/mfd/Kconfig                                |  31 +-
 drivers/mfd/Makefile                               |   6 +-
 drivers/mfd/arizona-core.c                         |  18 +-
 drivers/mfd/asic3.c                                |  12 +-
 drivers/mfd/cros_ec_spi.c                          |  18 +-
 drivers/mfd/intel_soc_pmic_core.c                  | 168 +++++++++
 drivers/mfd/intel_soc_pmic_core.h                  |  32 ++
 drivers/mfd/intel_soc_pmic_crc.c                   | 158 +++++++++
 drivers/mfd/max77693-irq.c                         | 336 ------------------
 drivers/mfd/max77693.c                             | 210 ++++++++----
 drivers/mfd/max77802.c                             | 362 ++++++++++++++++++++
 drivers/mfd/tc3589x.c                              |   2 +-
 drivers/regulator/max77693.c                       |  12 +-
 include/dt-bindings/mfd/as3722.h                   |   2 +-
 include/linux/mfd/arizona/core.h                   |   2 +-
 include/linux/mfd/intel_soc_pmic.h                 |  30 ++
 include/linux/mfd/max77693-private.h               |  54 ++-
 include/linux/mfd/max77802-private.h               | 309 +++++++++++++++++
 include/linux/mfd/max77802.h                       | 124 +++++++
 24 files changed, 1942 insertions(+), 460 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/max77802.txt
 create mode 100644 drivers/gpio/gpio-crystalcove.c
 create mode 100644 drivers/mfd/intel_soc_pmic_core.c
 create mode 100644 drivers/mfd/intel_soc_pmic_core.h
 create mode 100644 drivers/mfd/intel_soc_pmic_crc.c
 delete mode 100644 drivers/mfd/max77693-irq.c
 create mode 100644 drivers/mfd/max77802.c
 create mode 100644 include/linux/mfd/intel_soc_pmic.h
 create mode 100644 include/linux/mfd/max77802-private.h
 create mode 100644 include/linux/mfd/max77802.h
Merging battery/master (ac323d8d8070 power: max17040: Fix NULL pointer dereference when there is no platform_data)
$ git merge battery/master
Already up-to-date.
Merging fbdev/for-next (718b90ac4c21 video: xilinxfb: Simplify error path)
$ git merge fbdev/for-next
Already up-to-date.
Merging viafb/viafb-next (838ac785d521 viafb: avoid refresh and mode lookup in set_par)
$ git merge viafb/viafb-next
Already up-to-date.
Merging omap_dss2/for-next (7171511eaec5 Linux 3.16-rc1)
$ git merge omap_dss2/for-next
Already up-to-date.
Merging regulator/for-next (b753a93f7437 Merge remote-tracking branch 'regulator/topic/tps6586x' into regulator-next)
$ git merge regulator/for-next
Merge made by the 'recursive' strategy.
 drivers/regulator/88pm800.c                |   1 -
 drivers/regulator/bcm590xx-regulator.c     |  16 +---
 drivers/regulator/core.c                   |   8 +-
 drivers/regulator/mc13xxx-regulator-core.c |  37 ++-------
 drivers/regulator/mc13xxx.h                |   1 -
 drivers/regulator/tps6586x-regulator.c     | 129 +++++++++++++++--------------
 6 files changed, 85 insertions(+), 107 deletions(-)
Merging security/next (2fd4e6698f08 Merge branch 'smack-for-3.16' of git://git.gitorious.org/smack-next/kernel into next)
$ git merge security/next
Already up-to-date.
Merging integrity/next (0430e49b6e7c ima: introduce ima_kernel_read())
$ git merge integrity/next
Already up-to-date.
Merging selinux/next (5c7001b84be5 SELinux: use ARRAY_SIZE)
$ git merge selinux/next
Merge made by the 'recursive' strategy.
 scripts/selinux/genheaders/Makefile | 1 -
 scripts/selinux/mdp/Makefile        | 2 +-
 security/selinux/ss/policydb.c      | 8 ++++----
 3 files changed, 5 insertions(+), 6 deletions(-)
Merging lblnet/next (d8ec26d7f828 Linux 3.13)
$ git merge lblnet/next
Already up-to-date.
Merging watchdog/master (7171511eaec5 Linux 3.16-rc1)
$ git merge watchdog/master
Already up-to-date.
Merging iommu/next (c0981b863a31 Merge branches 'iommu/fixes', 'arm/omap', 'arm/smmu', 'arm/shmobile', 'x86/amd', 'arm/exynos', 'arm/renesas', 'ppc/pamu' and 'arm/msm' into next)
$ git merge iommu/next
Already up-to-date.
Merging dwmw2-iommu/master (1860e379875d Linux 3.15)
$ git merge dwmw2-iommu/master
Already up-to-date.
Merging vfio/next (fd49c81f080a drivers/vfio/pci: Fix wrong MSI interrupt count)
$ git merge vfio/next
Already up-to-date.
Merging osd/linux-next (ce5d36aac26c ore: Support for raid 6)
$ git merge osd/linux-next
Already up-to-date.
Merging jc_docs/docs-next (5c050fb96380 docs: update the development process document)
$ git merge jc_docs/docs-next
Already up-to-date.
Merging trivial/for-next (d31e373d0778 irq-gic: remove file name from heading comment)
$ git merge trivial/for-next
Recorded preimage for 'arch/arm/mach-msm/Kconfig'
Auto-merging fs/befs/linuxvfs.c
Auto-merging drivers/usb/phy/phy.c
Auto-merging drivers/irqchip/irq-gic.c
Auto-merging drivers/cpuidle/governors/menu.c
Auto-merging arch/sh/boards/Kconfig
Auto-merging arch/arm/mach-msm/Kconfig
CONFLICT (content): Merge conflict in arch/arm/mach-msm/Kconfig
Auto-merging Documentation/SubmittingPatches
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'arch/arm/mach-msm/Kconfig'.
[master 42b602f66b49] Merge remote-tracking branch 'trivial/for-next'
$ git diff -M --stat --summary HEAD^..
 Documentation/PCI/MSI-HOWTO.txt       |  2 +-
 Documentation/RCU/RTFP.txt            |  4 ++--
 Documentation/SubmittingDrivers       |  4 ----
 Documentation/SubmittingPatches       |  4 ++--
 Documentation/laptops/hpfall.c        |  1 +
 Documentation/scsi/ncr53c8xx.txt      |  2 +-
 Documentation/security/LSM.txt        |  2 +-
 Documentation/usb/hotplug.txt         |  8 ++++----
 Documentation/zh_CN/SubmittingDrivers |  4 ----
 arch/arm/mach-msm/Kconfig             |  3 ---
 arch/hexagon/include/asm/cache.h      |  2 +-
 arch/sh/boards/Kconfig                |  2 +-
 crypto/asymmetric_keys/Kconfig        |  1 -
 drivers/cpuidle/governors/menu.c      |  2 +-
 drivers/gpu/drm/gma500/mid_bios.c     |  1 -
 drivers/irqchip/irq-gic.c             |  2 --
 drivers/media/radio/radio-mr800.c     |  2 +-
 drivers/mfd/intel_msic.c              |  2 +-
 drivers/scsi/mvsas/mv_sas.c           | 24 ++++++++++++++----------
 drivers/usb/phy/phy.c                 |  2 +-
 fs/befs/linuxvfs.c                    |  2 --
 scripts/Makefile.modinst              |  2 +-
 22 files changed, 33 insertions(+), 45 deletions(-)
Merging audit/master (3efe33f5d2da audit: x86: drop arch from __audit_syscall_entry() interface)
$ git merge audit/master
Resolved 'arch/mips/include/asm/syscall.h' using previous resolution.
Resolved 'arch/mips/kernel/ptrace.c' using previous resolution.
Resolved 'arch/x86/Kconfig' using previous resolution.
Resolved 'kernel/audit.c' using previous resolution.
Auto-merging kernel/auditsc.c
Auto-merging kernel/audit.c
CONFLICT (content): Merge conflict in kernel/audit.c
Auto-merging include/uapi/linux/audit.h
Auto-merging arch/x86/kernel/ptrace.c
Auto-merging arch/x86/kernel/entry_64.S
Auto-merging arch/x86/kernel/entry_32.S
Auto-merging arch/x86/Kconfig
CONFLICT (content): Merge conflict in arch/x86/Kconfig
Auto-merging arch/um/kernel/ptrace.c
Auto-merging arch/s390/kernel/ptrace.c
Auto-merging arch/mips/kernel/ptrace.c
CONFLICT (content): Merge conflict in arch/mips/kernel/ptrace.c
Auto-merging arch/mips/include/asm/syscall.h
CONFLICT (content): Merge conflict in arch/mips/include/asm/syscall.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 5dba5a2e5c87] Merge remote-tracking branch 'audit/master'
$ git diff -M --stat --summary HEAD^..
 arch/alpha/include/asm/syscall.h        | 11 +++++++++++
 arch/alpha/kernel/ptrace.c              |  2 +-
 arch/arm/kernel/ptrace.c                |  4 ++--
 arch/ia64/include/asm/syscall.h         |  6 ++++++
 arch/ia64/kernel/ptrace.c               |  2 +-
 arch/microblaze/include/asm/syscall.h   |  5 +++++
 arch/microblaze/kernel/ptrace.c         |  3 +--
 arch/mips/include/asm/syscall.h         |  2 +-
 arch/mips/kernel/ptrace.c               |  4 +---
 arch/openrisc/include/asm/syscall.h     |  5 +++++
 arch/openrisc/kernel/ptrace.c           |  3 +--
 arch/parisc/include/asm/syscall.h       | 11 +++++++++++
 arch/parisc/kernel/ptrace.c             |  9 +++------
 arch/powerpc/include/asm/syscall.h      |  6 ++++++
 arch/powerpc/kernel/ptrace.c            |  7 ++-----
 arch/s390/kernel/ptrace.c               |  4 +---
 arch/sh/include/asm/syscall_32.h        | 10 ++++++++++
 arch/sh/include/asm/syscall_64.h        | 14 ++++++++++++++
 arch/sh/kernel/ptrace_32.c              | 14 +-------------
 arch/sh/kernel/ptrace_64.c              | 17 +----------------
 arch/sparc/include/asm/syscall.h        |  7 +++++++
 arch/sparc/include/asm/thread_info_32.h |  2 ++
 arch/sparc/include/asm/thread_info_64.h |  2 ++
 arch/sparc/kernel/ptrace_64.c           |  9 ++-------
 arch/um/kernel/ptrace.c                 |  3 +--
 arch/x86/ia32/ia32entry.S               | 12 ++++++------
 arch/x86/kernel/entry_32.S              | 11 +++++------
 arch/x86/kernel/entry_64.S              | 11 +++++------
 arch/x86/kernel/ptrace.c                |  8 ++------
 arch/x86/um/asm/ptrace.h                |  4 ----
 arch/x86/um/asm/syscall.h               | 15 +++++++++++++++
 arch/xtensa/kernel/ptrace.c             |  2 +-
 include/asm-generic/syscall.h           |  2 +-
 include/linux/audit.h                   | 11 ++++++-----
 include/uapi/linux/audit.h              | 14 +-------------
 kernel/auditsc.c                        | 17 +++++++----------
 36 files changed, 147 insertions(+), 122 deletions(-)
 create mode 100644 arch/alpha/include/asm/syscall.h
 create mode 100644 arch/x86/um/asm/syscall.h
Merging fsnotify/for-next (1ca39ab9d21a inotify: automatically restart syscalls)
$ git merge fsnotify/for-next
Already up-to-date.
Merging devicetree/devicetree/next (c9e0fb3bb3aa tty: Update hypervisor tty drivers to use core stdout parsing code.)
$ git merge devicetree/devicetree/next
Auto-merging drivers/of/base.c
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/versatile-ab.dts |  4 ++++
 drivers/of/base.c                  | 28 +++++++++++++++----------
 drivers/tty/ehv_bytechan.c         | 43 ++++----------------------------------
 drivers/tty/hvc/hvc_opal.c         | 15 +++----------
 drivers/tty/hvc/hvc_vio.c          | 29 +++++++++----------------
 drivers/tty/serial/serial_core.c   |  3 +++
 include/linux/of.h                 |  7 ++++---
 7 files changed, 45 insertions(+), 84 deletions(-)
Merging dt-rh/for-next (99de64984c3a OF: fix of_find_node_by_path() assumption that of_allnodes is root)
$ git merge dt-rh/for-next
Already up-to-date.
Merging spi/for-next (0d6c97f4e585 Merge remote-tracking branches 'spi/topic/cleanup' and 'spi/topic/rspi' into spi-next)
$ git merge spi/for-next
Merge made by the 'recursive' strategy.
 drivers/spi/spi-cadence.c   |  2 +-
 drivers/spi/spi-clps711x.c  |  2 --
 drivers/spi/spi-falcon.c    |  2 --
 drivers/spi/spi-fsl-spi.c   |  2 +-
 drivers/spi/spi-omap-100k.c |  2 --
 drivers/spi/spi-pxa2xx.c    |  8 ++++++--
 drivers/spi/spi-rspi.c      | 15 +++++++--------
 drivers/spi/spi-sh-hspi.c   |  2 +-
 drivers/spi/spi-sh-msiof.c  |  2 --
 drivers/spi/spi-sh-sci.c    |  4 ++--
 10 files changed, 18 insertions(+), 23 deletions(-)
Merging tip/auto-latest (01e47cc27060 Merge branch 'x86/xsave')
$ git merge tip/auto-latest
Auto-merging Documentation/kernel-parameters.txt
Merge made by the 'recursive' strategy.
 Documentation/kernel-parameters.txt                |  15 +
 arch/x86/Makefile                                  |   9 +-
 arch/x86/boot/code16gcc.h                          |  24 +-
 arch/x86/include/asm/alternative.h                 |  14 +
 arch/x86/include/asm/cpufeature.h                  | 370 +++++++++++----------
 arch/x86/include/asm/fpu-internal.h                |   9 +-
 arch/x86/include/asm/processor.h                   |   4 +-
 arch/x86/include/asm/uv/uv_bau.h                   |  19 +-
 arch/x86/include/asm/xsave.h                       | 223 +++++++++----
 arch/x86/include/uapi/asm/msr-index.h              |   2 +
 arch/x86/kernel/cpu/common.c                       |  17 +
 arch/x86/kernel/cpu/scattered.c                    |   1 -
 arch/x86/kernel/i387.c                             |   2 +-
 arch/x86/kernel/process.c                          |   1 +
 arch/x86/kernel/traps.c                            |   7 +-
 arch/x86/kernel/xsave.c                            | 118 ++++++-
 arch/x86/mm/fault.c                                |   6 +
 arch/x86/platform/uv/tlb_uv.c                      |  69 ++--
 include/uapi/linux/perf_event.h                    |   1 +
 kernel/context_tracking.c                          |   3 +
 kernel/events/core.c                               |  37 ++-
 kernel/locking/rtmutex-debug.h                     |   5 +
 kernel/locking/rtmutex.c                           | 128 +++++--
 kernel/locking/rtmutex.h                           |   5 +
 tools/lib/traceevent/event-parse.c                 | 113 +++++++
 tools/lib/traceevent/event-parse.h                 |  25 +-
 tools/lib/traceevent/event-plugin.c                | 203 ++++++++++-
 tools/lib/traceevent/plugin_function.c             |  43 ++-
 tools/perf/Documentation/perf-report.txt           |  23 ++
 tools/perf/Documentation/perf-timechart.txt        |  41 ++-
 tools/perf/Makefile.perf                           |   6 +-
 tools/perf/builtin-inject.c                        |   2 +-
 tools/perf/builtin-probe.c                         |  23 +-
 tools/perf/config/Makefile                         |   6 +-
 tools/perf/perf.c                                  |   1 +
 tools/perf/tests/builtin-test.c                    |  42 ++-
 tools/perf/tests/dso-data.c                        | 214 +++++++++++-
 tools/perf/tests/dwarf-unwind.c                    |   2 +-
 tools/perf/tests/make                              |   7 +-
 tools/perf/tests/tests.h                           |   2 +
 tools/perf/util/dso.c                              | 279 ++++++++++++++--
 tools/perf/util/dso.h                              |  50 ++-
 tools/perf/util/event.c                            |  57 +++-
 tools/perf/util/event.h                            |   7 +
 tools/perf/util/evsel.c                            |   5 +-
 tools/perf/util/hist.c                             |   9 +-
 tools/perf/util/hist.h                             |   1 +
 tools/perf/util/machine.c                          |   4 +-
 tools/perf/util/map.c                              |   4 +-
 tools/perf/util/map.h                              |   4 +-
 tools/perf/util/perf_regs.c                        |  10 +-
 tools/perf/util/perf_regs.h                        |   4 +-
 tools/perf/util/probe-event.c                      |  13 +-
 tools/perf/util/probe-finder.c                     |  11 +-
 .../perf/util/scripting-engines/trace-event-perl.c |   1 +
 .../util/scripting-engines/trace-event-python.c    |   2 +
 tools/perf/util/sort.c                             | 107 ++++++
 tools/perf/util/sort.h                             |   2 +
 tools/perf/util/unwind-libunwind.c                 |   2 -
 tools/perf/util/util.c                             |   1 +
 tools/perf/util/util.h                             |   1 +
 61 files changed, 1949 insertions(+), 467 deletions(-)
Merging clockevents/clockevents/next (2529c3a33079 clocksource: Add Freescale FlexTimer Module (FTM) timer support)
$ git merge clockevents/clockevents/next
Already up-to-date.
Merging edac/linux_next (49856dc973cd sb_edac: mark MCE messages as KERN_DEBUG)
$ git merge edac/linux_next
Already up-to-date.
Merging edac-amd/for-next (aa2064d7dd35 EDAC: Fix MC scrub mode comparsion bug for correctable errors)
$ git merge edac-amd/for-next
Already up-to-date.
Merging irqchip/irqchip/for-next (7171511eaec5 Linux 3.16-rc1)
$ git merge irqchip/irqchip/for-next
Already up-to-date.
Merging ftrace/for-next (72fa1a896d8e tracing: syscall_regfunc() should not skip kernel threads)
$ git merge ftrace/for-next
Merge made by the 'recursive' strategy.
 include/trace/syscall.h | 15 +++++++++++++++
 kernel/fork.c           |  2 ++
 kernel/tracepoint.c     | 26 +++++++++++---------------
 3 files changed, 28 insertions(+), 15 deletions(-)
Merging rcu/rcu/next (61f38db3e3c0 rcu: Provide API to suppress stall warnings while sysrc runs)
$ git merge rcu/rcu/next
Already up-to-date.
Merging uprobes/for-next (0326f5a94dde uprobes/core: Handle breakpoint and singlestep exceptions)
$ git merge uprobes/for-next
Already up-to-date.
Merging kvm/linux-next (27e6fb5dae28 KVM: vmx: vmx instructions handling does not consider cs.l)
$ git merge kvm/linux-next
Auto-merging arch/x86/include/uapi/asm/msr-index.h
Merge made by the 'recursive' strategy.
 arch/x86/include/asm/kvm_emulate.h    |   1 +
 arch/x86/include/asm/kvm_host.h       |   1 +
 arch/x86/include/asm/vmx.h            |   7 ++-
 arch/x86/include/uapi/asm/msr-index.h |   1 +
 arch/x86/kvm/emulate.c                |  82 ++++++++++++++++++--------
 arch/x86/kvm/pmu.c                    |   9 +++
 arch/x86/kvm/vmx.c                    | 105 ++++++++++++++++++++++------------
 arch/x86/kvm/x86.c                    |  18 ++++--
 arch/x86/kvm/x86.h                    |  27 +++++++++
 9 files changed, 184 insertions(+), 67 deletions(-)
Merging kvm-arm/next (1252b3313642 arm64: KVM: Enable minimalistic support for Cortex-A53)
$ git merge kvm-arm/next
Already up-to-date.
Merging kvm-ppc/kvm-ppc-next (5c02c392cd23 Merge tag 'virtio-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux)
$ git merge kvm-ppc/kvm-ppc-next
Already up-to-date.
Merging oprofile/for-next (6ce4eac1f600 Linux 3.13-rc1)
$ git merge oprofile/for-next
Already up-to-date.
Merging fw-nohz/nohz/next (74876a98a87a printk: Wake up klogd using irq_work)
$ git merge fw-nohz/nohz/next
Already up-to-date.
Merging xen-tip/linux-next (77945ca73e9a x86/xen: map foreign pfns for autotranslated guests)
$ git merge xen-tip/linux-next
Already up-to-date.
Merging percpu/for-next (807407c0a29b workqueue: stronger test in process_one_work())
$ git merge percpu/for-next
Merge made by the 'recursive' strategy.
 arch/x86/include/asm/percpu.h |   3 +-
 include/asm-generic/percpu.h  | 410 +++++++++++++++++++++----
 include/linux/percpu-defs.h   | 380 +++++++++++++++++++++++-
 include/linux/percpu.h        | 673 ------------------------------------------
 kernel/workqueue.c            |  19 +-
 mm/percpu.c                   |   3 +-
 6 files changed, 725 insertions(+), 763 deletions(-)
Merging workqueues/for-next (61d0fbb4b6f7 workqueue: use "pool->cpu < 0" to stand for an unbound pool)
$ git merge workqueues/for-next
Auto-merging kernel/workqueue.c
Merge made by the 'recursive' strategy.
 kernel/workqueue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging drivers-x86/linux-next (f82bdd0d77b6 hp-wmi: Enable hotkeys on some systems)
$ git merge drivers-x86/linux-next
Already up-to-date.
Merging chrome-platform/for-next (2b8454a75b90 platform/chrome: unregister platform driver/device when module exit)
$ git merge chrome-platform/for-next
Already up-to-date.
Merging sysctl/master (4e474a00d7ff sysctl: protect poll() in entries that may go away)
$ git merge sysctl/master
Already up-to-date.
Merging regmap/for-next (7171511eaec5 Linux 3.16-rc1)
$ git merge regmap/for-next
Already up-to-date.
Merging hsi/for-next (b357d7b58f37 hsi: omap_ssi_port: use normal module refcounting)
$ git merge hsi/for-next
Already up-to-date.
Merging leds/for-next (0c9a03b68511 leds: Remove duplicated OOM message for individual driver)
$ git merge leds/for-next
Already up-to-date.
Merging driver-core/driver-core-next (7171511eaec5 Linux 3.16-rc1)
$ git merge driver-core/driver-core-next
Already up-to-date.
Merging tty/tty-next (7171511eaec5 Linux 3.16-rc1)
$ git merge tty/tty-next
Already up-to-date.
Merging usb/usb-next (7171511eaec5 Linux 3.16-rc1)
$ git merge usb/usb-next
Already up-to-date.
Merging usb-gadget/next (7751b6fb0586 usb: musb: tusb6010: Use musb->tusb_revision instead of tusb_get_revision call.)
$ git merge usb-gadget/next
Already up-to-date.
Merging staging/staging-next (32c3f470ec7e staging: alarm-dev: Support to Compile as Module)
$ git merge staging/staging-next
Auto-merging drivers/staging/rtl8723au/os_dep/os_intfs.c
Removing drivers/staging/rtl8723au/include/rtw_ioctl_set.h
Removing drivers/staging/rtl8723au/core/rtw_ioctl_set.c
Removing drivers/staging/rtl8188eu/include/usb_vendor_req.h
Removing drivers/staging/rtl8188eu/include/rtw_version.h
Removing drivers/staging/rtl8188eu/include/rtw_io.h
Removing drivers/staging/rtl8188eu/include/rtw_br_ext.h
Removing drivers/staging/rtl8188eu/include/rtl8188e_sreset.h
Removing drivers/staging/rtl8188eu/include/HalPhyRf.h
Removing drivers/staging/rtl8188eu/include/Hal8188EReg.h
Removing drivers/staging/rtl8188eu/hal/rtl8188e_sreset.c
Removing drivers/staging/rtl8188eu/hal/HalPhyRf.c
Removing drivers/staging/rtl8188eu/core/rtw_io.c
Removing drivers/staging/rtl8188eu/core/rtw_br_ext.c
Auto-merging drivers/staging/iio/adc/mxs-lradc.c
Auto-merging drivers/staging/comedi/Kconfig
Auto-merging drivers/iio/adc/at91_adc.c
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-bus-iio            |   13 +
 .../ABI/testing}/sysfs-bus-iio-trigger-sysfs       |    0
 .../cavium-octeon/executive/cvmx-helper-sgmii.c    |   12 +-
 drivers/iio/accel/Kconfig                          |   12 +
 drivers/iio/accel/Makefile                         |    1 +
 drivers/iio/accel/kxcjk-1013.c                     |  764 +++
 drivers/iio/adc/ad7298.c                           |   21 +-
 drivers/iio/adc/ad7476.c                           |    5 +-
 drivers/iio/adc/ad7887.c                           |   21 +-
 drivers/iio/adc/ad799x.c                           |    3 +-
 drivers/iio/adc/ad_sigma_delta.c                   |    2 +-
 drivers/iio/adc/at91_adc.c                         |    2 +-
 drivers/iio/adc/xilinx-xadc-core.c                 |    2 +-
 drivers/iio/dac/ad5504.c                           |   11 +-
 drivers/iio/dac/ad5791.c                           |   29 +-
 drivers/iio/industrialio-trigger.c                 |    8 +-
 drivers/iio/light/gp2ap020a00f.c                   |    2 +-
 drivers/iio/magnetometer/Kconfig                   |   10 +
 drivers/iio/magnetometer/Makefile                  |    1 +
 drivers/iio/magnetometer/ak09911.c                 |  326 ++
 drivers/iio/pressure/Kconfig                       |   10 +
 drivers/iio/pressure/Makefile                      |    1 +
 drivers/iio/pressure/t5403.c                       |  275 +
 drivers/iio/proximity/as3935.c                     |    2 +-
 drivers/iio/trigger/iio-trig-interrupt.c           |    3 +-
 drivers/iio/trigger/iio-trig-sysfs.c               |    2 +-
 drivers/staging/Kconfig                            |    4 +
 drivers/staging/Makefile                           |    2 +
 drivers/staging/android/Kconfig                    |    2 +-
 drivers/staging/android/ion/ion_chunk_heap.c       |    2 +-
 drivers/staging/android/ion/ion_system_heap.c      |   70 +-
 drivers/staging/bcm/Bcmchar.c                      |    2 +-
 drivers/staging/bcm/CmHost.c                       |    2 +-
 drivers/staging/bcm/Misc.c                         |   25 +-
 drivers/staging/bcm/PHSModule.c                    |    2 +-
 drivers/staging/bcm/nvm.c                          |    4 +-
 drivers/staging/board/Kconfig                      |    8 +
 drivers/staging/board/Makefile                     |    2 +
 drivers/staging/board/TODO                         |    2 +
 drivers/staging/board/board.c                      |   41 +
 drivers/staging/board/board.h                      |   20 +
 drivers/staging/board/kzm9d.c                      |   19 +
 drivers/staging/ced1401/userspace/use1401.c        |    9 +-
 drivers/staging/comedi/Kconfig                     |   16 +-
 drivers/staging/comedi/comedi_fops.c               |    4 +-
 .../staging/comedi/drivers/addi-data/addi_common.c |   10 +-
 .../staging/comedi/drivers/addi-data/addi_common.h |   20 -
 .../comedi/drivers/addi-data/hwdrv_apci035.c       |    9 +-
 .../comedi/drivers/addi-data/hwdrv_apci1564.c      |   10 +-
 .../comedi/drivers/addi-data/hwdrv_apci3120.c      |   16 +-
 .../comedi/drivers/addi-data/hwdrv_apci3200.c      |  109 +-
 drivers/staging/comedi/drivers/addi_apci_035.c     |    2 +-
 drivers/staging/comedi/drivers/addi_apci_1500.c    |    2 +-
 drivers/staging/comedi/drivers/addi_apci_3120.c    |   11 +-
 drivers/staging/comedi/drivers/addi_apci_3200.c    |    8 +-
 drivers/staging/comedi/drivers/adl_pci9111.c       |  101 +-
 drivers/staging/comedi/drivers/adq12b.c            |  148 +-
 drivers/staging/comedi/drivers/ke_counter.c        |   57 +-
 drivers/staging/comedi/drivers/ni_atmio.c          |   73 +-
 drivers/staging/comedi/drivers/ni_daq_700.c        |   51 +-
 drivers/staging/comedi/drivers/ni_mio_common.c     | 5912 ++++++++++----------
 drivers/staging/comedi/drivers/ni_mio_cs.c         |   60 -
 drivers/staging/comedi/drivers/ni_pcimio.c         |  358 +-
 drivers/staging/comedi/drivers/ni_stc.h            |  163 +-
 drivers/staging/comedi/drivers/pcl724.c            |    5 +
 drivers/staging/comedi/drivers/pcl730.c            |   21 +-
 drivers/staging/cxt1e1/musycc.c                    |   54 +-
 drivers/staging/dgap/dgap.c                        |  273 +-
 drivers/staging/dgap/dgap.h                        |    1 -
 drivers/staging/dgnc/dgnc_driver.c                 |    3 +-
 drivers/staging/emxx_udc/Kconfig                   |   10 +
 drivers/staging/emxx_udc/Makefile                  |    1 +
 drivers/staging/emxx_udc/TODO                      |    4 +
 drivers/staging/emxx_udc/emxx_udc.c                | 3538 ++++++++++++
 drivers/staging/emxx_udc/emxx_udc.h                |  653 +++
 drivers/staging/fwserial/fwserial.c                |    6 +-
 drivers/staging/gdm724x/gdm_lte.c                  |    2 +
 drivers/staging/goldfish/goldfish_audio.c          |   10 +-
 drivers/staging/iio/Documentation/generic_buffer.c |    9 +-
 .../staging/iio/Documentation/iio_event_monitor.c  |   10 +
 drivers/staging/iio/Documentation/iio_utils.h      |    6 +-
 drivers/staging/iio/Documentation/trigger.txt      |    2 +-
 drivers/staging/iio/accel/lis3l02dq_ring.c         |    2 +-
 drivers/staging/iio/adc/mxs-lradc.c                |    2 +-
 drivers/staging/iio/iio_simple_dummy.c             |    2 +
 drivers/staging/iio/meter/ade7758_trigger.c        |    2 +-
 drivers/staging/iio/trigger/iio-trig-bfin-timer.c  |    2 +-
 .../staging/iio/trigger/iio-trig-periodic-rtc.c    |   29 +-
 drivers/staging/keucr/usb.c                        |    3 +-
 drivers/staging/line6/driver.c                     |    2 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c    |    5 -
 .../staging/lustre/lnet/klnds/socklnd/socklnd.c    |    4 -
 drivers/staging/lustre/lnet/lnet/router.c          |    5 +-
 drivers/staging/lustre/lnet/selftest/console.c     |   10 -
 drivers/staging/lustre/lnet/selftest/framework.c   |    2 -
 drivers/staging/lustre/lustre/fid/lproc_fid.c      |    6 +-
 drivers/staging/lustre/lustre/fld/fld_request.c    |    1 -
 drivers/staging/lustre/lustre/fld/lproc_fld.c      |    3 +-
 drivers/staging/lustre/lustre/lclient/glimpse.c    |    4 +-
 drivers/staging/lustre/lustre/lclient/lcommon_cl.c |   15 +-
 .../staging/lustre/lustre/lclient/lcommon_misc.c   |    2 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lib.c      |   30 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_resource.c |   13 +-
 .../lustre/lustre/libcfs/linux/linux-tcpip.c       |    2 -
 .../lustre/lustre/obdclass/linux/linux-sysctl.c    |   20 +-
 drivers/staging/lustre/lustre/obdecho/lproc_echo.c |    4 +-
 drivers/staging/lustre/lustre/osc/osc_dev.c        |   14 +-
 drivers/staging/lustre/lustre/ptlrpc/sec_lproc.c   |    2 +-
 drivers/staging/media/lirc/lirc_sir.c              |  301 +-
 drivers/staging/media/sn9c102/Kconfig              |    2 +-
 drivers/staging/nokia_h4p/nokia_core.c             |    1 +
 drivers/staging/octeon/ethernet-mdio.c             |   79 +-
 drivers/staging/octeon/ethernet-mem.c              |   11 +-
 drivers/staging/octeon/ethernet-rgmii.c            |   23 +-
 drivers/staging/octeon/ethernet-sgmii.c            |   87 +-
 drivers/staging/octeon/ethernet-xaui.c             |   83 +-
 drivers/staging/octeon/ethernet.c                  |    2 +-
 drivers/staging/octeon/octeon-ethernet.h           |    4 +
 drivers/staging/rtl8188eu/Makefile                 |    4 -
 drivers/staging/rtl8188eu/core/rtw_br_ext.c        | 1191 ----
 drivers/staging/rtl8188eu/core/rtw_cmd.c           |    6 +-
 drivers/staging/rtl8188eu/core/rtw_debug.c         |   26 +-
 drivers/staging/rtl8188eu/core/rtw_efuse.c         |   59 +-
 drivers/staging/rtl8188eu/core/rtw_io.c            |  301 -
 drivers/staging/rtl8188eu/core/rtw_mlme.c          |   20 -
 drivers/staging/rtl8188eu/core/rtw_mlme_ext.c      |    2 -
 drivers/staging/rtl8188eu/core/rtw_mp.c            |   48 +-
 drivers/staging/rtl8188eu/core/rtw_mp_ioctl.c      |   14 +-
 drivers/staging/rtl8188eu/core/rtw_pwrctrl.c       |  126 +-
 drivers/staging/rtl8188eu/core/rtw_sreset.c        |   19 +-
 drivers/staging/rtl8188eu/core/rtw_xmit.c          |  135 -
 .../staging/rtl8188eu/hal/Hal8188ERateAdaptive.c   |   10 +-
 drivers/staging/rtl8188eu/hal/HalPhyRf.c           |   49 -
 drivers/staging/rtl8188eu/hal/HalPhyRf_8188e.c     |   88 +-
 drivers/staging/rtl8188eu/hal/HalPwrSeqCmd.c       |    7 +-
 drivers/staging/rtl8188eu/hal/hal_com.c            |   10 +-
 drivers/staging/rtl8188eu/hal/hal_intf.c           |   24 -
 drivers/staging/rtl8188eu/hal/odm.c                |   14 +-
 drivers/staging/rtl8188eu/hal/odm_RegConfig8188E.c |    2 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c       |   38 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_dm.c        |    4 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c  |  149 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_mp.c        |   32 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_phycfg.c    |   26 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_rf6052.c    |    2 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_sreset.c    |   80 -
 drivers/staging/rtl8188eu/hal/rtl8188eu_led.c      |   15 +-
 drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.c     |    4 +-
 drivers/staging/rtl8188eu/hal/usb_halinit.c        |  500 +-
 drivers/staging/rtl8188eu/hal/usb_ops_linux.c      |   59 +-
 drivers/staging/rtl8188eu/include/Hal8188EReg.h    |   46 -
 drivers/staging/rtl8188eu/include/HalPhyRf.h       |   30 -
 drivers/staging/rtl8188eu/include/HalPhyRf_8188e.h |    2 +-
 drivers/staging/rtl8188eu/include/drv_types.h      |   67 +-
 drivers/staging/rtl8188eu/include/hal_intf.h       |    8 -
 drivers/staging/rtl8188eu/include/odm_precomp.h    |    3 +-
 drivers/staging/rtl8188eu/include/osdep_intf.h     |   35 -
 drivers/staging/rtl8188eu/include/recv_osdep.h     |    1 -
 drivers/staging/rtl8188eu/include/rtl8188e_hal.h   |    4 +-
 .../staging/rtl8188eu/include/rtl8188e_sreset.h    |   31 -
 drivers/staging/rtl8188eu/include/rtw_br_ext.h     |   66 -
 drivers/staging/rtl8188eu/include/rtw_debug.h      |    2 +-
 drivers/staging/rtl8188eu/include/rtw_io.h         |  343 --
 drivers/staging/rtl8188eu/include/rtw_sreset.h     |    5 -
 drivers/staging/rtl8188eu/include/rtw_version.h    |    1 -
 drivers/staging/rtl8188eu/include/usb_ops.h        |    2 -
 drivers/staging/rtl8188eu/include/usb_ops_linux.h  |   17 +-
 drivers/staging/rtl8188eu/include/usb_osintf.h     |    7 -
 drivers/staging/rtl8188eu/include/usb_vendor_req.h |   52 -
 drivers/staging/rtl8188eu/os_dep/ioctl_linux.c     |  131 +-
 drivers/staging/rtl8188eu/os_dep/os_intfs.c        |   48 +-
 drivers/staging/rtl8188eu/os_dep/osdep_service.c   |    1 +
 drivers/staging/rtl8188eu/os_dep/recv_linux.c      |    2 +-
 drivers/staging/rtl8188eu/os_dep/usb_intf.c        |  228 +-
 drivers/staging/rtl8188eu/os_dep/usb_ops_linux.c   |   28 +-
 drivers/staging/rtl8192e/dot11d.c                  |    8 +-
 drivers/staging/rtl8192ee/Kconfig                  |    1 -
 drivers/staging/rtl8192ee/base.c                   |    2 +-
 .../staging/rtl8192ee/btcoexist/halbtc8821a2ant.c  |    2 +-
 drivers/staging/rtl8192ee/btcoexist/halbtcoutsrc.h |    2 +-
 drivers/staging/rtl8192u/ieee80211/ieee80211.h     |   10 +-
 drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c  |    2 -
 drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c  |    8 +-
 drivers/staging/rtl8192u/r8192U_core.c             |  547 +-
 drivers/staging/rtl8192u/r8192U_wx.c               |  146 +-
 drivers/staging/rtl8712/drv_types.h                |    1 -
 drivers/staging/rtl8712/hal_init.c                 |    2 -
 drivers/staging/rtl8712/ieee80211.h                |    4 +-
 drivers/staging/rtl8712/os_intfs.c                 |    3 +-
 drivers/staging/rtl8712/rtl871x_cmd.c              |   94 +-
 drivers/staging/rtl8712/rtl871x_io.c               |    2 +-
 drivers/staging/rtl8712/rtl871x_ioctl_linux.c      |    7 +-
 drivers/staging/rtl8712/rtl871x_mlme.c             |    8 +-
 drivers/staging/rtl8712/rtl871x_mp.c               |    4 +-
 drivers/staging/rtl8712/usb_intf.c                 |   40 +-
 drivers/staging/rtl8723au/Makefile                 |    4 +-
 drivers/staging/rtl8723au/core/rtw_ap.c            |   61 +-
 drivers/staging/rtl8723au/core/rtw_ieee80211.c     |  309 +-
 drivers/staging/rtl8723au/core/rtw_ioctl_set.c     |  425 --
 drivers/staging/rtl8723au/core/rtw_mlme.c          |  394 +-
 drivers/staging/rtl8723au/core/rtw_mlme_ext.c      | 1348 ++---
 drivers/staging/rtl8723au/core/rtw_pwrctrl.c       |   16 -
 drivers/staging/rtl8723au/core/rtw_wlan_util.c     |  370 +-
 .../staging/rtl8723au/hal/rtl8723a_bt-coexist.c    |    5 +-
 drivers/staging/rtl8723au/hal/rtl8723a_cmd.c       |   38 +-
 drivers/staging/rtl8723au/hal/usb_halinit.c        |    4 +-
 drivers/staging/rtl8723au/include/drv_types.h      |    3 -
 drivers/staging/rtl8723au/include/ieee80211.h      |   58 +-
 drivers/staging/rtl8723au/include/ioctl_cfg80211.h |    3 -
 drivers/staging/rtl8723au/include/rtl8723a_cmd.h   |    2 +
 drivers/staging/rtl8723au/include/rtw_debug.h      |    2 +-
 drivers/staging/rtl8723au/include/rtw_event.h      |    2 +-
 drivers/staging/rtl8723au/include/rtw_ht.h         |    4 +-
 drivers/staging/rtl8723au/include/rtw_ioctl_set.h  |   32 -
 drivers/staging/rtl8723au/include/rtw_mlme.h       |   20 +-
 drivers/staging/rtl8723au/include/rtw_mlme_ext.h   |   25 +-
 drivers/staging/rtl8723au/include/rtw_rf.h         |   11 -
 drivers/staging/rtl8723au/include/wifi.h           |   41 -
 drivers/staging/rtl8723au/include/wlan_bssdef.h    |    6 +-
 drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c  |  501 +-
 drivers/staging/rtl8723au/os_dep/mlme_linux.c      |    1 -
 drivers/staging/rtl8723au/os_dep/os_intfs.c        |    5 -
 drivers/staging/rtl8723au/os_dep/usb_intf.c        |   12 +-
 drivers/staging/rtl8821ae/Kconfig                  |    1 -
 drivers/staging/rtl8821ae/ps.c                     |    6 +-
 drivers/staging/sep/sep_crypto.c                   |   17 +
 drivers/staging/skein/skein_iv.h                   |   26 +-
 drivers/staging/speakup/main.c                     |    2 +-
 drivers/staging/tidspbridge/core/chnl_sm.c         |    1 +
 drivers/staging/tidspbridge/core/io_sm.c           |    1 +
 drivers/staging/tidspbridge/core/tiomap3430.c      |    2 +
 drivers/staging/tidspbridge/core/tiomap_io.c       |    2 +
 drivers/staging/tidspbridge/core/wdt.c             |    1 +
 drivers/staging/tidspbridge/dynload/cload.c        |    7 +
 drivers/staging/tidspbridge/dynload/reloc.c        |    2 +
 .../tidspbridge/include/dspbridge/dblldefs.h       |   14 +-
 drivers/staging/tidspbridge/pmgr/chnl.c            |    1 +
 drivers/staging/tidspbridge/pmgr/dspapi.c          |   64 +-
 drivers/staging/tidspbridge/rmgr/dbdcd.c           |    1 +
 drivers/staging/tidspbridge/rmgr/drv_interface.c   |    2 +
 drivers/staging/tidspbridge/rmgr/nldr.c            |    1 +
 drivers/staging/tidspbridge/rmgr/node.c            |    2 +
 drivers/staging/tidspbridge/rmgr/proc.c            |    3 +
 drivers/staging/unisys/include/guestlinuxdebug.h   |    6 +-
 .../usbip/userspace/libsrc/usbip_host_driver.c     |    7 +-
 drivers/staging/usbip/vhci_hcd.c                   |    2 +-
 drivers/staging/vt6655/baseband.c                  |  300 +-
 drivers/staging/vt6655/card.c                      |    2 +-
 drivers/staging/vt6655/device.h                    |    6 +-
 drivers/staging/vt6655/device_main.c               |    6 +-
 drivers/staging/vt6655/dpc.c                       |    3 +-
 drivers/staging/vt6655/iwctl.c                     |    1 +
 drivers/staging/vt6655/iwctl.h                     |    4 +-
 drivers/staging/vt6655/vntwifi.c                   |    8 +-
 drivers/staging/vt6655/wmgr.c                      |    2 +-
 drivers/staging/vt6656/baseband.c                  |   16 +-
 drivers/staging/vt6656/baseband.h                  |    4 +-
 drivers/staging/vt6656/bssdb.c                     |   12 +-
 drivers/staging/vt6656/card.c                      |  143 +-
 drivers/staging/vt6656/card.h                      |   36 +-
 drivers/staging/vt6656/datarate.c                  |    8 +-
 drivers/staging/vt6656/device.h                    |    2 +
 drivers/staging/vt6656/firmware.c                  |   78 +-
 drivers/staging/vt6656/firmware.h                  |    6 +-
 drivers/staging/vt6656/iwctl.c                     |    8 +-
 drivers/staging/vt6656/key.c                       |   13 +-
 drivers/staging/vt6656/mac.c                       |   28 +-
 drivers/staging/vt6656/mac.h                       |   28 +-
 drivers/staging/vt6656/main_usb.c                  |   41 +-
 drivers/staging/vt6656/power.c                     |   90 +-
 drivers/staging/vt6656/power.h                     |    6 +-
 drivers/staging/vt6656/rxtx.c                      |  329 +-
 drivers/staging/vt6656/rxtx.h                      |    6 +-
 drivers/staging/vt6656/wcmd.c                      |   38 +-
 drivers/staging/vt6656/wmgr.c                      |  120 +-
 drivers/staging/vt6656/wpactl.c                    |    2 +-
 drivers/staging/wlags49_h2/wl_cs.c                 |   19 +-
 drivers/staging/wlags49_h2/wl_internal.h           |    4 +-
 drivers/staging/wlan-ng/cfg80211.c                 |    2 +
 drivers/staging/wlan-ng/prism2mgmt.c               |   42 +-
 drivers/staging/wlan-ng/prism2mib.c                |    4 +-
 drivers/staging/wlan-ng/prism2sta.c                |    5 +-
 include/linux/iio/accel/kxcjk_1013.h               |   22 +
 include/linux/iio/trigger.h                        |    5 +-
 kernel/time/alarmtimer.c                           |    2 +-
 285 files changed, 13221 insertions(+), 11501 deletions(-)
 rename {drivers/staging/iio/Documentation => Documentation/ABI/testing}/sysfs-bus-iio-trigger-sysfs (100%)
 create mode 100644 drivers/iio/accel/kxcjk-1013.c
 create mode 100644 drivers/iio/magnetometer/ak09911.c
 create mode 100644 drivers/iio/pressure/t5403.c
 create mode 100644 drivers/staging/board/Kconfig
 create mode 100644 drivers/staging/board/Makefile
 create mode 100644 drivers/staging/board/TODO
 create mode 100644 drivers/staging/board/board.c
 create mode 100644 drivers/staging/board/board.h
 create mode 100644 drivers/staging/board/kzm9d.c
 create mode 100644 drivers/staging/emxx_udc/Kconfig
 create mode 100644 drivers/staging/emxx_udc/Makefile
 create mode 100644 drivers/staging/emxx_udc/TODO
 create mode 100644 drivers/staging/emxx_udc/emxx_udc.c
 create mode 100644 drivers/staging/emxx_udc/emxx_udc.h
 delete mode 100644 drivers/staging/rtl8188eu/core/rtw_br_ext.c
 delete mode 100644 drivers/staging/rtl8188eu/core/rtw_io.c
 delete mode 100644 drivers/staging/rtl8188eu/hal/HalPhyRf.c
 delete mode 100644 drivers/staging/rtl8188eu/hal/rtl8188e_sreset.c
 delete mode 100644 drivers/staging/rtl8188eu/include/Hal8188EReg.h
 delete mode 100644 drivers/staging/rtl8188eu/include/HalPhyRf.h
 delete mode 100644 drivers/staging/rtl8188eu/include/rtl8188e_sreset.h
 delete mode 100644 drivers/staging/rtl8188eu/include/rtw_br_ext.h
 delete mode 100644 drivers/staging/rtl8188eu/include/rtw_io.h
 delete mode 100644 drivers/staging/rtl8188eu/include/rtw_version.h
 delete mode 100644 drivers/staging/rtl8188eu/include/usb_vendor_req.h
 delete mode 100644 drivers/staging/rtl8723au/core/rtw_ioctl_set.c
 delete mode 100644 drivers/staging/rtl8723au/include/rtw_ioctl_set.h
 create mode 100644 include/linux/iio/accel/kxcjk_1013.h
Merging char-misc/char-misc-next (343fcb8c70d7 thunderbolt: Fix nontrivial endpoint devices.)
$ git merge char-misc/char-misc-next
Merge made by the 'recursive' strategy.
 drivers/Kconfig                   |   2 +
 drivers/Makefile                  |   1 +
 drivers/pci/pci-driver.c          |  18 +-
 drivers/pci/quirks.c              | 104 ++++++
 drivers/thunderbolt/Kconfig       |  12 +
 drivers/thunderbolt/Makefile      |   3 +
 drivers/thunderbolt/cap.c         | 116 ++++++
 drivers/thunderbolt/ctl.c         | 731 ++++++++++++++++++++++++++++++++++++++
 drivers/thunderbolt/ctl.h         |  75 ++++
 drivers/thunderbolt/eeprom.c      | 447 +++++++++++++++++++++++
 drivers/thunderbolt/nhi.c         | 677 +++++++++++++++++++++++++++++++++++
 drivers/thunderbolt/nhi.h         | 114 ++++++
 drivers/thunderbolt/nhi_regs.h    | 101 ++++++
 drivers/thunderbolt/path.c        | 215 +++++++++++
 drivers/thunderbolt/switch.c      | 506 ++++++++++++++++++++++++++
 drivers/thunderbolt/tb.c          | 436 +++++++++++++++++++++++
 drivers/thunderbolt/tb.h          | 271 ++++++++++++++
 drivers/thunderbolt/tb_regs.h     | 213 +++++++++++
 drivers/thunderbolt/tunnel_pci.c  | 232 ++++++++++++
 drivers/thunderbolt/tunnel_pci.h  |  30 ++
 include/asm-generic/vmlinux.lds.h |   3 +
 include/linux/pci.h               |  12 +-
 22 files changed, 4314 insertions(+), 5 deletions(-)
 create mode 100644 drivers/thunderbolt/Kconfig
 create mode 100644 drivers/thunderbolt/Makefile
 create mode 100644 drivers/thunderbolt/cap.c
 create mode 100644 drivers/thunderbolt/ctl.c
 create mode 100644 drivers/thunderbolt/ctl.h
 create mode 100644 drivers/thunderbolt/eeprom.c
 create mode 100644 drivers/thunderbolt/nhi.c
 create mode 100644 drivers/thunderbolt/nhi.h
 create mode 100644 drivers/thunderbolt/nhi_regs.h
 create mode 100644 drivers/thunderbolt/path.c
 create mode 100644 drivers/thunderbolt/switch.c
 create mode 100644 drivers/thunderbolt/tb.c
 create mode 100644 drivers/thunderbolt/tb.h
 create mode 100644 drivers/thunderbolt/tb_regs.h
 create mode 100644 drivers/thunderbolt/tunnel_pci.c
 create mode 100644 drivers/thunderbolt/tunnel_pci.h
Merging cgroup/for-next (99bae5f94185 cgroup: fix broken css_has_online_children())
$ git merge cgroup/for-next
Merge made by the 'recursive' strategy.
 kernel/cgroup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging scsi/for-next (11a5dc7ff2fb Merge remote-tracking branch 'scsi-queue/drivers-for-3.16-2' into for-next)
$ git merge scsi/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging scsi-core/core-for-3.16 (63ff05910d96 include/scsi/osd_protocol.h: remove unnecessary __constant)
$ git merge scsi-core/core-for-3.16
Already up-to-date.
Merging scsi-drivers/drivers-for-3.16 (e90b25fa40a4 mvsas: Recognise device/subsystem 9485/9485 as 88SE9485)
$ git merge scsi-drivers/drivers-for-3.16
Already up-to-date.
Merging target-updates/for-next (0ed6e189e3f6 target: Fix NULL pointer dereference for XCOPY in target_put_sess_cmd)
$ git merge target-updates/for-next
Already up-to-date.
Merging target-merge/for-next-merge (b28a960c42fc Linux 3.14-rc2)
$ git merge target-merge/for-next-merge
Already up-to-date.
Merging writeback/writeback-for-next (f9b0e058cbd0 writeback: Fix data corruption on NFS)
$ git merge writeback/writeback-for-next
Already up-to-date.
Merging hwspinlock/linux-next (8b37fcfc9b34 hwspinlock: add MAINTAINERS entries)
$ git merge hwspinlock/linux-next
Already up-to-date.
Merging pinctrl/for-next (4aba0a02ff80 Merge branch 'devel' into for-next)
$ git merge pinctrl/for-next
Merge made by the 'recursive' strategy.
 drivers/pinctrl/Kconfig                     |   4 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c        | 250 ++++++++++++++++++++++++++++
 drivers/pinctrl/spear/Kconfig               |   1 +
 drivers/pinctrl/spear/pinctrl-plgpio.c      |  81 ++++-----
 drivers/pinctrl/sunxi/pinctrl-sun4i-a10.c   |   1 +
 drivers/pinctrl/sunxi/pinctrl-sun5i-a10s.c  |   1 +
 drivers/pinctrl/sunxi/pinctrl-sun5i-a13.c   |   1 +
 drivers/pinctrl/sunxi/pinctrl-sun6i-a31-r.c |   1 +
 drivers/pinctrl/sunxi/pinctrl-sun6i-a31.c   | 217 ++++++++++++++++--------
 drivers/pinctrl/sunxi/pinctrl-sun7i-a20.c   |   1 +
 drivers/pinctrl/sunxi/pinctrl-sunxi.c       |  85 ++++++----
 drivers/pinctrl/sunxi/pinctrl-sunxi.h       |  44 ++++-
 12 files changed, 525 insertions(+), 162 deletions(-)
Merging vhost/linux-next (970379f59d81 vhost: move memory pointer to VQs)
$ git merge vhost/linux-next
Merge made by the 'recursive' strategy.
Merging remoteproc/for-next (bd88acba5f98 remoteproc/ste_modem: staticize local symbols)
$ git merge remoteproc/for-next
Already up-to-date.
Merging rpmsg/for-next (397944df3290 rpmsg: fix kconfig dependencies for VIRTIO)
$ git merge rpmsg/for-next
Already up-to-date.
Merging gpio/for-next (0fb394122af4 gpio: pxa: Make of_device_id array const)
$ git merge gpio/for-next
Auto-merging drivers/gpio/Kconfig
Merge made by the 'recursive' strategy.
 drivers/gpio/Kconfig          |   1 +
 drivers/gpio/gpio-intel-mid.c |  86 ++++++++++----------------------
 drivers/gpio/gpio-lpc32xx.c   |   2 +-
 drivers/gpio/gpio-pxa.c       |   2 +-
 drivers/gpio/gpio-stmpe.c     | 111 ++++++++++--------------------------------
 5 files changed, 55 insertions(+), 147 deletions(-)
Merging dma-mapping/dma-mapping-next (f70e3c4f8b6a CMA: correct unlock target)
$ git merge dma-mapping/dma-mapping-next
Already up-to-date.
Merging pwm/for-next (39fd3f99aba3 pwm: fsl-ftm: set pwm_chip can_sleep flag)
$ git merge pwm/for-next
Already up-to-date.
Merging dma-buf/for-next (dfb945473ae8 Merge git://www.linux-watchdog.org/linux-watchdog)
$ git merge dma-buf/for-next
Already up-to-date.
Merging userns/for-next (3efe1ac78e99 vfs: Block intuitively in the case of BSD accounting files)
$ git merge userns/for-next
Resolved 'fs/btrfs/ioctl.c' using previous resolution.
Resolved 'fs/dcache.c' using previous resolution.
Resolved 'fs/namei.c' using previous resolution.
Resolved 'fs/namespace.c' using previous resolution.
Auto-merging kernel/acct.c
Auto-merging include/linux/dcache.h
Auto-merging fs/proc/fd.c
Auto-merging fs/proc/base.c
Auto-merging fs/nfs/dir.c
Auto-merging fs/namespace.c
CONFLICT (content): Merge conflict in fs/namespace.c
Auto-merging fs/namei.c
CONFLICT (content): Merge conflict in fs/namei.c
Auto-merging fs/mount.h
Auto-merging fs/kernfs/dir.c
Auto-merging fs/fuse/dir.c
Auto-merging fs/dcache.c
CONFLICT (content): Merge conflict in fs/dcache.c
Auto-merging fs/ceph/dir.c
Auto-merging fs/btrfs/ioctl.c
CONFLICT (content): Merge conflict in fs/btrfs/ioctl.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 71d7e6e7bea3] Merge remote-tracking branch 'userns/for-next'
$ git diff -M --stat --summary HEAD^..
 fs/afs/dir.c           |   5 --
 fs/btrfs/ioctl.c       |   6 +--
 fs/ceph/dir.c          |   1 -
 fs/cifs/readdir.c      |   6 +--
 fs/dcache.c            | 140 ++++++++++++++++++-------------------------------
 fs/fuse/dir.c          |   7 +--
 fs/gfs2/dentry.c       |   3 --
 fs/kernfs/dir.c        |  11 ----
 fs/mount.h             |  22 ++++++++
 fs/namei.c             |  22 ++++----
 fs/namespace.c         | 130 +++++++++++++++++++++++++++++++++++++++++----
 fs/nfs/dir.c           |   7 +--
 fs/proc/base.c         |  10 +---
 fs/proc/fd.c           |   2 -
 include/linux/dcache.h |   3 +-
 kernel/acct.c          |  25 +++++++--
 16 files changed, 232 insertions(+), 168 deletions(-)
Merging ktest/for-next (4c16b1d6d5e0 ktest: Update documentation on config_bisect)
$ git merge ktest/for-next
Merge made by the 'recursive' strategy.
 tools/testing/ktest/ktest.pl    | 581 +++++++++++++++++++---------------------
 tools/testing/ktest/sample.conf |  65 ++---
 2 files changed, 297 insertions(+), 349 deletions(-)
Merging signal/for-next (20b4fb485227 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge signal/for-next
Already up-to-date.
Merging clk/clk-next (b640a6037c9e Merge tag 'sunxi-clk-for-3.16-2' of https://github.com/mripard/linux into clk-next)
$ git merge clk/clk-next
Already up-to-date.
Merging random/dev (5458c2fecbb8 hw_random: fix sparse warning (NULL vs 0 for pointer))
$ git merge random/dev
Auto-merging drivers/char/random.c
Merge made by the 'recursive' strategy.
 drivers/char/hw_random/core.c |  78 +++++++++++++-
 drivers/char/random.c         | 234 ++++++++++++++++++++++++++----------------
 include/linux/hw_random.h     |   5 +
 3 files changed, 225 insertions(+), 92 deletions(-)
Merging lzo-update/lzo-update (42b775abafaf lib/lzo: huge LZO decompression speedup on ARM by using unaligned access)
$ git merge lzo-update/lzo-update
Merge made by the 'recursive' strategy.
 lib/lzo/lzo1x_decompress_safe.c | 4 ++++
 lib/lzo/lzodefs.h               | 6 ++++++
 2 files changed, 10 insertions(+)
Merging aio/master (fa88b6f8803c aio: cleanup: flatten kill_ioctx())
$ git merge aio/master
Already up-to-date.
Merging llvmlinux/for-next (f9da455b93f6 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next)
$ git merge llvmlinux/for-next
Already up-to-date.
Merging powernv-cpuidle/powernv-cpuidle (0888839c5b62 cpuidle/powernv: Parse device tree to setup idle states)
$ git merge powernv-cpuidle/powernv-cpuidle
Already up-to-date.
Merging rd-docs/master (93df5e1c88f7 These days most people use git to send patches so I have added a section about that.)
$ git merge rd-docs/master
Auto-merging MAINTAINERS
Auto-merging Documentation/email-clients.txt
Merge made by the 'recursive' strategy.
 Documentation/email-clients.txt | 11 +++++++++++
 MAINTAINERS                     |  3 +++
 2 files changed, 14 insertions(+)
$ git revert 382063d91e15
error: could not revert 382063d91e15... staging: board: Initial board staging support
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'
$ git am -3 ../patches/0001-staging-board-disable.patch
Applying: staging: board: disable
Merging akpm-current/current (ec11f8c81fbc lib/scatterlist: clean up useless architecture versions of scatterlist.h)
$ git merge --no-ff akpm-current/current
Auto-merging mm/slub.c
Auto-merging lib/Kconfig.debug
Auto-merging kernel/fork.c
Auto-merging fs/namespace.c
Auto-merging arch/x86/mm/fault.c
Removing arch/x86/include/asm/scatterlist.h
Auto-merging arch/x86/Kconfig
Removing arch/sparc/include/asm/scatterlist.h
Removing arch/score/include/asm/scatterlist.h
Removing arch/s390/include/asm/scatterlist.h
Removing arch/powerpc/kvm/book3s_hv_cma.h
Removing arch/powerpc/kvm/book3s_hv_cma.c
Removing arch/powerpc/include/asm/scatterlist.h
Removing arch/mn10300/include/asm/scatterlist.h
Removing arch/microblaze/include/asm/scatterlist.h
Removing arch/m32r/include/asm/scatterlist.h
Removing arch/ia64/include/asm/scatterlist.h
Removing arch/frv/include/asm/scatterlist.h
Removing arch/cris/include/asm/scatterlist.h
Removing arch/arm/include/asm/scatterlist.h
Auto-merging arch/arm/Kconfig
Removing arch/alpha/include/asm/scatterlist.h
Auto-merging Makefile
Auto-merging MAINTAINERS
Auto-merging Documentation/kernel-parameters.txt
Merge made by the 'recursive' strategy.
 CREDITS                                          |   11 +
 Documentation/RCU/whatisRCU.txt                  |    2 +-
 Documentation/accounting/getdelays.c             |    1 +
 Documentation/cgroups/memcg_test.txt             |  160 +--
 Documentation/kernel-parameters.txt              |    5 +
 Documentation/leds/leds-class.txt                |    3 -
 Documentation/memory-hotplug.txt                 |   15 +-
 Documentation/printk-formats.txt                 |    6 +
 Documentation/sysctl/kernel.txt                  |   17 +
 Documentation/sysctl/vm.txt                      |    3 +-
 MAINTAINERS                                      |   13 +-
 Makefile                                         |    3 +
 arch/alpha/include/asm/Kbuild                    |    1 +
 arch/alpha/include/asm/scatterlist.h             |    6 -
 arch/arm/Kconfig                                 |    1 +
 arch/arm/include/asm/Kbuild                      |    1 +
 arch/arm/include/asm/scatterlist.h               |   12 -
 arch/arm/mm/dma-mapping.c                        |    1 +
 arch/arm64/Kconfig                               |    1 +
 arch/cris/include/asm/Kbuild                     |    1 +
 arch/cris/include/asm/scatterlist.h              |    6 -
 arch/frv/include/asm/Kbuild                      |    1 +
 arch/frv/include/asm/scatterlist.h               |    6 -
 arch/ia64/Kconfig                                |    1 +
 arch/ia64/include/asm/Kbuild                     |    1 +
 arch/ia64/include/asm/scatterlist.h              |    7 -
 arch/ia64/include/uapi/asm/fcntl.h               |    1 +
 arch/m32r/include/asm/Kbuild                     |    1 +
 arch/m32r/include/asm/scatterlist.h              |    6 -
 arch/m68k/kernel/sys_m68k.c                      |   18 +-
 arch/microblaze/include/asm/Kbuild               |    1 +
 arch/microblaze/include/asm/scatterlist.h        |    1 -
 arch/mn10300/include/asm/Kbuild                  |    1 +
 arch/mn10300/include/asm/scatterlist.h           |   16 -
 arch/powerpc/Kconfig                             |    1 +
 arch/powerpc/include/asm/Kbuild                  |    1 +
 arch/powerpc/include/asm/scatterlist.h           |   17 -
 arch/powerpc/kvm/book3s_64_mmu_hv.c              |    4 +-
 arch/powerpc/kvm/book3s_hv_builtin.c             |   19 +-
 arch/powerpc/kvm/book3s_hv_cma.c                 |  240 ----
 arch/powerpc/kvm/book3s_hv_cma.h                 |   27 -
 arch/powerpc/mm/dma-noncoherent.c                |    1 +
 arch/powerpc/platforms/44x/warp.c                |    1 +
 arch/powerpc/platforms/52xx/efika.c              |    1 +
 arch/powerpc/platforms/amigaone/setup.c          |    1 +
 arch/s390/Kconfig                                |    1 +
 arch/s390/include/asm/Kbuild                     |    1 +
 arch/s390/include/asm/scatterlist.h              |    3 -
 arch/score/include/asm/Kbuild                    |    1 +
 arch/score/include/asm/scatterlist.h             |    6 -
 arch/sh/drivers/dma/Kconfig                      |    5 +-
 arch/sh/include/cpu-sh4/cpu/dma-register.h       |    1 -
 arch/sh/include/cpu-sh4a/cpu/dma.h               |    3 +-
 arch/sparc/Kconfig                               |    1 +
 arch/sparc/include/asm/Kbuild                    |    1 +
 arch/sparc/include/asm/irq_64.h                  |    2 +-
 arch/sparc/include/asm/scatterlist.h             |    8 -
 arch/sparc/kernel/process_64.c                   |   18 +-
 arch/um/include/asm/Kbuild                       |    1 +
 arch/x86/Kconfig                                 |    1 +
 arch/x86/include/asm/Kbuild                      |    3 +-
 arch/x86/include/asm/irq.h                       |    2 +-
 arch/x86/include/asm/pgtable_64.h                |    3 +-
 arch/x86/include/asm/scatterlist.h               |    8 -
 arch/x86/kernel/apic/hw_nmi.c                    |   18 +-
 arch/x86/mm/fault.c                              |    2 +-
 arch/x86/mm/init_64.c                            |   36 +-
 block/genhd.c                                    |    2 +-
 drivers/ata/Kconfig                              |    1 +
 drivers/ata/libata-core.c                        |   72 +-
 drivers/base/Kconfig                             |   10 -
 drivers/base/dma-contiguous.c                    |  210 +--
 drivers/base/memory.c                            |   30 +-
 drivers/gpu/drm/drm_hashtab.c                    |    2 +-
 drivers/input/Kconfig                            |    9 +
 drivers/input/Makefile                           |    3 +
 drivers/input/input.c                            |    6 +
 drivers/input/leds.c                             |  249 ++++
 drivers/leds/Kconfig                             |    3 -
 drivers/memstick/host/rtsx_pci_ms.c              |    1 +
 drivers/misc/ti-st/st_core.c                     |    2 +-
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c   |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c |    2 +-
 drivers/net/irda/donauboe.c                      |   15 +-
 drivers/parport/parport_ip32.c                   |    2 +-
 drivers/rtc/rtc-ds1343.c                         |   75 +-
 drivers/staging/lustre/lustre/libcfs/hash.c      |    4 +-
 drivers/tty/Kconfig                              |    4 +
 drivers/tty/vt/keyboard.c                        |  110 +-
 drivers/video/backlight/backlight.c              |    2 -
 fs/adfs/dir_fplus.c                              |    2 +-
 fs/binfmt_elf.c                                  |   21 +-
 fs/cachefiles/bind.c                             |    6 +-
 fs/cachefiles/daemon.c                           |    6 +-
 fs/cifs/cifsacl.c                                |    2 +-
 fs/cifs/cifssmb.c                                |   20 +-
 fs/cifs/sess.c                                   |    2 +-
 fs/cifs/smb2misc.c                               |   38 +-
 fs/cifs/smb2ops.c                                |    2 +-
 fs/cifs/smb2pdu.c                                |    2 +-
 fs/cifs/smb2pdu.h                                |   28 +-
 fs/compat.c                                      |    2 +-
 fs/exec.c                                        |    4 -
 fs/ext4/fsync.c                                  |    5 +-
 fs/hfsplus/catalog.c                             |   89 +-
 fs/hfsplus/dir.c                                 |   11 +-
 fs/hfsplus/hfsplus_fs.h                          |    4 +-
 fs/hfsplus/super.c                               |    4 +-
 fs/isofs/Makefile                                |    2 +
 fs/isofs/compress.c                              |   10 +-
 fs/isofs/export.c                                |   11 +-
 fs/isofs/inode.c                                 |   88 +-
 fs/isofs/namei.c                                 |    5 +-
 fs/isofs/rock.c                                  |   44 +-
 fs/mpage.c                                       |   23 +-
 fs/namespace.c                                   |    2 +-
 fs/nilfs2/super.c                                |    2 +-
 fs/notify/inode_mark.c                           |    2 +-
 fs/notify/vfsmount_mark.c                        |    2 +-
 fs/ocfs2/alloc.c                                 |   15 +-
 fs/ocfs2/aops.c                                  |   21 +-
 fs/ocfs2/cluster/quorum.c                        |   13 +-
 fs/ocfs2/cluster/tcp.c                           |   45 +-
 fs/ocfs2/cluster/tcp.h                           |    1 +
 fs/ocfs2/dlm/dlmcommon.h                         |    4 +
 fs/ocfs2/dlm/dlmdomain.c                         |    5 +-
 fs/ocfs2/dlm/dlmmaster.c                         |   57 +-
 fs/ocfs2/dlm/dlmrecovery.c                       |    3 +-
 fs/ocfs2/dlm/dlmthread.c                         |   13 +-
 fs/ocfs2/dlm/dlmunlock.c                         |   18 +-
 fs/ocfs2/inode.c                                 |   10 +-
 fs/ocfs2/ioctl.c                                 |  129 +-
 fs/ocfs2/move_extents.c                          |    2 +-
 fs/ocfs2/namei.c                                 |  145 ++-
 fs/ocfs2/ocfs2_trace.h                           |    2 +
 fs/ocfs2/refcounttree.c                          |   10 +-
 fs/ocfs2/super.c                                 |    8 +-
 fs/proc/kcore.c                                  |    2 +-
 fs/proc/proc_sysctl.c                            |    2 +-
 fs/proc/stat.c                                   |   22 +-
 fs/qnx6/Makefile                                 |    1 +
 fs/qnx6/dir.c                                    |   26 +-
 fs/qnx6/inode.c                                  |   99 +-
 fs/qnx6/namei.c                                  |    6 +-
 fs/qnx6/qnx6.h                                   |   12 +-
 fs/qnx6/super_mmi.c                              |   22 +-
 fs/romfs/super.c                                 |   23 +-
 fs/seq_file.c                                    |   30 +-
 fs/squashfs/file_direct.c                        |    2 +-
 fs/squashfs/super.c                              |    5 +-
 include/linux/cma.h                              |   21 +
 include/linux/crc64_ecma.h                       |   56 +
 include/linux/decompress/bunzip2.h               |   10 +-
 include/linux/decompress/generic.h               |   12 +-
 include/linux/decompress/inflate.h               |   10 +-
 include/linux/decompress/unlz4.h                 |   10 +-
 include/linux/decompress/unlzma.h                |   10 +-
 include/linux/decompress/unlzo.h                 |   10 +-
 include/linux/decompress/unxz.h                  |    8 +-
 include/linux/dma-contiguous.h                   |   11 +-
 include/linux/gfp.h                              |    2 +-
 include/linux/glob.h                             |   10 +
 include/linux/hugetlb.h                          |    7 -
 include/linux/hugetlb_inline.h                   |    7 +
 include/linux/input.h                            |   21 +
 include/linux/kernel.h                           |   32 +-
 include/linux/klist.h                            |    2 +-
 include/linux/list.h                             |   14 +-
 include/linux/memblock.h                         |    4 +-
 include/linux/memcontrol.h                       |   94 +-
 include/linux/memory_hotplug.h                   |    9 +-
 include/linux/mm_types.h                         |    1 +
 include/linux/nmi.h                              |   12 +-
 include/linux/page-flags.h                       |    3 +
 include/linux/page_cgroup.h                      |   43 +-
 include/linux/pagemap.h                          |   28 +
 include/linux/rculist.h                          |    8 +-
 include/linux/scatterlist.h                      |    2 +-
 include/linux/sched.h                            |    2 +
 include/linux/shm.h                              |   18 +-
 include/linux/slab.h                             |   14 +-
 include/linux/string.h                           |    1 +
 include/linux/swap.h                             |   15 +-
 include/linux/sysctl.h                           |    2 -
 include/linux/zlib.h                             |    4 +-
 include/scsi/scsi.h                              |    2 +-
 init/do_mounts.c                                 |   12 +-
 init/do_mounts_rd.c                              |   10 +-
 init/initramfs.c                                 |   26 +-
 ipc/shm.c                                        |   75 +-
 kernel/auditfilter.c                             |    4 +-
 kernel/events/uprobes.c                          |    9 +-
 kernel/fork.c                                    |   59 +-
 kernel/kexec.c                                   |    1 +
 kernel/posix-timers.c                            |   57 +-
 kernel/smp.c                                     |   57 +-
 kernel/sysctl.c                                  |   14 +-
 kernel/test_kprobes.c                            |   87 +-
 kernel/watchdog.c                                |   51 +-
 lib/Kconfig                                      |   47 +
 lib/Kconfig.debug                                |    4 +-
 lib/Makefile                                     |    3 +
 lib/cmdline.c                                    |   15 +-
 lib/crc64_ecma.c                                 |  341 +++++
 lib/decompress.c                                 |    2 +-
 lib/decompress_bunzip2.c                         |   30 +-
 lib/decompress_inflate.c                         |   14 +-
 lib/decompress_unlz4.c                           |   20 +-
 lib/decompress_unlzma.c                          |   32 +-
 lib/decompress_unlzo.c                           |   12 +-
 lib/decompress_unxz.c                            |   10 +-
 lib/glob.c                                       |  287 ++++
 lib/klist.c                                      |    6 +-
 lib/scatterlist.c                                |    4 +-
 lib/string_helpers.c                             |   15 +-
 lib/vsprintf.c                                   |   20 +-
 mm/Kconfig                                       |   11 +
 mm/Makefile                                      |    1 +
 mm/cma.c                                         |  335 +++++
 mm/compaction.c                                  |   17 +-
 mm/filemap.c                                     |   13 +-
 mm/huge_memory.c                                 |  122 +-
 mm/hugetlb.c                                     |   72 +-
 mm/internal.h                                    |    2 +-
 mm/ksm.c                                         |    1 -
 mm/memcontrol.c                                  | 1514 ++++++++--------------
 mm/memory-failure.c                              |   15 +-
 mm/memory.c                                      |   53 +-
 mm/memory_hotplug.c                              |   17 +-
 mm/migrate.c                                     |   46 +-
 mm/nommu.c                                       |    2 +-
 mm/page_alloc.c                                  |   51 +-
 mm/readahead.c                                   |    3 +-
 mm/rmap.c                                        |   42 +-
 mm/shmem.c                                       |   91 +-
 mm/slab.c                                        |  300 +++--
 mm/slab.h                                        |   42 +-
 mm/slub.c                                        |  224 ++--
 mm/swap.c                                        |   40 +
 mm/swap_state.c                                  |    8 +-
 mm/swapfile.c                                    |   21 +-
 mm/truncate.c                                    |    9 -
 mm/util.c                                        |   30 +
 mm/vmalloc.c                                     |    6 +-
 mm/vmscan.c                                      |   12 +-
 mm/zswap.c                                       |    6 +-
 net/batman-adv/fragmentation.c                   |    2 +-
 net/bridge/br_multicast.c                        |    2 +-
 net/ipv4/fib_trie.c                              |    2 +-
 net/ipv6/addrlabel.c                             |    2 +-
 net/xfrm/xfrm_policy.c                           |    4 +-
 scripts/checkpatch.pl                            |   48 +-
 252 files changed, 4406 insertions(+), 3375 deletions(-)
 delete mode 100644 arch/alpha/include/asm/scatterlist.h
 delete mode 100644 arch/arm/include/asm/scatterlist.h
 delete mode 100644 arch/cris/include/asm/scatterlist.h
 delete mode 100644 arch/frv/include/asm/scatterlist.h
 delete mode 100644 arch/ia64/include/asm/scatterlist.h
 delete mode 100644 arch/m32r/include/asm/scatterlist.h
 delete mode 100644 arch/microblaze/include/asm/scatterlist.h
 delete mode 100644 arch/mn10300/include/asm/scatterlist.h
 delete mode 100644 arch/powerpc/include/asm/scatterlist.h
 delete mode 100644 arch/powerpc/kvm/book3s_hv_cma.c
 delete mode 100644 arch/powerpc/kvm/book3s_hv_cma.h
 delete mode 100644 arch/s390/include/asm/scatterlist.h
 delete mode 100644 arch/score/include/asm/scatterlist.h
 delete mode 100644 arch/sparc/include/asm/scatterlist.h
 delete mode 100644 arch/x86/include/asm/scatterlist.h
 create mode 100644 drivers/input/leds.c
 create mode 100644 include/linux/cma.h
 create mode 100644 include/linux/crc64_ecma.h
 create mode 100644 include/linux/glob.h
 create mode 100644 lib/crc64_ecma.c
 create mode 100644 lib/glob.c
 create mode 100644 mm/cma.c
$ git clone -s -l -n -q . ../rebase-tmp
$ cd ../rebase-tmp
$ git checkout -b akpm remotes/origin/akpm/master
Switched to a new branch 'akpm'
$ git rebase --onto master remotes/origin/akpm/master-base
First, rewinding head to replay your work on top of it...
Applying: drivers/gpio/gpio-zevio.c: fix build
Applying: init/main.c: code clean-up
Applying: kernel/kprobes.c: convert printk to pr_foo()
Applying: mm: replace remap_file_pages() syscall with emulation
Applying: mm-replace-remap_file_pages-syscall-with-emulation-fix
Applying: mm: remap_file_pages: initialize populate before usage
Applying: mm: remap_file_pages: grab file ref to prevent race while mmaping
Applying: memcg: deprecate memory.force_empty knob
Applying: memcg-deprecate-memoryforce_empty-knob-fix
Applying: fat: add i_disksize to represent uninitialized size
Applying: fat: add fat_fallocate operation
Applying: fat: zero out seek range on _fat_get_block
Applying: fat: fallback to buffered write in case of fallocated region on direct IO
Applying: fat: permit to return phy block number by fibmap in fallocated region
Applying: Documentation/filesystems/vfat.txt: update the limitation for fat fallocate
Applying: bio: modify __bio_add_page() to accept pages that don't start a new segment
Applying: drivers/w1/w1_int.c: call put_device if device_register fails
Applying: mm: add strictlimit knob
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + 75b0a9685336...24f24433598d akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (24f24433598d mm: add strictlimit knob)
$ git merge --no-ff akpm/master
Removing mm/fremap.c
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-class-bdi |   8 +
 Documentation/cgroups/memory.txt          |   3 +
 Documentation/filesystems/vfat.txt        |  10 ++
 Documentation/vm/remap_file_pages.txt     |   7 +-
 block/bio.c                               |  48 ++---
 drivers/gpio/gpio-zevio.c                 |   4 +
 drivers/w1/w1_int.c                       |   5 +-
 fs/fat/cache.c                            |  70 ++++++--
 fs/fat/fat.h                              |   6 +-
 fs/fat/file.c                             |  78 +++++++-
 fs/fat/inode.c                            |  87 ++++++++-
 include/linux/fs.h                        |   8 +-
 init/main.c                               |  23 +--
 kernel/kprobes.c                          |  36 ++--
 mm/Makefile                               |   2 +-
 mm/backing-dev.c                          |  35 ++++
 mm/fremap.c                               | 283 ------------------------------
 mm/memcontrol.c                           |   5 +
 mm/mmap.c                                 |  69 ++++++++
 mm/nommu.c                                |   8 -
 20 files changed, 422 insertions(+), 373 deletions(-)
 delete mode 100644 mm/fremap.c
$ git revert 57d551e70a38
[master fdcd54013af6] Revert "mm, CMA: clean-up log message"
 1 file changed, 2 insertions(+), 2 deletions(-)
$ git revert d75ab106aef5
[master df2c04c68831] Revert "mm, CMA: change cma_declare_contiguous() to obey coding convention"
 4 files changed, 10 insertions(+), 11 deletions(-)
$ git revert f693a5424631
[master 276152ec2b40] Revert "mm, CMA: clean-up CMA allocation error path"
 1 file changed, 3 insertions(+), 4 deletions(-)
$ git revert e58e263e5254
[master 4548cd4c2703] Revert "PPC, KVM, CMA: use general CMA reserved area management framework"
 4 files changed, 276 insertions(+), 14 deletions(-)
 create mode 100644 arch/powerpc/kvm/book3s_hv_cma.c
 create mode 100644 arch/powerpc/kvm/book3s_hv_cma.h
$ git revert f495d267b2e0
[master 955a2337989c] Revert "CMA: generalize CMA reserved area management functionality"
 7 files changed, 213 insertions(+), 86 deletions(-)
 rename mm/cma.c => drivers/base/dma-contiguous.c (59%)
 delete mode 100644 include/linux/cma.h