aboutsummaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: f22515cceb96ae64ed8c9b85e8a293af01b49b34 (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
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
$ date
Tuesday 5 May  10:46:11 AEST 2015
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at 61f06db00e06 Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Merging origin/master (5ebe6afaf005 Linux 4.1-rc2)
$ git merge origin/master
Updating 61f06db00e06..5ebe6afaf005
Fast-forward
 MAINTAINERS                                 |   7 +
 Makefile                                    |   2 +-
 drivers/gpu/drm/i915/i915_reg.h             |   2 +
 drivers/gpu/drm/i915/intel_uncore.c         |   8 +
 drivers/gpu/drm/radeon/atombios_crtc.c      |   3 +
 drivers/gpu/drm/radeon/atombios_encoders.c  |   6 +-
 drivers/gpu/drm/radeon/dce6_afmt.c          |  25 ---
 drivers/gpu/drm/radeon/evergreen_hdmi.c     |  53 ++++--
 drivers/gpu/drm/radeon/r600_hdmi.c          |   9 +-
 drivers/gpu/drm/radeon/radeon_audio.c       |  30 +--
 drivers/gpu/drm/radeon/radeon_connectors.c  |   8 +-
 drivers/gpu/drm/radeon/radeon_cs.c          |   4 +-
 drivers/gpu/drm/radeon/radeon_mn.c          |  10 +-
 drivers/gpu/drm/radeon/radeon_vm.c          |  36 ++--
 drivers/gpu/drm/radeon/si_dpm.c             |   1 +
 drivers/gpu/drm/rockchip/rockchip_drm_vop.c |   9 +-
 fs/ext4/Kconfig                             |   9 +-
 fs/ext4/crypto_fname.c                      | 280 ++++++++++++++--------------
 fs/ext4/crypto_key.c                        |   1 +
 fs/ext4/crypto_policy.c                     |  14 +-
 fs/ext4/dir.c                               |   2 +-
 fs/ext4/ext4.h                              |  16 +-
 fs/ext4/ext4_crypto.h                       |  11 +-
 fs/ext4/extents.c                           |  15 +-
 fs/ext4/extents_status.c                    |   8 +
 fs/ext4/inode.c                             |   2 +
 fs/ext4/namei.c                             |  72 +------
 fs/ext4/resize.c                            |   7 +-
 fs/ext4/symlink.c                           |   2 +-
 29 files changed, 328 insertions(+), 324 deletions(-)
Merging fixes/master (b94d525e58dc Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge fixes/master
Already up-to-date.
Merging kbuild-current/rc-fixes (c517d838eb7d Linux 4.0-rc1)
$ git merge kbuild-current/rc-fixes
Already up-to-date.
Merging arc-current/for-curr (e4140819dadc ARC: signal handling robustify)
$ git merge arc-current/for-curr
Already up-to-date.
Merging arm-current/fixes (3b8786ff7a1b ARM: 8352/1: perf: Fix the pmu node name in warning message)
$ git merge arm-current/fixes
Merge made by the 'recursive' strategy.
 arch/arm/include/asm/dma-iommu.h |  2 +-
 arch/arm/kernel/perf_event_cpu.c |  9 +++++++--
 arch/arm/mm/dma-mapping.c        | 13 +++++--------
 arch/arm/mm/proc-arm1020.S       |  2 --
 arch/arm/mm/proc-arm1020e.S      |  2 --
 arch/arm/mm/proc-arm925.S        |  3 ---
 arch/arm/mm/proc-feroceon.S      |  1 -
 7 files changed, 13 insertions(+), 19 deletions(-)
Merging m68k-current/for-linus (b24f670b7f5b m68k/mac: Fix out-of-bounds array index in OSS IRQ source initialization)
$ git merge m68k-current/for-linus
Already up-to-date.
Merging metag-fixes/fixes (0164a711c97b metag: Fix ioremap_wc/ioremap_cached build errors)
$ git merge metag-fixes/fixes
Already up-to-date.
Merging mips-fixes/mips-fixes (1795cd9b3a91 Linux 3.16-rc5)
$ git merge mips-fixes/mips-fixes
Already up-to-date.
Merging powerpc-merge-mpe/fixes (0aab3747091d powerpc/powernv: Restore non-volatile CRs after nap)
$ git merge powerpc-merge-mpe/fixes
Already up-to-date.
Merging powerpc-merge/merge (c517d838eb7d Linux 4.0-rc1)
$ git merge powerpc-merge/merge
Already up-to-date.
Merging sparc/master (acc455cffa75 sparc64: Setup sysfs to mark LDOM sockets, cores and threads correctly)
$ git merge sparc/master
Merge made by the 'recursive' strategy.
 arch/sparc/include/asm/cpudata_64.h  |   3 +-
 arch/sparc/include/asm/topology_64.h |   3 +-
 arch/sparc/kernel/mdesc.c            | 136 ++++++++++++++++++++++++++++-------
 arch/sparc/kernel/smp_64.c           |  13 ++++
 4 files changed, 127 insertions(+), 28 deletions(-)
Merging net/master (b7ba7b469a4f Merge tag 'mac80211-for-davem-2015-05-04' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211)
$ git merge net/master
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                        |   5 +-
 drivers/bluetooth/bt3c_cs.c                        |   3 -
 drivers/bluetooth/btbcm.c                          | 148 ++++----
 drivers/bluetooth/btbcm.h                          |   6 +
 drivers/bluetooth/btusb.c                          | 403 ++++++++++++++++++++-
 drivers/bluetooth/hci_ath.c                        |  98 +++--
 drivers/net/can/xilinx_can.c                       |   7 +-
 drivers/net/dsa/mv88e6xxx.c                        |   3 +
 drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c    |  10 +-
 drivers/net/ethernet/intel/fm10k/fm10k_main.c      |   4 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c  |   2 +-
 drivers/net/ethernet/realtek/r8169.c               |   4 +-
 drivers/net/ethernet/smsc/smc91x.c                 |  20 +-
 drivers/net/ethernet/smsc/smsc911x.c               |  12 +-
 .../net/ethernet/stmicro/stmmac/stmmac_platform.c  |   1 +
 drivers/net/ieee802154/at86rf230.c                 | 390 ++++++++++----------
 drivers/net/macvlan.c                              |  15 +
 include/linux/tcp.h                                |   8 +
 include/net/cfg802154.h                            |   2 +
 include/net/codel.h                                |  10 +-
 include/net/mac80211.h                             |   2 +
 include/net/mac802154.h                            |  94 ++++-
 include/net/tcp.h                                  |   7 +-
 include/uapi/linux/inet_diag.h                     |   4 +
 include/uapi/linux/tcp.h                           |   3 +
 net/core/dev.c                                     |   2 +-
 net/core/sock.c                                    |   2 +-
 net/ieee802154/Makefile                            |   4 +-
 net/ieee802154/nl-phy.c                            |   5 +-
 net/ieee802154/nl802154.c                          |   2 +-
 net/ieee802154/rdev-ops.h                          |  85 ++++-
 net/ieee802154/trace.c                             |   7 +
 net/ieee802154/trace.h                             | 247 +++++++++++++
 net/ipv4/inet_diag.c                               |   8 +-
 net/ipv4/tcp.c                                     |  28 +-
 net/ipv4/tcp_dctcp.c                               |  20 +-
 net/ipv4/tcp_fastopen.c                            |   1 +
 net/ipv4/tcp_illinois.c                            |  21 +-
 net/ipv4/tcp_input.c                               |  36 +-
 net/ipv4/tcp_vegas.c                               |  19 +-
 net/ipv4/tcp_vegas.h                               |   3 +-
 net/mac80211/iface.c                               |  12 +-
 net/mac80211/sta_info.c                            |  19 +-
 net/mac802154/cfg.c                                |   9 +-
 net/mac802154/ieee802154_i.h                       |   3 +-
 net/mac802154/iface.c                              |   5 +-
 net/mac802154/main.c                               |   3 +-
 net/netlink/af_netlink.c                           |   1 -
 net/rds/ib_cm.c                                    |  13 +-
 net/sched/sch_codel.c                              |   2 +-
 net/sched/sch_fq_codel.c                           |   2 +-
 51 files changed, 1410 insertions(+), 410 deletions(-)
 create mode 100644 net/ieee802154/trace.c
 create mode 100644 net/ieee802154/trace.h
Merging ipsec/master (bdddbf6996c0 xfrm: fix a race in xfrm_state_lookup_byspi)
$ git merge ipsec/master
Merge made by the 'recursive' strategy.
 net/xfrm/xfrm_state.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging sound-current/for-linus (ec6bfca835b6 ALSA: hda/realtek - Fix typo for ALC286/ALC288)
$ git merge sound-current/for-linus
Merge made by the 'recursive' strategy.
 sound/pci/hda/patch_realtek.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging pci-current/for-linus (b787f68c36d4 Linux 4.1-rc1)
$ git merge pci-current/for-linus
Already up-to-date.
Merging wireless-drivers/master (f67382186489 ath9k: fix per-packet tx power configuration)
$ git merge wireless-drivers/master
Merge made by the 'recursive' strategy.
 drivers/net/wireless/ath/ath9k/xmit.c           | 52 ++++++++++++------------
 drivers/net/wireless/iwlwifi/iwl-fw-file.h      |  2 +
 drivers/net/wireless/iwlwifi/iwl-trans.h        | 41 ++++++++++++-------
 drivers/net/wireless/iwlwifi/mvm/d3.c           |  2 +-
 drivers/net/wireless/iwlwifi/mvm/fw-api-power.h | 34 ++++++++++++++++
 drivers/net/wireless/iwlwifi/mvm/fw-api-scan.h  | 44 +-------------------
 drivers/net/wireless/iwlwifi/mvm/fw-api.h       | 13 ------
 drivers/net/wireless/iwlwifi/mvm/fw.c           | 54 ++++++++++---------------
 drivers/net/wireless/iwlwifi/mvm/mac80211.c     | 26 ++++++++++--
 drivers/net/wireless/iwlwifi/mvm/mvm.h          |  1 -
 drivers/net/wireless/iwlwifi/mvm/ops.c          | 10 +++++
 drivers/net/wireless/iwlwifi/mvm/rx.c           |  5 +++
 drivers/net/wireless/iwlwifi/mvm/scan.c         |  2 +-
 drivers/net/wireless/iwlwifi/pcie/trans.c       | 17 ++++----
 drivers/net/wireless/rtlwifi/usb.c              |  2 +-
 15 files changed, 161 insertions(+), 144 deletions(-)
Merging driver-core.current/driver-core-linus (b787f68c36d4 Linux 4.1-rc1)
$ git merge driver-core.current/driver-core-linus
Already up-to-date.
Merging tty.current/tty-linus (96a5d18bc133 serial: 8250_pci: Add support for 16 port Exar boards)
$ git merge tty.current/tty-linus
Already up-to-date.
Merging usb.current/usb-linus (0d3bba0287d4 cdc-acm: prevent infinite loop when parsing CDC headers.)
$ git merge usb.current/usb-linus
Already up-to-date.
Merging usb-gadget-fixes/fixes (c94e289f195e usb: gadget: remove incorrect __init/__exit annotations)
$ git merge usb-gadget-fixes/fixes
Merge made by the 'recursive' strategy.
 drivers/usb/dwc3/dwc3-omap.c               | 94 +++++++++++++++---------------
 drivers/usb/gadget/configfs.c              |  1 +
 drivers/usb/gadget/function/f_hid.c        | 16 ++++-
 drivers/usb/gadget/function/u_serial.c     |  5 +-
 drivers/usb/gadget/legacy/acm_ms.c         | 10 ++--
 drivers/usb/gadget/legacy/audio.c          | 10 ++--
 drivers/usb/gadget/legacy/cdc2.c           | 10 ++--
 drivers/usb/gadget/legacy/dbgp.c           |  4 +-
 drivers/usb/gadget/legacy/ether.c          | 12 ++--
 drivers/usb/gadget/legacy/g_ffs.c          |  2 +-
 drivers/usb/gadget/legacy/gmidi.c          | 10 ++--
 drivers/usb/gadget/legacy/hid.c            | 12 ++--
 drivers/usb/gadget/legacy/mass_storage.c   |  6 +-
 drivers/usb/gadget/legacy/multi.c          | 10 ++--
 drivers/usb/gadget/legacy/ncm.c            | 10 ++--
 drivers/usb/gadget/legacy/nokia.c          | 10 ++--
 drivers/usb/gadget/legacy/printer.c        |  8 +--
 drivers/usb/gadget/legacy/serial.c         |  4 +-
 drivers/usb/gadget/legacy/tcm_usb_gadget.c |  2 +-
 drivers/usb/gadget/legacy/webcam.c         |  8 +--
 drivers/usb/gadget/legacy/zero.c           |  4 +-
 drivers/usb/gadget/udc/at91_udc.c          |  4 +-
 drivers/usb/gadget/udc/atmel_usba_udc.c    |  4 +-
 drivers/usb/gadget/udc/fsl_udc_core.c      |  4 +-
 drivers/usb/gadget/udc/fusb300_udc.c       |  4 +-
 drivers/usb/gadget/udc/m66592-udc.c        |  4 +-
 drivers/usb/gadget/udc/r8a66597-udc.c      |  4 +-
 drivers/usb/gadget/udc/udc-xilinx.c        |  4 +-
 drivers/usb/phy/phy-isp1301-omap.c         |  2 +-
 29 files changed, 147 insertions(+), 131 deletions(-)
Merging usb-serial-fixes/usb-linus (82ee3aeb9295 USB: visor: Match I330 phone more precisely)
$ git merge usb-serial-fixes/usb-linus
Merge made by the 'recursive' strategy.
 drivers/usb/serial/cp210x.c | 1 +
 drivers/usb/serial/pl2303.c | 1 -
 drivers/usb/serial/pl2303.h | 4 ----
 drivers/usb/serial/visor.c  | 2 +-
 4 files changed, 2 insertions(+), 6 deletions(-)
Merging staging.current/staging-linus (b787f68c36d4 Linux 4.1-rc1)
$ git merge staging.current/staging-linus
Already up-to-date.
Merging char-misc.current/char-misc-linus (f26443a8ab76 Merge tag 'extcon-fixes-for-4.1-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon into char-misc-linus)
$ git merge char-misc.current/char-misc-linus
Auto-merging drivers/hwmon/dell-smm-hwmon.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                    |   4 +-
 arch/x86/Kconfig                               |  25 ++--
 drivers/char/Makefile                          |   1 -
 drivers/extcon/extcon-usb-gpio.c               |  24 ++--
 drivers/hwmon/Kconfig                          |  11 ++
 drivers/hwmon/Makefile                         |   1 +
 drivers/{char/i8k.c => hwmon/dell-smm-hwmon.c} | 156 ++++++++++++++-----------
 7 files changed, 124 insertions(+), 98 deletions(-)
 rename drivers/{char/i8k.c => hwmon/dell-smm-hwmon.c} (96%)
Merging input-current/for-linus (48853389f206 Merge branch 'next' into for-linus)
$ git merge input-current/for-linus
Already up-to-date.
Merging crypto-current/master (f440c4ee3e53 hwrng: bcm63xx - Fix driver compilation)
$ git merge crypto-current/master
Merge made by the 'recursive' strategy.
 drivers/char/hw_random/bcm63xx-rng.c | 18 +++++++++---------
 include/linux/compiler-gcc.h         | 16 +++++++++++++++-
 include/linux/compiler-intel.h       |  3 +++
 include/linux/compiler.h             |  4 ++++
 lib/string.c                         |  2 +-
 5 files changed, 32 insertions(+), 11 deletions(-)
Merging ide/master (d681f1166919 ide: remove deprecated use of pci api)
$ git merge ide/master
Already up-to-date.
Merging devicetree-current/devicetree/merge (41d9489319f2 drivers/of: Add empty ranges quirk for PA-Semi)
$ git merge devicetree-current/devicetree/merge
Already up-to-date.
Merging rr-fixes/fixes (f47689345931 lguest: update help text.)
$ git merge rr-fixes/fixes
Already up-to-date.
Merging vfio-fixes/for-linus (db7d4d7f4021 vfio: Fix runaway interruptible timeout)
$ git merge vfio-fixes/for-linus
Merge made by the 'recursive' strategy.
 drivers/vfio/pci/vfio_pci.c |  8 +++++++-
 drivers/vfio/vfio.c         | 21 ++++++++++++++++++---
 2 files changed, 25 insertions(+), 4 deletions(-)
Merging kselftest-fixes/fixes (b787f68c36d4 Linux 4.1-rc1)
$ git merge kselftest-fixes/fixes
Already up-to-date.
Merging drm-intel-fixes/for-linux-next-fixes (5ebe6afaf005 Linux 4.1-rc2)
$ git merge drm-intel-fixes/for-linux-next-fixes
Already up-to-date.
Merging asm-generic/master (643165c8bbc8 Merge tag 'uaccess_for_upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost into asm-generic)
$ git merge asm-generic/master
Already up-to-date.
Merging arc/for-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge arc/for-next
Already up-to-date.
Merging arm/for-next (3b8786ff7a1b ARM: 8352/1: perf: Fix the pmu node name in warning message)
$ git merge arm/for-next
Already up-to-date.
Merging arm-perf/for-next/perf (b787f68c36d4 Linux 4.1-rc1)
$ git merge arm-perf/for-next/perf
Already up-to-date.
Merging arm-soc/for-next (0f0175702e2e arm-soc: document merges)
$ git merge arm-soc/for-next
Resolved 'MAINTAINERS' using previous resolution.
Resolved 'drivers/bus/Makefile' using previous resolution.
Auto-merging drivers/bus/Makefile
CONFLICT (content): Merge conflict in drivers/bus/Makefile
Auto-merging MAINTAINERS
CONFLICT (content): Merge conflict in MAINTAINERS
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 8f4772faf6be] Merge remote-tracking branch 'arm-soc/for-next'
$ git diff -M --stat --summary HEAD^..
 arch/arm/arm-soc-for-next-contents.txt | 243 +++++++++++++++++++++++++++++++++
 1 file changed, 243 insertions(+)
 create mode 100644 arch/arm/arm-soc-for-next-contents.txt
Merging at91/at91-next (da80a9f204eb Merge branch 'at91-4.2-dt' into at91-next)
$ git merge at91/at91-next
Removing arch/arm/boot/dts/kizbox.dts
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/Makefile        |   2 +-
 arch/arm/boot/dts/at91-kizbox.dts | 159 ++++++++++++++++++++++++++++++++++++++
 arch/arm/boot/dts/kizbox.dts      | 150 -----------------------------------
 3 files changed, 160 insertions(+), 151 deletions(-)
 create mode 100644 arch/arm/boot/dts/at91-kizbox.dts
 delete mode 100644 arch/arm/boot/dts/kizbox.dts
Merging bcm2835/for-next (b2776bf7149b Linux 3.18)
$ git merge bcm2835/for-next
Already up-to-date.
Merging rpi/for-rpi-next (31fd7fe00b0d ARM: bcm2835: Drop the init_irq() hook)
$ git merge rpi/for-rpi-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/arm/bcm/brcm,bcm2835.txt   | 31 ++++++++++++++++++++--
 .../devicetree/bindings/vendor-prefixes.txt        |  1 +
 arch/arm/boot/dts/bcm2835-rpi-b-plus.dts           |  4 +--
 arch/arm/boot/dts/bcm2835-rpi-b.dts                |  4 +--
 arch/arm/boot/dts/bcm2835-rpi.dtsi                 |  8 +++---
 arch/arm/boot/dts/bcm2835.dtsi                     |  5 ++--
 arch/arm/mach-bcm/board_bcm2835.c                  | 18 -------------
 include/dt-bindings/pinctrl/bcm2835.h              | 27 +++++++++++++++++++
 8 files changed, 68 insertions(+), 30 deletions(-)
 create mode 100644 include/dt-bindings/pinctrl/bcm2835.h
Merging berlin/berlin/for-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge berlin/berlin/for-next
Already up-to-date.
Merging cortex-m/for-next (e799b6f37e6c ARM: zImage: add support for ARMv7-M)
$ git merge cortex-m/for-next
Merge made by the 'recursive' strategy.
Merging imx-mxs/for-next (4df4d2a00e9c Merge branch 'imx/clk-move' into for-next)
$ git merge imx-mxs/for-next
Auto-merging drivers/clk/imx/clk.h
Auto-merging drivers/clk/imx/clk-pllv1.c
Auto-merging drivers/clk/imx/clk-imx6sx.c
Auto-merging drivers/clk/imx/clk-imx6sl.c
Auto-merging drivers/clk/imx/clk-imx6q.c
Auto-merging drivers/clk/imx/clk-imx51-imx53.c
Auto-merging drivers/clk/imx/clk-imx35.c
Auto-merging drivers/clk/imx/clk-imx31.c
Auto-merging drivers/clk/imx/clk-imx27.c
Auto-merging drivers/clk/imx/clk-imx25.c
Auto-merging drivers/clk/imx/clk-imx21.c
Auto-merging drivers/clk/imx/clk-imx1.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/dma/fsl-mxs-dma.txt        |  2 +-
 MAINTAINERS                                        |  2 +
 arch/arm/boot/dts/imx23-olinuxino.dts              | 10 +++-
 arch/arm/boot/dts/imx23.dtsi                       | 40 +++++++++++++++-
 arch/arm/boot/dts/imx25.dtsi                       |  1 +
 arch/arm/boot/dts/imx28.dtsi                       |  2 +-
 arch/arm/boot/dts/imx6qdl-hummingboard.dtsi        |  1 -
 arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi       |  2 +
 arch/arm/boot/dts/imx6qdl.dtsi                     | 56 +++++++++++-----------
 arch/arm/mach-imx/Makefile                         | 27 +++++------
 arch/arm/mach-imx/common.h                         | 12 ++---
 arch/arm/mach-imx/cpuidle-imx6q.c                  |  4 +-
 arch/arm/mach-imx/cpuidle-imx6sl.c                 |  4 +-
 arch/arm/mach-imx/cpuidle-imx6sx.c                 |  4 +-
 .../mach-imx/devices/platform-sdhci-esdhc-imx.c    |  2 +-
 arch/arm/mach-imx/hardware.h                       |  1 +
 arch/arm/mach-imx/mach-imx6q.c                     |  1 +
 arch/arm/mach-imx/mach-imx6sl.c                    |  1 +
 arch/arm/mach-imx/mach-imx6sx.c                    |  1 +
 arch/arm/mach-imx/mmdc.c                           |  2 +
 arch/arm/mach-imx/mx27.h                           |  4 --
 arch/arm/mach-imx/mx3x.h                           |  7 ---
 arch/arm/mach-imx/mxc.h                            | 16 -------
 arch/arm/mach-imx/pm-imx5.c                        |  9 ++--
 arch/arm/mach-imx/pm-imx6.c                        | 38 ++++++++++-----
 arch/arm/mach-imx/time.c                           |  5 +-
 drivers/clk/Makefile                               |  1 +
 drivers/clk/imx/Makefile                           | 25 ++++++++++
 {arch/arm/mach-imx => drivers/clk/imx}/clk-busy.c  |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk-cpu.c   |  0
 .../mach-imx => drivers/clk/imx}/clk-fixup-div.c   |  0
 .../mach-imx => drivers/clk/imx}/clk-fixup-mux.c   |  0
 .../clk/imx}/clk-gate-exclusive.c                  |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk-gate2.c |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk-imx1.c  | 16 ++++---
 {arch/arm/mach-imx => drivers/clk/imx}/clk-imx21.c | 13 +++--
 {arch/arm/mach-imx => drivers/clk/imx}/clk-imx25.c |  6 +--
 {arch/arm/mach-imx => drivers/clk/imx}/clk-imx27.c | 14 ++++--
 {arch/arm/mach-imx => drivers/clk/imx}/clk-imx31.c | 34 +++++++++----
 {arch/arm/mach-imx => drivers/clk/imx}/clk-imx35.c | 35 +++++++++-----
 .../mach-imx => drivers/clk/imx}/clk-imx51-imx53.c |  5 +-
 {arch/arm/mach-imx => drivers/clk/imx}/clk-imx6q.c | 34 +++++++------
 .../arm/mach-imx => drivers/clk/imx}/clk-imx6sl.c  |  7 ---
 .../arm/mach-imx => drivers/clk/imx}/clk-imx6sx.c  |  6 ---
 {arch/arm/mach-imx => drivers/clk/imx}/clk-pfd.c   |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk-pllv1.c | 33 +++++++++----
 {arch/arm/mach-imx => drivers/clk/imx}/clk-pllv2.c |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk-pllv3.c |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk-vf610.c |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk.c       |  0
 {arch/arm/mach-imx => drivers/clk/imx}/clk.h       | 20 +++++++-
 include/soc/imx/revision.h                         | 37 ++++++++++++++
 52 files changed, 345 insertions(+), 195 deletions(-)
 create mode 100644 drivers/clk/imx/Makefile
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-busy.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-cpu.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-fixup-div.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-fixup-mux.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-gate-exclusive.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-gate2.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx1.c (92%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx21.c (96%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx25.c (98%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx27.c (97%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx31.c (92%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx35.c (94%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx51-imx53.c (99%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx6q.c (98%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx6sl.c (99%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-imx6sx.c (99%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-pfd.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-pllv1.c (75%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-pllv2.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-pllv3.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk-vf610.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk.c (100%)
 rename {arch/arm/mach-imx => drivers/clk/imx}/clk.h (89%)
 create mode 100644 include/soc/imx/revision.h
Merging keystone/next (b17275a4a6cc Merge branch 'for_3.19/soc' into next)
$ git merge keystone/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging mvebu/for-next (ae142bd99765 ARM: mvebu: Fix the main PLL frequency on Armada 375, 38x and 39x SoCs)
$ git merge mvebu/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/armada-375.dtsi                | 2 +-
 arch/arm/boot/dts/armada-38x.dtsi                | 2 +-
 arch/arm/boot/dts/armada-39x.dtsi                | 2 +-
 arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts | 4 ++++
 4 files changed, 7 insertions(+), 3 deletions(-)
Merging omap/for-next (e7309c2673a3 bus: omap_l3_noc: Fix master id address decoding for OMAP5)
$ git merge omap/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/arm/omap/l3-noc.txt        |  1 +
 arch/arm/boot/dts/am437x-sk-evm.dts                |  4 +-
 arch/arm/boot/dts/am57xx-beagle-x15.dts            | 11 +++--
 arch/arm/boot/dts/dra7.dtsi                        | 10 ++--
 arch/arm/boot/dts/omap3-n900.dts                   |  4 ++
 arch/arm/boot/dts/omap3.dtsi                       |  2 +
 arch/arm/boot/dts/omap5.dtsi                       |  2 +-
 arch/arm/configs/omap2plus_defconfig               |  2 +-
 arch/arm/mach-omap2/prm-regbits-34xx.h             |  1 +
 arch/arm/mach-omap2/prm-regbits-44xx.h             |  1 +
 arch/arm/mach-omap2/vc.c                           | 12 ++++-
 arch/arm/mach-omap2/vc.h                           |  2 +
 arch/arm/mach-omap2/vc3xxx_data.c                  |  1 +
 arch/arm/mach-omap2/vc44xx_data.c                  |  1 +
 drivers/bus/omap_l3_noc.c                          |  5 +-
 drivers/bus/omap_l3_noc.h                          | 54 ++++++++++++++++------
 16 files changed, 81 insertions(+), 32 deletions(-)
Merging omap-pending/for-next (30aa18d3bea5 MAINTAINERS: add maintainer for OMAP hwmod data)
$ git merge omap-pending/for-next
Resolved 'arch/arm/mach-omap2/omap_hwmod_43xx_data.c' using previous resolution.
Auto-merging arch/arm/mach-omap2/omap_hwmod_43xx_data.c
CONFLICT (content): Merge conflict in arch/arm/mach-omap2/omap_hwmod_43xx_data.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 9c01f2811335] Merge remote-tracking branch 'omap-pending/for-next'
$ git diff -M --stat --summary HEAD^..
Merging renesas/next (572fe7d849ce Merge branches 'heads/fixes-for-v4.1', 'heads/dt-for-v4.2' and 'heads/defconfig-for-v4.2' into next)
$ git merge renesas/next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/spi/sh-msiof.txt |  2 +-
 arch/arm/boot/dts/emev2-kzm9d.dts                  |  4 ++--
 arch/arm/boot/dts/r8a73a4-ape6evm.dts              |  2 +-
 arch/arm/boot/dts/r8a73a4.dtsi                     | 11 +++++++----
 arch/arm/boot/dts/r8a7740-armadillo800eva.dts      |  2 +-
 arch/arm/boot/dts/r8a7740.dtsi                     | 10 +++++-----
 arch/arm/boot/dts/r8a7778-bockw-reference.dts      |  2 +-
 arch/arm/boot/dts/r8a7778-bockw.dts                |  4 ++--
 arch/arm/boot/dts/r8a7778.dtsi                     |  2 +-
 arch/arm/boot/dts/r8a7779-marzen.dts               |  6 +++---
 arch/arm/boot/dts/r8a7779.dtsi                     |  2 +-
 arch/arm/boot/dts/r8a7790-lager.dts                |  4 ++--
 arch/arm/boot/dts/r8a7790.dtsi                     | 19 ++++++++++++++-----
 arch/arm/boot/dts/r8a7791-henninger.dts            |  2 +-
 arch/arm/boot/dts/r8a7791-koelsch.dts              |  6 +++---
 arch/arm/boot/dts/r8a7791.dtsi                     | 17 +++++++++++++----
 arch/arm/boot/dts/r8a7794.dtsi                     |  9 +++++++++
 arch/arm/boot/dts/sh73a0.dtsi                      | 10 +++++-----
 arch/arm/configs/shmobile_defconfig                |  4 ++--
 include/dt-bindings/clock/r8a73a4-clock.h          |  1 +
 include/dt-bindings/clock/r8a7790-clock.h          |  3 +++
 include/dt-bindings/clock/r8a7791-clock.h          |  3 +++
 include/dt-bindings/clock/r8a7794-clock.h          |  3 +++
 23 files changed, 84 insertions(+), 44 deletions(-)
Merging samsung/for-next (5d5443b9c3ba Merge branch 'v4.1-next/mach-samsung' into for-next)
$ git merge samsung/for-next
Resolved 'arch/arm/mach-exynos/platsmp.c' using previous resolution.
Auto-merging arch/arm/mach-exynos/platsmp.c
CONFLICT (content): Merge conflict in arch/arm/mach-exynos/platsmp.c
Auto-merging Documentation/devicetree/bindings/arm/samsung/pmu.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master ab2d45ad4168] Merge remote-tracking branch 'samsung/for-next'
$ git diff -M --stat --summary HEAD^..
 .../devicetree/bindings/arm/samsung/pmu.txt        |   1 +
 arch/arm64/boot/dts/exynos/exynos5433-pinctrl.dtsi | 698 +++++++++++++++
 .../dts/exynos/exynos5433-tmu-sensor-conf.dtsi     |  22 +
 arch/arm64/boot/dts/exynos/exynos5433-tmu.dtsi     | 231 +++++
 arch/arm64/boot/dts/exynos/exynos5433.dtsi         | 931 +++++++++++++++++++++
 5 files changed, 1883 insertions(+)
 create mode 100644 arch/arm64/boot/dts/exynos/exynos5433-pinctrl.dtsi
 create mode 100644 arch/arm64/boot/dts/exynos/exynos5433-tmu-sensor-conf.dtsi
 create mode 100644 arch/arm64/boot/dts/exynos/exynos5433-tmu.dtsi
 create mode 100644 arch/arm64/boot/dts/exynos/exynos5433.dtsi
Merging sunxi/sunxi/for-next (4ab66f83f824 Merge branch 'sunxi/defconfig-for-4.2' into sunxi/for-next)
$ git merge sunxi/sunxi/for-next
Auto-merging arch/arm/boot/dts/Makefile
Auto-merging Documentation/devicetree/bindings/vendor-prefixes.txt
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/cpus.txt     |   1 +
 .../devicetree/bindings/soc/sunxi/sram.txt         |  64 +++
 .../devicetree/bindings/vendor-prefixes.txt        |   2 +
 arch/arm/boot/dts/Makefile                         |  22 +-
 arch/arm/boot/dts/sun4i-a10-a1000.dts              | 202 +++----
 arch/arm/boot/dts/sun4i-a10-ba10-tvbox.dts         | 176 +++---
 arch/arm/boot/dts/sun4i-a10-chuwi-v7-cw0825.dts    |  35 ++
 arch/arm/boot/dts/sun4i-a10-cubieboard.dts         | 216 +++----
 arch/arm/boot/dts/sun4i-a10-gemei-g9.dts           | 176 ++++++
 arch/arm/boot/dts/sun4i-a10-hackberry.dts          | 191 +++----
 arch/arm/boot/dts/sun4i-a10-hyundai-a7hd.dts       |   8 +
 arch/arm/boot/dts/sun4i-a10-inet97fv2.dts          | 118 ++--
 arch/arm/boot/dts/sun4i-a10-jesurun-q5.dts         | 194 +++++++
 arch/arm/boot/dts/sun4i-a10-marsboard.dts          |   8 +
 arch/arm/boot/dts/sun4i-a10-mini-xplus.dts         | 144 ++---
 arch/arm/boot/dts/sun4i-a10-mk802.dts              |   8 +
 arch/arm/boot/dts/sun4i-a10-mk802ii.dts            |   8 +
 arch/arm/boot/dts/sun4i-a10-olinuxino-lime.dts     | 219 ++++----
 arch/arm/boot/dts/sun4i-a10-pcduino.dts            | 180 +++---
 arch/arm/boot/dts/sun4i-a10.dtsi                   |  88 ++-
 arch/arm/boot/dts/sun5i-a10s-auxtek-t004.dts       | 159 ++++++
 arch/arm/boot/dts/sun5i-a10s-mk802.dts             |   8 +
 arch/arm/boot/dts/sun5i-a10s-olinuxino-micro.dts   | 319 +++++------
 arch/arm/boot/dts/sun5i-a10s-r7-tv-dongle.dts      | 134 ++---
 arch/arm/boot/dts/sun5i-a10s.dtsi                  | 620 +++------------------
 arch/arm/boot/dts/sun5i-a13-hsg-h702.dts           | 138 ++---
 arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dts    | 150 ++---
 arch/arm/boot/dts/sun5i-a13-olinuxino.dts          | 240 ++++----
 arch/arm/boot/dts/sun5i-a13-utoo-p66.dts           | 231 ++++++++
 arch/arm/boot/dts/sun5i-a13.dtsi                   | 594 +++-----------------
 arch/arm/boot/dts/sun5i.dtsi                       | 617 ++++++++++++++++++++
 arch/arm/boot/dts/sun6i-a31-app4-evb1.dts          |  58 +-
 arch/arm/boot/dts/sun6i-a31-colombus.dts           | 140 ++---
 arch/arm/boot/dts/sun6i-a31-hummingbird.dts        | 103 +++-
 arch/arm/boot/dts/sun6i-a31-i7.dts                 | 154 +++++
 arch/arm/boot/dts/sun6i-a31-m9.dts                 | 154 ++---
 arch/arm/boot/dts/sun6i-a31.dtsi                   |  96 +++-
 arch/arm/boot/dts/sun6i-a31s-cs908.dts             |  43 +-
 arch/arm/boot/dts/sun7i-a20-bananapi.dts           | 264 ++++-----
 arch/arm/boot/dts/sun7i-a20-bananapro.dts          |  10 +
 arch/arm/boot/dts/sun7i-a20-cubieboard2.dts        | 200 +++----
 arch/arm/boot/dts/sun7i-a20-cubietruck.dts         | 326 +++++------
 arch/arm/boot/dts/sun7i-a20-hummingbird.dts        | 430 +++++++-------
 arch/arm/boot/dts/sun7i-a20-i12-tvbox.dts          | 262 ++++-----
 arch/arm/boot/dts/sun7i-a20-m3.dts                 | 186 ++++---
 arch/arm/boot/dts/sun7i-a20-olinuxino-lime.dts     | 192 +++----
 arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts    | 296 +++++-----
 arch/arm/boot/dts/sun7i-a20-olinuxino-micro.dts    | 414 +++++++-------
 arch/arm/boot/dts/sun7i-a20-orangepi-mini.dts      | 255 +++++++++
 arch/arm/boot/dts/sun7i-a20-orangepi.dts           | 233 ++++++++
 arch/arm/boot/dts/sun7i-a20-pcduino3-nano.dts      | 199 +++++++
 arch/arm/boot/dts/sun7i-a20-pcduino3.dts           | 212 +++----
 arch/arm/boot/dts/sun7i-a20-wexler-tab7200.dts     | 188 +++++++
 arch/arm/boot/dts/sun7i-a20.dtsi                   |  57 +-
 arch/arm/boot/dts/sun8i-a23-ippo-q8h-v5.dts        | 112 ++--
 arch/arm/boot/dts/sun8i-a23.dtsi                   |  22 +
 arch/arm/boot/dts/sun9i-a80-cubieboard4.dts        |  99 ++++
 arch/arm/boot/dts/sun9i-a80-optimus.dts            |  67 ++-
 arch/arm/boot/dts/sun9i-a80.dtsi                   | 132 +++++
 arch/arm/configs/multi_v7_defconfig                |   1 -
 arch/arm/configs/sunxi_defconfig                   |   6 +-
 arch/arm/mach-sunxi/platsmp.c                      |  69 +++
 drivers/soc/Kconfig                                |   1 +
 drivers/soc/Makefile                               |   1 +
 drivers/soc/sunxi/Kconfig                          |  10 +
 drivers/soc/sunxi/Makefile                         |   1 +
 drivers/soc/sunxi/sunxi_sram.c                     | 235 ++++++++
 include/linux/soc/sunxi/sunxi_sram.h               |  24 +
 68 files changed, 6667 insertions(+), 3855 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/soc/sunxi/sram.txt
 create mode 100644 arch/arm/boot/dts/sun4i-a10-gemei-g9.dts
 create mode 100644 arch/arm/boot/dts/sun4i-a10-jesurun-q5.dts
 create mode 100644 arch/arm/boot/dts/sun5i-a10s-auxtek-t004.dts
 create mode 100644 arch/arm/boot/dts/sun5i-a13-utoo-p66.dts
 create mode 100644 arch/arm/boot/dts/sun5i.dtsi
 create mode 100644 arch/arm/boot/dts/sun6i-a31-i7.dts
 create mode 100644 arch/arm/boot/dts/sun7i-a20-orangepi-mini.dts
 create mode 100644 arch/arm/boot/dts/sun7i-a20-orangepi.dts
 create mode 100644 arch/arm/boot/dts/sun7i-a20-pcduino3-nano.dts
 create mode 100644 arch/arm/boot/dts/sun7i-a20-wexler-tab7200.dts
 create mode 100644 arch/arm/boot/dts/sun9i-a80-cubieboard4.dts
 create mode 100644 drivers/soc/sunxi/Kconfig
 create mode 100644 drivers/soc/sunxi/Makefile
 create mode 100644 drivers/soc/sunxi/sunxi_sram.c
 create mode 100644 include/linux/soc/sunxi/sunxi_sram.h
Merging tegra/for-next (4bee32322bec Merge branch for-4.2/dt into for-next)
$ git merge tegra/for-next
Merge made by the 'recursive' strategy.
 .../bindings/clock/nvidia,tegra124-car.txt         |   44 +-
 .../bindings/fuse/nvidia,tegra20-fuse.txt          |    2 +-
 .../memory-controllers/nvidia,tegra-mc.txt         |   84 +-
 .../bindings/memory-controllers/tegra-emc.txt      |  374 +++++++
 .../bindings/misc/nvidia,tegra20-apbmisc.txt       |    2 +
 arch/arm/boot/dts/tegra124-jetson-tk1.dts          |    4 +
 arch/arm/boot/dts/tegra124-venice2.dts             |    3 +
 arch/arm/boot/dts/tegra124.dtsi                    |   10 +-
 arch/arm/boot/dts/tegra20-seaboard.dts             |   12 +
 arch/arm/boot/dts/tegra20.dtsi                     |    2 +-
 arch/arm/boot/dts/tegra30-cardhu.dtsi              |   28 +
 arch/arm/mach-tegra/cpuidle-tegra20.c              |    5 +-
 arch/arm/mach-tegra/reset-handler.S                |   10 +-
 arch/arm/mach-tegra/reset.h                        |    4 +
 arch/arm/mach-tegra/sleep-tegra20.S                |   37 +-
 arch/arm/mach-tegra/sleep-tegra30.S                |    2 +-
 arch/arm/mach-tegra/sleep.h                        |    4 +
 arch/arm/mach-tegra/tegra.c                        |    1 -
 drivers/clk/clk.c                                  |    8 +
 drivers/clk/tegra/Makefile                         |    2 +-
 drivers/clk/tegra/clk-emc.c                        |  539 ++++++++++
 drivers/clk/tegra/clk-tegra124.c                   |   18 +-
 drivers/clk/tegra/clk.h                            |    3 +
 drivers/iommu/Kconfig                              |    2 +-
 drivers/iommu/tegra-smmu.c                         |  109 ++
 drivers/memory/tegra/Kconfig                       |   11 +
 drivers/memory/tegra/Makefile                      |    3 +
 drivers/memory/tegra/mc.c                          |  143 ++-
 drivers/memory/tegra/mc.h                          |    4 +
 drivers/memory/tegra/tegra114.c                    |   32 +-
 drivers/memory/tegra/tegra124-emc.c                | 1128 ++++++++++++++++++++
 drivers/memory/tegra/tegra124.c                    |  123 ++-
 drivers/memory/tegra/tegra30.c                     |   32 +-
 drivers/soc/tegra/fuse/fuse-tegra20.c              |    6 +-
 drivers/soc/tegra/fuse/tegra-apbmisc.c             |   21 +
 drivers/soc/tegra/pmc.c                            |   23 +-
 include/linux/clk-provider.h                       |    1 +
 include/soc/tegra/emc.h                            |   36 +
 include/soc/tegra/fuse.h                           |    1 +
 include/soc/tegra/mc.h                             |   20 +-
 include/soc/tegra/pmc.h                            |    2 -
 41 files changed, 2777 insertions(+), 118 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/memory-controllers/tegra-emc.txt
 create mode 100644 drivers/clk/tegra/clk-emc.c
 create mode 100644 drivers/memory/tegra/tegra124-emc.c
 create mode 100644 include/soc/tegra/emc.h
Merging arm64/for-next/core (6d1966dfd6e0 arm64: fix midr range for Cortex-A57 erratum 832075)
$ git merge arm64/for-next/core
Already up-to-date.
Merging blackfin/for-linus (d91e14b3b9e1 eth: bf609 eth clock: add pclk clock for stmmac driver probe)
$ git merge blackfin/for-linus
Already up-to-date.
Merging c6x/for-linux-next (3083ca2376a7 c6x: platforms: cache: Export symbol L1P_cache_block_invalidate and L1D_cache_block_writeback)
$ git merge c6x/for-linux-next
Already up-to-date.
Merging cris/for-next (d939b52abe0c cris: fix integer overflow in ELF_ET_DYN_BASE)
$ git merge cris/for-next
Already up-to-date.
Merging hexagon/linux-next (8914d7e85780 Hexagon: fix signal delivery for debug traps)
$ git merge hexagon/linux-next
Already up-to-date.
Merging ia64/next (62f269ef8191 pstore: Fix the ramoops module parameters update)
$ git merge ia64/next
Already up-to-date.
Merging m68k/for-next (84a38337207f m68k: use for_each_sg())
$ git merge m68k/for-next
Merge made by the 'recursive' strategy.
 arch/m68k/configs/amiga_defconfig    |  9 +++++++--
 arch/m68k/configs/apollo_defconfig   |  9 +++++++--
 arch/m68k/configs/atari_defconfig    |  9 +++++++--
 arch/m68k/configs/bvme6000_defconfig |  9 +++++++--
 arch/m68k/configs/hp300_defconfig    |  9 +++++++--
 arch/m68k/configs/mac_defconfig      |  9 +++++++--
 arch/m68k/configs/multi_defconfig    |  9 +++++++--
 arch/m68k/configs/mvme147_defconfig  |  9 +++++++--
 arch/m68k/configs/mvme16x_defconfig  |  9 +++++++--
 arch/m68k/configs/q40_defconfig      |  9 +++++++--
 arch/m68k/configs/sun3_defconfig     |  9 +++++++--
 arch/m68k/configs/sun3x_defconfig    |  9 +++++++--
 arch/m68k/kernel/dma.c               | 19 ++++++++++++-------
 13 files changed, 96 insertions(+), 31 deletions(-)
Merging m68knommu/for-next (5ebe6afaf005 Linux 4.1-rc2)
$ git merge m68knommu/for-next
Already up-to-date.
Merging metag/for-next (40346a0327fe metag: copy_thread(): rename 'arg' argument to 'kthread_arg')
$ git merge metag/for-next
Already up-to-date.
Merging microblaze/next (c2219eda5478 microblaze: Fix syscall error recovery for invalid syscall IDs)
$ git merge microblaze/next
Already up-to-date.
Merging mips/mips-for-linux-next (3e20a26b02bd Merge branch '4.0-fixes' into mips-for-linux-next)
$ git merge mips/mips-for-linux-next
Already up-to-date.
Merging nios2/nios2-next (1a70db49a735 nios2: rework cache)
$ git merge nios2/nios2-next
Already up-to-date.
Merging parisc-hd/for-next (5fec97d0e3d9 parisc: copy_thread(): rename 'arg' argument to 'kthread_arg')
$ git merge parisc-hd/for-next
Merge made by the 'recursive' strategy.
 arch/parisc/kernel/process.c | 10 ++++++----
 drivers/parisc/superio.c     |  2 +-
 2 files changed, 7 insertions(+), 5 deletions(-)
Merging powerpc-mpe/next (b787f68c36d4 Linux 4.1-rc1)
$ git merge powerpc-mpe/next
Already up-to-date.
Merging powerpc/next (65e7bb2a34fe Merge branch 'next-sriov' into next)
$ git merge powerpc/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging fsl/next (d41444daba1f powerpc/corenet: enable CONFIG_I2C_MUX and CONFIG_I2C_MUX_PCA954x)
$ git merge fsl/next
Already up-to-date.
Merging mpc5xxx/next (9e813308a5c1 powerpc/thp: Add tracepoints to track hugepage invalidate)
$ git merge mpc5xxx/next
Already up-to-date.
Merging s390/features (6f469dae3aac zcrypt: fixed ap poll timer behavior)
$ git merge s390/features
Merge made by the 'recursive' strategy.
 arch/s390/net/bpf_jit_comp.c | 14 ++++++--------
 drivers/s390/crypto/ap_bus.c | 16 +++++++---------
 2 files changed, 13 insertions(+), 17 deletions(-)
Merging sparc-next/master (9f935675d41a Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input)
$ git merge sparc-next/master
Already up-to-date.
Merging tile/master (627ae54854ed tile: use READ_ONCE() in arch_spin_is_locked())
$ git merge tile/master
Merge made by the 'recursive' strategy.
 arch/tile/include/asm/spinlock_32.h |  6 +++++-
 arch/tile/include/asm/spinlock_64.h |  5 ++++-
 arch/tile/lib/spinlock_32.c         | 11 ++++++++++-
 arch/tile/lib/spinlock_64.c         | 11 ++++++++++-
 4 files changed, 29 insertions(+), 4 deletions(-)
Merging uml/linux-next (fe205bdd1321 um: Print minimum physical memory requirement)
$ git merge uml/linux-next
Already up-to-date.
Merging unicore32/unicore32 (d670878e2c9a unicore32: Remove ARCH_HAS_CPUFREQ config option)
$ git merge unicore32/unicore32
Already up-to-date.
Merging xtensa/for_next (2ba9268dd603 Merge tag 'xtensa-for-next-20150413' of git://github.com/jcmvbkbc/linux-xtensa into for_next)
$ git merge xtensa/for_next
Already up-to-date.
Merging btrfs/next (e082f56313f3 btrfs: quota: Update quota tree after qgroup relationship change.)
$ git merge btrfs/next
Already up-to-date.
Merging ceph/master (84b54fefaa05 libceph: announce support for straw2 buckets)
$ git merge ceph/master
Merge made by the 'recursive' strategy.
Merging cifs/for-next (be4a8e38d68f Update negotiate protocol for SMB3.1 dialect)
$ git merge cifs/for-next
Auto-merging fs/cifs/smb2ops.c
Auto-merging fs/cifs/smb1ops.c
Auto-merging fs/cifs/readdir.c
Auto-merging fs/cifs/link.c
Auto-merging fs/cifs/inode.c
Auto-merging fs/cifs/file.c
Auto-merging fs/cifs/dir.c
Auto-merging fs/cifs/connect.c
Auto-merging fs/cifs/cifssmb.c
Auto-merging fs/cifs/cifsfs.c
Auto-merging fs/cifs/cifs_dfs_ref.c
Merge made by the 'recursive' strategy.
 fs/cifs/Kconfig        |  9 +++++++
 fs/cifs/cifs_dfs_ref.c |  3 ++-
 fs/cifs/cifsfs.c       |  2 ++
 fs/cifs/cifsglob.h     |  7 ++++++
 fs/cifs/cifsproto.h    |  4 ++--
 fs/cifs/cifssmb.c      | 21 +++++++++--------
 fs/cifs/connect.c      | 10 ++++++++
 fs/cifs/dir.c          |  3 +--
 fs/cifs/file.c         |  3 +--
 fs/cifs/inode.c        |  6 ++---
 fs/cifs/link.c         |  3 ++-
 fs/cifs/readdir.c      |  2 ++
 fs/cifs/smb1ops.c      |  3 ++-
 fs/cifs/smb2ops.c      | 22 +++++++++++++++++
 fs/cifs/smb2pdu.c      | 64 +++++++++++++++++++++++++++++++++++++++++++++++---
 fs/cifs/smb2pdu.h      | 50 ++++++++++++++++++++++++++++++++-------
 16 files changed, 178 insertions(+), 34 deletions(-)
Merging ecryptfs/next (6d65261a09ad eCryptfs: don't pass fs-specific ioctl commands through)
$ git merge ecryptfs/next
Already up-to-date.
Merging ext3/for_next (3adc12e96482 udf: Update ctime and mtime when directory is modified)
$ git merge ext3/for_next
Already up-to-date.
Merging ext4/dev (2c869b262a10 ext4: fix growing of tiny filesystems)
$ git merge ext4/dev
Already up-to-date.
Merging f2fs/dev (68def41a3fde f2fs: don not re-lookup nat cache with same nid)
$ git merge f2fs/dev
Merge made by the 'recursive' strategy.
 fs/f2fs/acl.c               |  48 +++--
 fs/f2fs/checkpoint.c        |  23 ++-
 fs/f2fs/data.c              | 431 +++++++++++++++++++++++++++++---------------
 fs/f2fs/debug.c             |   2 +-
 fs/f2fs/dir.c               |   2 +-
 fs/f2fs/f2fs.h              | 109 +++++++++--
 fs/f2fs/file.c              |  43 +++--
 fs/f2fs/gc.c                |  33 ++--
 fs/f2fs/hash.c              |   3 +-
 fs/f2fs/inline.c            |  17 +-
 fs/f2fs/namei.c             |  49 +++--
 fs/f2fs/node.c              |  46 ++---
 fs/f2fs/node.h              |  22 ---
 fs/f2fs/recovery.c          |   6 +-
 fs/f2fs/segment.c           | 100 ++++++----
 fs/f2fs/segment.h           |   1 +
 fs/f2fs/super.c             |  27 ++-
 fs/f2fs/trace.c             |   6 +-
 fs/f2fs/trace.h             |   4 +-
 include/linux/f2fs_fs.h     |   6 +
 include/trace/events/f2fs.h |  33 ++--
 21 files changed, 652 insertions(+), 359 deletions(-)
Merging fscache/fscache (b00c2ae2ed3c FS-Cache: Don't override netfs's primary_index if registering failed)
$ git merge fscache/fscache
Auto-merging fs/cachefiles/namei.c
Merge made by the 'recursive' strategy.
 Documentation/filesystems/caching/backend-api.txt |  23 ++
 Documentation/filesystems/caching/fscache.txt     |   7 +-
 fs/cachefiles/internal.h                          |   1 -
 fs/cachefiles/namei.c                             |  33 ++-
 fs/fscache/cookie.c                               |   8 +-
 fs/fscache/internal.h                             |  12 +-
 fs/fscache/netfs.c                                |  38 ++--
 fs/fscache/object.c                               |  69 +++++-
 fs/fscache/operation.c                            | 254 ++++++++++++++--------
 fs/fscache/page.c                                 |  86 ++++----
 fs/fscache/stats.c                                |  14 +-
 include/linux/fscache-cache.h                     |  55 +++--
 12 files changed, 396 insertions(+), 204 deletions(-)
Merging fuse/for-next (94e4fe2cab3d fuse: explicitly set /dev/fuse file's private_data)
$ git merge fuse/for-next
Already up-to-date.
Merging gfs2/for-next (86fbca4923f9 GFS2: inode.c: indent with TABs, not spaces)
$ git merge gfs2/for-next
Auto-merging fs/gfs2/ops_fstype.c
Auto-merging fs/gfs2/inode.c
Merge made by the 'recursive' strategy.
 fs/gfs2/inode.c      |  4 ++--
 fs/gfs2/ops_fstype.c |  1 +
 fs/gfs2/rgrp.c       | 17 +++++++++++++----
 3 files changed, 16 insertions(+), 6 deletions(-)
Merging jfs/jfs-next (7d2ac45611b0 jfs: %pf is only for function pointers)
$ git merge jfs/jfs-next
Already up-to-date.
Merging nfs/linux-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge nfs/linux-next
Already up-to-date.
Merging nfsd/nfsd-next (72faedae8bc3 Documentation: remove overloads-avoided counter from knfsd-stats.txt)
$ git merge nfsd/nfsd-next
Merge made by the 'recursive' strategy.
 Documentation/filesystems/nfs/knfsd-stats.txt |  44 +-------
 fs/nfsd/blocklayout.c                         |  11 ++
 fs/nfsd/nfs4callback.c                        | 119 ++++++++++----------
 fs/nfsd/nfs4state.c                           | 149 ++++++++++++++++++++++----
 fs/nfsd/state.h                               |  19 +++-
 fs/nfsd/vfs.c                                 |  19 +---
 fs/nfsd/vfs.h                                 |   1 -
 fs/nfsd/xdr4.h                                |   1 +
 net/sunrpc/auth_gss/gss_rpc_xdr.c             |  23 ++--
 9 files changed, 238 insertions(+), 148 deletions(-)
Merging overlayfs/overlayfs-next (71cbad7e694e ovl: upper fs should not be R/O)
$ git merge overlayfs/overlayfs-next
Already up-to-date.
Merging squashfs/master (62421645bb70 Squashfs: Add LZ4 compression configuration option)
$ git merge squashfs/master
Already up-to-date.
Merging v9fs/for-next (3d99e3fe13d4 Merge branch 'stable' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile)
$ git merge v9fs/for-next
Already up-to-date.
Merging ubifs/linux-next (502690674281 UBI: power cut emulation for testing)
$ git merge ubifs/linux-next
Already up-to-date.
Merging xfs/for-next (5ebe6afaf005 Linux 4.1-rc2)
$ git merge xfs/for-next
Already up-to-date.
Merging file-locks/linux-next (7505256626b0 Merge tag 'devicetree-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux)
$ git merge file-locks/linux-next
Already up-to-date.
Merging vfs/for-next (6d3b3d3367cb direct-io: only inc/dec inode->i_dio_count for file systems)
$ git merge vfs/for-next
Auto-merging fs/9p/v9fs.h
Merge made by the 'recursive' strategy.
 fs/9p/v9fs.h           |   2 -
 fs/9p/vfs_inode.c      | 119 ++++++++++---------------------------------------
 fs/9p/vfs_inode_dotl.c |  31 ++++---------
 3 files changed, 31 insertions(+), 121 deletions(-)
Merging pci/next (b787f68c36d4 Linux 4.1-rc1)
$ git merge pci/next
Already up-to-date.
Merging hid/for-next (daa19c2afa6d Merge branch 'for-4.2/wacom' into for-next)
$ git merge hid/for-next
Merge made by the 'recursive' strategy.
 drivers/hid/hid-ids.h           |   7 +++
 drivers/hid/hid-lenovo.c        |  19 ++++++
 drivers/hid/i2c-hid/i2c-hid.c   |   5 +-
 drivers/hid/usbhid/hid-quirks.c |   3 +
 drivers/hid/wacom.h             |   2 +-
 drivers/hid/wacom_sys.c         | 129 ++++++++++++++++++++++------------------
 drivers/hid/wacom_wac.c         |  41 +++++++++++--
 drivers/hid/wacom_wac.h         |  12 ++--
 8 files changed, 146 insertions(+), 72 deletions(-)
Merging i2c/i2c/for-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge i2c/i2c/for-next
Already up-to-date.
Merging jdelvare-hwmon/master (26bc420b59a3 Linux 3.19-rc6)
$ git merge jdelvare-hwmon/master
Already up-to-date.
Merging dmi/master (9432bf142f77 firmware: dmi: List my quilt tree)
$ git merge dmi/master
Auto-merging MAINTAINERS
Auto-merging Documentation/ABI/testing/sysfs-firmware-dmi-entries
Merge made by the 'recursive' strategy.
 ...sfs-firmware-dmi => sysfs-firmware-dmi-entries} |   2 +-
 .../ABI/testing/sysfs-firmware-dmi-tables          |  22 ++++
 MAINTAINERS                                        |   2 +
 drivers/firmware/dmi-sysfs.c                       |  17 ++-
 drivers/firmware/dmi_scan.c                        | 115 ++++++++++++++++++---
 include/linux/dmi.h                                |   2 +
 6 files changed, 134 insertions(+), 26 deletions(-)
 rename Documentation/ABI/testing/{sysfs-firmware-dmi => sysfs-firmware-dmi-entries} (99%)
 create mode 100644 Documentation/ABI/testing/sysfs-firmware-dmi-tables
Merging hwmon-staging/hwmon-next (a95d7600d9c4 hwmon: Update the location of my quilt tree)
$ git merge hwmon-staging/hwmon-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging v4l-dvb/master (e7f8fd8aa7f2 Merge branch 'patchwork' into to_next)
$ git merge v4l-dvb/master
Removing drivers/staging/media/dt3155v4l/dt3155v4l.c
Removing drivers/staging/media/dt3155v4l/Makefile
Removing drivers/staging/media/dt3155v4l/Kconfig
Auto-merging drivers/media/pci/dt3155/dt3155.h
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/DocBook/media/v4l/controls.xml       |   4 +-
 .../DocBook/media/v4l/media-func-open.xml          |   2 +-
 Documentation/DocBook/media/v4l/vidioc-g-edid.xml  |   7 +
 .../devicetree/bindings/media/i2c/adp1653.txt      |  37 +
 Documentation/video4linux/v4l2-pci-skeleton.c      |   2 -
 MAINTAINERS                                        |   8 +
 drivers/input/touchscreen/Kconfig                  |   3 +-
 drivers/media/dvb-frontends/af9013.c               |   4 +
 drivers/media/dvb-frontends/bcm3510.c              |   4 +-
 drivers/media/dvb-frontends/cx24116.c              |   8 +-
 drivers/media/dvb-frontends/cx24117.c              |   2 +-
 drivers/media/dvb-frontends/cx24123.h              |   2 +-
 drivers/media/dvb-frontends/dib0070.c              | 575 ++++++------
 drivers/media/dvb-frontends/dib3000mc.c            |  18 +-
 drivers/media/dvb-frontends/dib8000.h              |   2 +-
 drivers/media/dvb-frontends/drx39xyj/drxj.c        |  38 +-
 drivers/media/dvb-frontends/lgdt3306a.c            |   2 +-
 drivers/media/dvb-frontends/mb86a20s.h             |   2 +-
 drivers/media/dvb-frontends/s5h1420.c              |  20 +-
 drivers/media/dvb-frontends/s921.h                 |   2 +-
 drivers/media/dvb-frontends/stv0288.c              |  28 +-
 drivers/media/dvb-frontends/stv0297.c              |   8 +-
 drivers/media/dvb-frontends/stv0900_sw.c           |   6 +-
 drivers/media/dvb-frontends/tda1004x.c             |   2 +-
 drivers/media/dvb-frontends/tda10086.c             |   4 +-
 drivers/media/dvb-frontends/zl10353.c              |  10 +-
 drivers/media/i2c/adp1653.c                        | 100 ++-
 drivers/media/i2c/adv7170.c                        |  42 +-
 drivers/media/i2c/adv7175.c                        |  42 +-
 drivers/media/i2c/adv7183.c                        |  61 +-
 drivers/media/i2c/adv7604.c                        |  69 +-
 drivers/media/i2c/adv7842.c                        |  25 +-
 drivers/media/i2c/ak881x.c                         |  39 +-
 drivers/media/i2c/cx25840/cx25840-core.c           |  17 +-
 drivers/media/i2c/ml86v7667.c                      |  29 +-
 drivers/media/i2c/mt9v011.c                        |  53 +-
 drivers/media/i2c/ov2659.c                         |   2 +-
 drivers/media/i2c/ov7670.c                         |  65 +-
 drivers/media/i2c/s5c73m3/s5c73m3-core.c           |   2 +-
 drivers/media/i2c/s5k5baf.c                        |   2 +-
 drivers/media/i2c/s5k6aa.c                         |   2 +-
 drivers/media/i2c/saa6752hs.c                      |  42 +-
 drivers/media/i2c/saa7115.c                        |  16 +-
 drivers/media/i2c/saa717x.c                        |  20 +-
 drivers/media/i2c/smiapp/smiapp-core.c             |  38 +-
 drivers/media/i2c/soc_camera/imx074.c              |  66 +-
 drivers/media/i2c/soc_camera/mt9m001.c             |  43 +-
 drivers/media/i2c/soc_camera/mt9m111.c             |  57 +-
 drivers/media/i2c/soc_camera/mt9t031.c             |  74 +-
 drivers/media/i2c/soc_camera/mt9t112.c             |  41 +-
 drivers/media/i2c/soc_camera/mt9v022.c             |  43 +-
 drivers/media/i2c/soc_camera/ov2640.c              |  62 +-
 drivers/media/i2c/soc_camera/ov5642.c              |  60 +-
 drivers/media/i2c/soc_camera/ov6650.c              |  43 +-
 drivers/media/i2c/soc_camera/ov772x.c              |  41 +-
 drivers/media/i2c/soc_camera/ov9640.c              |  32 +-
 drivers/media/i2c/soc_camera/ov9740.c              |  35 +-
 drivers/media/i2c/soc_camera/rj54n1cb0c.c          |  66 +-
 drivers/media/i2c/soc_camera/tw9910.c              |  41 +-
 drivers/media/i2c/sr030pc30.c                      |  62 +-
 drivers/media/i2c/tvp514x.c                        |  55 +-
 drivers/media/i2c/tvp5150.c                        |  30 +-
 drivers/media/i2c/tvp7002.c                        |  48 -
 drivers/media/i2c/vs6624.c                         |  55 +-
 drivers/media/pci/Kconfig                          |   1 +
 drivers/media/pci/Makefile                         |   1 +
 drivers/media/pci/bt8xx/bttv-audio-hook.c          | 443 ++++++----
 drivers/media/pci/bt8xx/bttv-driver.c              |   5 +-
 drivers/media/pci/cx18/cx18-av-core.c              |  16 +-
 drivers/media/pci/cx18/cx18-controls.c             |  13 +-
 drivers/media/pci/cx18/cx18-driver.c               |   4 +-
 drivers/media/pci/cx18/cx18-ioctl.c                |  12 +-
 drivers/media/pci/cx18/cx18-streams.c              |   1 +
 drivers/media/pci/cx23885/altera-ci.c              |   2 +-
 drivers/media/pci/cx23885/cx23885-video.c          |  12 +-
 drivers/media/pci/cx88/cx88-core.c                 |   2 +
 drivers/media/pci/cx88/cx88-mpeg.c                 |   6 +-
 drivers/media/pci/cx88/cx88-vbi.c                  |   6 +-
 drivers/media/pci/cx88/cx88-video.c                |   7 +-
 drivers/media/pci/cx88/cx88.h                      |   1 -
 drivers/media/pci/dt3155/Kconfig                   |  13 +
 drivers/media/pci/dt3155/Makefile                  |   1 +
 drivers/media/pci/dt3155/dt3155.c                  | 632 +++++++++++++
 .../dt3155v4l.h => media/pci/dt3155/dt3155.h}      |  64 +-
 drivers/media/pci/ivtv/ivtv-controls.c             |  12 +-
 drivers/media/pci/ivtv/ivtv-driver.c               |   4 +-
 drivers/media/pci/ivtv/ivtv-ioctl.c                |  12 +-
 drivers/media/pci/mantis/mantis_cards.c            |   3 -
 drivers/media/pci/ngene/ngene-core.c               |  10 +-
 drivers/media/pci/saa7134/saa7134-cards.c          |  19 +-
 drivers/media/pci/saa7134/saa7134-dvb.c            |   2 +-
 drivers/media/pci/saa7134/saa7134-empress.c        |  32 +-
 drivers/media/pci/saa7164/saa7164-api.c            |  22 +-
 drivers/media/pci/saa7164/saa7164-buffer.c         |   2 +-
 drivers/media/pci/saa7164/saa7164-bus.c            |   2 +-
 drivers/media/pci/saa7164/saa7164-cards.c          | 188 +++-
 drivers/media/pci/saa7164/saa7164-cmd.c            |   2 +-
 drivers/media/pci/saa7164/saa7164-core.c           |  16 +-
 drivers/media/pci/saa7164/saa7164-dvb.c            | 238 ++++-
 drivers/media/pci/saa7164/saa7164-encoder.c        |  13 +-
 drivers/media/pci/saa7164/saa7164-fw.c             |   2 +-
 drivers/media/pci/saa7164/saa7164-i2c.c            |   9 +-
 drivers/media/pci/saa7164/saa7164-reg.h            |   2 +-
 drivers/media/pci/saa7164/saa7164-types.h          |   2 +-
 drivers/media/pci/saa7164/saa7164-vbi.c            |  13 +-
 drivers/media/pci/saa7164/saa7164.h                |   7 +-
 drivers/media/pci/zoran/zoran_device.c             |  13 +-
 drivers/media/platform/am437x/am437x-vpfe.c        |  32 +-
 drivers/media/platform/blackfin/bfin_capture.c     |  40 +-
 drivers/media/platform/davinci/vpfe_capture.c      |  19 +-
 drivers/media/platform/m2m-deinterlace.c           |   1 -
 drivers/media/platform/marvell-ccic/cafe-driver.c  |  13 +-
 drivers/media/platform/marvell-ccic/mcam-core.c    | 485 ++++------
 drivers/media/platform/marvell-ccic/mcam-core.h    |  11 +-
 drivers/media/platform/marvell-ccic/mmp-driver.c   |   1 +
 drivers/media/platform/s3c-camif/camif-capture.c   |  13 +-
 drivers/media/platform/s5p-mfc/s5p_mfc.c           |   2 -
 drivers/media/platform/s5p-mfc/s5p_mfc_opr_v5.c    |   2 +-
 drivers/media/platform/s5p-tv/hdmi_drv.c           |  12 +-
 drivers/media/platform/s5p-tv/mixer_drv.c          |  15 +-
 drivers/media/platform/s5p-tv/sdo_drv.c            |  14 +-
 drivers/media/platform/sh_vou.c                    |  61 +-
 drivers/media/platform/soc_camera/atmel-isi.c      |  74 +-
 drivers/media/platform/soc_camera/mx2_camera.c     | 113 +--
 drivers/media/platform/soc_camera/mx3_camera.c     | 105 ++-
 drivers/media/platform/soc_camera/omap1_camera.c   | 106 ++-
 drivers/media/platform/soc_camera/pxa_camera.c     |  99 ++-
 drivers/media/platform/soc_camera/rcar_vin.c       | 116 ++-
 .../platform/soc_camera/sh_mobile_ceu_camera.c     | 115 +--
 drivers/media/platform/soc_camera/sh_mobile_csi2.c |  35 +-
 drivers/media/platform/soc_camera/soc_camera.c     |  30 +-
 .../platform/soc_camera/soc_camera_platform.c      |  24 +-
 drivers/media/platform/soc_camera/soc_scale_crop.c |  37 +-
 drivers/media/platform/via-camera.c                |  19 +-
 drivers/media/platform/vim2m.c                     |   4 -
 drivers/media/platform/vivid/vivid-core.c          |  13 +-
 drivers/media/platform/vivid/vivid-core.h          |   1 -
 drivers/media/platform/vivid/vivid-radio-rx.c      |   2 +
 drivers/media/platform/vivid/vivid-tpg.c           | 109 ++-
 drivers/media/platform/vivid/vivid-tpg.h           |   1 +
 drivers/media/platform/vivid/vivid-vid-cap.c       |  17 +-
 drivers/media/platform/vivid/vivid-vid-common.c    |  50 --
 drivers/media/platform/vivid/vivid-vid-out.c       |   3 +-
 drivers/media/platform/xilinx/Kconfig              |   2 +-
 drivers/media/radio/radio-si476x.c                 |   4 +-
 drivers/media/radio/radio-timb.c                   |   4 +-
 drivers/media/radio/si4713/si4713.c                |   4 +-
 drivers/media/radio/wl128x/fmdrv.h                 |   2 +-
 drivers/media/rc/ir-sony-decoder.c                 |  28 +-
 drivers/media/rc/rc-main.c                         |   2 +-
 drivers/media/rc/redrat3.c                         |   2 +-
 drivers/media/tuners/qt1010.c                      |   8 +-
 drivers/media/tuners/r820t.c                       |   4 +-
 drivers/media/usb/as102/as102_drv.c                |   1 +
 drivers/media/usb/cx231xx/cx231xx-417.c            |  18 +-
 drivers/media/usb/cx231xx/cx231xx-avcore.c         |  44 +-
 drivers/media/usb/cx231xx/cx231xx-core.c           |  30 +-
 drivers/media/usb/cx231xx/cx231xx-video.c          |  23 +-
 drivers/media/usb/dvb-usb/af9005-fe.c              |   2 +-
 drivers/media/usb/dvb-usb/dib0700_devices.c        |  32 +-
 drivers/media/usb/dvb-usb/dw2102.c                 |   2 +-
 drivers/media/usb/dvb-usb/vp702x.c                 |   7 +-
 drivers/media/usb/em28xx/em28xx-camera.c           |  12 +-
 drivers/media/usb/go7007/go7007-driver.c           |   3 +-
 drivers/media/usb/go7007/go7007-usb.c              |   4 +
 drivers/media/usb/go7007/go7007-v4l2.c             |  12 +-
 drivers/media/usb/go7007/s2250-board.c             |  18 +-
 drivers/media/usb/gspca/benq.c                     |   4 +-
 drivers/media/usb/gspca/sonixj.c                   |   2 +-
 drivers/media/usb/gspca/stk014.c                   |   2 +-
 drivers/media/usb/gspca/xirlink_cit.c              |  12 +-
 drivers/media/usb/gspca/zc3xx.c                    |  16 +-
 drivers/media/usb/pvrusb2/pvrusb2-context.c        |   3 +-
 drivers/media/usb/pvrusb2/pvrusb2-hdw.c            |  35 +-
 drivers/media/usb/pvrusb2/pvrusb2-io.c             |  30 +-
 drivers/media/usb/pvrusb2/pvrusb2-ioread.c         |  24 +-
 drivers/media/usb/ttusb-dec/ttusb_dec.c            |   4 +-
 drivers/media/usb/usbtv/usbtv-video.c              |  12 +-
 drivers/media/usb/usbvision/usbvision-core.c       |   4 +-
 drivers/media/v4l2-core/Kconfig                    |   2 +-
 drivers/media/v4l2-core/v4l2-dv-timings.c          |  29 +-
 drivers/media/v4l2-core/v4l2-ioctl.c               | 199 ++++-
 drivers/media/v4l2-core/v4l2-of.c                  |  92 +-
 drivers/media/v4l2-core/videobuf2-core.c           |   2 -
 drivers/media/v4l2-core/videobuf2-dma-contig.c     |   7 +
 drivers/media/v4l2-core/videobuf2-dma-sg.c         |   6 +
 drivers/media/v4l2-core/videobuf2-vmalloc.c        |   6 +-
 drivers/staging/media/Kconfig                      |   2 -
 drivers/staging/media/Makefile                     |   1 -
 drivers/staging/media/bcm2048/radio-bcm2048.c      |   3 +-
 drivers/staging/media/dt3155v4l/Kconfig            |  29 -
 drivers/staging/media/dt3155v4l/Makefile           |   1 -
 drivers/staging/media/dt3155v4l/dt3155v4l.c        | 981 ---------------------
 drivers/staging/media/omap4iss/Kconfig             |   1 +
 drivers/staging/media/omap4iss/iss.c               |  11 +
 drivers/staging/media/omap4iss/iss.h               |   4 +
 drivers/staging/media/omap4iss/iss_csiphy.c        |  12 +-
 include/media/adp1653.h                            |   8 +-
 include/media/v4l2-of.h                            |  20 +-
 include/media/v4l2-subdev.h                        |  16 -
 200 files changed, 4464 insertions(+), 3465 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/media/i2c/adp1653.txt
 create mode 100644 drivers/media/pci/dt3155/Kconfig
 create mode 100644 drivers/media/pci/dt3155/Makefile
 create mode 100644 drivers/media/pci/dt3155/dt3155.c
 rename drivers/{staging/media/dt3155v4l/dt3155v4l.h => media/pci/dt3155/dt3155.h} (82%)
 delete mode 100644 drivers/staging/media/dt3155v4l/Kconfig
 delete mode 100644 drivers/staging/media/dt3155v4l/Makefile
 delete mode 100644 drivers/staging/media/dt3155v4l/dt3155v4l.c
Merging kbuild/for-next (a1d375f9a7e3 Merge branch 'kbuild/misc' into kbuild/for-next)
$ git merge kbuild/for-next
Auto-merging arch/x86/Kconfig
Auto-merging Makefile
Merge made by the 'recursive' strategy.
 Documentation/lto-build  | 173 +++++++++++++++++++++++++++++++++++++++++++++++
 Makefile                 |  35 +++++++---
 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 +-
 scripts/package/builddeb |  18 +++--
 scripts/package/mkspec   |   4 +-
 11 files changed, 375 insertions(+), 27 deletions(-)
 create mode 100644 Documentation/lto-build
 create mode 100644 scripts/Makefile.lto
Merging kconfig/for-next (bfa76d495765 Linux 3.19)
$ git merge kconfig/for-next
Already up-to-date.
Merging libata/for-next (edfd02d0c2ad Merge branch 'for-4.1-fixes' into for-next)
$ git merge libata/for-next
Removing drivers/ide/scc_pata.c
Removing drivers/ata/pata_scc.c
Merge made by the 'recursive' strategy.
 drivers/ata/Kconfig           |    9 -
 drivers/ata/Makefile          |    1 -
 drivers/ata/ahci_st.c         |   49 +-
 drivers/ata/libahci.c         |    3 +-
 drivers/ata/libata-core.c     |   34 +-
 drivers/ata/libata-eh.c       |    3 +
 drivers/ata/pata_samsung_cf.c |    2 +-
 drivers/ata/pata_scc.c        | 1110 -----------------------------------------
 drivers/ide/Kconfig           |    9 -
 drivers/ide/Makefile          |    1 -
 drivers/ide/scc_pata.c        |  887 --------------------------------
 include/linux/libata.h        |   10 +
 12 files changed, 72 insertions(+), 2046 deletions(-)
 delete mode 100644 drivers/ata/pata_scc.c
 delete mode 100644 drivers/ide/scc_pata.c
Merging pm/linux-next (331ba19d80e2 Merge branch 'acpi-enumeration')
$ git merge pm/linux-next
Merge made by the 'recursive' strategy.
 Documentation/acpi/enumeration.txt     |   2 +-
 Documentation/acpi/gpio-properties.txt |   6 +-
 arch/x86/pci/acpi.c                    |  24 +++++++-
 drivers/acpi/acpi_pnp.c                |   2 +
 drivers/acpi/apei/ghes.c               | 108 +++++++++++++++++----------------
 drivers/acpi/resource.c                |   2 +-
 drivers/acpi/sbshc.c                   |  22 +++++++
 7 files changed, 106 insertions(+), 60 deletions(-)
Merging idle/next (64887b6882de Merge branch 'for-linus-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs)
$ git merge idle/next
Already up-to-date.
Merging apm/for-next (53675abbd1e5 x86, apm: Remove unused variable)
$ git merge apm/for-next
Already up-to-date.
Merging thermal/next (b787f68c36d4 Linux 4.1-rc1)
$ git merge thermal/next
Already up-to-date.
Merging thermal-soc/next (488c7455d74c thermal: exynos: Add the support for Exynos5433 TMU)
$ git merge thermal-soc/next
Merge made by the 'recursive' strategy.
 .../bindings/thermal/qcom-spmi-temp-alarm.txt      |  57 ++
 .../devicetree/bindings/thermal/thermal.txt        |   9 +
 Documentation/thermal/cpu-cooling-api.txt          | 156 +++++-
 Documentation/thermal/power_allocator.txt          | 247 +++++++++
 Documentation/thermal/sysfs-api.txt                |  83 ++-
 drivers/acpi/thermal.c                             |   9 +-
 drivers/platform/x86/acerhdf.c                     |   3 +-
 drivers/thermal/Kconfig                            |  36 ++
 drivers/thermal/Makefile                           |   2 +
 drivers/thermal/cpu_cooling.c                      | 585 ++++++++++++++++++++-
 drivers/thermal/db8500_thermal.c                   |   2 +-
 drivers/thermal/fair_share.c                       |  41 +-
 drivers/thermal/imx_thermal.c                      |   3 +-
 drivers/thermal/of-thermal.c                       |  15 +-
 drivers/thermal/power_allocator.c                  | 538 +++++++++++++++++++
 drivers/thermal/qcom-spmi-temp-alarm.c             | 309 +++++++++++
 drivers/thermal/samsung/exynos_tmu.c               | 187 ++++++-
 drivers/thermal/samsung/exynos_tmu.h               |   1 +
 drivers/thermal/thermal_core.c                     | 310 ++++++++++-
 drivers/thermal/thermal_core.h                     |  11 +
 drivers/thermal/ti-soc-thermal/ti-bandgap.c        | 104 ++--
 drivers/thermal/ti-soc-thermal/ti-thermal-common.c |   5 +-
 drivers/thermal/x86_pkg_temp_thermal.c             |   2 +-
 include/linux/cpu_cooling.h                        |  39 ++
 include/linux/thermal.h                            |  86 ++-
 include/trace/events/thermal.h                     |  58 ++
 include/trace/events/thermal_power_allocator.h     |  87 +++
 27 files changed, 2850 insertions(+), 135 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/thermal/qcom-spmi-temp-alarm.txt
 create mode 100644 Documentation/thermal/power_allocator.txt
 create mode 100644 drivers/thermal/power_allocator.c
 create mode 100644 drivers/thermal/qcom-spmi-temp-alarm.c
 create mode 100644 include/trace/events/thermal_power_allocator.h
Merging ieee1394/for-next (d71e6a11737f firewire: core: use correct vendor/model IDs)
$ git merge ieee1394/for-next
Already up-to-date.
Merging dlm/next (2ab4bd8ea3a6 dlm: adopt orphan locks)
$ git merge dlm/next
Already up-to-date.
Merging swiotlb/linux-next (8e0629c1d4ce swiotlb: don't assume PA 0 is invalid)
$ git merge swiotlb/linux-next
Already up-to-date.
Merging slave-dma/next (428d96e91ee2 dmaengine: s3c24xx: Constify platform_device_id)
$ git merge slave-dma/next
Merge made by the 'recursive' strategy.
 drivers/dma/ep93xx_dma.c  |  2 +-
 drivers/dma/imx-dma.c     |  2 +-
 drivers/dma/imx-sdma.c    |  2 +-
 drivers/dma/mxs-dma.c     |  2 +-
 drivers/dma/nbpfaxi.c     |  2 +-
 drivers/dma/omap-dma.c    | 51 +++++++++++++++++++++++++++++++++++++++++++++--
 drivers/dma/s3c24xx-dma.c |  2 +-
 7 files changed, 55 insertions(+), 8 deletions(-)
Merging net-next/master (fcba67c94abe net: fix two sparse warnings introduced by IGMP/MLD parsing exports)
$ git merge net-next/master
Auto-merging net/sched/sch_fq_codel.c
Auto-merging net/core/dev.c
Merge made by the 'recursive' strategy.
 Documentation/networking/ip-sysctl.txt            |   8 +
 Documentation/networking/tc-actions-env-rules.txt |   2 -
 drivers/net/ethernet/apm/xgene/Makefile           |   2 +-
 drivers/net/ethernet/apm/xgene/xgene_enet_hw.c    |  36 +++-
 drivers/net/ethernet/apm/xgene/xgene_enet_hw.h    |   8 +-
 drivers/net/ethernet/apm/xgene/xgene_enet_main.c  | 207 +++++++++++++-----
 drivers/net/ethernet/apm/xgene/xgene_enet_main.h  |  30 ++-
 drivers/net/ethernet/apm/xgene/xgene_enet_ring2.c | 200 +++++++++++++++++
 drivers/net/ethernet/apm/xgene/xgene_enet_ring2.h |  49 +++++
 drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c |  62 ++++--
 drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c |   1 -
 drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.h |  20 ++
 drivers/net/ethernet/emulex/benet/be_main.c       |   2 +
 drivers/net/ethernet/ibm/ibmveth.c                |  41 +++-
 drivers/net/ethernet/ibm/ibmveth.h                |   5 +-
 drivers/net/ethernet/intel/e100.c                 |   2 +-
 drivers/net/ethernet/intel/e1000e/82571.c         |   2 +-
 drivers/net/ethernet/intel/e1000e/ich8lan.c       |  23 +-
 drivers/net/ethernet/intel/e1000e/netdev.c        |  32 ++-
 drivers/net/ethernet/intel/igb/igb_main.c         |  27 +--
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c  |  10 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c     |   4 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c      |   4 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c     |   8 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c     | 106 +++++----
 drivers/net/ethernet/rocker/rocker.c              |   4 +-
 drivers/net/ethernet/via/via-rhine.c              | 249 ++++++++++++++--------
 include/linux/etherdevice.h                       |  24 ++-
 include/linux/igmp.h                              |   1 +
 include/linux/skbuff.h                            |   5 +
 include/net/addrconf.h                            |   1 +
 include/net/dst.h                                 |   6 -
 include/net/flow_keys.h                           |  16 ++
 include/net/ip6_fib.h                             |  41 +---
 include/net/ipv6.h                                |   9 +-
 include/net/netns/ipv6.h                          |   1 +
 include/net/sch_generic.h                         |   2 -
 include/uapi/linux/pkt_cls.h                      |   5 +
 lib/test_bpf.c                                    |  12 +-
 lib/test_rhashtable.c                             | 214 +++++++++++--------
 net/bridge/br_multicast.c                         | 238 +++------------------
 net/core/dev.c                                    |  11 -
 net/core/flow_dissector.c                         |  65 +++++-
 net/core/skbuff.c                                 |  87 ++++++++
 net/ethernet/eth.c                                |   7 +-
 net/ipv4/fib_semantics.c                          |   4 -
 net/ipv4/igmp.c                                   | 162 ++++++++++++++
 net/ipv4/route.c                                  |  23 +-
 net/ipv4/tcp_input.c                              |  86 ++++----
 net/ipv4/tcp_westwood.c                           |  15 +-
 net/ipv6/Makefile                                 |   1 +
 net/ipv6/addrconf.c                               |   2 +
 net/ipv6/af_inet6.c                               |   1 +
 net/ipv6/ip6_flowlabel.c                          |   4 +
 net/ipv6/mcast_snoop.c                            | 213 ++++++++++++++++++
 net/ipv6/route.c                                  | 176 +++++++--------
 net/ipv6/sysctl_net_ipv6.c                        |   8 +
 net/ipv6/xfrm6_policy.c                           |  14 --
 net/sched/act_api.c                               |   5 -
 net/sched/act_pedit.c                             |   5 +-
 net/sched/sch_choke.c                             |  14 +-
 net/sched/sch_fq_codel.c                          |  11 +-
 net/sched/sch_hhf.c                               |  19 +-
 net/sched/sch_ingress.c                           |   5 +-
 net/sched/sch_sfb.c                               |  24 +--
 net/sched/sch_sfq.c                               |  27 +--
 net/tipc/core.c                                   |   4 +-
 net/tipc/name_table.c                             |  34 ++-
 net/tipc/server.c                                 |   4 +
 net/tipc/subscr.c                                 | 242 ++++++++++-----------
 net/tipc/subscr.h                                 |  18 +-
 71 files changed, 1948 insertions(+), 1062 deletions(-)
 create mode 100644 drivers/net/ethernet/apm/xgene/xgene_enet_ring2.c
 create mode 100644 drivers/net/ethernet/apm/xgene/xgene_enet_ring2.h
 create mode 100644 net/ipv6/mcast_snoop.c
Merging ipsec-next/master (dc0565ce6e34 xfrm: slightly optimise xfrm_input)
$ git merge ipsec-next/master
Auto-merging net/xfrm/xfrm_state.c
Merge made by the 'recursive' strategy.
 net/xfrm/xfrm_input.c  | 12 ++++++------
 net/xfrm/xfrm_policy.c | 18 ++++++------------
 net/xfrm/xfrm_state.c  |  4 ++--
 3 files changed, 14 insertions(+), 20 deletions(-)
Merging wireless-drivers-next/master (73b25f66dcae Merge ath-next from ath.git)
$ git merge wireless-drivers-next/master
Merge made by the 'recursive' strategy.
 drivers/net/wireless/ath/ath10k/Makefile        |    4 +-
 drivers/net/wireless/ath/ath10k/core.c          |  161 +-
 drivers/net/wireless/ath/ath10k/core.h          |   48 +-
 drivers/net/wireless/ath/ath10k/debug.c         |  127 +-
 drivers/net/wireless/ath/ath10k/htc.c           |   50 +-
 drivers/net/wireless/ath/ath10k/htt.c           |   98 +
 drivers/net/wireless/ath/ath10k/htt.h           |  132 +-
 drivers/net/wireless/ath/ath10k/htt_rx.c        |  194 +-
 drivers/net/wireless/ath/ath10k/htt_tx.c        |   34 +-
 drivers/net/wireless/ath/ath10k/hw.h            |   53 +-
 drivers/net/wireless/ath/ath10k/mac.c           | 2826 +++++++++++++++++------
 drivers/net/wireless/ath/ath10k/mac.h           |   29 +
 drivers/net/wireless/ath/ath10k/p2p.c           |  156 ++
 drivers/net/wireless/ath/ath10k/p2p.h           |   28 +
 drivers/net/wireless/ath/ath10k/pci.c           |  101 +-
 drivers/net/wireless/ath/ath10k/rx_desc.h       |   22 +
 drivers/net/wireless/ath/ath10k/thermal.c       |  134 +-
 drivers/net/wireless/ath/ath10k/thermal.h       |   10 +-
 drivers/net/wireless/ath/ath10k/trace.h         |   22 +-
 drivers/net/wireless/ath/ath10k/txrx.c          |    9 +-
 drivers/net/wireless/ath/ath10k/wmi-ops.h       |  194 +-
 drivers/net/wireless/ath/ath10k/wmi-tlv.c       |  579 ++++-
 drivers/net/wireless/ath/ath10k/wmi-tlv.h       |  168 ++
 drivers/net/wireless/ath/ath10k/wmi.c           |  272 +--
 drivers/net/wireless/ath/ath10k/wmi.h           |  230 +-
 drivers/net/wireless/ath/ath10k/wow.c           |  321 +++
 drivers/net/wireless/ath/ath10k/wow.h           |   40 +
 drivers/net/wireless/ath/dfs_pattern_detector.c |   72 +-
 drivers/net/wireless/ath/dfs_pattern_detector.h |    4 +
 drivers/net/wireless/ath/dfs_pri_detector.c     |    4 +
 30 files changed, 4884 insertions(+), 1238 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath10k/p2p.c
 create mode 100644 drivers/net/wireless/ath/ath10k/p2p.h
 create mode 100644 drivers/net/wireless/ath/ath10k/wow.c
 create mode 100644 drivers/net/wireless/ath/ath10k/wow.h
Merging bluetooth/master (1add15646672 ieee802154: trace: fix endian convertion)
$ git merge bluetooth/master
Already up-to-date.
Merging infiniband/for-next (c1c2fef6cfb0 Merge branches 'cve-fixup', 'ipoib', 'iser', 'misc-4.1', 'or-mlx4' and 'srp' into for-4.1)
$ git merge infiniband/for-next
Already up-to-date.
Merging mtd/master (b787f68c36d4 Linux 4.1-rc1)
$ git merge mtd/master
Already up-to-date.
Merging l2-mtd/master (b787f68c36d4 Linux 4.1-rc1)
$ git merge l2-mtd/master
Already up-to-date.
Merging crypto/master (09e217844a2e crypto: testmgr - Wrap the LHS in expressions of the form !x == y)
$ git merge crypto/master
Auto-merging drivers/crypto/Kconfig
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/crypto/fsl-sec2.txt        |   6 +-
 arch/arm64/crypto/aes-ce-ccm-glue.c                |   2 +-
 arch/x86/crypto/sha-mb/sha1_mb.c                   |   3 +-
 crypto/ablkcipher.c                                |   2 +-
 crypto/aead.c                                      |   2 +-
 crypto/algapi.c                                    |  14 +-
 crypto/algif_aead.c                                |   1 +
 crypto/algif_rng.c                                 |   2 +-
 crypto/ansi_cprng.c                                |  88 ++-
 crypto/drbg.c                                      | 380 ++++-------
 crypto/fips.c                                      |  53 +-
 crypto/internal.h                                  |   3 +-
 crypto/krng.c                                      |  33 +-
 crypto/pcompress.c                                 |   7 +-
 crypto/proc.c                                      |  41 --
 crypto/rng.c                                       | 105 ++-
 crypto/shash.c                                     |   7 +-
 crypto/tcrypt.c                                    |   9 +-
 crypto/testmgr.c                                   |   2 +
 crypto/testmgr.h                                   |   8 +-
 crypto/zlib.c                                      |   4 +-
 drivers/crypto/Kconfig                             |  18 +
 drivers/crypto/caam/caamalg.c                      |   4 -
 drivers/crypto/mv_cesa.c                           |   2 +-
 drivers/crypto/nx/nx-sha256.c                      |  84 ++-
 drivers/crypto/nx/nx-sha512.c                      |  85 ++-
 drivers/crypto/nx/nx.c                             |  69 +-
 drivers/crypto/nx/nx.h                             |   2 -
 drivers/crypto/qat/qat_dh895xcc/adf_drv.c          |   2 +-
 drivers/crypto/talitos.c                           | 727 +++++++++++++++------
 drivers/crypto/talitos.h                           | 153 +++--
 include/crypto/compress.h                          |   8 +-
 include/crypto/drbg.h                              |  54 +-
 include/crypto/internal/rng.h                      |  12 +-
 include/crypto/rng.h                               | 100 ++-
 include/linux/crypto.h                             |  42 --
 include/linux/module.h                             |  12 +
 net/mac80211/aes_ccm.c                             |   3 +-
 net/mac80211/aes_gcm.c                             |   3 +-
 net/mac80211/aes_gmac.c                            |   2 +-
 net/mac802154/llsec.c                              |   3 +-
 41 files changed, 1245 insertions(+), 912 deletions(-)
Merging drm/drm-next (cec32a470106 media-bus: Fixup RGB444_1X12, RGB565_1X16, and YUV8_1X24 media bus format)
$ git merge drm/drm-next
Already up-to-date.
Merging drm-panel/drm/panel/for-next (1c550fa193d0 drm/panel: Add support for Ampire AM-800480R3TMQW-A1H 800x480 7" panel)
$ git merge drm-panel/drm/panel/for-next
Already up-to-date.
Merging drm-intel/for-linux-next (dcdaab3ad151 drm/i915: Remove incorrect restriction on 32bit offsets in ppGTT backend)
$ git merge drm-intel/for-linux-next
Resolved 'drivers/gpu/drm/i915/i915_drv.c' using previous resolution.
Auto-merging include/drm/drm_crtc.h
Auto-merging drivers/gpu/drm/i915/intel_uncore.c
Auto-merging drivers/gpu/drm/i915/intel_sdvo.c
Auto-merging drivers/gpu/drm/i915/intel_lvds.c
Auto-merging drivers/gpu/drm/i915/intel_lrc.c
Auto-merging drivers/gpu/drm/i915/intel_i2c.c
Auto-merging drivers/gpu/drm/i915/intel_hdmi.c
Auto-merging drivers/gpu/drm/i915/intel_dvo.c
Auto-merging drivers/gpu/drm/i915/intel_drv.h
Auto-merging drivers/gpu/drm/i915/intel_dp_mst.c
Auto-merging drivers/gpu/drm/i915/intel_dp.c
Auto-merging drivers/gpu/drm/i915/intel_display.c
Auto-merging drivers/gpu/drm/i915/intel_ddi.c
Auto-merging drivers/gpu/drm/i915/intel_crt.c
Auto-merging drivers/gpu/drm/i915/i915_trace.h
Auto-merging drivers/gpu/drm/i915/i915_reg.h
Auto-merging drivers/gpu/drm/i915/i915_irq.c
Auto-merging drivers/gpu/drm/i915/i915_gem.c
Auto-merging drivers/gpu/drm/i915/i915_drv.h
Auto-merging drivers/gpu/drm/i915/i915_drv.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/i915_drv.c
Auto-merging drivers/gpu/drm/drm_crtc.c
Auto-merging Documentation/DocBook/drm.tmpl
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 4b0f3098674a] Merge remote-tracking branch 'drm-intel/for-linux-next'
$ git diff -M --stat --summary HEAD^..
 Documentation/DocBook/drm.tmpl             |    4 +-
 arch/x86/kernel/early-quirks.c             |    1 +
 drivers/gpu/drm/drm_crtc.c                 |   23 +
 drivers/gpu/drm/i915/Makefile              |    3 +-
 drivers/gpu/drm/i915/dvo_ivch.c            |   21 +-
 drivers/gpu/drm/i915/dvo_ns2501.c          |  670 ++++++------
 drivers/gpu/drm/i915/i915_cmd_parser.c     |   12 +-
 drivers/gpu/drm/i915/i915_debugfs.c        |  485 ++++++---
 drivers/gpu/drm/i915/i915_dma.c            |  281 +++---
 drivers/gpu/drm/i915/i915_drv.c            |  104 +-
 drivers/gpu/drm/i915/i915_drv.h            |  196 ++--
 drivers/gpu/drm/i915/i915_gem.c            |  236 +++--
 drivers/gpu/drm/i915/i915_gem_batch_pool.c |   84 +-
 drivers/gpu/drm/i915/i915_gem_batch_pool.h |   42 +
 drivers/gpu/drm/i915/i915_gem_context.c    |   37 +-
 drivers/gpu/drm/i915/i915_gem_execbuffer.c |   51 +-
 drivers/gpu/drm/i915/i915_gem_gtt.c        | 1045 ++++++++++---------
 drivers/gpu/drm/i915/i915_gem_gtt.h        |  101 +-
 drivers/gpu/drm/i915/i915_gem_shrinker.c   |    8 +-
 drivers/gpu/drm/i915/i915_gem_stolen.c     |    2 +-
 drivers/gpu/drm/i915/i915_gem_tiling.c     |    2 +-
 drivers/gpu/drm/i915/i915_gpu_error.c      |   10 +-
 drivers/gpu/drm/i915/i915_irq.c            |  282 ++++--
 drivers/gpu/drm/i915/i915_reg.h            |  500 ++++++++-
 drivers/gpu/drm/i915/i915_trace.h          |   44 +-
 drivers/gpu/drm/i915/intel_atomic.c        |  176 ++++
 drivers/gpu/drm/i915/intel_atomic_plane.c  |   24 +
 drivers/gpu/drm/i915/intel_audio.c         |    4 +-
 drivers/gpu/drm/i915/intel_bios.c          |   30 +-
 drivers/gpu/drm/i915/intel_bios.h          |    4 +-
 drivers/gpu/drm/i915/intel_crt.c           |    2 +-
 drivers/gpu/drm/i915/intel_csr.c           |  414 ++++++++
 drivers/gpu/drm/i915/intel_ddi.c           |  763 +++++++++++---
 drivers/gpu/drm/i915/intel_display.c       | 1513 ++++++++++++++++++++++------
 drivers/gpu/drm/i915/intel_dp.c            |  232 ++++-
 drivers/gpu/drm/i915/intel_dp_mst.c        |   14 +-
 drivers/gpu/drm/i915/intel_drv.h           |  120 ++-
 drivers/gpu/drm/i915/intel_dvo.c           |   27 +-
 drivers/gpu/drm/i915/intel_frontbuffer.c   |    2 +
 drivers/gpu/drm/i915/intel_hdmi.c          |   30 +-
 drivers/gpu/drm/i915/intel_i2c.c           |   97 +-
 drivers/gpu/drm/i915/intel_lrc.c           |  502 +++++----
 drivers/gpu/drm/i915/intel_lrc.h           |    5 +-
 drivers/gpu/drm/i915/intel_lvds.c          |    4 +-
 drivers/gpu/drm/i915/intel_overlay.c       |   66 +-
 drivers/gpu/drm/i915/intel_pm.c            |  115 ++-
 drivers/gpu/drm/i915/intel_psr.c           |  118 ++-
 drivers/gpu/drm/i915/intel_ringbuffer.c    |  128 +--
 drivers/gpu/drm/i915/intel_ringbuffer.h    |   10 +
 drivers/gpu/drm/i915/intel_runtime_pm.c    |  318 +++++-
 drivers/gpu/drm/i915/intel_sdvo.c          |    5 +-
 drivers/gpu/drm/i915/intel_sprite.c        |  191 ++--
 drivers/gpu/drm/i915/intel_uncore.c        |   98 +-
 include/drm/drm_crtc.h                     |    1 +
 include/drm/i915_pciids.h                  |    6 +
 include/uapi/drm/i915_drm.h                |    1 +
 56 files changed, 6694 insertions(+), 2570 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_gem_batch_pool.h
 create mode 100644 drivers/gpu/drm/i915/intel_csr.c
Merging drm-tegra/drm/tegra/for-next (535a65db484f drm/tegra: sor: Reset during initialization)
$ git merge drm-tegra/drm/tegra/for-next
Already up-to-date.
Merging drm-misc/topic/drm-misc (337eb43c8d00 drm/qxl: Fix qxl_noop_get_vblank_counter())
$ git merge drm-misc/topic/drm-misc
Auto-merging drivers/gpu/drm/i915/intel_atomic_plane.c
Auto-merging drivers/gpu/drm/drm_probe_helper.c
Auto-merging drivers/gpu/drm/drm_atomic_helper.c
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/drm_atomic_helper.c       |   3 +-
 drivers/gpu/drm/drm_dp_helper.c           |  12 +++-
 drivers/gpu/drm/drm_irq.c                 | 103 +++++++++++++++++-------------
 drivers/gpu/drm/drm_probe_helper.c        |   4 +-
 drivers/gpu/drm/i915/intel_atomic_plane.c |   4 --
 drivers/gpu/drm/qxl/qxl_drv.c             |   2 +-
 include/drm/drmP.h                        |   8 ++-
 7 files changed, 80 insertions(+), 56 deletions(-)
Merging drm-exynos/exynos-drm/for-next (7b025c687af7 drm/exynos: mixer: Constify platform_device_id)
$ git merge drm-exynos/exynos-drm/for-next
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/exynos/exynos_drm_fb.c    | 39 +---------------------
 drivers/gpu/drm/exynos/exynos_drm_plane.c |  2 +-
 drivers/gpu/drm/exynos/exynos_mixer.c     | 55 ++++++++++++++++---------------
 3 files changed, 31 insertions(+), 65 deletions(-)
Merging drm-msm/msm-next (d5af49c92a8a drm/msm/mdp5: Enable DSI connector in msm drm driver)
$ git merge drm-msm/msm-next
Already up-to-date.
Merging sound/for-next (f526990738be ALSA:hda - reset display codec when power on)
$ git merge sound/for-next
Auto-merging drivers/gpu/drm/i915/intel_audio.c
Auto-merging drivers/gpu/drm/i915/i915_reg.h
Merge made by the 'recursive' strategy.
 Documentation/sound/alsa/Jack-Controls.txt |   43 +
 drivers/gpu/drm/i915/i915_reg.h            |    3 +
 drivers/gpu/drm/i915/intel_audio.c         |   27 +
 include/drm/i915_component.h               |    1 +
 include/sound/control.h                    |    2 +-
 include/sound/core.h                       |    4 -
 include/sound/hda_register.h               |  152 ++++
 include/sound/hdaudio.h                    |  290 +++++-
 include/sound/info.h                       |   29 +-
 include/sound/jack.h                       |   13 +-
 include/sound/pcm.h                        |    5 +-
 sound/core/Kconfig                         |    3 -
 sound/core/Makefile                        |   11 +-
 sound/core/ctljack.c                       |   41 +-
 sound/core/info.c                          |  779 +++++++---------
 sound/core/info_oss.c                      |   29 +-
 sound/core/init.c                          |   33 +-
 sound/core/jack.c                          |  142 ++-
 sound/core/seq/Makefile                    |    3 +-
 sound/core/seq/seq_info.c                  |   19 +-
 sound/core/sound.c                         |   24 +-
 sound/core/sound_oss.c                     |   30 +-
 sound/hda/Kconfig                          |    3 +
 sound/hda/Makefile                         |    2 +-
 sound/hda/hdac_bus.c                       |   20 +-
 sound/hda/hdac_controller.c                |  507 +++++++++++
 sound/hda/hdac_device.c                    |  315 +++++++
 sound/hda/hdac_stream.c                    |  686 ++++++++++++++
 sound/pci/ad1889.c                         |    4 +-
 sound/pci/ali5451/ali5451.c                |    4 +-
 sound/pci/als300.c                         |    4 +-
 sound/pci/als4000.c                        |    4 +-
 sound/pci/au88x0/au88x0.c                  |    4 +-
 sound/pci/aw2/aw2-alsa.c                   |    4 +-
 sound/pci/azt3328.c                        |    4 +-
 sound/pci/ca0106/ca0106_main.c             |    4 +-
 sound/pci/cs5535audio/cs5535audio.c        |    4 +-
 sound/pci/ctxfi/cthw20k1.c                 |    4 +-
 sound/pci/ctxfi/cthw20k2.c                 |    4 +-
 sound/pci/emu10k1/emu10k1_main.c           |    4 +-
 sound/pci/es1938.c                         |    4 +-
 sound/pci/es1968.c                         |    4 +-
 sound/pci/hda/Kconfig                      |   13 +-
 sound/pci/hda/Makefile                     |    3 +-
 sound/pci/hda/hda_codec.c                  |  425 +--------
 sound/pci/hda/hda_codec.h                  |   82 +-
 sound/pci/hda/hda_controller.c             | 1341 ++++++----------------------
 sound/pci/hda/hda_controller.h             |  272 +-----
 sound/pci/hda/hda_i915.c                   |   39 +-
 sound/pci/hda/hda_intel.c                  |  309 ++++---
 sound/pci/hda/hda_intel.h                  |   10 +-
 sound/pci/hda/hda_intel_trace.h            |    4 +-
 sound/pci/hda/hda_jack.c                   |   90 +-
 sound/pci/hda/hda_jack.h                   |    5 +-
 sound/pci/hda/hda_tegra.c                  |   76 +-
 sound/pci/hda/patch_ca0132.c               |    7 +-
 sound/pci/hda/patch_hdmi.c                 |   13 +-
 sound/pci/ice1712/ice1712.c                |    4 +-
 sound/pci/lx6464es/lx6464es.c              |    2 +-
 sound/pci/maestro3.c                       |    4 +-
 sound/pci/mixart/mixart.c                  |    2 +-
 sound/pci/oxygen/xonar_wm87x6.c            |    2 +-
 sound/pci/pcxhr/pcxhr.c                    |    2 +-
 sound/pci/sis7019.c                        |   10 +-
 sound/pci/sonicvibes.c                     |    4 +-
 sound/pci/trident/trident_main.c           |    4 +-
 sound/soc/soc-jack.c                       |    3 +-
 67 files changed, 3306 insertions(+), 2692 deletions(-)
 create mode 100644 Documentation/sound/alsa/Jack-Controls.txt
 create mode 100644 include/sound/hda_register.h
 create mode 100644 sound/hda/hdac_controller.c
 create mode 100644 sound/hda/hdac_stream.c
Merging sound-asoc/for-next (723eb2c848c2 Merge remote-tracking branches 'asoc/topic/ssm2518', 'asoc/topic/ssm2602', 'asoc/topic/ssm4567' and 'asoc/topic/tas751x' into asoc-next)
$ git merge sound-asoc/for-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/sound/adi,adau1701.txt     |    4 +
 .../devicetree/bindings/sound/renesas,rsnd.txt     |    2 +-
 .../devicetree/bindings/sound/tas571x.txt          |   41 +
 MAINTAINERS                                        |    6 +
 include/sound/dmaengine_pcm.h                      |    5 -
 include/sound/soc-dapm.h                           |   34 +
 include/sound/soc.h                                |   90 +-
 sound/soc/atmel/atmel-pcm-dma.c                    |    3 +-
 sound/soc/atmel/sam9g20_wm8731.c                   |   10 +-
 sound/soc/au1x/db1200.c                            |    2 +-
 sound/soc/cirrus/ep93xx-pcm.c                      |    1 -
 sound/soc/codecs/88pm860x-codec.c                  |    1 -
 sound/soc/codecs/Kconfig                           |    7 +-
 sound/soc/codecs/Makefile                          |    2 +
 sound/soc/codecs/ad1836.c                          |    2 +-
 sound/soc/codecs/adau1373.c                        |    1 -
 sound/soc/codecs/adau1701.c                        |  126 ++-
 sound/soc/codecs/adau1761.c                        |   27 +-
 sound/soc/codecs/adau1781.c                        |   10 +-
 sound/soc/codecs/adau17x1.c                        |   20 +-
 sound/soc/codecs/adau1977.c                        |   14 +-
 sound/soc/codecs/adav80x.c                         |   11 +-
 sound/soc/codecs/ak4535.c                          |    1 -
 sound/soc/codecs/ak4641.c                          |    1 -
 sound/soc/codecs/ak4642.c                          |    1 -
 sound/soc/codecs/ak4671.c                          |    1 -
 sound/soc/codecs/alc5623.c                         |    1 -
 sound/soc/codecs/alc5632.c                         |    1 -
 sound/soc/codecs/bt-sco.c                          |    2 +-
 sound/soc/codecs/cq93vc.c                          |    1 -
 sound/soc/codecs/cs35l32.c                         |    1 -
 sound/soc/codecs/cs4265.c                          |    1 -
 sound/soc/codecs/cs42l52.c                         |    1 -
 sound/soc/codecs/cs42l56.c                         |    1 -
 sound/soc/codecs/cs42l73.c                         |    1 -
 sound/soc/codecs/cx20442.c                         |    2 -
 sound/soc/codecs/da7213.c                          |    1 -
 sound/soc/codecs/da732x.c                          |    2 -
 sound/soc/codecs/da9055.c                          |    1 -
 sound/soc/codecs/es8328.c                          |    1 -
 sound/soc/codecs/isabelle.c                        |    2 -
 sound/soc/codecs/jz4740.c                          |    2 -
 sound/soc/codecs/lm4857.c                          |    2 -
 sound/soc/codecs/lm49453.c                         |    2 -
 sound/soc/codecs/max98088.c                        |    1 -
 sound/soc/codecs/max98090.c                        |    1 -
 sound/soc/codecs/max98095.c                        |    5 +-
 sound/soc/codecs/max9850.c                         |    1 -
 sound/soc/codecs/mc13783.c                         |    4 +-
 sound/soc/codecs/ml26124.c                         |    1 -
 sound/soc/codecs/pcm512x.c                         |    2 -
 sound/soc/codecs/rt286.c                           |    1 -
 sound/soc/codecs/rt5631.c                          |    1 -
 sound/soc/codecs/rt5640.c                          |    5 +-
 sound/soc/codecs/rt5645.c                          |  692 ++++++++++--
 sound/soc/codecs/rt5645.h                          |   28 +-
 sound/soc/codecs/rt5651.c                          |    3 +-
 sound/soc/codecs/rt5670.c                          |    1 -
 sound/soc/codecs/rt5677.c                          |   33 +-
 sound/soc/codecs/rt5677.h                          |   14 +
 sound/soc/codecs/sgtl5000.c                        |   54 +-
 sound/soc/codecs/sn95031.c                         |    1 -
 sound/soc/codecs/ssm2518.c                         |    9 +-
 sound/soc/codecs/ssm2602.c                         |    5 +-
 sound/soc/codecs/ssm4567.c                         |    9 +-
 sound/soc/codecs/sta32x.c                          |    3 +-
 sound/soc/codecs/sta350.c                          |    3 +-
 sound/soc/codecs/sta529.c                          |    6 -
 sound/soc/codecs/stac9766.c                        |    1 -
 sound/soc/codecs/tas571x.c                         |  519 +++++++++
 sound/soc/codecs/tas571x.h                         |   33 +
 sound/soc/codecs/tlv320aic23.c                     |    1 -
 sound/soc/codecs/tlv320aic31xx.c                   |    1 -
 sound/soc/codecs/tlv320aic32x4.c                   |    1 -
 sound/soc/codecs/tlv320aic3x.c                     |    1 -
 sound/soc/codecs/tlv320dac33.c                     |    1 -
 sound/soc/codecs/twl4030.c                         |    1 -
 sound/soc/codecs/twl6040.c                         |    4 +-
 sound/soc/codecs/uda134x.c                         |    1 -
 sound/soc/codecs/uda1380.c                         |    3 +-
 sound/soc/codecs/wm0010.c                          |    2 -
 sound/soc/codecs/wm1250-ev1.c                      |    2 -
 sound/soc/codecs/wm8350.c                          |    1 -
 sound/soc/codecs/wm8400.c                          |    1 -
 sound/soc/codecs/wm8510.c                          |    1 -
 sound/soc/codecs/wm8523.c                          |    1 -
 sound/soc/codecs/wm8580.c                          |    1 -
 sound/soc/codecs/wm8711.c                          |    1 -
 sound/soc/codecs/wm8728.c                          |    1 -
 sound/soc/codecs/wm8731.c                          |    3 +-
 sound/soc/codecs/wm8737.c                          |    3 +-
 sound/soc/codecs/wm8750.c                          |    1 -
 sound/soc/codecs/wm8753.c                          |    1 -
 sound/soc/codecs/wm8770.c                          |    1 -
 sound/soc/codecs/wm8776.c                          |    1 -
 sound/soc/codecs/wm8900.c                          |    7 +-
 sound/soc/codecs/wm8903.c                          |    2 -
 sound/soc/codecs/wm8904.c                          |    1 -
 sound/soc/codecs/wm8940.c                          |    4 +-
 sound/soc/codecs/wm8955.c                          |    3 +-
 sound/soc/codecs/wm8960.c                          |    4 -
 sound/soc/codecs/wm8961.c                          |    2 -
 sound/soc/codecs/wm8962.c                          |    1 -
 sound/soc/codecs/wm8971.c                          |    1 -
 sound/soc/codecs/wm8974.c                          |    1 -
 sound/soc/codecs/wm8978.c                          |    5 +-
 sound/soc/codecs/wm8983.c                          |    1 -
 sound/soc/codecs/wm8985.c                          |    1 -
 sound/soc/codecs/wm8988.c                          |    1 -
 sound/soc/codecs/wm8990.c                          |    3 +-
 sound/soc/codecs/wm8991.c                          |    1 -
 sound/soc/codecs/wm8993.c                          |    6 +-
 sound/soc/codecs/wm8994.c                          |    4 +-
 sound/soc/codecs/wm8995.c                          |    1 -
 sound/soc/codecs/wm8996.c                          |    2 -
 sound/soc/codecs/wm9081.c                          |    2 -
 sound/soc/codecs/wm9090.c                          |    2 -
 sound/soc/codecs/wm9712.c                          |    3 +-
 sound/soc/codecs/wm9713.c                          |    3 +-
 sound/soc/codecs/wm_adsp.c                         | 1132 ++++++++++++--------
 sound/soc/codecs/wm_adsp.h                         |    6 +-
 sound/soc/codecs/wmfw.h                            |   44 +-
 sound/soc/davinci/davinci-mcasp.c                  |  169 +--
 sound/soc/fsl/fsl_sai.c                            |    3 +-
 sound/soc/fsl/imx-audmux.c                         |    2 +-
 sound/soc/generic/simple-card.c                    |   16 +-
 sound/soc/intel/Kconfig                            |   16 +-
 sound/soc/intel/atom/sst-atom-controls.h           |    2 +-
 sound/soc/intel/atom/sst/sst_acpi.c                |    4 +
 sound/soc/intel/boards/Makefile                    |    2 +
 sound/soc/intel/boards/cht_bsw_max98090_ti.c       |  320 ++++++
 sound/soc/intel/boards/cht_bsw_rt5645.c            |   95 +-
 sound/soc/qcom/lpass-cpu.c                         |   10 +-
 sound/soc/qcom/lpass-platform.c                    |    6 -
 sound/soc/samsung/Kconfig                          |   15 +-
 sound/soc/samsung/i2s.c                            |    2 +-
 sound/soc/samsung/lowland.c                        |    2 +-
 sound/soc/samsung/smartq_wm8987.c                  |    6 +-
 sound/soc/samsung/smdk_wm8994.c                    |    3 +-
 sound/soc/samsung/speyside.c                       |    2 +-
 sound/soc/sh/rcar/core.c                           |   34 +-
 sound/soc/sh/rcar/ssi.c                            |   52 +-
 sound/soc/soc-dapm.c                               |   44 +-
 sound/soc/soc-generic-dmaengine-pcm.c              |   25 +-
 sound/soc/ux500/ux500_pcm.c                        |    1 -
 145 files changed, 3000 insertions(+), 993 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/tas571x.txt
 create mode 100644 sound/soc/codecs/tas571x.c
 create mode 100644 sound/soc/codecs/tas571x.h
 create mode 100644 sound/soc/intel/boards/cht_bsw_max98090_ti.c
Merging modules/modules-next (4a3893d069b7 modpost: don't emit section mismatch warnings for compiler optimizations)
$ git merge modules/modules-next
Already up-to-date.
Merging input/next (c9eeb5084b27 Input: lm8333 - fix broken email address)
$ git merge input/next
Already up-to-date.
Merging block/for-next (889fa31f00b2 blk-mq: reduce unnecessary software queue looping)
$ git merge block/for-next
Already up-to-date.
Merging device-mapper/for-next (aa6df8dd28c0 dm: fix free_rq_clone() NULL pointer when requeueing unmapped request)
$ git merge device-mapper/for-next
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 (184af16b0936 mmc: core: add missing pm event in mmc_pm_notify to fix hib restore)
$ git merge mmc-uh/next
Merge made by the 'recursive' strategy.
 drivers/mmc/core/core.c | 1 +
 1 file changed, 1 insertion(+)
Merging kgdb/kgdb-next (2d289f14f00a kdb: Fix handling of kallsyms_symbol_next() return value)
$ git merge kgdb/kgdb-next
Merge made by the 'recursive' strategy.
 kernel/debug/kdb/kdb_io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging md/for-next (9ffc8f7cb964 md/raid5: don't do chunk aligned read on degraded array.)
$ git merge md/for-next
Already up-to-date.
Merging mfd/for-mfd-next (f4ed1f14b7c9 mfd: documentation: dt: max77686: Fix typo)
$ git merge mfd/for-mfd-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mfd/max77686.txt |   2 +-
 Documentation/devicetree/bindings/mfd/max77693.txt |  67 ++++
 .../devicetree/bindings/rtc/rtc-st-lpc.txt         |  25 ++
 .../devicetree/bindings/watchdog/st_lpc_wdt.txt    |  38 +++
 MAINTAINERS                                        |   2 +
 drivers/mfd/88pm860x-core.c                        |   2 +-
 drivers/mfd/ab8500-core.c                          |   2 +-
 drivers/mfd/arizona-core.c                         |   8 -
 drivers/mfd/arizona-irq.c                          |   2 +-
 drivers/mfd/da9052-irq.c                           |   4 +-
 drivers/mfd/da9055-core.c                          |   6 +-
 drivers/mfd/da9063-irq.c                           |   4 +-
 drivers/mfd/da9150-core.c                          |   4 +-
 drivers/mfd/db8500-prcmu.c                         |   2 +-
 drivers/mfd/intel_soc_pmic_core.h                  |   2 +-
 drivers/mfd/intel_soc_pmic_crc.c                   |   2 +-
 drivers/mfd/lp8788-irq.c                           |   2 +-
 drivers/mfd/max8925-core.c                         |   2 +-
 drivers/mfd/max8997-irq.c                          |   2 +-
 drivers/mfd/max8998-irq.c                          |   2 +-
 drivers/mfd/mt6397-core.c                          |   2 +-
 drivers/mfd/stmpe.c                                |   2 +-
 drivers/mfd/tc3589x.c                              |   2 +-
 drivers/mfd/tps6586x.c                             |   2 +-
 drivers/mfd/twl6030-irq.c                          |   2 +-
 drivers/mfd/wm831x-irq.c                           |   2 +-
 drivers/mfd/wm8994-irq.c                           |   6 +-
 drivers/rtc/Kconfig                                |  11 +
 drivers/rtc/Makefile                               |   1 +
 drivers/rtc/rtc-st-lpc.c                           | 354 +++++++++++++++++++++
 drivers/watchdog/Kconfig                           |  12 +
 drivers/watchdog/Makefile                          |   1 +
 drivers/watchdog/st_lpc_wdt.c                      | 344 ++++++++++++++++++++
 include/dt-bindings/mfd/st-lpc.h                   |  15 +
 include/linux/mfd/da9055/core.h                    |   2 +-
 35 files changed, 900 insertions(+), 38 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/rtc/rtc-st-lpc.txt
 create mode 100644 Documentation/devicetree/bindings/watchdog/st_lpc_wdt.txt
 create mode 100644 drivers/rtc/rtc-st-lpc.c
 create mode 100644 drivers/watchdog/st_lpc_wdt.c
 create mode 100644 include/dt-bindings/mfd/st-lpc.h
Merging backlight/for-backlight-next (b1f85c0fec20 backlight: da9052_bl: Terminate da9052_wled_ids array with empty element)
$ git merge backlight/for-backlight-next
Already up-to-date.
Merging battery/master (b787f68c36d4 Linux 4.1-rc1)
$ git merge battery/master
Already up-to-date.
Merging omap_dss2/for-next (72fc8b7187cd Merge branches '4.1/fbdev' and '4.1/omapdss' into for-next)
$ git merge omap_dss2/for-next
Merge made by the 'recursive' strategy.
 drivers/video/fbdev/omap2/dss/hdmi4.c | 50 +++++++++++++++++++++++++++++++++++
 drivers/video/fbdev/omap2/dss/hdmi5.c | 50 +++++++++++++++++++++++++++++++++++
 2 files changed, 100 insertions(+)
Merging regulator/for-next (6b857431b641 Merge remote-tracking branches 'regulator/topic/max77843' and 'regulator/topic/max8973' into regulator-next)
$ git merge regulator/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/regulator/regulator.txt    |   2 +-
 drivers/regulator/88pm8607.c                       |   2 +-
 drivers/regulator/helpers.c                        |   2 +-
 drivers/regulator/max14577.c                       | 128 ++++++++-------------
 drivers/regulator/max77686.c                       |   2 +-
 drivers/regulator/max77693.c                       |  17 +--
 drivers/regulator/max77843.c                       |  68 ++++-------
 drivers/regulator/max8973-regulator.c              |   6 +-
 drivers/regulator/of_regulator.c                   |   2 +-
 drivers/regulator/s2mps11.c                        |  10 +-
 10 files changed, 86 insertions(+), 153 deletions(-)
Merging security/next (b787f68c36d4 Linux 4.1-rc1)
$ git merge security/next
Already up-to-date.
Merging integrity/next (0ce8300ef0d4 KEYS: fix "ca_keys=" partial key matching)
$ git merge integrity/next
Auto-merging security/integrity/evm/evm_main.c
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/ima_policy     |  3 +++
 crypto/asymmetric_keys/asymmetric_keys.h |  3 +++
 crypto/asymmetric_keys/asymmetric_type.c | 20 ++++++++++++++------
 crypto/asymmetric_keys/x509_public_key.c | 27 +++++++++++++++++++++++----
 security/integrity/evm/evm_main.c        | 11 +++++++++++
 security/integrity/ima/ima_policy.c      | 16 +++++++---------
 6 files changed, 61 insertions(+), 19 deletions(-)
Merging selinux/next (6a878464e21a signals: don't abuse __flush_signals() in selinux_bprm_committed_creds())
$ git merge selinux/next
Auto-merging security/selinux/hooks.c
Auto-merging kernel/signal.c
Auto-merging include/linux/sched.h
Merge made by the 'recursive' strategy.
 include/linux/sched.h    |  1 -
 kernel/signal.c          | 13 ++++---------
 security/selinux/hooks.c | 11 +++++++----
 3 files changed, 11 insertions(+), 14 deletions(-)
Merging lblnet/next (b2776bf7149b Linux 3.18)
$ git merge lblnet/next
Already up-to-date.
Merging watchdog/master (fe92a2e35727 watchdog: octeon: use fixed length string for register names)
$ git merge watchdog/master
Merge made by the 'recursive' strategy.
Merging iommu/next (7f65ef01e131 Merge branches 'iommu/fixes', 'x86/vt-d', 'x86/amd', 'arm/smmu', 'arm/tegra' and 'core' into next)
$ git merge iommu/next
Already up-to-date.
Merging dwmw2-iommu/master (03ecc32c5274 iommu/vt-d: support extended root and context entries)
$ git merge dwmw2-iommu/master
Already up-to-date.
Merging vfio/next (5a0ff17741c1 vfio-pci: Fix use after free)
$ git merge vfio/next
Already up-to-date.
Merging osd/linux-next (1fa3a002b254 Boaz Harrosh - fix email in Documentation)
$ git merge osd/linux-next
Already up-to-date.
Merging jc_docs/docs-next (197175427a22 Documentation/memcg: update memcg/kmem status)
$ git merge jc_docs/docs-next
Already up-to-date.
Merging trivial/for-next (0e4f93e5017d goldfish: goldfish_tty_probe() is not using 'i' any more)
$ git merge trivial/for-next
Already up-to-date.
Merging audit/next (39a8804455fb Linux 4.0)
$ git merge audit/next
Already up-to-date.
Merging devicetree/devicetree/next (a2166ca5f320 Merge remote-tracking branch 'robh/for-next' into devicetree/next)
$ git merge devicetree/devicetree/next
Already up-to-date.
Merging dt-rh/for-next (4760597116e3 scripts/dtc: Update to upstream version 9d3649bd3be245c9)
$ git merge dt-rh/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/compressed/libfdt_env.h |    4 +
 arch/powerpc/boot/libfdt_env.h        |    4 +
 arch/powerpc/boot/of.h                |    2 +
 include/linux/libfdt_env.h            |    4 +
 scripts/dtc/checks.c                  |   31 +-
 scripts/dtc/data.c                    |   12 +-
 scripts/dtc/dtc-lexer.l               |   65 +-
 scripts/dtc/dtc-lexer.lex.c_shipped   |  516 +++++-----
 scripts/dtc/dtc-parser.tab.c_shipped  | 1773 ++++++++++++++++-----------------
 scripts/dtc/dtc-parser.tab.h_shipped  |  114 +--
 scripts/dtc/dtc-parser.y              |  147 +--
 scripts/dtc/dtc.c                     |   14 +-
 scripts/dtc/dtc.h                     |   18 +-
 scripts/dtc/flattree.c                |    4 +-
 scripts/dtc/fstree.c                  |   17 +-
 scripts/dtc/libfdt/Makefile.libfdt    |    3 +-
 scripts/dtc/libfdt/fdt.c              |   30 +-
 scripts/dtc/libfdt/fdt.h              |   93 +-
 scripts/dtc/libfdt/fdt_empty_tree.c   |    1 +
 scripts/dtc/libfdt/fdt_ro.c           |   29 +-
 scripts/dtc/libfdt/fdt_rw.c           |   10 +-
 scripts/dtc/libfdt/fdt_sw.c           |   36 +-
 scripts/dtc/libfdt/fdt_wip.c          |    2 +-
 scripts/dtc/libfdt/libfdt.h           |  148 ++-
 scripts/dtc/libfdt/libfdt_env.h       |  104 +-
 scripts/dtc/libfdt/libfdt_internal.h  |    6 +-
 scripts/dtc/livetree.c                |    4 +-
 scripts/dtc/srcpos.c                  |   49 +-
 scripts/dtc/srcpos.h                  |   15 +-
 scripts/dtc/treesource.c              |   15 +-
 scripts/dtc/update-dtc-source.sh      |    9 +
 scripts/dtc/util.c                    |   18 +-
 scripts/dtc/util.h                    |    4 +-
 scripts/dtc/version_gen.h             |    2 +-
 34 files changed, 1768 insertions(+), 1535 deletions(-)
Merging mailbox/mailbox-for-next (ee23d66af921 mailbox: arm_mhu: add driver for ARM MHU controller)
$ git merge mailbox/mailbox-for-next
Already up-to-date.
Merging spi/for-next (a53ba4726214 Merge remote-tracking branches 'spi/topic/rspi', 'spi/topic/s3c64xx', 'spi/topic/sh-msiof', 'spi/topic/sirf' and 'spi/topic/spidev' into spi-next)
$ git merge spi/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/spi/spi-ath79.txt          |  24 +++
 .../include/asm/mach-ath79/ath79_spi_platform.h    |   4 -
 drivers/spi/Kconfig                                |  10 +-
 drivers/spi/Makefile                               |   1 +
 drivers/spi/spi-ath79.c                            |  34 ++--
 drivers/spi/spi-bcm2835.c                          |  88 +++++----
 drivers/spi/spi-bitbang.c                          |  17 +-
 drivers/spi/spi-fsl-cpm.c                          |  40 ++--
 drivers/spi/spi-fsl-dspi.c                         |   2 +-
 drivers/spi/spi-fsl-espi.c                         |  45 +++--
 drivers/spi/spi-imx.c                              |   2 +-
 drivers/spi/spi-omap2-mcspi.c                      |  16 +-
 drivers/spi/spi-rb4xx.c                            | 210 +++++++++++++++++++++
 drivers/spi/spi-rspi.c                             |   2 +-
 drivers/spi/spi-s3c64xx.c                          |   2 +-
 drivers/spi/spi-sh-msiof.c                         |   2 +-
 drivers/spi/spi-sirf.c                             |   3 +-
 drivers/spi/spi.c                                  |   9 +
 drivers/spi/spidev.c                               |  30 +--
 19 files changed, 417 insertions(+), 124 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/spi/spi-ath79.txt
 create mode 100644 drivers/spi/spi-rb4xx.c
Merging tip/auto-latest (88256d924879 Merge branch 'x86/urgent')
$ git merge tip/auto-latest
Auto-merging lib/Kconfig.debug
Merge made by the 'recursive' strategy.
 arch/x86/include/asm/uaccess_32.h |  4 ++++
 arch/x86/kernel/acpi/wakeup_64.S  |  6 +++---
 arch/x86/kernel/asm-offsets.c     | 19 +++++++++++++++++++
 arch/x86/kernel/asm-offsets_32.c  | 18 ------------------
 arch/x86/kernel/asm-offsets_64.c  | 21 ---------------------
 arch/x86/mm/ioremap.c             | 14 ++++++++------
 arch/x86/power/hibernate_asm_64.S |  8 ++++----
 kernel/rcu/tree.c                 | 16 +++++++++-------
 kernel/sched/auto_group.c         |  4 ----
 lib/Kconfig.debug                 |  1 +
 10 files changed, 48 insertions(+), 63 deletions(-)
Merging clockevents/clockevents/next (4c8305221193 clocksource: Driver for Conexant Digicolor SoC timer)
$ git merge clockevents/clockevents/next
Resolved 'arch/arm/mach-rockchip/Kconfig' using previous resolution.
Resolved 'drivers/clocksource/Kconfig' using previous resolution.
Resolved 'drivers/clocksource/rockchip_timer.c' using previous resolution.
Auto-merging drivers/clocksource/rockchip_timer.c
CONFLICT (add/add): Merge conflict in drivers/clocksource/rockchip_timer.c
Auto-merging drivers/clocksource/Kconfig
CONFLICT (content): Merge conflict in drivers/clocksource/Kconfig
Auto-merging arch/arm/mach-rockchip/Kconfig
CONFLICT (content): Merge conflict in arch/arm/mach-rockchip/Kconfig
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 370fc02caf68] Merge remote-tracking branch 'clockevents/clockevents/next'
$ git diff -M --stat --summary HEAD^..
Merging edac/linux_next (fec53af531dd sb_edac: Fix typo computing number of banks)
$ git merge edac/linux_next
Already up-to-date.
Merging edac-amd/for-next (7e52a03646af EDAC, altera: Do not build it as a module)
$ git merge edac-amd/for-next
Merge made by the 'recursive' strategy.
 drivers/edac/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Merging irqchip/irqchip/for-next (a8bcdc32fafb Merge branch 'irqchip/core' into irqchip/for-next)
$ git merge irqchip/irqchip/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging tiny/tiny/next (f114040e3ea6 Linux 3.18-rc1)
$ git merge tiny/tiny/next
Already up-to-date.
Merging ftrace/for-next (c4b00d27e405 Merge branch 'for-next/ftrace/core' into trace/for-next)
$ git merge ftrace/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging rcu/rcu/next (7182f6825ff2 netfilter: Fix list_entry_rcu usage.)
$ git merge rcu/rcu/next
Resolved 'kernel/rcu/tree.c' using previous resolution.
Auto-merging lib/Kconfig.debug
Auto-merging kernel/rcu/tree.c
CONFLICT (content): Merge conflict in kernel/rcu/tree.c
Auto-merging init/Kconfig
Auto-merging include/linux/compiler.h
Auto-merging Documentation/kernel-parameters.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 0bb09824a46f] Merge remote-tracking branch 'rcu/rcu/next'
$ git diff -M --stat --summary HEAD^..
 Documentation/RCU/arrayRCU.txt                     |  20 +-
 Documentation/RCU/lockdep.txt                      |  10 -
 Documentation/RCU/rcu_dereference.txt              |  38 +-
 Documentation/RCU/whatisRCU.txt                    |   6 +-
 Documentation/kernel-parameters.txt                |  27 +-
 Documentation/memory-barriers.txt                  |  62 +--
 arch/arm/kernel/smp.c                              |   6 +-
 arch/arm64/kernel/smp.c                            |   6 +-
 arch/powerpc/include/asm/barrier.h                 |   1 +
 arch/x86/kernel/cpu/mcheck/mce.c                   |  15 +-
 drivers/md/bitmap.c                                |   2 +-
 include/linux/compiler.h                           |  16 +
 include/linux/rculist.h                            |  15 +-
 include/linux/rcupdate.h                           |  70 +---
 include/linux/rcutiny.h                            |  16 +
 include/linux/rcutree.h                            |   7 +-
 include/linux/spinlock.h                           |   2 +-
 init/Kconfig                                       |  72 ++--
 kernel/cpu.c                                       |   4 +-
 kernel/events/ring_buffer.c                        |   2 +-
 kernel/locking/locktorture.c                       |  14 +-
 kernel/rcu/rcutorture.c                            | 103 +++--
 kernel/rcu/srcu.c                                  |  10 +-
 kernel/rcu/tiny.c                                  |  33 --
 kernel/rcu/tiny_plugin.h                           |  12 +-
 kernel/rcu/tree.c                                  | 431 +++++++++++----------
 kernel/rcu/tree.h                                  |  63 +--
 kernel/rcu/tree_plugin.h                           | 220 ++++++-----
 kernel/rcu/tree_trace.c                            |   6 +-
 kernel/rcu/update.c                                |  30 +-
 kernel/torture.c                                   |  26 +-
 lib/Kconfig.debug                                  |  55 ++-
 net/netfilter/core.c                               |   2 +-
 .../testing/selftests/rcutorture/bin/configinit.sh |   2 +-
 .../selftests/rcutorture/bin/kvm-recheck.sh        |   4 +
 .../selftests/rcutorture/configs/rcu/CFcommon      |   2 +
 .../selftests/rcutorture/configs/rcu/SRCU-N        |   1 +
 .../selftests/rcutorture/configs/rcu/SRCU-P        |   1 +
 .../selftests/rcutorture/configs/rcu/SRCU-P.boot   |   2 +-
 .../selftests/rcutorture/configs/rcu/TASKS01       |   5 +-
 .../selftests/rcutorture/configs/rcu/TASKS02       |   1 -
 .../selftests/rcutorture/configs/rcu/TASKS03       |   2 +-
 .../selftests/rcutorture/configs/rcu/TINY02        |   2 +-
 .../selftests/rcutorture/configs/rcu/TINY02.boot   |   1 +
 .../selftests/rcutorture/configs/rcu/TREE01        |   1 +
 .../selftests/rcutorture/configs/rcu/TREE02        |   2 +-
 .../selftests/rcutorture/configs/rcu/TREE02-T      |   1 -
 .../selftests/rcutorture/configs/rcu/TREE03        |   8 +-
 .../selftests/rcutorture/configs/rcu/TREE03.boot   |   1 +
 .../selftests/rcutorture/configs/rcu/TREE04        |   8 +-
 .../selftests/rcutorture/configs/rcu/TREE05        |   4 +-
 .../selftests/rcutorture/configs/rcu/TREE06        |   4 +-
 .../selftests/rcutorture/configs/rcu/TREE06.boot   |   1 +
 .../selftests/rcutorture/configs/rcu/TREE07        |   4 +-
 .../selftests/rcutorture/configs/rcu/TREE08        |   6 +-
 .../selftests/rcutorture/configs/rcu/TREE08-T      |   1 -
 .../selftests/rcutorture/configs/rcu/TREE08-T.boot |   1 +
 .../selftests/rcutorture/configs/rcu/TREE08.boot   |   1 +
 .../selftests/rcutorture/configs/rcu/TREE09        |   1 +
 .../selftests/rcutorture/doc/TREE_RCU-kconfig.txt  |  36 +-
 60 files changed, 816 insertions(+), 689 deletions(-)
 create mode 100644 tools/testing/selftests/rcutorture/configs/rcu/TREE03.boot
 create mode 100644 tools/testing/selftests/rcutorture/configs/rcu/TREE08-T.boot
Merging kvm/linux-next (2fa462f82621 Merge tag 'kvm-arm-for-4.1-take2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into kvm-master)
$ git merge kvm/linux-next
Already up-to-date.
Merging kvm-arm/next (2fa462f82621 Merge tag 'kvm-arm-for-4.1-take2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into kvm-master)
$ git merge kvm-arm/next
Already up-to-date.
Merging kvm-ppc/kvm-ppc-next (b79013b2449c Merge tag 'staging-4.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging)
$ git merge kvm-ppc/kvm-ppc-next
Already up-to-date.
Merging kvms390/next (816c7667ea97 KVM: s390: migrate vcpu interrupt state)
$ git merge kvms390/next
Already up-to-date.
Merging xen-tip/linux-next (0b97b03d88b4 xen/pci: Try harder to get PXM information for Xen)
$ git merge xen-tip/linux-next
Already up-to-date.
Merging percpu/for-next (4c907baf36d8 percpu_ref: implement percpu_ref_is_dying())
$ git merge percpu/for-next
Already up-to-date.
Merging workqueues/for-next (042f7df15a4f workqueue: Allow modifying low level unbound workqueue cpumask)
$ git merge workqueues/for-next
Merge made by the 'recursive' strategy.
 include/linux/workqueue.h |   1 +
 kernel/workqueue.c        | 351 ++++++++++++++++++++++++++++++++++------------
 2 files changed, 259 insertions(+), 93 deletions(-)
Merging drivers-x86/for-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge drivers-x86/for-next
Already up-to-date.
Merging chrome-platform/for-next (96cba9b00e29 platform/chrome: chromeos_laptop - instantiate Atmel at primary address)
$ git merge chrome-platform/for-next
Already up-to-date.
Merging regmap/for-next (e6917c890d27 Merge remote-tracking branch 'regmap/topic/irq' into regmap-next)
$ git merge regmap/for-next
Merge made by the 'recursive' strategy.
 drivers/base/regmap/regmap-irq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging hsi/for-next (265ef3ee9575 HSI: cmt_speech: fix error return code)
$ git merge hsi/for-next
Already up-to-date.
Merging leds/for-next (a221e5c87ae2 Documentation: leds: Add description of v4l2-flash sub-device)
$ git merge leds/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/leds/leds-aat1290.txt      |  41 +
 .../devicetree/bindings/leds/leds-bcm6328.txt      | 309 +++++++
 .../devicetree/bindings/leds/leds-tlc591xx.txt     |  40 +
 Documentation/leds/leds-class-flash.txt            |  47 +
 drivers/leds/Kconfig                               |  34 +
 drivers/leds/Makefile                              |   4 +
 drivers/leds/leds-aat1290.c                        | 451 ++++++++++
 drivers/leds/leds-bcm6328.c                        | 413 +++++++++
 drivers/leds/leds-gpio.c                           |  11 +-
 drivers/leds/leds-max77693.c                       | 980 +++++++++++++++++++++
 drivers/leds/leds-tlc591xx.c                       | 300 +++++++
 drivers/leds/leds.h                                |  24 -
 include/linux/leds.h                               |  25 +
 13 files changed, 2651 insertions(+), 28 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/leds/leds-aat1290.txt
 create mode 100644 Documentation/devicetree/bindings/leds/leds-bcm6328.txt
 create mode 100644 Documentation/devicetree/bindings/leds/leds-tlc591xx.txt
 create mode 100644 drivers/leds/leds-aat1290.c
 create mode 100644 drivers/leds/leds-bcm6328.c
 create mode 100644 drivers/leds/leds-max77693.c
 create mode 100644 drivers/leds/leds-tlc591xx.c
Merging ipmi/for-next (d0acf734d886 ipmi_ssif: Use interruptible completion for waiting in the thread)
$ git merge ipmi/for-next
Already up-to-date.
Merging driver-core/driver-core-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge driver-core/driver-core-next
Already up-to-date.
Merging tty/tty-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge tty/tty-next
Already up-to-date.
Merging usb/usb-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge usb/usb-next
Already up-to-date.
Merging usb-gadget/next (b787f68c36d4 Linux 4.1-rc1)
$ git merge usb-gadget/next
Already up-to-date.
Merging usb-serial/usb-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge usb-serial/usb-next
Already up-to-date.
Merging staging/staging-next (fd5e2fd053e1 staging: lustre: llite: fix ifnullfree.cocci warnings)
$ git merge staging/staging-next
Removing drivers/staging/unisys/virtpci/virtpci.h
Removing drivers/staging/unisys/virtpci/virtpci.c
Removing drivers/staging/unisys/virtpci/Makefile
Removing drivers/staging/unisys/virtpci/Kconfig
Removing drivers/staging/unisys/virthba/virthba.h
Removing drivers/staging/unisys/virthba/virthba.c
Removing drivers/staging/unisys/virthba/Makefile
Removing drivers/staging/unisys/virthba/Kconfig
Removing drivers/staging/unisys/uislib/uisutils.c
Removing drivers/staging/unisys/uislib/uisthread.c
Removing drivers/staging/unisys/uislib/uisqueue.c
Removing drivers/staging/unisys/uislib/uislib.c
Removing drivers/staging/unisys/uislib/Makefile
Removing drivers/staging/unisys/uislib/Kconfig
Merge made by the 'recursive' strategy.
 drivers/staging/comedi/comedi_fops.c               |   41 +-
 drivers/staging/comedi/comedi_internal.h           |    1 +
 drivers/staging/comedi/comedidev.h                 |   18 +-
 drivers/staging/comedi/drivers.c                   |    2 +-
 .../staging/comedi/drivers/amplc_dio200_common.c   |    6 +-
 drivers/staging/comedi/drivers/cb_pcimdda.c        |    6 +-
 drivers/staging/comedi/drivers/comedi_bond.c       |    3 +-
 drivers/staging/comedi/drivers/daqboard2000.c      |   58 +-
 drivers/staging/comedi/drivers/ni_mio_common.c     |    4 +
 drivers/staging/comedi/drivers/serial2002.c        |    2 +-
 drivers/staging/emxx_udc/emxx_udc.c                |   37 +-
 drivers/staging/fbtft/fb_st7735r.c                 |    8 +-
 drivers/staging/fbtft/fb_tls8204.c                 |    1 +
 drivers/staging/fbtft/fbtft-core.c                 |    7 +-
 drivers/staging/fbtft/internal.h                   |    2 +-
 drivers/staging/i2o/iop.c                          |   59 +-
 drivers/staging/iio/iio_simple_dummy_events.c      |    2 +
 drivers/staging/lustre/lustre/llite/dcache.c       |    6 +-
 drivers/staging/lustre/lustre/llite/dir.c          |   35 +-
 drivers/staging/lustre/lustre/llite/file.c         |   36 +-
 drivers/staging/lustre/lustre/llite/llite_close.c  |    6 +-
 .../staging/lustre/lustre/llite/llite_internal.h   |    4 -
 drivers/staging/lustre/lustre/llite/llite_lib.c    |   41 +-
 drivers/staging/lustre/lustre/llite/llite_nfs.c    |    2 +-
 drivers/staging/lustre/lustre/llite/llite_rmtacl.c |    4 +-
 drivers/staging/lustre/lustre/llite/lloop.c        |    8 +-
 drivers/staging/lustre/lustre/llite/namei.c        |    2 +-
 drivers/staging/lustre/lustre/llite/rw26.c         |   20 -
 drivers/staging/lustre/lustre/llite/statahead.c    |   20 +-
 drivers/staging/lustre/lustre/llite/xattr_cache.c  |    6 +-
 drivers/staging/lustre/lustre/lov/lov_dev.c        |   18 +-
 drivers/staging/lustre/lustre/lov/lov_io.c         |    5 +-
 drivers/staging/lustre/lustre/lov/lov_obd.c        |   22 +-
 drivers/staging/lustre/lustre/lov/lov_pool.c       |   18 +-
 drivers/staging/lustre/lustre/lov/lov_request.c    |   35 +-
 drivers/staging/lustre/lustre/lov/lovsub_dev.c     |    4 +-
 drivers/staging/lustre/lustre/mdc/lproc_mdc.c      |    2 +-
 drivers/staging/octeon-usb/octeon-hcd.c            |   12 +-
 drivers/staging/octeon/ethernet-defines.h          |   62 +-
 drivers/staging/octeon/ethernet-mdio.c             |   48 +-
 drivers/staging/octeon/ethernet-mdio.h             |   24 +-
 drivers/staging/octeon/ethernet-mem.c              |   30 +-
 drivers/staging/octeon/ethernet-mem.h              |   23 +-
 drivers/staging/octeon/ethernet-rgmii.c            |  306 ++--
 drivers/staging/octeon/ethernet-rx.c               |   38 +-
 drivers/staging/octeon/ethernet-rx.h               |   24 +-
 drivers/staging/octeon/ethernet-sgmii.c            |  112 +-
 drivers/staging/octeon/ethernet-spi.c              |  237 ++-
 drivers/staging/octeon/ethernet-tx.c               |   28 +-
 drivers/staging/octeon/ethernet-tx.h               |   23 +-
 drivers/staging/octeon/ethernet-util.h             |   23 +-
 drivers/staging/octeon/ethernet-xaui.c             |  114 +-
 drivers/staging/octeon/ethernet.c                  |  115 +-
 drivers/staging/octeon/octeon-ethernet.h           |   35 +-
 drivers/staging/panel/panel.c                      |   14 -
 drivers/staging/unisys/Kconfig                     |    3 -
 drivers/staging/unisys/Makefile                    |    3 -
 drivers/staging/unisys/uislib/Kconfig              |   10 -
 drivers/staging/unisys/uislib/Makefile             |   12 -
 drivers/staging/unisys/uislib/uislib.c             | 1372 -----------------
 drivers/staging/unisys/uislib/uisqueue.c           |  322 ----
 drivers/staging/unisys/uislib/uisthread.c          |   69 -
 drivers/staging/unisys/uislib/uisutils.c           |  137 --
 drivers/staging/unisys/virthba/Kconfig             |   13 -
 drivers/staging/unisys/virthba/Makefile            |   12 -
 drivers/staging/unisys/virthba/virthba.c           | 1572 --------------------
 drivers/staging/unisys/virthba/virthba.h           |   27 -
 drivers/staging/unisys/virtpci/Kconfig             |   10 -
 drivers/staging/unisys/virtpci/Makefile            |   10 -
 drivers/staging/unisys/virtpci/virtpci.c           | 1394 -----------------
 drivers/staging/unisys/virtpci/virtpci.h           |  103 --
 .../unisys/visorchannel/visorchannel_funcs.c       |    6 +-
 drivers/staging/unisys/visorchipset/file.c         |    6 +-
 drivers/staging/unisys/visorchipset/globals.h      |    1 -
 drivers/staging/unisys/visorchipset/parser.c       |   40 +-
 drivers/staging/unisys/visorchipset/parser.h       |   10 +-
 drivers/staging/unisys/visorchipset/visorchipset.h |   42 +-
 .../unisys/visorchipset/visorchipset_main.c        |  200 ++-
 drivers/staging/vt6655/device_main.c               |   21 +-
 79 files changed, 753 insertions(+), 6461 deletions(-)
 delete mode 100644 drivers/staging/unisys/uislib/Kconfig
 delete mode 100644 drivers/staging/unisys/uislib/Makefile
 delete mode 100644 drivers/staging/unisys/uislib/uislib.c
 delete mode 100644 drivers/staging/unisys/uislib/uisqueue.c
 delete mode 100644 drivers/staging/unisys/uislib/uisthread.c
 delete mode 100644 drivers/staging/unisys/uislib/uisutils.c
 delete mode 100644 drivers/staging/unisys/virthba/Kconfig
 delete mode 100644 drivers/staging/unisys/virthba/Makefile
 delete mode 100644 drivers/staging/unisys/virthba/virthba.c
 delete mode 100644 drivers/staging/unisys/virthba/virthba.h
 delete mode 100644 drivers/staging/unisys/virtpci/Kconfig
 delete mode 100644 drivers/staging/unisys/virtpci/Makefile
 delete mode 100644 drivers/staging/unisys/virtpci/virtpci.c
 delete mode 100644 drivers/staging/unisys/virtpci/virtpci.h
Merging char-misc/char-misc-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge char-misc/char-misc-next
Already up-to-date.
Merging extcon/extcon-next (2bfc82f84b2d extcon: adc-jack: Remove the unneeded num_cables field)
$ git merge extcon/extcon-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mfd/arizona.txt |   6 +
 drivers/extcon/Kconfig                            |  21 +-
 drivers/extcon/Makefile                           |   1 +
 drivers/extcon/extcon-adc-jack.c                  |  12 -
 drivers/extcon/extcon-arizona.c                   |  50 ++-
 drivers/extcon/extcon-axp288.c                    | 385 ++++++++++++++++++++++
 drivers/extcon/extcon-max14577.c                  |  19 +-
 drivers/extcon/extcon-max77693.c                  |  66 ++--
 drivers/extcon/extcon-max77843.c                  |  43 +--
 drivers/extcon/extcon-max8997.c                   |  10 +-
 drivers/extcon/extcon-rt8973a.c                   |  22 +-
 drivers/extcon/extcon.c                           |  27 +-
 include/dt-bindings/mfd/arizona.h                 |   4 +
 include/linux/extcon.h                            |  11 +-
 include/linux/mfd/arizona/pdata.h                 |   3 +
 include/linux/mfd/axp20x.h                        |   5 +
 16 files changed, 527 insertions(+), 158 deletions(-)
 create mode 100644 drivers/extcon/extcon-axp288.c
Merging kdbus/kdbus (9fb9cd0f4434 kdbus: avoid the use of struct timespec)
$ git merge kdbus/kdbus
Resolved 'Documentation/Makefile' using previous resolution.
Auto-merging tools/testing/selftests/Makefile
Auto-merging init/Kconfig
Auto-merging include/uapi/linux/magic.h
Auto-merging include/uapi/linux/Kbuild
Auto-merging Makefile
Auto-merging MAINTAINERS
Auto-merging Documentation/ioctl/ioctl-number.txt
Auto-merging Documentation/Makefile
CONFLICT (content): Merge conflict in Documentation/Makefile
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 4a01b6e12859] Merge remote-tracking branch 'kdbus/kdbus'
$ git diff -M --stat --summary HEAD^..
 Documentation/Makefile                            |    2 +-
 Documentation/ioctl/ioctl-number.txt              |    1 +
 Documentation/kdbus/.gitignore                    |    2 +
 Documentation/kdbus/Makefile                      |   40 +
 Documentation/kdbus/kdbus.bus.xml                 |  359 ++++
 Documentation/kdbus/kdbus.connection.xml          | 1250 ++++++++++++
 Documentation/kdbus/kdbus.endpoint.xml            |  429 ++++
 Documentation/kdbus/kdbus.fs.xml                  |  124 ++
 Documentation/kdbus/kdbus.item.xml                |  839 ++++++++
 Documentation/kdbus/kdbus.match.xml               |  555 ++++++
 Documentation/kdbus/kdbus.message.xml             | 1276 ++++++++++++
 Documentation/kdbus/kdbus.name.xml                |  711 +++++++
 Documentation/kdbus/kdbus.policy.xml              |  406 ++++
 Documentation/kdbus/kdbus.pool.xml                |  326 +++
 Documentation/kdbus/kdbus.xml                     | 1012 ++++++++++
 Documentation/kdbus/stylesheet.xsl                |   16 +
 MAINTAINERS                                       |   13 +
 Makefile                                          |    1 +
 include/uapi/linux/Kbuild                         |    1 +
 include/uapi/linux/kdbus.h                        |  979 +++++++++
 include/uapi/linux/magic.h                        |    2 +
 init/Kconfig                                      |   13 +
 ipc/Makefile                                      |    2 +-
 ipc/kdbus/Makefile                                |   22 +
 ipc/kdbus/bus.c                                   |  560 ++++++
 ipc/kdbus/bus.h                                   |  101 +
 ipc/kdbus/connection.c                            | 2214 +++++++++++++++++++++
 ipc/kdbus/connection.h                            |  257 +++
 ipc/kdbus/domain.c                                |  296 +++
 ipc/kdbus/domain.h                                |   77 +
 ipc/kdbus/endpoint.c                              |  275 +++
 ipc/kdbus/endpoint.h                              |   67 +
 ipc/kdbus/fs.c                                    |  510 +++++
 ipc/kdbus/fs.h                                    |   28 +
 ipc/kdbus/handle.c                                |  617 ++++++
 ipc/kdbus/handle.h                                |   85 +
 ipc/kdbus/item.c                                  |  339 ++++
 ipc/kdbus/item.h                                  |   64 +
 ipc/kdbus/limits.h                                |   64 +
 ipc/kdbus/main.c                                  |  125 ++
 ipc/kdbus/match.c                                 |  559 ++++++
 ipc/kdbus/match.h                                 |   35 +
 ipc/kdbus/message.c                               |  616 ++++++
 ipc/kdbus/message.h                               |  133 ++
 ipc/kdbus/metadata.c                              | 1159 +++++++++++
 ipc/kdbus/metadata.h                              |   57 +
 ipc/kdbus/names.c                                 |  772 +++++++
 ipc/kdbus/names.h                                 |   74 +
 ipc/kdbus/node.c                                  |  910 +++++++++
 ipc/kdbus/node.h                                  |   84 +
 ipc/kdbus/notify.c                                |  248 +++
 ipc/kdbus/notify.h                                |   30 +
 ipc/kdbus/policy.c                                |  489 +++++
 ipc/kdbus/policy.h                                |   51 +
 ipc/kdbus/pool.c                                  |  728 +++++++
 ipc/kdbus/pool.h                                  |   46 +
 ipc/kdbus/queue.c                                 |  678 +++++++
 ipc/kdbus/queue.h                                 |   92 +
 ipc/kdbus/reply.c                                 |  257 +++
 ipc/kdbus/reply.h                                 |   68 +
 ipc/kdbus/util.c                                  |  201 ++
 ipc/kdbus/util.h                                  |   74 +
 samples/Kconfig                                   |    7 +
 samples/Makefile                                  |    3 +-
 samples/kdbus/.gitignore                          |    1 +
 samples/kdbus/Makefile                            |    9 +
 samples/kdbus/kdbus-api.h                         |  114 ++
 samples/kdbus/kdbus-workers.c                     | 1326 ++++++++++++
 tools/testing/selftests/Makefile                  |    1 +
 tools/testing/selftests/kdbus/.gitignore          |    1 +
 tools/testing/selftests/kdbus/Makefile            |   48 +
 tools/testing/selftests/kdbus/kdbus-enum.c        |   94 +
 tools/testing/selftests/kdbus/kdbus-enum.h        |   14 +
 tools/testing/selftests/kdbus/kdbus-test.c        |  923 +++++++++
 tools/testing/selftests/kdbus/kdbus-test.h        |   85 +
 tools/testing/selftests/kdbus/kdbus-util.c        | 1615 +++++++++++++++
 tools/testing/selftests/kdbus/kdbus-util.h        |  222 +++
 tools/testing/selftests/kdbus/test-activator.c    |  318 +++
 tools/testing/selftests/kdbus/test-attach-flags.c |  750 +++++++
 tools/testing/selftests/kdbus/test-benchmark.c    |  451 +++++
 tools/testing/selftests/kdbus/test-bus.c          |  175 ++
 tools/testing/selftests/kdbus/test-chat.c         |  122 ++
 tools/testing/selftests/kdbus/test-connection.c   |  616 ++++++
 tools/testing/selftests/kdbus/test-daemon.c       |   65 +
 tools/testing/selftests/kdbus/test-endpoint.c     |  341 ++++
 tools/testing/selftests/kdbus/test-fd.c           |  789 ++++++++
 tools/testing/selftests/kdbus/test-free.c         |   64 +
 tools/testing/selftests/kdbus/test-match.c        |  441 ++++
 tools/testing/selftests/kdbus/test-message.c      |  731 +++++++
 tools/testing/selftests/kdbus/test-metadata-ns.c  |  506 +++++
 tools/testing/selftests/kdbus/test-monitor.c      |  176 ++
 tools/testing/selftests/kdbus/test-names.c        |  194 ++
 tools/testing/selftests/kdbus/test-policy-ns.c    |  632 ++++++
 tools/testing/selftests/kdbus/test-policy-priv.c  | 1269 ++++++++++++
 tools/testing/selftests/kdbus/test-policy.c       |   80 +
 tools/testing/selftests/kdbus/test-sync.c         |  369 ++++
 tools/testing/selftests/kdbus/test-timeout.c      |   99 +
 97 files changed, 34069 insertions(+), 3 deletions(-)
 create mode 100644 Documentation/kdbus/.gitignore
 create mode 100644 Documentation/kdbus/Makefile
 create mode 100644 Documentation/kdbus/kdbus.bus.xml
 create mode 100644 Documentation/kdbus/kdbus.connection.xml
 create mode 100644 Documentation/kdbus/kdbus.endpoint.xml
 create mode 100644 Documentation/kdbus/kdbus.fs.xml
 create mode 100644 Documentation/kdbus/kdbus.item.xml
 create mode 100644 Documentation/kdbus/kdbus.match.xml
 create mode 100644 Documentation/kdbus/kdbus.message.xml
 create mode 100644 Documentation/kdbus/kdbus.name.xml
 create mode 100644 Documentation/kdbus/kdbus.policy.xml
 create mode 100644 Documentation/kdbus/kdbus.pool.xml
 create mode 100644 Documentation/kdbus/kdbus.xml
 create mode 100644 Documentation/kdbus/stylesheet.xsl
 create mode 100644 include/uapi/linux/kdbus.h
 create mode 100644 ipc/kdbus/Makefile
 create mode 100644 ipc/kdbus/bus.c
 create mode 100644 ipc/kdbus/bus.h
 create mode 100644 ipc/kdbus/connection.c
 create mode 100644 ipc/kdbus/connection.h
 create mode 100644 ipc/kdbus/domain.c
 create mode 100644 ipc/kdbus/domain.h
 create mode 100644 ipc/kdbus/endpoint.c
 create mode 100644 ipc/kdbus/endpoint.h
 create mode 100644 ipc/kdbus/fs.c
 create mode 100644 ipc/kdbus/fs.h
 create mode 100644 ipc/kdbus/handle.c
 create mode 100644 ipc/kdbus/handle.h
 create mode 100644 ipc/kdbus/item.c
 create mode 100644 ipc/kdbus/item.h
 create mode 100644 ipc/kdbus/limits.h
 create mode 100644 ipc/kdbus/main.c
 create mode 100644 ipc/kdbus/match.c
 create mode 100644 ipc/kdbus/match.h
 create mode 100644 ipc/kdbus/message.c
 create mode 100644 ipc/kdbus/message.h
 create mode 100644 ipc/kdbus/metadata.c
 create mode 100644 ipc/kdbus/metadata.h
 create mode 100644 ipc/kdbus/names.c
 create mode 100644 ipc/kdbus/names.h
 create mode 100644 ipc/kdbus/node.c
 create mode 100644 ipc/kdbus/node.h
 create mode 100644 ipc/kdbus/notify.c
 create mode 100644 ipc/kdbus/notify.h
 create mode 100644 ipc/kdbus/policy.c
 create mode 100644 ipc/kdbus/policy.h
 create mode 100644 ipc/kdbus/pool.c
 create mode 100644 ipc/kdbus/pool.h
 create mode 100644 ipc/kdbus/queue.c
 create mode 100644 ipc/kdbus/queue.h
 create mode 100644 ipc/kdbus/reply.c
 create mode 100644 ipc/kdbus/reply.h
 create mode 100644 ipc/kdbus/util.c
 create mode 100644 ipc/kdbus/util.h
 create mode 100644 samples/kdbus/.gitignore
 create mode 100644 samples/kdbus/Makefile
 create mode 100644 samples/kdbus/kdbus-api.h
 create mode 100644 samples/kdbus/kdbus-workers.c
 create mode 100644 tools/testing/selftests/kdbus/.gitignore
 create mode 100644 tools/testing/selftests/kdbus/Makefile
 create mode 100644 tools/testing/selftests/kdbus/kdbus-enum.c
 create mode 100644 tools/testing/selftests/kdbus/kdbus-enum.h
 create mode 100644 tools/testing/selftests/kdbus/kdbus-test.c
 create mode 100644 tools/testing/selftests/kdbus/kdbus-test.h
 create mode 100644 tools/testing/selftests/kdbus/kdbus-util.c
 create mode 100644 tools/testing/selftests/kdbus/kdbus-util.h
 create mode 100644 tools/testing/selftests/kdbus/test-activator.c
 create mode 100644 tools/testing/selftests/kdbus/test-attach-flags.c
 create mode 100644 tools/testing/selftests/kdbus/test-benchmark.c
 create mode 100644 tools/testing/selftests/kdbus/test-bus.c
 create mode 100644 tools/testing/selftests/kdbus/test-chat.c
 create mode 100644 tools/testing/selftests/kdbus/test-connection.c
 create mode 100644 tools/testing/selftests/kdbus/test-daemon.c
 create mode 100644 tools/testing/selftests/kdbus/test-endpoint.c
 create mode 100644 tools/testing/selftests/kdbus/test-fd.c
 create mode 100644 tools/testing/selftests/kdbus/test-free.c
 create mode 100644 tools/testing/selftests/kdbus/test-match.c
 create mode 100644 tools/testing/selftests/kdbus/test-message.c
 create mode 100644 tools/testing/selftests/kdbus/test-metadata-ns.c
 create mode 100644 tools/testing/selftests/kdbus/test-monitor.c
 create mode 100644 tools/testing/selftests/kdbus/test-names.c
 create mode 100644 tools/testing/selftests/kdbus/test-policy-ns.c
 create mode 100644 tools/testing/selftests/kdbus/test-policy-priv.c
 create mode 100644 tools/testing/selftests/kdbus/test-policy.c
 create mode 100644 tools/testing/selftests/kdbus/test-sync.c
 create mode 100644 tools/testing/selftests/kdbus/test-timeout.c
Merging cgroup/for-next (d0f702e648dc cgroup: fix some comment typos)
$ git merge cgroup/for-next
Merge made by the 'recursive' strategy.
 kernel/cgroup.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Merging scsi/for-next (118c855b5623 3w-9xxx: fix command completion race)
$ git merge scsi/for-next
Already up-to-date.
Merging target-updates/for-next (cce0b8f8b7cf target: target_core_configfs.h is not needed in fabric drivers)
$ git merge target-updates/for-next
Auto-merging drivers/usb/gadget/legacy/tcm_usb_gadget.c
Merge made by the 'recursive' strategy.
 Documentation/target/tcm_mod_builder.py        | 277 +-----------------------
 Documentation/target/tcm_mod_builder.txt       |   4 +-
 Documentation/target/tcmu-design.txt           |   2 +-
 drivers/infiniband/ulp/isert/ib_isert.c        |   6 +-
 drivers/infiniband/ulp/srpt/ib_srpt.c          | 181 +++-------------
 drivers/infiniband/ulp/srpt/ib_srpt.h          |  23 +-
 drivers/scsi/qla2xxx/qla_target.c              |  52 ++---
 drivers/scsi/qla2xxx/qla_target.h              |   1 -
 drivers/scsi/qla2xxx/tcm_qla2xxx.c             | 219 ++-----------------
 drivers/scsi/qla2xxx/tcm_qla2xxx.h             |   6 +-
 drivers/target/iscsi/iscsi_target.c            |  37 ++--
 drivers/target/iscsi/iscsi_target_configfs.c   | 136 +++---------
 drivers/target/iscsi/iscsi_target_erl0.c       |  53 -----
 drivers/target/iscsi/iscsi_target_erl0.h       |   1 -
 drivers/target/iscsi/iscsi_target_login.c      |  58 +----
 drivers/target/iscsi/iscsi_target_login.h      |   1 -
 drivers/target/iscsi/iscsi_target_parameters.c | 267 +----------------------
 drivers/target/iscsi/iscsi_target_parameters.h |  11 +-
 drivers/target/iscsi/iscsi_target_tpg.c        |   4 +-
 drivers/target/iscsi/iscsi_target_util.c       |  53 +----
 drivers/target/iscsi/iscsi_target_util.h       |   1 -
 drivers/target/loopback/tcm_loop.c             | 177 +---------------
 drivers/target/loopback/tcm_loop.h             |   9 -
 drivers/target/sbp/sbp_target.c                | 173 +--------------
 drivers/target/sbp/sbp_target.h                |   9 -
 drivers/target/target_core_alua.c              |   1 -
 drivers/target/target_core_configfs.c          |  97 +++------
 drivers/target/target_core_device.c            |  30 +--
 drivers/target/target_core_fabric_configfs.c   | 102 ++++-----
 drivers/target/target_core_fabric_lib.c        | 283 ++++++++++++-------------
 drivers/target/target_core_file.c              | 136 +++---------
 drivers/target/target_core_file.h              |   6 -
 drivers/target/target_core_hba.c               |   1 -
 drivers/target/target_core_internal.h          |  17 +-
 drivers/target/target_core_pr.c                |  90 +++-----
 drivers/target/target_core_rd.c                |  20 +-
 drivers/target/target_core_sbc.c               | 230 +++++++++-----------
 drivers/target/target_core_spc.c               |  24 +--
 drivers/target/target_core_stat.c              |   1 -
 drivers/target/target_core_tmr.c               |  24 +--
 drivers/target/target_core_tpg.c               | 206 +++++++-----------
 drivers/target/target_core_transport.c         | 133 +++++++-----
 drivers/target/target_core_ua.c                |   1 -
 drivers/target/target_core_user.c              | 221 +++++++++++--------
 drivers/target/target_core_xcopy.c             |  23 +-
 drivers/target/tcm_fc/tcm_fc.h                 |   3 +-
 drivers/target/tcm_fc/tfc_cmd.c                |  11 +-
 drivers/target/tcm_fc/tfc_conf.c               | 105 ++-------
 drivers/target/tcm_fc/tfc_io.c                 |   1 -
 drivers/target/tcm_fc/tfc_sess.c               |   1 -
 drivers/usb/gadget/legacy/tcm_usb_gadget.c     | 212 ++----------------
 drivers/usb/gadget/legacy/tcm_usb_gadget.h     |  12 --
 drivers/vhost/scsi.c                           | 225 +-------------------
 drivers/xen/xen-scsiback.c                     | 159 +-------------
 include/linux/crc-t10dif.h                     |   1 +
 include/target/iscsi/iscsi_target_core.h       |  12 +-
 include/target/target_core_backend.h           |   8 +-
 include/target/target_core_base.h              |  26 +--
 include/target/target_core_configfs.h          |  59 ++----
 include/target/target_core_fabric.h            |  62 +-----
 lib/crc-t10dif.c                               |  13 +-
 61 files changed, 978 insertions(+), 3339 deletions(-)
Merging target-merge/for-next-merge (b28a960c42fc Linux 3.14-rc2)
$ git merge target-merge/for-next-merge
Already up-to-date.
Merging pinctrl/for-next (b787f68c36d4 Linux 4.1-rc1)
$ git merge pinctrl/for-next
Already up-to-date.
Merging vhost/linux-next (f4aaa799cf9a tun, macvtap: higher order allocations for skbs)
$ git merge vhost/linux-next
Auto-merging include/linux/pci.h
Auto-merging drivers/pci/quirks.c
Auto-merging drivers/pci/probe.c
Auto-merging drivers/pci/pci.h
Auto-merging drivers/pci/pci.c
Auto-merging drivers/net/tun.c
Auto-merging drivers/net/macvtap.c
Merge made by the 'recursive' strategy.
 drivers/net/macvtap.c              |  2 +-
 drivers/net/tun.c                  |  2 +-
 drivers/ntb/ntb_hw.c               |  2 --
 drivers/pci/msi.c                  | 57 ++++++++------------------------------
 drivers/pci/pci-driver.c           |  2 --
 drivers/pci/pci.c                  | 33 ----------------------
 drivers/pci/pci.h                  | 21 ++++++++++++++
 drivers/pci/probe.c                | 18 ++++++++++++
 drivers/pci/quirks.c               |  2 --
 drivers/virtio/virtio_pci_common.c |  3 --
 include/linux/pci.h                |  5 ----
 11 files changed, 53 insertions(+), 94 deletions(-)
Merging remoteproc/for-next (172e6ab1caff remoteproc: fix various checkpatch warnings)
$ git merge remoteproc/for-next
Merge made by the 'recursive' strategy.
 drivers/remoteproc/da8xx_remoteproc.c    |  3 +--
 drivers/remoteproc/remoteproc_core.c     | 27 +++++++++------------------
 drivers/remoteproc/remoteproc_internal.h |  2 +-
 drivers/remoteproc/ste_modem_rproc.c     |  4 ++--
 4 files changed, 13 insertions(+), 23 deletions(-)
Merging rpmsg/for-next (b1b9891441fa rpmsg: use less buffers when vrings are small)
$ git merge rpmsg/for-next
Already up-to-date.
Merging gpio/for-next (03daa6f82f2b Revert "gpio: sch: use uapi/linux/pci_ids.h directly")
$ git merge gpio/for-next
Already up-to-date.
Merging dma-mapping/dma-mapping-next (5ebe6afaf005 Linux 4.1-rc2)
$ git merge dma-mapping/dma-mapping-next
Already up-to-date.
Merging pwm/for-next (c264f1110d27 pwm: Remove __init initializer for pwm_add_table())
$ git merge pwm/for-next
Already up-to-date.
Merging dma-buf/for-next (5ebe6afaf005 Linux 4.1-rc2)
$ git merge dma-buf/for-next
Already up-to-date.
Merging userns/for-next (e0c9c0afd2fc mnt: Update detach_mounts to leave mounts connected)
$ git merge userns/for-next
Already up-to-date.
Merging ktest/for-next (7c2c49eceb79 ktest: Place quotes around item variable)
$ git merge ktest/for-next
Already up-to-date.
Merging clk/clk-next (c02f699e22fa Merge branch 'clk-fixes' into clk-next)
$ git merge clk/clk-next
Auto-merging drivers/clk/clk.c
Merge made by the 'recursive' strategy.
 drivers/clk/at91/pmc.c         |    2 +-
 drivers/clk/clk.c              | 1993 ++++++++++++++++++++--------------------
 drivers/clk/qcom/gcc-msm8916.c |    4 +-
 3 files changed, 989 insertions(+), 1010 deletions(-)
Merging random/dev (7185ad2672a7 crypto: memzero_explicit - make sure to clear out sensitive data)
$ git merge random/dev
Already up-to-date.
Merging aio/master (5f785de58873 aio: Skip timer for io_getevents if timeout=0)
$ git merge aio/master
Already up-to-date.
Merging llvmlinux/for-next (25d4aee23af2 arm: LLVMLinux: Use global stack register variable for percpu)
$ git merge llvmlinux/for-next
Merge made by the 'recursive' strategy.
Merging kselftest/next (b787f68c36d4 Linux 4.1-rc1)
$ git merge kselftest/next
Already up-to-date.
Merging y2038/y2038 (ed8c2241c1ae coredump: Use 64bit time for unix time of coredump)
$ git merge y2038/y2038
Resolved 'drivers/staging/media/lirc/lirc_parallel.c' using previous resolution.
Auto-merging kernel/cpuset.c
Auto-merging fs/coredump.c
Auto-merging drivers/staging/media/lirc/lirc_serial.c
Auto-merging drivers/staging/media/lirc/lirc_sasem.c
Auto-merging drivers/staging/media/lirc/lirc_parallel.c
CONFLICT (content): Merge conflict in drivers/staging/media/lirc/lirc_parallel.c
Auto-merging drivers/staging/gdm72xx/gdm_sdio.c
Auto-merging drivers/staging/ft1000/ft1000-usb/ft1000_hw.c
Auto-merging drivers/staging/ft1000/ft1000-usb/ft1000_debug.c
Auto-merging drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 00bfa652b945] Merge remote-tracking branch 'y2038/y2038'
$ git diff -M --stat --summary HEAD^..
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c |  4 +-
 drivers/staging/ft1000/ft1000-usb/ft1000_debug.c |  4 +-
 drivers/staging/ft1000/ft1000-usb/ft1000_hw.c    |  4 +-
 drivers/staging/ft1000/ft1000.h                  |  4 +-
 drivers/staging/gdm72xx/gdm_sdio.c               | 13 +++---
 drivers/staging/gdm72xx/gdm_sdio.h               |  4 +-
 drivers/staging/media/lirc/lirc_parallel.c       | 35 +++++++----------
 drivers/staging/media/lirc/lirc_sasem.c          | 20 +++++-----
 drivers/staging/media/lirc/lirc_serial.c         | 50 ++++++++----------------
 fs/coredump.c                                    |  8 ++--
 kernel/cpuset.c                                  | 12 ++++--
 11 files changed, 68 insertions(+), 90 deletions(-)
Merging luto-misc/next (a6c5170d1ede Merge branch 'for-4.0' of git://linux-nfs.org/~bfields/linux)
$ git merge luto-misc/next
Already up-to-date.
Merging access_once/linux-next (bc465aa9d045 Linux 4.0-rc5)
$ git merge access_once/linux-next
Already up-to-date.
Merging livepatching/for-next (fd683e86d17e Merge branch 'for-4.2/kaslr' into for-next)
$ git merge livepatching/for-next
Merge made by the 'recursive' strategy.
 arch/x86/include/asm/livepatch.h   | 1 +
 arch/x86/include/asm/setup.h       | 7 +++++++
 arch/x86/kernel/machine_kexec_64.c | 3 ++-
 arch/x86/kernel/setup.c            | 2 +-
 kernel/livepatch/core.c            | 5 +++--
 5 files changed, 14 insertions(+), 4 deletions(-)
Merging coresight/next (48582dcacc6b coresight: fix typo in of_coresight.c)
$ git merge coresight/next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/arm/coresight.txt          |  13 ++-
 drivers/hwtracing/coresight/coresight-etb10.c      |  79 +++++++++------
 drivers/hwtracing/coresight/coresight-etm.h        |   4 +-
 drivers/hwtracing/coresight/coresight-etm3x.c      | 112 ++++++++++-----------
 drivers/hwtracing/coresight/coresight-funnel.c     |  61 +++++++----
 drivers/hwtracing/coresight/coresight-replicator.c |  71 ++++++++++++-
 drivers/hwtracing/coresight/coresight-tmc.c        |  31 ++----
 drivers/hwtracing/coresight/coresight-tpiu.c       |  60 ++++++++---
 drivers/hwtracing/coresight/of_coresight.c         |   2 +-
 9 files changed, 281 insertions(+), 152 deletions(-)
Merging akpm-current/current (ca1572c6e189 mm: meminit: Reduce number of times pageblocks are set during struct page init -fix)
$ git merge --no-ff akpm-current/current
Resolved 'arch/x86/kernel/machine_kexec_64.c' using previous resolution.
Removing lib/find_last_bit.c
Removing include/linux/compiler-gcc5.h
Removing include/linux/compiler-gcc4.h
Removing include/linux/compiler-gcc3.h
Auto-merging include/linux/compiler-gcc.h
Auto-merging fs/cifs/file.c
Auto-merging drivers/rtc/Makefile
Auto-merging drivers/rtc/Kconfig
Auto-merging arch/x86/kernel/machine_kexec_64.c
CONFLICT (content): Merge conflict in arch/x86/kernel/machine_kexec_64.c
Auto-merging arch/x86/Kconfig
Auto-merging MAINTAINERS
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master dd40ac28b3a8] Merge branch 'akpm-current/current'
$ git diff -M --stat --summary HEAD^..
 .../devicetree/bindings/rtc/abracon,abx80x.txt     |  32 ++
 Documentation/filesystems/vfat.txt                 |  10 +
 Documentation/kasan.txt                            |   8 +-
 Documentation/lockup-watchdogs.txt                 |  18 +
 Documentation/printk-formats.txt                   |   8 +
 Documentation/sysctl/kernel.txt                    |  21 ++
 MAINTAINERS                                        |   3 +-
 arch/alpha/include/asm/mm-arch-hooks.h             |  15 +
 arch/alpha/include/uapi/asm/mman.h                 |   1 +
 arch/arc/include/asm/mm-arch-hooks.h               |  15 +
 arch/arm/include/asm/hugetlb.h                     |   4 -
 arch/arm/include/asm/mm-arch-hooks.h               |  15 +
 arch/arm/include/asm/pgtable-3level.h              |   1 +
 arch/arm/mm/hugetlbpage.c                          |   5 -
 arch/arm64/include/asm/hugetlb.h                   |   4 -
 arch/arm64/include/asm/mm-arch-hooks.h             |  15 +
 arch/arm64/include/asm/pgtable.h                   |   2 +
 arch/arm64/mm/hugetlbpage.c                        |   7 -
 arch/avr32/include/asm/mm-arch-hooks.h             |  15 +
 arch/blackfin/include/asm/mm-arch-hooks.h          |  15 +
 arch/c6x/include/asm/mm-arch-hooks.h               |  15 +
 arch/cris/include/asm/mm-arch-hooks.h              |  15 +
 arch/frv/include/asm/mm-arch-hooks.h               |  15 +
 arch/frv/include/asm/sections.h                    |   6 -
 arch/hexagon/include/asm/mm-arch-hooks.h           |  15 +
 arch/ia64/include/asm/hugetlb.h                    |   4 -
 arch/ia64/include/asm/mm-arch-hooks.h              |  15 +
 arch/ia64/mm/hugetlbpage.c                         |   5 -
 arch/ia64/mm/numa.c                                |  19 +-
 arch/m32r/include/asm/mm-arch-hooks.h              |  15 +
 arch/m68k/include/asm/mm-arch-hooks.h              |  15 +
 arch/metag/include/asm/hugetlb.h                   |   4 -
 arch/metag/include/asm/mm-arch-hooks.h             |  15 +
 arch/metag/mm/hugetlbpage.c                        |   5 -
 arch/microblaze/include/asm/mm-arch-hooks.h        |  15 +
 arch/mips/include/asm/hugetlb.h                    |   4 -
 arch/mips/include/asm/mm-arch-hooks.h              |  15 +
 arch/mips/include/uapi/asm/mman.h                  |   1 +
 arch/mips/mm/hugetlbpage.c                         |   5 -
 arch/mn10300/include/asm/mm-arch-hooks.h           |  15 +
 arch/nios2/include/asm/mm-arch-hooks.h             |  15 +
 arch/openrisc/include/asm/mm-arch-hooks.h          |  15 +
 arch/parisc/include/asm/mm-arch-hooks.h            |  15 +
 arch/parisc/include/uapi/asm/mman.h                |   1 +
 arch/powerpc/include/asm/hugetlb.h                 |   5 -
 arch/powerpc/include/asm/mm-arch-hooks.h           |  28 ++
 arch/powerpc/include/asm/mmu_context.h             |  23 +-
 arch/powerpc/include/asm/pgtable-ppc64.h           |   2 +
 arch/powerpc/mm/hugetlbpage.c                      |   5 -
 arch/s390/include/asm/hugetlb.h                    |   1 -
 arch/s390/include/asm/mm-arch-hooks.h              |  15 +
 arch/s390/mm/hugetlbpage.c                         |   5 -
 arch/score/include/asm/mm-arch-hooks.h             |  15 +
 arch/sh/include/asm/hugetlb.h                      |   3 -
 arch/sh/include/asm/mm-arch-hooks.h                |  15 +
 arch/sh/mm/hugetlbpage.c                           |   5 -
 arch/sparc/include/asm/hugetlb.h                   |   4 -
 arch/sparc/include/asm/mm-arch-hooks.h             |  15 +
 arch/sparc/include/asm/pgtable_64.h                |   9 +
 arch/sparc/mm/hugetlbpage.c                        |   5 -
 arch/tile/include/asm/hugetlb.h                    |   4 -
 arch/tile/include/asm/mm-arch-hooks.h              |  15 +
 arch/tile/mm/hugetlbpage.c                         |   5 -
 arch/um/include/asm/mm-arch-hooks.h                |  15 +
 arch/unicore32/include/asm/mm-arch-hooks.h         |  15 +
 arch/x86/Kconfig                                   |   3 +-
 arch/x86/include/asm/hugetlb.h                     |   3 -
 arch/x86/include/asm/mm-arch-hooks.h               |  15 +
 arch/x86/include/asm/mtrr.h                        |   7 +-
 arch/x86/include/asm/pgtable.h                     |   5 +
 arch/x86/include/uapi/asm/mtrr.h                   |  12 +-
 arch/x86/kernel/cpu/mtrr/generic.c                 | 192 ++++++----
 arch/x86/kernel/machine_kexec_64.c                 |   1 +
 arch/x86/mm/pat.c                                  |   4 +-
 arch/x86/mm/pgtable.c                              |  53 ++-
 arch/xtensa/include/asm/mm-arch-hooks.h            |  15 +
 arch/xtensa/include/uapi/asm/mman.h                |   1 +
 block/genhd.c                                      |   2 +-
 drivers/base/node.c                                |   6 +-
 drivers/block/zram/Kconfig                         |  10 +-
 drivers/block/zram/zram_drv.c                      |  27 +-
 drivers/memstick/host/jmb38x_ms.c                  |  12 +-
 drivers/memstick/host/r592.c                       |  10 +-
 drivers/rtc/Kconfig                                |  10 +
 drivers/rtc/Makefile                               |   1 +
 drivers/rtc/class.c                                |  24 ++
 drivers/rtc/interface.c                            |  13 +-
 drivers/rtc/rtc-abx80x.c                           | 307 +++++++++++++++
 drivers/rtc/rtc-ds1307.c                           |  12 +-
 drivers/rtc/rtc-omap.c                             |  14 +-
 fs/adfs/super.c                                    |   2 +-
 fs/affs/amigaffs.c                                 |   2 +-
 fs/affs/inode.c                                    |   2 +-
 fs/befs/btree.c                                    |   6 +-
 fs/cifs/file.c                                     |   8 +-
 fs/configfs/mount.c                                |   2 +-
 fs/efs/super.c                                     |   2 +-
 fs/ext4/fsync.c                                    |   5 +-
 fs/fat/cache.c                                     |  79 ++--
 fs/fat/dir.c                                       |   2 +-
 fs/fat/fat.h                                       |   6 +-
 fs/fat/file.c                                      |  61 +++
 fs/fat/inode.c                                     |  75 +++-
 fs/hugetlbfs/inode.c                               |   1 -
 fs/jbd2/journal.c                                  |  11 +-
 fs/jbd2/transaction.c                              |  20 +-
 fs/minix/inode.c                                   |   2 +-
 fs/mpage.c                                         |  23 +-
 fs/nilfs2/btree.c                                  |   2 +-
 fs/notify/fanotify/fanotify_user.c                 |  25 +-
 fs/ocfs2/alloc.c                                   | 282 ++++++++------
 fs/ocfs2/aops.c                                    |  37 +-
 fs/ocfs2/buffer_head_io.c                          |   6 +
 fs/ocfs2/cluster/heartbeat.c                       |  49 +--
 fs/ocfs2/cluster/masklog.c                         |  34 ++
 fs/ocfs2/cluster/masklog.h                         |  42 +--
 fs/ocfs2/dir.c                                     |  90 ++---
 fs/ocfs2/dlm/dlmcommon.h                           |   3 +-
 fs/ocfs2/dlm/dlmmaster.c                           |  36 +-
 fs/ocfs2/dlm/dlmthread.c                           |  33 ++
 fs/ocfs2/extent_map.c                              |  22 +-
 fs/ocfs2/inode.c                                   |  40 +-
 fs/ocfs2/journal.c                                 |  49 ++-
 fs/ocfs2/localalloc.c                              |   3 +-
 fs/ocfs2/move_extents.c                            |   8 +-
 fs/ocfs2/namei.c                                   |  46 ++-
 fs/ocfs2/namei.h                                   |   4 +-
 fs/ocfs2/ocfs2.h                                   |   2 +
 fs/ocfs2/quota_local.c                             |   3 +-
 fs/ocfs2/refcounttree.c                            |  81 ++--
 fs/ocfs2/suballoc.c                                |  90 ++---
 fs/ocfs2/super.c                                   |  67 ++--
 fs/ocfs2/super.h                                   |   8 +-
 fs/ocfs2/xattr.c                                   |  51 ++-
 fs/posix_acl.c                                     |  46 +--
 fs/proc/array.c                                    |   8 +
 fs/reiserfs/super.c                                |   3 +-
 include/linux/compiler-gcc.h                       | 207 +++++++---
 include/linux/compiler-gcc3.h                      |  23 --
 include/linux/compiler-gcc4.h                      |  91 -----
 include/linux/compiler-gcc5.h                      |  67 ----
 include/linux/crc64_ecma.h                         |  56 +++
 include/linux/huge_mm.h                            |   4 +
 include/linux/kexec.h                              |   2 +
 include/linux/memblock.h                           |  18 +
 include/linux/mm-arch-hooks.h                      |  25 ++
 include/linux/mm.h                                 |  48 +--
 include/linux/mmzone.h                             |  23 +-
 include/linux/nilfs2_fs.h                          |   2 +-
 include/linux/nmi.h                                |   3 +
 include/linux/page-flags.h                         | 237 ++++++++----
 include/linux/pagemap.h                            |  25 +-
 include/linux/poison.h                             |   4 +
 include/linux/rmap.h                               |   9 +-
 include/linux/rtc.h                                |   4 +
 include/linux/scatterlist.h                        |   4 +-
 include/linux/slab.h                               |  36 +-
 include/linux/smpboot.h                            |   5 +
 include/linux/string.h                             |   1 +
 include/linux/swap.h                               |   1 +
 include/linux/util_macros.h                        |   2 +-
 include/linux/vm_event_item.h                      |   1 +
 include/uapi/asm-generic/mman-common.h             |   1 +
 ipc/msg.c                                          |   3 +-
 kernel/exit.c                                      |   2 +-
 kernel/smpboot.c                                   |  55 ++-
 kernel/sysctl.c                                    |   7 +
 kernel/watchdog.c                                  |  66 +++-
 lib/Kconfig                                        |   7 +
 lib/Kconfig.kasan                                  |   8 +-
 lib/Makefile                                       |   1 +
 lib/bitmap.c                                       |  32 +-
 lib/crc64_ecma.c                                   | 341 +++++++++++++++++
 lib/find_last_bit.c                                |  41 --
 lib/scatterlist.c                                  |  12 +-
 lib/sort.c                                         |  21 +-
 lib/test-hexdump.c                                 |   6 +-
 lib/vsprintf.c                                     |  20 +-
 mm/Kconfig                                         |  18 +
 mm/bootmem.c                                       |  13 +-
 mm/compaction.c                                    |  25 +-
 mm/filemap.c                                       |  15 +-
 mm/huge_memory.c                                   |  41 +-
 mm/hugetlb.c                                       |   5 +
 mm/hwpoison-inject.c                               |  13 +-
 mm/internal.h                                      |  29 +-
 mm/kasan/kasan.h                                   |   1 -
 mm/ksm.c                                           |   2 +-
 mm/madvise.c                                       | 176 +++++++++
 mm/memblock.c                                      |  34 +-
 mm/memory-failure.c                                |  33 +-
 mm/memory.c                                        |   2 +-
 mm/memory_hotplug.c                                |  11 +-
 mm/migrate.c                                       |   2 +-
 mm/mm_init.c                                       |   9 +-
 mm/mprotect.c                                      |  11 +
 mm/mremap.c                                        |  17 +-
 mm/nobootmem.c                                     |   7 +-
 mm/page_alloc.c                                    | 416 ++++++++++++++++++---
 mm/page_isolation.c                                |   7 +-
 mm/rmap.c                                          |  46 ++-
 mm/shmem.c                                         |   4 +-
 mm/slab.c                                          |  14 +
 mm/slab.h                                          |  10 +
 mm/slab_common.c                                   | 121 ++++--
 mm/slob.c                                          |  13 +
 mm/slub.c                                          |  69 ++++
 mm/swap.c                                          |  44 +++
 mm/swap_state.c                                    |   4 +-
 mm/util.c                                          |  40 +-
 mm/vmscan.c                                        | 126 +++++--
 mm/vmstat.c                                        |   1 +
 mm/zsmalloc.c                                      |   4 -
 mm/zswap.c                                         |   4 +-
 214 files changed, 4271 insertions(+), 1562 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/rtc/abracon,abx80x.txt
 create mode 100644 arch/alpha/include/asm/mm-arch-hooks.h
 create mode 100644 arch/arc/include/asm/mm-arch-hooks.h
 create mode 100644 arch/arm/include/asm/mm-arch-hooks.h
 create mode 100644 arch/arm64/include/asm/mm-arch-hooks.h
 create mode 100644 arch/avr32/include/asm/mm-arch-hooks.h
 create mode 100644 arch/blackfin/include/asm/mm-arch-hooks.h
 create mode 100644 arch/c6x/include/asm/mm-arch-hooks.h
 create mode 100644 arch/cris/include/asm/mm-arch-hooks.h
 create mode 100644 arch/frv/include/asm/mm-arch-hooks.h
 create mode 100644 arch/hexagon/include/asm/mm-arch-hooks.h
 create mode 100644 arch/ia64/include/asm/mm-arch-hooks.h
 create mode 100644 arch/m32r/include/asm/mm-arch-hooks.h
 create mode 100644 arch/m68k/include/asm/mm-arch-hooks.h
 create mode 100644 arch/metag/include/asm/mm-arch-hooks.h
 create mode 100644 arch/microblaze/include/asm/mm-arch-hooks.h
 create mode 100644 arch/mips/include/asm/mm-arch-hooks.h
 create mode 100644 arch/mn10300/include/asm/mm-arch-hooks.h
 create mode 100644 arch/nios2/include/asm/mm-arch-hooks.h
 create mode 100644 arch/openrisc/include/asm/mm-arch-hooks.h
 create mode 100644 arch/parisc/include/asm/mm-arch-hooks.h
 create mode 100644 arch/powerpc/include/asm/mm-arch-hooks.h
 create mode 100644 arch/s390/include/asm/mm-arch-hooks.h
 create mode 100644 arch/score/include/asm/mm-arch-hooks.h
 create mode 100644 arch/sh/include/asm/mm-arch-hooks.h
 create mode 100644 arch/sparc/include/asm/mm-arch-hooks.h
 create mode 100644 arch/tile/include/asm/mm-arch-hooks.h
 create mode 100644 arch/um/include/asm/mm-arch-hooks.h
 create mode 100644 arch/unicore32/include/asm/mm-arch-hooks.h
 create mode 100644 arch/x86/include/asm/mm-arch-hooks.h
 create mode 100644 arch/xtensa/include/asm/mm-arch-hooks.h
 create mode 100644 drivers/rtc/rtc-abx80x.c
 delete mode 100644 include/linux/compiler-gcc3.h
 delete mode 100644 include/linux/compiler-gcc4.h
 delete mode 100644 include/linux/compiler-gcc5.h
 create mode 100644 include/linux/crc64_ecma.h
 create mode 100644 include/linux/mm-arch-hooks.h
 create mode 100644 lib/crc64_ecma.c
 delete mode 100644 lib/find_last_bit.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: arch/unicore32/kernel/fpu-ucf64.c: remove unnecessary KERN_ERR
Applying: printk: improve the description of /dev/kmsg line format
Applying: drivers/w1/w1_int.c: call put_device if device_register fails
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + 105b72ac333d...3ecbc6396a86 akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (3ecbc6396a86 drivers/w1/w1_int.c: call put_device if device_register fails)
$ git merge --no-ff akpm/master
Merge made by the 'recursive' strategy.
 arch/unicore32/kernel/fpu-ucf64.c | 4 ++--
 drivers/w1/w1_int.c               | 3 +--
 kernel/printk/printk.c            | 8 ++++----
 3 files changed, 7 insertions(+), 8 deletions(-)