aboutsummaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: 731befabb1e598780d1b57850b38219e32ed7ba1 (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
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
$ date -R
Tue, 22 Sep 2015 09:41:32 +1000
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at 1f93e4a96c91 Linux 4.3-rc2
Merging origin/master (ac2fc4b9d5b7 Merge tag 'renesas-sh-drivers-for-v4.3' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas)
$ git merge origin/master
Updating 1f93e4a96c91..ac2fc4b9d5b7
Fast-forward
 arch/s390/configs/zfcpdump_defconfig     |   5 --
 arch/s390/include/asm/unistd.h           |  20 -----
 arch/s390/include/uapi/asm/unistd.h      |  21 +++++-
 arch/s390/kernel/compat_signal.c         |  27 ++++++-
 arch/s390/kernel/compat_wrapper.c        |  70 ++++--------------
 arch/s390/kernel/entry.S                 |   2 +
 arch/s390/kernel/perf_cpum_cf.c          |  12 ++-
 arch/s390/kernel/swsusp.S                |  38 +---------
 arch/s390/kernel/syscalls.S              | 121 ++++++++++++++++++-------------
 arch/s390/kernel/vtime.c                 |  12 ++-
 drivers/sh/pm_runtime.c                  |  19 ++---
 include/linux/security.h                 |   2 +-
 tools/testing/selftests/vm/userfaultfd.c |   2 +
 13 files changed, 155 insertions(+), 196 deletions(-)
Merging fixes/master (c7e9ad7da219 Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip)
$ git merge fixes/master
Already up-to-date.
Merging kbuild-current/rc-fixes (3d1450d54a4f Makefile: Force gzip and xz on module install)
$ 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 (7ae85dc7687c ARM: 8425/1: kgdb: Don't try to stop the machine when setting breakpoints)
$ git merge arm-current/fixes
Already up-to-date.
Merging m68k-current/for-linus (1ecb40643a9a m68k/bootinfo: Use kmemdup rather than duplicating its implementation)
$ 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-fixes/fixes (400c47d81ca3 powerpc32: memset: only use dcbz once cache is enabled)
$ git merge powerpc-fixes/fixes
Already up-to-date.
Merging powerpc-merge-mpe/fixes (bc0195aad0da Linux 4.2-rc2)
$ git merge powerpc-merge-mpe/fixes
Already up-to-date.
Merging sparc/master (73958c651fbf sparc64: use ENTRY/ENDPROC in VISsave)
$ git merge sparc/master
Merge made by the 'recursive' strategy.
 arch/sparc/include/uapi/asm/asi.h |  2 +-
 arch/sparc/lib/VISsave.S          | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)
Merging net/master (5eb8f289ac30 geneve: remove vlan-related feature assignment)
$ git merge net/master
Auto-merging drivers/net/ethernet/mellanox/mlx4/en_rx.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/networking/vrf.txt                   |  96 +++++
 Documentation/sysctl/net.txt                       |  16 +-
 MAINTAINERS                                        |   9 +-
 drivers/atm/he.c                                   |   7 +-
 drivers/atm/solos-pci.c                            |  12 +-
 drivers/net/arcnet/arcnet.c                        |   2 +-
 drivers/net/ethernet/arc/emac_arc.c                |   1 +
 drivers/net/ethernet/broadcom/bcmsysport.c         |   1 +
 drivers/net/ethernet/broadcom/bnx2x/bnx2x.h        |   1 +
 drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c   |  20 +-
 drivers/net/ethernet/broadcom/genet/bcmgenet.c     |   1 +
 drivers/net/ethernet/brocade/bna/bna_tx_rx.c       |   2 +
 drivers/net/ethernet/brocade/bna/bna_types.h       |   1 +
 drivers/net/ethernet/brocade/bna/bnad.c            |  29 +-
 drivers/net/ethernet/brocade/bna/bnad.h            |   2 +
 drivers/net/ethernet/brocade/bna/bnad_ethtool.c    |   4 +
 drivers/net/ethernet/chelsio/cxgb4/t4_pci_id_tbl.h |   5 +
 drivers/net/ethernet/emulex/benet/be.h             |   1 +
 drivers/net/ethernet/emulex/benet/be_main.c        |  10 +
 drivers/net/ethernet/freescale/gianfar_ptp.c       |   1 +
 drivers/net/ethernet/marvell/mvneta.c              |   4 +-
 drivers/net/ethernet/mellanox/mlx4/en_rx.c         |   2 -
 drivers/net/ethernet/micrel/ks8851.c               |   1 +
 drivers/net/ethernet/moxa/moxart_ether.c           |   1 +
 drivers/net/ethernet/qlogic/qlcnic/qlcnic.h        |   1 +
 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c   |  18 +-
 drivers/net/ethernet/realtek/8139cp.c              |   5 +-
 drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c  |  11 +-
 drivers/net/fjes/fjes_hw.c                         |   8 +-
 drivers/net/geneve.c                               |   4 -
 drivers/net/irda/ali-ircc.c                        |   6 -
 drivers/net/macvtap.c                              |   4 +-
 drivers/net/phy/mdio-bcm-unimac.c                  |   1 +
 drivers/net/phy/mdio-gpio.c                        |   1 +
 drivers/net/phy/vitesse.c                          |  14 -
 drivers/net/usb/Kconfig                            |  11 +
 drivers/net/usb/Makefile                           |   2 +-
 drivers/net/usb/ch9200.c                           | 443 +++++++++++++++++++++
 drivers/net/vrf.c                                  |   3 +-
 drivers/net/vxlan.c                                |  15 +-
 include/linux/skbuff.h                             |   6 +-
 include/net/flow.h                                 |   1 +
 include/net/ip6_fib.h                              |   3 +-
 include/net/ip6_tunnel.h                           |  17 +-
 include/net/ip_fib.h                               |  30 +-
 include/net/route.h                                |   2 +-
 net/atm/clip.c                                     |   3 +
 net/bluetooth/smp.c                                |  12 +-
 net/bridge/br_multicast.c                          |   4 +-
 net/core/filter.c                                  |   2 +-
 net/core/rtnetlink.c                               |  26 +-
 net/core/sock.c                                    |  12 +-
 net/dccp/ackvec.c                                  |  12 +-
 net/dccp/ccid.c                                    |   3 +-
 net/ipv4/fib_trie.c                                |   2 +-
 net/ipv4/ip_tunnel_core.c                          |   2 +-
 net/ipv4/route.c                                   |   6 +-
 net/ipv4/tcp_cubic.c                               |  10 +-
 net/ipv4/udp.c                                     |   3 +-
 net/ipv4/xfrm4_policy.c                            |   2 +
 net/ipv6/addrconf.c                                |   7 +-
 net/ipv6/ip6_fib.c                                 |  26 +-
 net/ipv6/ip6_gre.c                                 |  77 ++--
 net/ipv6/ip6_output.c                              |  14 +-
 net/ipv6/ip6_tunnel.c                              | 131 ++++--
 net/ipv6/route.c                                   |  16 +-
 net/netfilter/nf_log.c                             |   9 +-
 net/netfilter/nft_compat.c                         |  24 +-
 net/netlink/af_netlink.c                           |  42 +-
 net/netlink/af_netlink.h                           |  10 +
 net/openvswitch/Kconfig                            |   3 +-
 net/openvswitch/conntrack.c                        |   8 +-
 net/openvswitch/flow_netlink.c                     |  82 ++--
 net/sctp/protocol.c                                |  64 +--
 net/tipc/msg.c                                     |   1 +
 75 files changed, 1153 insertions(+), 295 deletions(-)
 create mode 100644 Documentation/networking/vrf.txt
 create mode 100644 drivers/net/usb/ch9200.c
Merging ipsec/master (04a6b8bfee06 xfrm6: Fix ICMPv6 and MH header checks in _decode_session6)
$ git merge ipsec/master
Merge made by the 'recursive' strategy.
 net/ipv6/xfrm6_output.c | 17 +++++++++++------
 net/ipv6/xfrm6_policy.c |  6 ++++--
 2 files changed, 15 insertions(+), 8 deletions(-)
Merging sound-current/for-linus (5ee20bc79246 ALSA: usb-audio: Change internal PCM order)
$ git merge sound-current/for-linus
Already up-to-date.
Merging pci-current/for-linus (237865f195f6 PCI: Revert "PCI: Call pci_read_bridge_bases() from core instead of arch code")
$ git merge pci-current/for-linus
Merge made by the 'recursive' strategy.
 arch/alpha/kernel/pci.c          | 7 ++++++-
 arch/frv/mb93090-mb00/pci-vdk.c  | 2 ++
 arch/ia64/pci/pci.c              | 5 +++--
 arch/microblaze/pci/pci-common.c | 9 ++++++++-
 arch/mips/pci/pci.c              | 6 ++++++
 arch/mn10300/unit-asb2305/pci.c  | 1 +
 arch/powerpc/kernel/pci-common.c | 8 +++++++-
 arch/x86/pci/common.c            | 1 +
 arch/xtensa/kernel/pci.c         | 4 ++++
 drivers/parisc/dino.c            | 3 +++
 drivers/parisc/lba_pci.c         | 1 +
 drivers/pci/probe.c              | 6 ------
 12 files changed, 42 insertions(+), 11 deletions(-)
Merging wireless-drivers/master (c2e7204d180f tcp_cubic: do not set epoch_start in the future)
$ git merge wireless-drivers/master
Already up-to-date.
Merging driver-core.current/driver-core-linus (2110d70c5e58 cpu/cacheinfo: Fix teardown path)
$ git merge driver-core.current/driver-core-linus
Merge made by the 'recursive' strategy.
 drivers/base/cacheinfo.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
Merging tty.current/tty-linus (1f93e4a96c91 Linux 4.3-rc2)
$ git merge tty.current/tty-linus
Already up-to-date.
Merging usb.current/usb-linus (ea9346514e77 Merge tag 'usb-ci-v4.3-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-linus)
$ git merge usb.current/usb-linus
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/usb/ci-hdrc-usb2.txt       |  1 +
 drivers/usb/chipidea/ci_hdrc_imx.c                 |  2 +-
 drivers/usb/chipidea/ci_hdrc_usb2.c                | 25 +++++--
 drivers/usb/chipidea/udc.c                         | 84 +++++++++++-----------
 drivers/usb/dwc3/dwc3-omap.c                       |  4 +-
 drivers/usb/gadget/epautoconf.c                    |  1 +
 drivers/usb/gadget/udc/amd5536udc.c                | 43 ++++++-----
 drivers/usb/musb/musb_core.c                       |  7 ++
 drivers/usb/musb/ux500.c                           |  2 +
 drivers/usb/phy/Kconfig                            |  2 +-
 drivers/usb/phy/phy-generic.c                      |  3 +-
 drivers/usb/serial/option.c                        | 24 +++++++
 12 files changed, 124 insertions(+), 74 deletions(-)
Merging usb-gadget-fixes/fixes (a66c275b3d5d usb: dwc3: gadget: Fix BUG in RT config)
$ git merge usb-gadget-fixes/fixes
Merge made by the 'recursive' strategy.
 drivers/usb/dwc3/gadget.c               |  4 ---
 drivers/usb/gadget/udc/atmel_usba_udc.c | 11 ++++++++
 drivers/usb/gadget/udc/bdc/bdc_core.c   |  3 +--
 drivers/usb/gadget/udc/dummy_hcd.c      | 46 +++++++++++++++++++++------------
 drivers/usb/gadget/udc/gr_udc.c         |  3 +--
 drivers/usb/gadget/udc/mv_u3d_core.c    |  3 +--
 drivers/usb/gadget/udc/mv_udc_core.c    |  3 +--
 drivers/usb/musb/musb_cppi41.c          |  3 +++
 drivers/usb/musb/musb_dsps.c            |  7 +++--
 drivers/usb/phy/phy-isp1301.c           |  1 +
 10 files changed, 54 insertions(+), 30 deletions(-)
Merging usb-serial-fixes/usb-linus (19ab6bc5674a USB: option: add ZTE PIDs)
$ git merge usb-serial-fixes/usb-linus
Already up-to-date.
Merging staging.current/staging-linus (74c600e36455 MAINTAINERS: Update email address for Martyn Welch)
$ git merge staging.current/staging-linus
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                     |  7 +++----
 drivers/staging/android/TODO                    | 20 ++++++++++++++++++++
 drivers/staging/android/ion/ion.c               |  6 +++---
 drivers/staging/fbtft/fb_uc1611.c               |  2 +-
 drivers/staging/fbtft/fb_watterott.c            |  4 ++--
 drivers/staging/fbtft/fbtft-core.c              | 10 +++-------
 drivers/staging/fbtft/flexfb.c                  | 11 ++++-------
 drivers/staging/lustre/README.txt               | 16 ++++++----------
 drivers/staging/most/Kconfig                    |  1 +
 drivers/staging/most/hdm-dim2/Kconfig           |  1 +
 drivers/staging/most/hdm-usb/Kconfig            |  2 +-
 drivers/staging/most/mostcore/Kconfig           |  1 +
 drivers/staging/unisys/visorbus/Makefile        |  1 -
 drivers/staging/unisys/visorbus/visorbus_main.c | 13 +++++++++----
 drivers/staging/unisys/visornic/visornic_main.c | 18 +++++++++++-------
 15 files changed, 66 insertions(+), 47 deletions(-)
Merging char-misc.current/char-misc-linus (ca1c4b745779 Drivers: hv: vmbus: fix init_vp_index() for reloading hv_netvsc)
$ git merge char-misc.current/char-misc-linus
Merge made by the 'recursive' strategy.
 drivers/hv/channel_mgmt.c  | 17 +++++++++++++++++
 drivers/misc/mei/debugfs.c |  3 ++-
 drivers/thunderbolt/nhi.c  |  2 +-
 3 files changed, 20 insertions(+), 2 deletions(-)
Merging input-current/for-linus (72d4736253af Input: uinput - fix crash when using ABS events)
$ git merge input-current/for-linus
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/input/cypress,cyapa.txt    |  2 +-
 Documentation/input/multi-touch-protocol.txt       |  2 +-
 drivers/input/joystick/walkera0701.c               |  4 +--
 drivers/input/misc/pm8941-pwrkey.c                 |  2 +-
 drivers/input/misc/uinput.c                        |  2 +-
 drivers/input/mouse/elan_i2c.h                     |  2 +-
 drivers/input/mouse/elan_i2c_core.c                | 17 ++++++-----
 drivers/input/mouse/elan_i2c_i2c.c                 |  4 +--
 drivers/input/mouse/elan_i2c_smbus.c               |  4 +--
 drivers/input/touchscreen/imx6ul_tsc.c             | 34 ++++++++++++++--------
 drivers/input/touchscreen/mms114.c                 |  4 +--
 11 files changed, 45 insertions(+), 32 deletions(-)
Merging crypto-current/master (09185e2756a8 hwrng: xgene - fix handling platform_get_irq)
$ git merge crypto-current/master
Merge made by the 'recursive' strategy.
 drivers/char/hw_random/xgene-rng.c      |  7 ++++---
 drivers/crypto/marvell/cesa.h           | 27 +++++++++++++++++++++++++++
 drivers/crypto/marvell/cipher.c         |  7 +++----
 drivers/crypto/marvell/hash.c           |  8 +++-----
 drivers/crypto/qat/qat_common/adf_aer.c |  3 +++
 5 files changed, 40 insertions(+), 12 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 (f76502aa9140 of/dynamic: Fix test for PPC_PSERIES)
$ git merge devicetree-current/devicetree/merge
Already up-to-date.
Merging rr-fixes/fixes (275d7d44d802 module: Fix locking in symbol_put_addr())
$ git merge rr-fixes/fixes
Merge made by the 'recursive' strategy.
 kernel/module.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
Merging vfio-fixes/for-linus (4bc94d5dc95d vfio: Fix lockdep issue)
$ git merge vfio-fixes/for-linus
Already up-to-date.
Merging kselftest-fixes/fixes (ae7858180510 selftests: exec: revert to default emit rule)
$ git merge kselftest-fixes/fixes
Already up-to-date.
Merging backlight-fixes/for-backlight-fixes (68feaca0b13e backlight: pwm: Handle EPROBE_DEFER while requesting the PWM)
$ git merge backlight-fixes/for-backlight-fixes
Already up-to-date.
Merging ftrace-fixes/for-next-urgent (6224beb12e19 tracing: Have branch tracer use recursive field of task struct)
$ git merge ftrace-fixes/for-next-urgent
Already up-to-date.
Merging mfd-fixes/for-mfd-fixes (fb9caeedafe6 mfd: Remove MFD_CROS_EC_SPI depends on OF)
$ git merge mfd-fixes/for-mfd-fixes
Already up-to-date.
Merging drm-intel-fixes/for-linux-next-fixes (95d0be61286b drm/i915: fix kernel-doc warnings in intel_audio.c)
$ git merge drm-intel-fixes/for-linux-next-fixes
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/i915/intel_audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
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 (6ff33f3902c3 Linux 4.3-rc1)
$ git merge arc/for-next
Already up-to-date.
Merging arm/for-next (41ffa533304f Merge branches 'fixes' and 'misc' into for-next)
$ git merge arm/for-next
Merge made by the 'recursive' strategy.
 Documentation/arm/memory.txt     |  2 +-
 arch/arm/include/asm/irqflags.h  | 10 ++++++++++
 arch/arm/include/asm/mach/arch.h |  2 +-
 arch/arm/include/asm/memory.h    |  2 ++
 arch/arm/include/asm/pgtable.h   |  2 +-
 arch/arm/include/asm/smp.h       |  4 ++--
 arch/arm/kernel/hw_breakpoint.c  |  1 -
 arch/arm/kernel/smp.c            |  3 ++-
 arch/arm/kernel/smp_twd.c        |  4 ----
 arch/arm/lib/clear_user.S        |  4 ++++
 arch/arm/mm/mmu.c                |  3 +++
 11 files changed, 26 insertions(+), 11 deletions(-)
Merging arm-perf/for-next/perf (6ff33f3902c3 Linux 4.3-rc1)
$ git merge arm-perf/for-next/perf
Already up-to-date.
Merging arm-soc/for-next (54c3cf65aefd Merge tag 'omap-for-v4.3/fixes-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into fixes)
$ git merge arm-soc/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/am335x-phycore-som.dtsi    | 4 ++--
 arch/arm/boot/dts/am57xx-beagle-x15.dts      | 4 ++--
 arch/arm/boot/dts/dm8148-evm.dts             | 4 ++--
 arch/arm/boot/dts/dm8148-t410.dts            | 6 +++---
 arch/arm/boot/dts/dm814x.dtsi                | 8 ++++----
 arch/arm/boot/dts/dra7.dtsi                  | 4 ++--
 arch/arm/boot/dts/omap2430.dtsi              | 2 +-
 arch/arm/boot/dts/omap3-beagle.dts           | 2 +-
 arch/arm/boot/dts/omap3-igep.dtsi            | 6 ------
 arch/arm/boot/dts/omap3-igep0020-common.dtsi | 6 ++++++
 arch/arm/boot/dts/omap3.dtsi                 | 2 +-
 arch/arm/boot/dts/omap4.dtsi                 | 2 +-
 arch/arm/boot/dts/omap5.dtsi                 | 2 +-
 arch/arm/configs/omap2plus_defconfig         | 2 +-
 arch/arm/mach-omap2/Kconfig                  | 6 +++++-
 arch/arm/mach-omap2/board-generic.c          | 7 -------
 arch/arm/mach-omap2/pm.h                     | 3 ++-
 17 files changed, 34 insertions(+), 36 deletions(-)
Merging at91/at91-next (a29d51d2f8d4 Merge branches 'at91-4.4-soc' and 'at91-4.4-dt' into at91-next)
$ git merge at91/at91-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                 |  2 +-
 arch/arm/Kconfig.debug                      | 41 +++++++++++------------------
 arch/arm/boot/dts/at91-sama5d3_xplained.dts |  2 +-
 arch/arm/boot/dts/at91-sama5d4_xplained.dts |  2 +-
 arch/arm/boot/dts/at91-sama5d4ek.dts        | 27 +++++++++++++++++++
 arch/arm/boot/dts/at91sam9m10g45ek.dts      |  2 ++
 arch/arm/boot/dts/at91sam9n12ek.dts         |  8 ++----
 arch/arm/boot/dts/at91sam9x5.dtsi           |  3 ++-
 arch/arm/boot/dts/at91sam9x5ek.dtsi         |  8 ++++++
 arch/arm/boot/dts/sama5d3.dtsi              |  3 ++-
 arch/arm/boot/dts/sama5d3xmb.dtsi           |  2 ++
 arch/arm/boot/dts/sama5d4.dtsi              | 17 ++++++------
 arch/arm/include/debug/at91.S               | 18 +++----------
 include/linux/platform_data/atmel.h         |  8 ------
 14 files changed, 76 insertions(+), 67 deletions(-)
Merging bcm2835/for-next (b2776bf7149b Linux 3.18)
$ git merge bcm2835/for-next
Already up-to-date.
Merging berlin/berlin/for-next (40001cd66402 Merge branches 'berlin64/soc' and 'berlin64/dt' into berlin/for-next)
$ git merge berlin/berlin/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/berlin2-sony-nsz-gs7.dts        |   3 +-
 arch/arm/boot/dts/berlin2.dtsi                    |  16 +++
 arch/arm/boot/dts/berlin2cd-google-chromecast.dts |   3 +-
 arch/arm/boot/dts/berlin2cd.dtsi                  |  13 +++
 arch/arm/boot/dts/berlin2q-marvell-dmp.dts        |   3 +-
 arch/arm/boot/dts/berlin2q.dtsi                   |  16 +++
 arch/arm/mach-berlin/berlin.c                     |   6 ++
 arch/arm64/Kconfig.platforms                      |   1 +
 arch/arm64/boot/dts/marvell/berlin4ct-stb.dts     |  66 ++++++++++++
 arch/arm64/boot/dts/marvell/berlin4ct.dtsi        | 120 ++++++++++++++++++++++
 drivers/clk/berlin/bg2.c                          |   1 -
 drivers/clk/berlin/bg2q.c                         |  13 ++-
 include/dt-bindings/clock/berlin2.h               |   2 +
 include/dt-bindings/clock/berlin2q.h              |   3 +
 14 files changed, 255 insertions(+), 11 deletions(-)
 create mode 100644 arch/arm64/boot/dts/marvell/berlin4ct-stb.dts
Merging cortex-m/for-next (f719a0d6a854 ARM: efm32: switch to vendor,device compatible strings)
$ git merge cortex-m/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/efm32gg-dk3750.dts |  8 ++++----
 arch/arm/boot/dts/efm32gg.dtsi       | 32 ++++++++++++++++----------------
 2 files changed, 20 insertions(+), 20 deletions(-)
Merging imx-mxs/for-next (abee09cd70fa Merge branch 'imx/defconfig' into for-next)
$ git merge imx-mxs/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/imx23.dtsi                 |  6 ++--
 arch/arm/boot/dts/imx28-evk.dts              |  2 +-
 arch/arm/boot/dts/imx28-m28evk.dts           |  2 +-
 arch/arm/boot/dts/imx28.dtsi                 |  6 ++--
 arch/arm/boot/dts/imx50-evk.dts              |  2 +-
 arch/arm/boot/dts/imx53-qsrb.dts             |  2 +-
 arch/arm/boot/dts/imx53-smd.dts              |  2 +-
 arch/arm/boot/dts/imx53.dtsi                 |  1 +
 arch/arm/boot/dts/imx6dl-rex-basic.dts       |  2 +-
 arch/arm/boot/dts/imx6q-dmo-edmqmx6.dts      |  2 +-
 arch/arm/boot/dts/imx6q-gw5400-a.dts         |  2 +-
 arch/arm/boot/dts/imx6q-rex-pro.dts          |  2 +-
 arch/arm/boot/dts/imx6qdl-aristainetos.dtsi  |  2 +-
 arch/arm/boot/dts/imx6qdl-aristainetos2.dtsi |  2 +-
 arch/arm/boot/dts/imx6qdl-dfi-fs700-m60.dtsi |  2 +-
 arch/arm/boot/dts/imx6qdl-nitrogen6x.dtsi    |  2 +-
 arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi |  2 +-
 arch/arm/boot/dts/imx6qdl-sabreauto.dtsi     |  2 +-
 arch/arm/boot/dts/imx6qdl-sabrelite.dtsi     |  2 +-
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi       |  2 +-
 arch/arm/boot/dts/imx6sl-evk.dts             |  2 +-
 arch/arm/boot/dts/imx6sl.dtsi                |  5 ++-
 arch/arm/boot/dts/imx6sx-sdb-reva.dts        |  4 +--
 arch/arm/boot/dts/imx6sx-sdb.dts             |  4 +--
 arch/arm/boot/dts/imx6ul-14x14-evk.dts       | 22 ++++++++++++
 arch/arm/boot/dts/imx6ul.dtsi                | 29 ++++++++++++++++
 arch/arm/boot/dts/imx7d-sdb.dts              | 13 +++++++
 arch/arm/boot/dts/imx7d.dtsi                 | 52 ++++++++++++++++++++++++++++
 arch/arm/boot/dts/ls1021a.dtsi               | 40 +++++++++++++++++++++
 arch/arm/configs/imx_v6_v7_defconfig         |  1 +
 arch/arm/mach-imx/common.h                   |  1 +
 arch/arm/mach-imx/mach-imx6ul.c              |  2 ++
 arch/arm/mach-imx/pm-imx6.c                  | 46 ++++++++++++++++++++----
 arch/arm/mach-imx/suspend-imx6.S             |  3 ++
 drivers/clk/imx/clk-imx35.c                  | 49 ++++++++++++++------------
 drivers/clk/imx/clk-imx6ul.c                 | 18 ++++++++++
 36 files changed, 283 insertions(+), 55 deletions(-)
Merging keystone/next (e5f7ef5cfe4f Merge branch 'for_4.4/dts' into next)
$ git merge keystone/next
Merge made by the 'recursive' strategy.
 .../bindings/soc/ti/keystone-navigator-qmss.txt      | 20 +++++++++++++++++++-
 arch/arm/boot/dts/keystone.dtsi                      |  6 +++---
 drivers/soc/ti/knav_qmss_acc.c                       |  4 ++++
 drivers/soc/ti/knav_qmss_queue.c                     |  3 +++
 4 files changed, 29 insertions(+), 4 deletions(-)
Merging mvebu/for-next (adfc8c76d84a Merge branch 'mvebu/config' into mvebu/for-next)
$ git merge mvebu/for-next
Merge made by the 'recursive' strategy.
Merging omap/for-next (84ad1bab0eeb ARM: dts: am57xx-beagle-x15: use palmas-usb for USB2)
$ git merge omap/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/am57xx-beagle-x15.dts | 42 +++++++++++++++++++++------------
 arch/arm/boot/dts/omap5-uevm.dts        |  4 ++--
 arch/arm/configs/omap2plus_defconfig    |  3 +++
 arch/arm/mach-omap2/id.c                |  8 +++++--
 arch/arm/mach-omap2/io.c                |  1 +
 arch/arm/mach-omap2/omap_device.c       |  3 ++-
 arch/arm/mach-omap2/soc.h               |  2 ++
 arch/arm/mach-omap2/timer.c             |  8 ++-----
 arch/arm/mach-omap2/vc.c                |  2 +-
 9 files changed, 46 insertions(+), 27 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.
Resolved 'arch/arm/mach-omap2/omap_hwmod_7xx_data.c' using previous resolution.
Auto-merging arch/arm/mach-omap2/omap_hwmod_7xx_data.c
CONFLICT (content): Merge conflict in arch/arm/mach-omap2/omap_hwmod_7xx_data.c
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 d3452f85df3b] Merge remote-tracking branch 'omap-pending/for-next'
$ git diff -M --stat --summary HEAD^..
Merging qcom/qcom/for-next (75a53fc62c52 ARM: dts: xperia-honami: Add regulator nodes for Honami)
$ git merge qcom/qcom/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/soc/qcom/qcom,smem.txt     |  51 ++++
 .../boot/dts/qcom-msm8974-sony-xperia-honami.dts   | 199 ++++++++++++++
 arch/arm/boot/dts/qcom-msm8974.dtsi                |  74 ++++++
 arch/arm/configs/qcom_defconfig                    |   8 +-
 arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi          |   1 +
 arch/arm64/boot/dts/qcom/msm8916-pins.dtsi         |  26 +-
 arch/arm64/boot/dts/qcom/msm8916.dtsi              |  16 ++
 drivers/firmware/Kconfig                           |   8 +
 drivers/firmware/Makefile                          |   3 +-
 drivers/firmware/qcom_scm-64.c                     |  63 +++++
 drivers/soc/qcom/Kconfig                           |  16 +-
 drivers/soc/qcom/smd-rpm.c                         |  68 ++---
 drivers/soc/qcom/smd.c                             | 284 ++++++++++++--------
 drivers/soc/qcom/smem.c                            | 295 ++++++++++++---------
 include/linux/soc/qcom/smd.h                       |  11 +
 include/linux/soc/qcom/smem.h                      |   2 +-
 16 files changed, 842 insertions(+), 283 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,smem.txt
 create mode 100644 drivers/firmware/qcom_scm-64.c
Merging renesas/next (ab3ecbc2626a Merge branches 'heads/sh-drivers-for-v4.3', 'heads/defconfig-for-v4.4', 'heads/dt-for-v4.4' and 'heads/soc-for-v4.4' into next)
$ git merge renesas/next
Removing arch/arm/mach-shmobile/sh-gpio.h
Removing arch/arm/mach-shmobile/r8a7778.h
Removing arch/arm/mach-shmobile/intc.h
Removing arch/arm/mach-shmobile/console.c
Removing arch/arm/mach-shmobile/clock.h
Removing arch/arm/mach-shmobile/clock.c
Removing arch/arm/mach-shmobile/clock-r8a7778.c
Removing arch/arm/mach-shmobile/board-bockw.c
Removing arch/arm/mach-shmobile/board-bockw-reference.c
Removing arch/arm/mach-shmobile/Makefile.boot
Removing arch/arm/configs/bockw_defconfig
Removing arch/arm/boot/dts/r8a7778-bockw-reference.dts
Auto-merging arch/arm/Kconfig.debug
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/shmobile.txt |   8 +-
 MAINTAINERS                                        |   2 -
 arch/arm/Kconfig                                   |  26 +-
 arch/arm/Kconfig.debug                             |   3 +-
 arch/arm/boot/dts/Makefile                         |   3 -
 arch/arm/boot/dts/r8a7778-bockw-reference.dts      | 139 ----
 arch/arm/boot/dts/r8a7778.dtsi                     |   2 +-
 arch/arm/boot/dts/r8a7779-marzen.dts               |   6 +-
 arch/arm/boot/dts/r8a7790-lager.dts                |  16 +-
 arch/arm/boot/dts/r8a7790.dtsi                     |   3 +-
 arch/arm/boot/dts/r8a7791-koelsch.dts              |   9 +-
 arch/arm/boot/dts/r8a7791.dtsi                     |   3 +-
 arch/arm/boot/dts/r8a7794-silk.dts                 |  88 +++
 arch/arm/boot/dts/r8a7794.dtsi                     | 224 ++++++-
 arch/arm/boot/dts/sh73a0-kzm9g.dts                 |   2 +-
 arch/arm/configs/bockw_defconfig                   | 133 ----
 arch/arm/configs/multi_v7_defconfig                |   1 -
 arch/arm/configs/shmobile_defconfig                |   1 -
 arch/arm/mach-shmobile/Kconfig                     |  73 --
 arch/arm/mach-shmobile/Makefile                    |  14 +-
 arch/arm/mach-shmobile/Makefile.boot               |  12 -
 arch/arm/mach-shmobile/board-bockw-reference.c     |  86 ---
 arch/arm/mach-shmobile/board-bockw.c               | 737 ---------------------
 arch/arm/mach-shmobile/clock-r8a7778.c             | 342 ----------
 arch/arm/mach-shmobile/clock.c                     |  47 --
 arch/arm/mach-shmobile/clock.h                     |  42 --
 arch/arm/mach-shmobile/common.h                    |   5 -
 arch/arm/mach-shmobile/console.c                   |  27 -
 arch/arm/mach-shmobile/intc.h                      | 295 ---------
 arch/arm/mach-shmobile/pm-rmobile.c                |  35 +-
 arch/arm/mach-shmobile/pm-rmobile.h                |   9 -
 arch/arm/mach-shmobile/r8a7778.h                   |  78 ---
 arch/arm/mach-shmobile/r8a7779.h                   |   2 -
 arch/arm/mach-shmobile/setup-r8a7778.c             | 560 +---------------
 arch/arm/mach-shmobile/sh-gpio.h                   |  29 -
 arch/arm/mach-shmobile/timer.c                     |  21 -
 drivers/clk/shmobile/clk-mstp.c                    |   4 +
 37 files changed, 349 insertions(+), 2738 deletions(-)
 delete mode 100644 arch/arm/boot/dts/r8a7778-bockw-reference.dts
 delete mode 100644 arch/arm/configs/bockw_defconfig
 delete mode 100644 arch/arm/mach-shmobile/Makefile.boot
 delete mode 100644 arch/arm/mach-shmobile/board-bockw-reference.c
 delete mode 100644 arch/arm/mach-shmobile/board-bockw.c
 delete mode 100644 arch/arm/mach-shmobile/clock-r8a7778.c
 delete mode 100644 arch/arm/mach-shmobile/clock.c
 delete mode 100644 arch/arm/mach-shmobile/clock.h
 delete mode 100644 arch/arm/mach-shmobile/console.c
 delete mode 100644 arch/arm/mach-shmobile/intc.h
 delete mode 100644 arch/arm/mach-shmobile/r8a7778.h
 delete mode 100644 arch/arm/mach-shmobile/sh-gpio.h
Merging rockchip/for-next (6ba6d4146d13 Merge branch 'v4.4-armsoc/dts32' into for-next)
$ git merge rockchip/for-next
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/rockchip.txt |  11 +
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/rk3066a-bqcurie2.dts             |   2 +
 arch/arm/boot/dts/rk3066a-marsboard.dts            |   8 +
 arch/arm/boot/dts/rk3066a-rayeager.dts             |   2 +
 arch/arm/boot/dts/rk3188-radxarock.dts             |   2 +
 arch/arm/boot/dts/rk3288-rock2-som.dtsi            | 277 +++++++++++++++++++++
 arch/arm/boot/dts/rk3288-rock2-square.dts          | 149 +++++++++++
 arch/arm/boot/dts/rk3288-veyron-jaq.dts            | 176 +++++++++++++
 arch/arm/boot/dts/rk3288-veyron.dtsi               |  13 +-
 arch/arm/boot/dts/rk3288.dtsi                      |  15 +-
 11 files changed, 641 insertions(+), 16 deletions(-)
 create mode 100644 arch/arm/boot/dts/rk3288-rock2-som.dtsi
 create mode 100644 arch/arm/boot/dts/rk3288-rock2-square.dts
 create mode 100644 arch/arm/boot/dts/rk3288-veyron-jaq.dts
Merging rpi/for-rpi-next (bc0195aad0da Linux 4.2-rc2)
$ git merge rpi/for-rpi-next
Already up-to-date.
Merging samsung/for-next (6d205db6e706 Merge branch 'v4.4-next/cpufreq-samsung' into for-next)
$ git merge samsung/for-next
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/hwmon/pwm-fan.txt          | 29 ++++++-
 Documentation/devicetree/bindings/mfd/s2mps11.txt  |  4 +
 arch/arm/boot/dts/Makefile                         |  1 +
 arch/arm/boot/dts/exynos4412-odroidu3.dts          | 43 ++++++++++
 arch/arm/boot/dts/exynos4412.dtsi                  |  1 +
 arch/arm/boot/dts/exynos5422-odroidxu3-audio.dtsi  | 61 +++++++++++++
 arch/arm/boot/dts/exynos5422-odroidxu3-common.dtsi | 99 +---------------------
 arch/arm/boot/dts/exynos5422-odroidxu3-lite.dts    | 51 +++++++++++
 arch/arm/boot/dts/exynos5422-odroidxu3.dts         | 51 +++++++++++
 arch/arm/boot/dts/exynos5422-odroidxu4.dts         | 48 +++++++++++
 arch/arm/configs/exynos_defconfig                  |  4 +
 drivers/cpufreq/s5pv210-cpufreq.c                  |  2 -
 12 files changed, 293 insertions(+), 101 deletions(-)
 create mode 100644 arch/arm/boot/dts/exynos5422-odroidxu3-audio.dtsi
 create mode 100644 arch/arm/boot/dts/exynos5422-odroidxu4.dts
Merging samsung-krzk/for-next (b58ebcbed86d Merge branch 'defconfig-for-next' into for-next)
$ git merge samsung-krzk/for-next
Auto-merging arch/arm/configs/multi_v7_defconfig
Auto-merging arch/arm/configs/exynos_defconfig
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/exynos4.dtsi                  |   8 ++
 arch/arm/boot/dts/exynos5250-smdk5250.dts       |   1 +
 arch/arm/configs/exynos_defconfig               |   9 ++-
 arch/arm/configs/multi_v7_defconfig             |   2 +
 arch/arm/mach-exynos/mcpm-exynos.c              |  27 ++++++-
 arch/arm/mach-exynos/regs-pmu.h                 |   6 ++
 arch/arm64/boot/dts/exynos/exynos7-pinctrl.dtsi | 103 ++++++++++++++++++++++++
 arch/arm64/boot/dts/exynos/exynos7.dtsi         |   7 ++
 8 files changed, 161 insertions(+), 2 deletions(-)
Merging sunxi/sunxi/for-next (744c17b64b90 Merge branch 'sunxi/defconfig-for-4.4' into sunxi/for-next)
$ git merge sunxi/sunxi/for-next
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/Makefile                       |   9 +-
 arch/arm/boot/dts/sun4i-a10-chuwi-v7-cw0825.dts  |  12 ++
 arch/arm/boot/dts/sun4i-a10-inet1.dts            | 226 ++++++++++++++++++++++
 arch/arm/boot/dts/sun4i-a10-inet97fv2.dts        | 117 +++++++++++-
 arch/arm/boot/dts/sun4i-a10-inet9f-rev03.dts     | 227 +++++++++++++++++++++++
 arch/arm/boot/dts/sun4i-a10-jesurun-q5.dts       |  15 ++
 arch/arm/boot/dts/sun4i-a10-olinuxino-lime.dts   |  12 ++
 arch/arm/boot/dts/sun5i-a10s-auxtek-t003.dts     | 159 ++++++++++++++++
 arch/arm/boot/dts/sun5i-a10s-olinuxino-micro.dts |   2 +-
 arch/arm/boot/dts/sun5i-a10s-wobo-i5.dts         | 224 ++++++++++++++++++++++
 arch/arm/boot/dts/sun5i-a10s.dtsi                |  20 ++
 arch/arm/boot/dts/sun5i-a13-inet-98v-rev2.dts    | 227 +++++++++++++++++++++++
 arch/arm/boot/dts/sun6i-a31-colombus.dts         |  24 +++
 arch/arm/boot/dts/sun6i-a31-hummingbird.dts      |   9 +-
 arch/arm/boot/dts/sun6i-a31.dtsi                 |  17 ++
 arch/arm/boot/dts/sun7i-a20-bananapi.dts         |  35 +++-
 arch/arm/boot/dts/sun7i-a20-cubieboard2.dts      |  19 ++
 arch/arm/boot/dts/sun7i-a20-olinuxino-lime.dts   |  12 ++
 arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts  |  47 +++++
 arch/arm/boot/dts/sun7i-a20-olinuxino-micro.dts  |   6 +
 arch/arm/boot/dts/sun7i-a20-pcduino3.dts         |  54 +++++-
 arch/arm/boot/dts/sun7i-a20.dtsi                 |  10 +-
 arch/arm/boot/dts/sun8i-a23-gt90h-v4.dts         | 145 +++++++++++++++
 arch/arm/boot/dts/sun8i-a23-ippo-q8h-v5.dts      |  76 +-------
 arch/arm/boot/dts/sun8i-a33-ippo-q8h-v1.2.dts    |  70 +------
 arch/arm/boot/dts/sun8i-a33-q8-tzx-723q4.dts     |  70 +++++++
 arch/arm/boot/dts/sun8i-q8-common.dtsi           |  77 ++++++++
 arch/arm/boot/dts/sunxi-q8-common.dtsi           |  77 ++++++++
 arch/arm/configs/sunxi_defconfig                 |   1 +
 29 files changed, 1839 insertions(+), 160 deletions(-)
 create mode 100644 arch/arm/boot/dts/sun4i-a10-inet1.dts
 create mode 100644 arch/arm/boot/dts/sun4i-a10-inet9f-rev03.dts
 create mode 100644 arch/arm/boot/dts/sun5i-a10s-auxtek-t003.dts
 create mode 100644 arch/arm/boot/dts/sun5i-a10s-wobo-i5.dts
 create mode 100644 arch/arm/boot/dts/sun5i-a13-inet-98v-rev2.dts
 create mode 100644 arch/arm/boot/dts/sun8i-a23-gt90h-v4.dts
 create mode 100644 arch/arm/boot/dts/sun8i-a33-q8-tzx-723q4.dts
 create mode 100644 arch/arm/boot/dts/sun8i-q8-common.dtsi
 create mode 100644 arch/arm/boot/dts/sunxi-q8-common.dtsi
Merging tegra/for-next (d27eb50227d8 Merge branch for-4.4/defconfig into for-next)
$ git merge tegra/for-next
Auto-merging drivers/clk/tegra/clk-dfll.c
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/tegra124-nyan.dtsi          |  15 +-
 arch/arm/boot/dts/tegra124.dtsi               |   2 +-
 arch/arm/boot/dts/tegra20.dtsi                |   4 +-
 arch/arm/boot/dts/tegra30-apalis-eval.dts     |  13 +-
 arch/arm/boot/dts/tegra30-apalis.dtsi         | 214 ++++++++++++++++----------
 arch/arm/boot/dts/tegra30-colibri-eval-v3.dts |   9 +-
 arch/arm/boot/dts/tegra30-colibri.dtsi        | 196 ++++++++++++++++-------
 arch/arm/boot/dts/tegra30.dtsi                |  10 +-
 arch/arm/configs/tegra_defconfig              |  10 +-
 drivers/clk/tegra/clk-dfll.c                  |  15 +-
 drivers/clk/tegra/cvb.c                       |   7 -
 11 files changed, 324 insertions(+), 171 deletions(-)
Merging arm64/for-next/core (6ff33f3902c3 Linux 4.3-rc1)
$ 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 (ca3060d39ae7 c6x: Use generic clkdev.h header)
$ git merge c6x/for-linux-next
Removing arch/c6x/include/asm/clkdev.h
Merge made by the 'recursive' strategy.
 arch/c6x/include/asm/Kbuild   |  1 +
 arch/c6x/include/asm/clkdev.h | 22 ----------------------
 2 files changed, 1 insertion(+), 22 deletions(-)
 delete mode 100644 arch/c6x/include/asm/clkdev.h
Merging cris/for-next (254a0f413548 CRISv10: delete unused lib/dmacopy.c)
$ git merge cris/for-next
Already up-to-date.
Merging h8300/h8300-next (99bcfda85f66 Revert "asm-generic: {get,put}_user ptr argument evaluate only 1 time")
$ git merge h8300/h8300-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/clock/renesas,h8300-div-clock.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging hexagon/linux-next (02cc2ccfe771 Revert "Hexagon: fix signal.c compile error")
$ git merge hexagon/linux-next
Already up-to-date.
Merging ia64/next (ae40b7e28752 Merge branch 'misc-4.2' into next)
$ git merge ia64/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging m68k/for-next (bab84fa9cc09 m68k/sun3: Use %pM format specifier to print ethernet address)
$ git merge m68k/for-next
Merge made by the 'recursive' strategy.
 arch/m68k/sun3/idprom.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
Merging m68knommu/for-next (a509af1245d8 fs/binfmt_elf_fdpic.c: fix brk area overlap with stack on NOMMU)
$ git merge m68knommu/for-next
Merge made by the 'recursive' strategy.
 fs/binfmt_elf_fdpic.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
Merging metag/for-next (3fe6942f0486 Documentation/features/vm: Meta2 is capable of THP)
$ git merge metag/for-next
Merge made by the 'recursive' strategy.
Merging microblaze/next (b14132797d80 elf-em.h: move EM_MICROBLAZE to the common header)
$ git merge microblaze/next
Already up-to-date.
Merging mips/mips-for-linux-next (807249d3ada1 Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus)
$ git merge mips/mips-for-linux-next
Already up-to-date.
Merging nios2/for-next (08441d462ebd nios2: add Max10 defconfig)
$ git merge nios2/for-next
Already up-to-date.
Merging parisc-hd/for-next (64291f7db5bd Linux 4.2)
$ git merge parisc-hd/for-next
Already up-to-date.
Merging powerpc/next (ff474e8ca854 Merge tag 'powerpc-4.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux)
$ git merge powerpc/next
Already up-to-date.
Merging powerpc-mpe/next (bc0195aad0da Linux 4.2-rc2)
$ git merge powerpc-mpe/next
Already up-to-date.
Merging fsl/next (4524cd093fa8 powerpc/t1023rdb/dts: set ifc nand chip select from 2 to 1)
$ 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 (a5a489919f2e s390/crash_dump: use for_each_mem_range)
$ git merge s390/features
Merge made by the 'recursive' strategy.
 arch/s390/include/asm/barrier.h        |  8 ++++----
 arch/s390/kernel/crash_dump.c          | 16 ++++------------
 arch/s390/kernel/vdso.c                |  2 +-
 arch/s390/lib/spinlock.c               |  4 ++--
 arch/s390/numa/mode_emu.c              | 10 ++++++++--
 drivers/s390/block/dasd.c              |  1 +
 drivers/s390/crypto/zcrypt_api.c       |  3 +--
 drivers/s390/crypto/zcrypt_cca_key.h   |  2 +-
 drivers/s390/crypto/zcrypt_msgtype50.c |  2 +-
 drivers/s390/crypto/zcrypt_pcica.c     |  2 +-
 10 files changed, 24 insertions(+), 26 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 (fa5d8f13afb8 tile: fix build failure)
$ git merge tile/master
Merge made by the 'recursive' strategy.
 arch/tile/kernel/usb.c | 1 +
 1 file changed, 1 insertion(+)
Merging uml/linux-next (bdbac7d0e2b3 um: Fix kernel mode fault condition)
$ git merge uml/linux-next
Auto-merging arch/um/kernel/trap.c
Merge made by the 'recursive' strategy.
 arch/um/Makefile          | 4 ++--
 arch/um/kernel/trap.c     | 2 +-
 arch/um/os-Linux/helper.c | 6 +++---
 arch/x86/um/ldt.c         | 5 ++++-
 4 files changed, 10 insertions(+), 7 deletions(-)
Merging unicore32/unicore32 (d670878e2c9a unicore32: Remove ARCH_HAS_CPUFREQ config option)
$ git merge unicore32/unicore32
Already up-to-date.
Merging xtensa/for_next (895fb3159280 xtensa: improve vmlinux.lds.S sed post-processing)
$ git merge xtensa/for_next
Already up-to-date.
Merging btrfs/next (3a9508b0221d btrfs: fix compile when block cgroups are not enabled)
$ git merge btrfs/next
Already up-to-date.
Merging ceph/master (8dbd263de1cb ceph: improve readahead for file holes)
$ git merge ceph/master
Merge made by the 'recursive' strategy.
Merging cifs/for-next (79a5296f14b2 cifs: use server timestamp for ntlmv2 authentication)
$ git merge cifs/for-next
Merge made by the 'recursive' strategy.
 fs/cifs/cifsencrypt.c | 53 +++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 51 insertions(+), 2 deletions(-)
Merging ecryptfs/next (933c32fe0e42 ecryptfs: drop null test before destroy functions)
$ git merge ecryptfs/next
Merge made by the 'recursive' strategy.
 fs/ecryptfs/main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
Merging ext3/for_next (9181f8bf5abf udf: Don't modify filesystem for read-only mounts)
$ git merge ext3/for_next
Already up-to-date.
Merging ext4/dev (bdfe0cbd746a Revert "ext4: remove block_device_ejected")
$ git merge ext4/dev
Already up-to-date.
Merging f2fs/dev (9699392d4bc8 f2fs: should get a victim from retrials)
$ git merge f2fs/dev
Merge made by the 'recursive' strategy.
 fs/f2fs/checkpoint.c        |   8 ++
 fs/f2fs/data.c              |  95 +++++++++++-----------
 fs/f2fs/debug.c             |  12 +--
 fs/f2fs/dir.c               |  13 ++-
 fs/f2fs/extent_cache.c      | 189 ++++++++++++++++++--------------------------
 fs/f2fs/f2fs.h              |   2 +-
 fs/f2fs/file.c              |  57 ++++++-------
 fs/f2fs/gc.c                |   3 +-
 fs/f2fs/inode.c             |   8 +-
 fs/f2fs/namei.c             |  10 ++-
 fs/f2fs/node.c              |  15 ++--
 fs/f2fs/recovery.c          |   2 +-
 include/trace/events/f2fs.h |  15 ++--
 13 files changed, 211 insertions(+), 218 deletions(-)
Merging fscache/fscache (b00c2ae2ed3c FS-Cache: Don't override netfs's primary_index if registering failed)
$ git merge fscache/fscache
Merge made by the 'recursive' strategy.
 fs/fscache/netfs.c | 38 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 20 deletions(-)
Merging fuse/for-next (0a30f612d6cf fuse: update MAINTAINERS entry)
$ git merge fuse/for-next
Already up-to-date.
Merging gfs2/for-next (6ff33f3902c3 Linux 4.3-rc1)
$ git merge gfs2/for-next
Already up-to-date.
Merging jfs/jfs-next (26456955719b jfs: clean up jfs_rename and fix out of order unlock)
$ git merge jfs/jfs-next
Already up-to-date.
Merging nfs/linux-next (2259f960b3a9 NFSv4.x/pnfs: Don't try to recover stateids twice in layoutget)
$ git merge nfs/linux-next
Merge made by the 'recursive' strategy.
 fs/nfs/delegation.c             |   8 +--
 fs/nfs/delegation.h             |   2 +-
 fs/nfs/filelayout/filelayout.c  |  31 +++++------
 fs/nfs/nfs42proc.c              |   4 +-
 fs/nfs/nfs4proc.c               | 110 ++++++++++++++++++++++++----------------
 fs/nfs/nfs4state.c              |   2 +-
 fs/nfs/pagelist.c               |   2 +-
 fs/nfs/read.c                   |   3 ++
 fs/nfs/write.c                  |   3 ++
 include/linux/sunrpc/xprtsock.h |   3 ++
 net/sunrpc/sched.c              |  12 ++---
 net/sunrpc/xprt.c               |   6 +++
 net/sunrpc/xprtsock.c           |  15 ++++--
 13 files changed, 118 insertions(+), 83 deletions(-)
Merging nfsd/nfsd-next (a909e9f9d73a nfsd: don't hold i_mutex over userspace upcalls)
$ git merge nfsd/nfsd-next
Auto-merging fs/namei.c
Merge made by the 'recursive' strategy.
 fs/namei.c            | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++
 fs/nfsd/nfs3xdr.c     |  2 +-
 fs/nfsd/nfs4xdr.c     |  8 +++---
 fs/nfsd/vfs.c         | 23 +++++++---------
 include/linux/namei.h |  1 +
 5 files changed, 89 insertions(+), 19 deletions(-)
Merging orangefs/for-next (600896a3b8b0 Orangefs: Swap order of include files)
$ git merge orangefs/for-next
Auto-merging fs/Makefile
Auto-merging fs/Kconfig
Merge made by the 'recursive' strategy.
 Documentation/ABI/stable/sysfs-fs-orangefs |   87 ++
 Documentation/filesystems/orangefs.txt     |  137 +++
 fs/Kconfig                                 |    1 +
 fs/Makefile                                |    1 +
 fs/orangefs/Kconfig                        |    6 +
 fs/orangefs/Makefile                       |   10 +
 fs/orangefs/acl.c                          |  175 +++
 fs/orangefs/dcache.c                       |  142 +++
 fs/orangefs/devpvfs2-req.c                 | 1004 ++++++++++++++++
 fs/orangefs/dir.c                          |  378 ++++++
 fs/orangefs/downcall.h                     |  138 +++
 fs/orangefs/file.c                         | 1016 ++++++++++++++++
 fs/orangefs/inode.c                        |  469 ++++++++
 fs/orangefs/namei.c                        |  473 ++++++++
 fs/orangefs/protocol.h                     |  672 +++++++++++
 fs/orangefs/pvfs2-bufmap.c                 |  974 +++++++++++++++
 fs/orangefs/pvfs2-bufmap.h                 |   76 ++
 fs/orangefs/pvfs2-cache.c                  |  260 ++++
 fs/orangefs/pvfs2-debug.h                  |  290 +++++
 fs/orangefs/pvfs2-debugfs.c                |  458 +++++++
 fs/orangefs/pvfs2-debugfs.h                |    3 +
 fs/orangefs/pvfs2-dev-proto.h              |  102 ++
 fs/orangefs/pvfs2-kernel.h                 |  864 ++++++++++++++
 fs/orangefs/pvfs2-mod.c                    |  315 +++++
 fs/orangefs/pvfs2-sysfs.c                  | 1787 ++++++++++++++++++++++++++++
 fs/orangefs/pvfs2-sysfs.h                  |    2 +
 fs/orangefs/pvfs2-utils.c                  | 1129 ++++++++++++++++++
 fs/orangefs/super.c                        |  558 +++++++++
 fs/orangefs/symlink.c                      |   31 +
 fs/orangefs/upcall.h                       |  255 ++++
 fs/orangefs/waitqueue.c                    |  529 ++++++++
 fs/orangefs/xattr.c                        |  530 +++++++++
 32 files changed, 12872 insertions(+)
 create mode 100644 Documentation/ABI/stable/sysfs-fs-orangefs
 create mode 100644 Documentation/filesystems/orangefs.txt
 create mode 100644 fs/orangefs/Kconfig
 create mode 100644 fs/orangefs/Makefile
 create mode 100644 fs/orangefs/acl.c
 create mode 100644 fs/orangefs/dcache.c
 create mode 100644 fs/orangefs/devpvfs2-req.c
 create mode 100644 fs/orangefs/dir.c
 create mode 100644 fs/orangefs/downcall.h
 create mode 100644 fs/orangefs/file.c
 create mode 100644 fs/orangefs/inode.c
 create mode 100644 fs/orangefs/namei.c
 create mode 100644 fs/orangefs/protocol.h
 create mode 100644 fs/orangefs/pvfs2-bufmap.c
 create mode 100644 fs/orangefs/pvfs2-bufmap.h
 create mode 100644 fs/orangefs/pvfs2-cache.c
 create mode 100644 fs/orangefs/pvfs2-debug.h
 create mode 100644 fs/orangefs/pvfs2-debugfs.c
 create mode 100644 fs/orangefs/pvfs2-debugfs.h
 create mode 100644 fs/orangefs/pvfs2-dev-proto.h
 create mode 100644 fs/orangefs/pvfs2-kernel.h
 create mode 100644 fs/orangefs/pvfs2-mod.c
 create mode 100644 fs/orangefs/pvfs2-sysfs.c
 create mode 100644 fs/orangefs/pvfs2-sysfs.h
 create mode 100644 fs/orangefs/pvfs2-utils.c
 create mode 100644 fs/orangefs/super.c
 create mode 100644 fs/orangefs/symlink.c
 create mode 100644 fs/orangefs/upcall.h
 create mode 100644 fs/orangefs/waitqueue.c
 create mode 100644 fs/orangefs/xattr.c
Merging overlayfs/overlayfs-next (d9aa4e0bfb63 ovl: default permissions)
$ git merge overlayfs/overlayfs-next
Auto-merging fs/overlayfs/super.c
Merge made by the 'recursive' strategy.
 fs/overlayfs/copy_up.c   | 11 +++++++----
 fs/overlayfs/inode.c     | 23 +++++++++++++++++++++++
 fs/overlayfs/overlayfs.h |  3 +++
 fs/overlayfs/super.c     | 28 ++++++++++++++++++++++++++++
 4 files changed, 61 insertions(+), 4 deletions(-)
Merging squashfs/master (62421645bb70 Squashfs: Add LZ4 compression configuration option)
$ git merge squashfs/master
Already up-to-date.
Merging v9fs/for-next (46cfbe8e037a 9p: trans_fd, bail out if recv fcall if missing)
$ git merge v9fs/for-next
Merge made by the 'recursive' strategy.
 net/9p/trans_fd.c     | 88 +++++++++++++++++++++++++++------------------------
 net/9p/trans_virtio.c |  2 +-
 2 files changed, 47 insertions(+), 43 deletions(-)
Merging ubifs/linux-next (071a1f837f72 UGIFS: fix a typo in comment of ubifs_budget_req)
$ git merge ubifs/linux-next
Merge made by the 'recursive' strategy.
 fs/ubifs/lpt.c   | 6 ++----
 fs/ubifs/tnc.c   | 3 +--
 fs/ubifs/ubifs.h | 4 ++--
 3 files changed, 5 insertions(+), 8 deletions(-)
Merging xfs/for-next (5d54b8cdeaf4 Merge branch 'xfs-misc-fixes-for-4.3-4' into for-next)
$ git merge xfs/for-next
Already up-to-date.
Merging file-locks/linux-next (128a37852234 fs: fix data races on inode->i_flctx)
$ git merge file-locks/linux-next
Merge made by the 'recursive' strategy.
 fs/locks.c                      | 63 +++++++++++++++++++++++------------------
 include/trace/events/filelock.h | 38 +++++++++++++++++++++++--
 2 files changed, 71 insertions(+), 30 deletions(-)
Merging vfs/for-next (397d425dc26d vfs: Test for and handle paths that are unreachable from their mnt_root)
$ git merge vfs/for-next
Already up-to-date.
Merging pci/next (6ff33f3902c3 Linux 4.3-rc1)
$ git merge pci/next
Already up-to-date.
Merging hid/for-next (c5a0db1eed32 Merge branch 'for-4.3/wacom' into for-next)
$ git merge hid/for-next
Merge made by the 'recursive' strategy.
Merging i2c/i2c/for-next (f5956abbe430 Merge branch 'i2c/for-4.3' into i2c/for-next)
$ git merge i2c/i2c/for-next
Merge made by the 'recursive' strategy.
 drivers/i2c/busses/i2c-imx.c | 76 +++++++++++++++++++++++++++++++++++++-------
 1 file changed, 65 insertions(+), 11 deletions(-)
Merging jdelvare-hwmon/master (902fd32b7711 hwmon: (k10temp) Remove duplicate pci-id define)
$ git merge jdelvare-hwmon/master
Merge made by the 'recursive' strategy.
 drivers/hwmon/k10temp.c | 1 -
 1 file changed, 1 deletion(-)
Merging dmi/master (1dc51b828800 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge dmi/master
Already up-to-date.
Merging hwmon-staging/hwmon-next (a21ff8291f6e hwmon: (max31790) Fix dereference of ERR_PTR)
$ git merge hwmon-staging/hwmon-next
Merge made by the 'recursive' strategy.
 Documentation/hwmon/max31790 |  37 +++
 drivers/hwmon/Kconfig        |  10 +
 drivers/hwmon/Makefile       |   1 +
 drivers/hwmon/abx500.c       |   1 +
 drivers/hwmon/gpio-fan.c     |   1 +
 drivers/hwmon/max31790.c     | 603 +++++++++++++++++++++++++++++++++++++++++++
 drivers/hwmon/pwm-fan.c      |   1 +
 7 files changed, 654 insertions(+)
 create mode 100644 Documentation/hwmon/max31790
 create mode 100644 drivers/hwmon/max31790.c
Merging v4l-dvb/master (41a8f406dacd Merge branch 'missed' into to_next)
$ git merge v4l-dvb/master
Resolved 'mm/Makefile' using previous resolution.
Auto-merging mm/Makefile
CONFLICT (content): Merge conflict in mm/Makefile
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 7716165036f8] Merge remote-tracking branch 'v4l-dvb/master'
$ git diff -M --stat --summary HEAD^..
Merging kbuild/for-next (a8503631df45 Merge branch 'kbuild/kbuild' into kbuild/for-next)
$ git merge kbuild/for-next
Auto-merging lib/Kconfig.debug
Auto-merging init/Kconfig
Auto-merging arch/x86/Kconfig
Auto-merging Makefile
Merge made by the 'recursive' strategy.
 Documentation/lto-build  | 173 +++++++++++++++++++++++++++++++++++++++++++++++
 Makefile                 |  19 +++++-
 arch/x86/Kconfig         |   2 +-
 init/Kconfig             |  73 ++++++++++++++++++++
 kernel/gcov/Kconfig      |   2 +-
 lib/Kconfig.debug        |   2 +-
 scripts/Makefile.lto     |  84 +++++++++++++++++++++++
 scripts/Makefile.modpost |   7 +-
 scripts/link-vmlinux.sh  |   2 +-
 9 files changed, 356 insertions(+), 8 deletions(-)
 create mode 100644 Documentation/lto-build
 create mode 100644 scripts/Makefile.lto
Merging kconfig/for-next (c0ddc8c745b7 localmodconfig: Use Kbuild files too)
$ git merge kconfig/for-next
Already up-to-date.
Merging libata/for-next (8124f70f0ae6 Merge branch 'for-4.3-fixes' into for-next)
$ git merge libata/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/ata/ahci-fsl-qoriq.txt     |  21 ++
 .../devicetree/bindings/ata/ahci-platform.txt      |   2 -
 drivers/ata/Kconfig                                |   9 +
 drivers/ata/Makefile                               |   1 +
 drivers/ata/ahci_platform.c                        |   1 -
 drivers/ata/ahci_qoriq.c                           | 272 +++++++++++++++++++++
 drivers/ata/pata_macio.c                           |   1 +
 drivers/ata/pata_pxa.c                             | 171 +++++--------
 8 files changed, 363 insertions(+), 115 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/ata/ahci-fsl-qoriq.txt
 create mode 100644 drivers/ata/ahci_qoriq.c
Merging pm/linux-next (92f7983a2dd3 Merge branches 'acpi-scan', 'acpi-assorted' and 'acpi-tables' into linux-next)
$ git merge pm/linux-next
Removing drivers/cpufreq/cpufreq_opp.c
Auto-merging drivers/base/power/opp/core.c
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-power    |  12 +
 arch/arm/mach-imx/mach-imx6q.c           |   2 +-
 arch/x86/kernel/acpi/boot.c              |  22 +-
 drivers/acpi/acpi_pnp.c                  |   4 +-
 drivers/acpi/device_sysfs.c              | 120 ++++++++-
 drivers/acpi/glue.c                      |   5 +-
 drivers/acpi/internal.h                  |   6 +-
 drivers/acpi/proc.c                      |   4 +-
 drivers/acpi/property.c                  | 420 ++++++++++++++++++++++++++-----
 drivers/acpi/scan.c                      |  28 +--
 drivers/acpi/tables.c                    |  93 +++++--
 drivers/base/power/Makefile              |   2 +-
 drivers/base/power/opp/Makefile          |   3 +
 drivers/base/power/{opp.c => opp/core.c} | 378 ++++------------------------
 drivers/base/power/opp/cpu.c             | 268 ++++++++++++++++++++
 drivers/base/power/opp/debugfs.c         | 217 ++++++++++++++++
 drivers/base/power/opp/opp.h             | 186 ++++++++++++++
 drivers/base/power/wakeup.c              |  12 +
 drivers/base/property.c                  |  20 +-
 drivers/cpufreq/Makefile                 |   1 -
 drivers/cpufreq/arm_big_little.h         |   2 +-
 drivers/cpufreq/arm_big_little_dt.c      |   4 +-
 drivers/cpufreq/cpufreq-dt.c             |  10 +-
 drivers/cpufreq/cpufreq_opp.c            | 114 ---------
 drivers/cpufreq/exynos5440-cpufreq.c     |   6 +-
 drivers/cpufreq/imx6q-cpufreq.c          |   6 +-
 drivers/cpufreq/mt8173-cpufreq.c         |   6 +-
 drivers/gpio/gpiolib-acpi.c              | 153 +++++++----
 drivers/gpio/gpiolib.c                   |   3 +-
 drivers/gpio/gpiolib.h                   |  10 +-
 drivers/pnp/pnpacpi/core.c               |   4 +-
 include/acpi/acpi_bus.h                  |  37 ++-
 include/linux/acpi.h                     |  89 +++++--
 include/linux/fwnode.h                   |   1 +
 include/linux/pm_opp.h                   |  24 +-
 include/linux/suspend.h                  |   3 +
 kernel/irq/pm.c                          |   2 +-
 kernel/power/main.c                      |  17 ++
 38 files changed, 1584 insertions(+), 710 deletions(-)
 create mode 100644 drivers/base/power/opp/Makefile
 rename drivers/base/power/{opp.c => opp/core.c} (79%)
 create mode 100644 drivers/base/power/opp/cpu.c
 create mode 100644 drivers/base/power/opp/debugfs.c
 create mode 100644 drivers/base/power/opp/opp.h
 delete mode 100644 drivers/cpufreq/cpufreq_opp.c
Merging idle/next (aba5686671dc Merge branch 'cpuidle' into release)
$ git merge idle/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging apm/for-next (53675abbd1e5 x86, apm: Remove unused variable)
$ git merge apm/for-next
Already up-to-date.
Merging thermal/next (97584d1838b7 thermal: power_allocator: exit early if there are no cooling devices)
$ git merge thermal/next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/thermal/power_allocator.txt |   2 +-
 MAINTAINERS                               |  10 ++
 drivers/thermal/Kconfig                   |  17 ++-
 drivers/thermal/cpu_cooling.c             |  52 ++++---
 drivers/thermal/db8500_cpufreq_cooling.c  |   1 +
 drivers/thermal/power_allocator.c         | 243 ++++++++++++++++++++++--------
 drivers/thermal/thermal_core.c            |  28 ++++
 drivers/thermal/ti-soc-thermal/Kconfig    |   8 +-
 include/linux/thermal.h                   |   8 +-
 9 files changed, 269 insertions(+), 100 deletions(-)
Merging thermal-soc/next (0b547eff7460 thermal: power_allocator: exit early if there are no cooling devices)
$ git merge thermal-soc/next
Merge made by the 'recursive' strategy.
Merging ieee1394/for-next (d71e6a11737f firewire: core: use correct vendor/model IDs)
$ git merge ieee1394/for-next
Already up-to-date.
Merging dlm/next (b3a5bbfd780d dlm: print error from kernel_sendpage)
$ git merge dlm/next
Already up-to-date.
Merging swiotlb/linux-next (023600f192be swiotlb: do not export map_single function)
$ git merge swiotlb/linux-next
Already up-to-date.
Merging slave-dma/next (6ff33f3902c3 Linux 4.3-rc1)
$ git merge slave-dma/next
Already up-to-date.
Merging net-next/master (852bcafb9924 net: bcmgenet: Remove duplicate test for tx_coalesce_usecs_high)
$ git merge net-next/master
Auto-merging net/ipv6/xfrm6_output.c
Auto-merging net/ipv6/ip6_output.c
Auto-merging net/ipv6/addrconf.c
Auto-merging net/ipv4/xfrm4_policy.c
Auto-merging net/ipv4/route.c
Auto-merging net/core/rtnetlink.c
Auto-merging net/core/filter.c
Auto-merging net/bridge/br_multicast.c
Auto-merging net/bluetooth/smp.c
Auto-merging include/net/route.h
Auto-merging drivers/net/vrf.c
Auto-merging drivers/net/usb/Kconfig
Removing drivers/net/ethernet/hisilicon/hip04_mdio.c
Auto-merging drivers/net/ethernet/broadcom/genet/bcmgenet.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/net/can/sun4i_can.txt      |   36 +
 Documentation/devicetree/bindings/net/cpsw.txt     |    7 +
 .../bindings/net/hisilicon-hip04-net.txt           |    4 +-
 .../devicetree/bindings/net/hisilicon-hns-dsaf.txt |   49 +
 .../devicetree/bindings/net/hisilicon-hns-mdio.txt |   22 +
 .../devicetree/bindings/net/hisilicon-hns-nic.txt  |   47 +
 Documentation/networking/ieee802154.txt            |    8 +-
 arch/arm64/boot/dts/apm/apm-storm.dtsi             |   28 +
 arch/arm64/boot/dts/hisilicon/hip05_hns.dtsi       |  193 ++
 drivers/bluetooth/bt3c_cs.c                        |   12 +-
 drivers/bluetooth/btintel.c                        |   46 +
 drivers/bluetooth/btintel.h                        |   10 +-
 drivers/bluetooth/btmrvl_main.c                    |   14 -
 drivers/bluetooth/btusb.c                          |   51 +-
 drivers/bluetooth/hci_bcm.c                        |  222 +-
 drivers/bluetooth/hci_intel.c                      |  590 ++++-
 drivers/bluetooth/hci_qca.c                        |   12 +-
 drivers/net/bonding/bond_main.c                    |    4 +
 drivers/net/can/Kconfig                            |   10 +
 drivers/net/can/Makefile                           |    1 +
 drivers/net/can/sun4i_can.c                        |  857 +++++++
 drivers/net/dsa/mv88e6xxx.c                        |  151 +-
 drivers/net/dsa/mv88e6xxx.h                        |    8 +-
 drivers/net/ethernet/apm/xgene/xgene_enet_hw.c     |    3 +-
 drivers/net/ethernet/apm/xgene/xgene_enet_main.c   |   16 +-
 drivers/net/ethernet/apm/xgene/xgene_enet_main.h   |    5 +
 drivers/net/ethernet/broadcom/genet/bcmgenet.c     |  149 ++
 drivers/net/ethernet/broadcom/genet/bcmgenet.h     |    9 +-
 drivers/net/ethernet/hisilicon/Kconfig             |   34 +-
 drivers/net/ethernet/hisilicon/Makefile            |    4 +-
 drivers/net/ethernet/hisilicon/hip04_mdio.c        |  185 --
 drivers/net/ethernet/hisilicon/hns/Makefile        |   12 +
 drivers/net/ethernet/hisilicon/hns/hnae.c          |  507 ++++
 drivers/net/ethernet/hisilicon/hns/hnae.h          |  583 +++++
 drivers/net/ethernet/hisilicon/hns/hns_ae_adapt.c  |  777 +++++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c |  704 ++++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.h |   45 +
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c  |  900 +++++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.h  |  456 ++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_main.c | 2445 ++++++++++++++++++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_main.h |  427 ++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.c |  317 +++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.h |   43 +
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_ppe.c  |  583 +++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_ppe.h  |  105 +
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_rcb.c  | 1023 ++++++++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_rcb.h  |  137 ++
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_reg.h  |  972 ++++++++
 .../net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c    |  836 +++++++
 .../net/ethernet/hisilicon/hns/hns_dsaf_xgmac.h    |   15 +
 drivers/net/ethernet/hisilicon/hns/hns_enet.c      | 1646 +++++++++++++
 drivers/net/ethernet/hisilicon/hns/hns_enet.h      |   84 +
 drivers/net/ethernet/hisilicon/hns/hns_ethtool.c   | 1230 ++++++++++
 drivers/net/ethernet/hisilicon/hns_mdio.c          |  520 +++++
 drivers/net/ethernet/intel/fm10k/fm10k_debugfs.c   |    5 +-
 drivers/net/ethernet/intel/fm10k/fm10k_iov.c       |    3 -
 drivers/net/ethernet/intel/fm10k/fm10k_main.c      |   12 +-
 drivers/net/ethernet/intel/fm10k/fm10k_netdev.c    |   39 +-
 drivers/net/ethernet/intel/fm10k/fm10k_pci.c       |  176 +-
 drivers/net/ethernet/intel/fm10k/fm10k_pf.c        |  105 +-
 drivers/net/ethernet/intel/fm10k/fm10k_type.h      |    1 -
 drivers/net/ethernet/intel/fm10k/fm10k_vf.c        |   14 -
 drivers/net/ethernet/intel/i40e/i40e_adminq.c      |   20 +
 drivers/net/ethernet/intel/i40e/i40e_adminq.h      |    1 +
 drivers/net/ethernet/intel/i40e/i40e_main.c        |    2 +-
 drivers/net/ethernet/intel/i40e/i40e_nvm.c         |  386 ++-
 drivers/net/ethernet/intel/i40e/i40e_type.h        |   10 +-
 drivers/net/ethernet/intel/i40evf/i40e_adminq.c    |    7 +
 drivers/net/ethernet/intel/i40evf/i40e_adminq.h    |    1 +
 drivers/net/ethernet/intel/i40evf/i40e_type.h      |   10 +-
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe.h           |    3 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c   |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c       |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c      |   25 +-
 drivers/net/ethernet/marvell/mv643xx_eth.c         |   43 +-
 drivers/net/ethernet/smsc/smc91x.c                 |   29 +-
 drivers/net/ethernet/smsc/smc91x.h                 |   99 +-
 drivers/net/ethernet/ti/cpsw.c                     |    9 +
 drivers/net/ieee802154/Kconfig                     |    7 +
 drivers/net/ieee802154/at86rf230.c                 |  195 +-
 drivers/net/ieee802154/at86rf230.h                 |    8 +
 drivers/net/ieee802154/atusb.c                     |   13 +-
 drivers/net/usb/Kconfig                            |    4 +-
 drivers/net/usb/cdc-phonet.c                       |   27 +-
 drivers/net/usb/cdc_ether.c                        |  230 +-
 drivers/net/usb/cdc_ncm.c                          |   69 +-
 drivers/net/usb/lan78xx.c                          |  665 +++---
 drivers/net/usb/lan78xx.h                          |  193 --
 drivers/net/usb/qmi_wwan.c                         |   66 +-
 drivers/net/usb/usbnet.c                           |  138 ++
 drivers/net/vrf.c                                  |   11 +-
 drivers/net/xen-netfront.c                         |   17 +-
 drivers/s390/char/monreader.c                      |    4 +-
 drivers/s390/char/vmlogrdr.c                       |    8 +-
 drivers/s390/net/netiucv.c                         |   21 +-
 drivers/s390/net/qeth_core.h                       |   11 +-
 drivers/s390/net/qeth_core_main.c                  |  241 +-
 drivers/s390/net/qeth_core_sys.c                   |   43 +-
 drivers/s390/net/qeth_l2_main.c                    |   89 +-
 drivers/s390/net/qeth_l2_sys.c                     |    2 +-
 drivers/s390/net/qeth_l3_main.c                    |  158 +-
 drivers/s390/net/smsgiucv.c                        |    5 +-
 drivers/tty/hvc/hvc_iucv.c                         |   10 +-
 include/linux/ieee802154.h                         |   25 +
 include/linux/netdevice.h                          |   14 +-
 include/linux/netfilter.h                          |   68 +-
 include/linux/netfilter_bridge.h                   |    2 +-
 include/linux/netfilter_ingress.h                  |    2 +-
 include/linux/tcp.h                                |    3 +-
 include/linux/usb/cdc.h                            |   51 +
 include/net/6lowpan.h                              |  144 +-
 include/net/af_ieee802154.h                        |    2 +-
 include/net/bluetooth/bluetooth.h                  |   11 +
 include/net/bluetooth/hci_core.h                   |    1 +
 include/net/dn_neigh.h                             |    6 +-
 include/net/dst.h                                  |    6 +-
 include/net/ipv6.h                                 |    2 +-
 include/net/iucv/iucv.h                            |   20 +-
 include/net/mac802154.h                            |   15 +
 include/net/netfilter/br_netfilter.h               |    2 +-
 include/net/route.h                                |    2 +
 include/net/rtnetlink.h                            |    3 +-
 include/net/sch_generic.h                          |    3 +-
 include/net/sock.h                                 |   12 +-
 include/net/tcp.h                                  |    1 +
 include/net/xfrm.h                                 |    2 -
 include/uapi/linux/bpf.h                           |    9 +
 include/uapi/linux/pkt_cls.h                       |    4 +
 include/uapi/linux/rtnetlink.h                     |    2 +
 include/uapi/linux/usb/cdc.h                       |    6 +-
 net/6lowpan/iphc.c                                 |   13 +-
 net/6lowpan/nhc_udp.c                              |   13 +-
 net/bluetooth/hci_core.c                           |    5 +-
 net/bluetooth/hci_event.c                          |   21 +
 net/bluetooth/hci_sock.c                           |   11 +-
 net/bluetooth/lib.c                                |   16 +
 net/bluetooth/smp.c                                |    2 +-
 net/bridge/br_forward.c                            |   16 +-
 net/bridge/br_input.c                              |   25 +-
 net/bridge/br_multicast.c                          |    4 +-
 net/bridge/br_netfilter_hooks.c                    |   54 +-
 net/bridge/br_netfilter_ipv6.c                     |    8 +-
 net/bridge/br_private.h                            |    6 +-
 net/bridge/br_stp_bpdu.c                           |   12 +-
 net/bridge/netfilter/ebtable_filter.c              |    4 +-
 net/bridge/netfilter/ebtable_nat.c                 |    4 +-
 net/core/dev.c                                     |   20 +-
 net/core/filter.c                                  |   58 +
 net/core/net-sysfs.c                               |    9 +-
 net/core/rtnetlink.c                               |    2 +-
 net/decnet/dn_neigh.c                              |   23 +-
 net/decnet/dn_nsp_in.c                             |    7 +-
 net/decnet/dn_nsp_out.c                            |    4 +-
 net/decnet/dn_route.c                              |   30 +-
 net/ieee802154/6lowpan/6lowpan_i.h                 |   14 +-
 net/ieee802154/6lowpan/core.c                      |  116 +-
 net/ieee802154/6lowpan/reassembly.c                |  157 +-
 net/ieee802154/6lowpan/rx.c                        |  352 ++-
 net/ieee802154/6lowpan/tx.c                        |   51 +-
 net/ipv4/af_inet.c                                 |   16 +-
 net/ipv4/arp.c                                     |   20 +-
 net/ipv4/devinet.c                                 |    3 +-
 net/ipv4/ip_forward.c                              |   19 +-
 net/ipv4/ip_input.c                                |   39 +-
 net/ipv4/ip_output.c                               |   58 +-
 net/ipv4/ip_vti.c                                  |    2 +-
 net/ipv4/ipmr.c                                    |   15 +-
 net/ipv4/netfilter/arptable_filter.c               |    4 +-
 net/ipv4/netfilter/ip_tables.c                     |    8 +-
 net/ipv4/netfilter/ipt_CLUSTERIP.c                 |    2 +-
 net/ipv4/netfilter/ipt_SYNPROXY.c                  |    2 +-
 net/ipv4/netfilter/iptable_filter.c                |    6 +-
 net/ipv4/netfilter/iptable_mangle.c                |    7 +-
 net/ipv4/netfilter/iptable_nat.c                   |    5 +-
 net/ipv4/netfilter/iptable_raw.c                   |    6 +-
 net/ipv4/netfilter/iptable_security.c              |    5 +-
 net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c     |    4 +-
 net/ipv4/raw.c                                     |    5 +-
 net/ipv4/route.c                                   |  107 +-
 net/ipv4/syncookies.c                              |    2 +-
 net/ipv4/tcp_input.c                               |   30 +-
 net/ipv4/tcp_ipv4.c                                |    2 +-
 net/ipv4/tcp_minisocks.c                           |    3 +-
 net/ipv4/tcp_output.c                              |   11 +-
 net/ipv4/xfrm4_input.c                             |    7 +-
 net/ipv4/xfrm4_output.c                            |   11 +-
 net/ipv4/xfrm4_policy.c                            |    1 +
 net/ipv6/addrconf.c                                |   13 +-
 net/ipv6/ip6_input.c                               |   15 +-
 net/ipv6/ip6_output.c                              |   38 +-
 net/ipv6/ip6_vti.c                                 |    2 +-
 net/ipv6/ip6mr.c                                   |   12 +-
 net/ipv6/mcast.c                                   |    9 +-
 net/ipv6/ndisc.c                                   |    6 +-
 net/ipv6/netfilter/ip6_tables.c                    |    8 +-
 net/ipv6/netfilter/ip6t_SYNPROXY.c                 |    2 +-
 net/ipv6/netfilter/ip6table_filter.c               |    5 +-
 net/ipv6/netfilter/ip6table_mangle.c               |    6 +-
 net/ipv6/netfilter/ip6table_nat.c                  |    5 +-
 net/ipv6/netfilter/ip6table_raw.c                  |    5 +-
 net/ipv6/netfilter/ip6table_security.c             |    4 +-
 net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c     |    4 +-
 net/ipv6/netfilter/nf_defrag_ipv6_hooks.c          |    2 +-
 net/ipv6/output_core.c                             |    8 +-
 net/ipv6/raw.c                                     |    9 +-
 net/ipv6/syncookies.c                              |    2 +-
 net/ipv6/tcp_ipv6.c                                |    2 +-
 net/ipv6/xfrm6_input.c                             |    4 +-
 net/ipv6/xfrm6_output.c                            |   11 +-
 net/iucv/af_iucv.c                                 |    9 +-
 net/iucv/iucv.c                                    |   12 +-
 net/netfilter/ipvs/ip_vs_xmit.c                    |    8 +-
 net/netfilter/nf_queue.c                           |    2 +-
 net/netfilter/nfnetlink_queue_core.c               |    3 +-
 net/rxrpc/ar-connection.c                          |    4 +-
 net/rxrpc/ar-internal.h                            |    4 +-
 net/rxrpc/ar-transport.c                           |    4 +-
 net/sched/act_bpf.c                                |    1 +
 net/sched/cls_bpf.c                                |   61 +-
 net/sched/sch_dsmark.c                             |   63 +-
 net/xfrm/xfrm_output.c                             |   18 +-
 net/xfrm/xfrm_policy.c                             |    4 +-
 samples/bpf/bpf_helpers.h                          |    4 +
 samples/bpf/tcbpf1_kern.c                          |   24 +-
 225 files changed, 19906 insertions(+), 2757 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/can/sun4i_can.txt
 create mode 100644 Documentation/devicetree/bindings/net/hisilicon-hns-dsaf.txt
 create mode 100644 Documentation/devicetree/bindings/net/hisilicon-hns-mdio.txt
 create mode 100644 Documentation/devicetree/bindings/net/hisilicon-hns-nic.txt
 create mode 100644 arch/arm64/boot/dts/hisilicon/hip05_hns.dtsi
 create mode 100644 drivers/net/can/sun4i_can.c
 delete mode 100644 drivers/net/ethernet/hisilicon/hip04_mdio.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/Makefile
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hnae.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hnae.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_ae_adapt.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_main.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_main.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_ppe.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_ppe.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_rcb.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_rcb.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_reg.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_enet.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_enet.h
 create mode 100644 drivers/net/ethernet/hisilicon/hns/hns_ethtool.c
 create mode 100644 drivers/net/ethernet/hisilicon/hns_mdio.c
 create mode 100644 include/linux/usb/cdc.h
$ git am -3 ../patches/drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null.patch
Applying: drivers/net/ieee802154/at86rf230.c: seq_printf() now returns NULL
$ git reset HEAD^
Unstaged changes after reset:
M	drivers/net/ieee802154/at86rf230.c
$ git add -A .
$ git commit -v -a --amend
[master 804a2f8f759c] Merge remote-tracking branch 'net-next/master'
 Date: Tue Sep 22 10:49:49 2015 +1000
$ git am -3 ../patches/drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix.patch
Applying: drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix
$ git reset HEAD^
Unstaged changes after reset:
M	drivers/net/ieee802154/at86rf230.c
$ git add -A .
$ git commit -v -a --amend
[master 3d5768590cfd] Merge remote-tracking branch 'net-next/master'
 Date: Tue Sep 22 10:49:49 2015 +1000
Merging ipsec-next/master (e69948a0a530 net: Document xfrm4_gc_thresh and xfrm6_gc_thresh)
$ git merge ipsec-next/master
Already up-to-date.
Merging wireless-drivers-next/master (e904cf6fe230 ath9k_htc: introduce support for different fw versions)
$ git merge wireless-drivers-next/master
Merge made by the 'recursive' strategy.
 drivers/net/wireless/ath/ath9k/hif_usb.c      | 106 ++++++++++++++++++++------
 drivers/net/wireless/ath/ath9k/hif_usb.h      |  21 ++++-
 drivers/net/wireless/ath/ath9k/htc_drv_init.c |   4 +
 3 files changed, 105 insertions(+), 26 deletions(-)
Merging bluetooth/master (4aa9af0f24b2 Bluetooth: btmrvl: add sd8997 chipset support)
$ git merge bluetooth/master
Auto-merging drivers/net/ieee802154/at86rf230.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../bindings/net/ieee802154/mrf24j40.txt           |   20 +
 MAINTAINERS                                        |    1 +
 drivers/bluetooth/Kconfig                          |    4 +-
 drivers/bluetooth/btmrvl_sdio.c                    |   52 +-
 drivers/net/ieee802154/Kconfig                     |    1 +
 drivers/net/ieee802154/at86rf230.c                 |  211 ++-
 drivers/net/ieee802154/mrf24j40.c                  | 1424 ++++++++++++++------
 include/linux/ieee802154.h                         |   23 +
 include/net/6lowpan.h                              |    8 +
 include/net/cfg802154.h                            |   33 +
 include/net/ieee802154_netdev.h                    |   11 +-
 include/net/mac802154.h                            |    8 -
 net/6lowpan/nhc.h                                  |    2 -
 net/ieee802154/6lowpan/core.c                      |   14 +-
 net/ieee802154/6lowpan/tx.c                        |   20 +-
 net/ieee802154/header_ops.c                        |   20 +-
 net/ieee802154/socket.c                            |    4 +-
 net/mac802154/iface.c                              |  108 +-
 net/mac802154/llsec.c                              |    1 +
 net/mac802154/tx.c                                 |   14 +-
 20 files changed, 1364 insertions(+), 615 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Merging rdma/for-next (64291f7db5bd Linux 4.2)
$ git merge rdma/for-next
Already up-to-date.
Merging mtd/master (6ff33f3902c3 Linux 4.3-rc1)
$ git merge mtd/master
Already up-to-date.
Merging l2-mtd/master (db66e32e0d2a Merge tag 'v4.3-rc1' into MTD -next development)
$ git merge l2-mtd/master
Merge made by the 'recursive' strategy.
 drivers/mtd/devices/m25p80.c                  | 15 +++++------
 drivers/mtd/nand/brcmnand/brcmnand.c          |  5 ++--
 drivers/mtd/nand/nand_base.c                  |  4 +--
 drivers/mtd/nand/pxa3xx_nand.c                | 33 ++++++++++++++++++-----
 drivers/mtd/nand/sunxi_nand.c                 | 39 +++++++++++++--------------
 drivers/mtd/spi-nor/fsl-quadspi.c             | 23 +++++-----------
 drivers/mtd/spi-nor/nxp-spifi.c               | 11 +++-----
 drivers/mtd/spi-nor/spi-nor.c                 | 30 ++++++++++-----------
 include/linux/mtd/nand.h                      |  4 +--
 include/linux/mtd/spi-nor.h                   |  9 ++++---
 include/linux/platform_data/mtd-nand-pxa3xx.h | 27 -------------------
 11 files changed, 91 insertions(+), 109 deletions(-)
Merging crypto/master (97bce7e0b58d crypto: crc32c-pclmul - use .rodata instead of .rotata)
$ git merge crypto/master
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/rng/st,rng.txt |  15 +
 Documentation/hw_random.txt                      |   8 +-
 MAINTAINERS                                      |   1 +
 arch/arm/boot/dts/stih407-family.dtsi            |  14 +
 arch/x86/Makefile                                |   6 +-
 arch/x86/crypto/Makefile                         |   8 +
 arch/x86/crypto/crc32c-pcl-intel-asm_64.S        |   2 +-
 arch/x86/crypto/sha1_ni_asm.S                    | 302 +++++++++++++++++++
 arch/x86/crypto/sha1_ssse3_glue.c                | 314 ++++++++++++++++----
 arch/x86/crypto/sha256_ni_asm.S                  | 353 +++++++++++++++++++++++
 arch/x86/crypto/sha256_ssse3_glue.c              | 329 ++++++++++++++++++---
 arch/x86/crypto/sha512_ssse3_glue.c              | 249 +++++++++++++---
 crypto/Kconfig                                   |  10 +-
 crypto/asymmetric_keys/x509_cert_parser.c        |   6 +-
 crypto/tcrypt.c                                  |  17 +-
 drivers/char/hw_random/Kconfig                   |  12 +-
 drivers/char/hw_random/Makefile                  |   1 +
 drivers/char/hw_random/core.c                    |   2 +-
 drivers/char/hw_random/mxc-rnga.c                |  14 +-
 drivers/char/hw_random/octeon-rng.c              |  12 +-
 drivers/char/hw_random/pasemi-rng.c              |   1 +
 drivers/char/hw_random/ppc4xx-rng.c              |   1 +
 drivers/char/hw_random/st-rng.c                  | 144 +++++++++
 drivers/crypto/Kconfig                           |   2 +-
 drivers/crypto/amcc/crypto4xx_core.c             |  23 +-
 drivers/crypto/bfin_crc.c                        |  25 +-
 drivers/crypto/caam/desc.h                       |   1 -
 drivers/crypto/picoxcell_crypto.c                |   1 +
 drivers/crypto/qat/qat_common/adf_sriov.c        |   7 +-
 drivers/crypto/qat/qat_common/qat_crypto.c       |  61 ++--
 drivers/crypto/sahara.c                          |  30 +-
 drivers/crypto/ux500/cryp/cryp_core.c            |   1 +
 drivers/crypto/ux500/hash/hash_core.c            |   1 +
 33 files changed, 1673 insertions(+), 300 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/rng/st,rng.txt
 create mode 100644 arch/x86/crypto/sha1_ni_asm.S
 create mode 100644 arch/x86/crypto/sha256_ni_asm.S
 create mode 100644 drivers/char/hw_random/st-rng.c
Merging drm/drm-next (73bf1b7be7aa Merge branch 'drm-next-4.3' of git://people.freedesktop.org/~agd5f/linux into drm-next)
$ git merge drm/drm-next
Already up-to-date.
Merging drm-panel/drm/panel/for-next (a33ee95f8f45 drm/bridge: Put Kconfig entries in a separate menu)
$ git merge drm-panel/drm/panel/for-next
Already up-to-date.
Merging drm-intel/for-linux-next (a78695d3ea04 drm/i915/skl: handle port E in cpt_digital_port_connected)
$ git merge drm-intel/for-linux-next
Resolved 'drivers/gpu/drm/i915/i915_irq.c' using previous resolution.
Auto-merging drivers/gpu/drm/i915/intel_pm.c
Auto-merging drivers/gpu/drm/i915/intel_dsi.c
Auto-merging drivers/gpu/drm/i915/intel_dp_mst.c
Auto-merging drivers/gpu/drm/i915/intel_display.c
Auto-merging drivers/gpu/drm/i915/intel_csr.c
Auto-merging drivers/gpu/drm/i915/i915_irq.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/i915_irq.c
Auto-merging drivers/gpu/drm/i915/i915_gem_execbuffer.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
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master cf24eb28c105] Merge remote-tracking branch 'drm-intel/for-linux-next'
$ git diff -M --stat --summary HEAD^..
 Documentation/DocBook/drm.tmpl             |  14 +
 drivers/gpu/drm/i915/Makefile              |   4 +
 drivers/gpu/drm/i915/i915_cmd_parser.c     |  13 +-
 drivers/gpu/drm/i915/i915_debugfs.c        | 196 +++++-
 drivers/gpu/drm/i915/i915_dma.c            |  39 +-
 drivers/gpu/drm/i915/i915_drv.c            |  31 +-
 drivers/gpu/drm/i915/i915_drv.h            |  69 ++-
 drivers/gpu/drm/i915/i915_gem.c            |  96 ++-
 drivers/gpu/drm/i915/i915_gem_context.c    |   7 +
 drivers/gpu/drm/i915/i915_gem_execbuffer.c |   2 +-
 drivers/gpu/drm/i915/i915_gem_fence.c      |   4 +-
 drivers/gpu/drm/i915/i915_gem_gtt.c        | 738 +++++++++++++++++++----
 drivers/gpu/drm/i915/i915_gem_gtt.h        |  66 ++-
 drivers/gpu/drm/i915/i915_gem_stolen.c     |   5 +-
 drivers/gpu/drm/i915/i915_gem_userptr.c    |   4 -
 drivers/gpu/drm/i915/i915_gpu_error.c      |  41 +-
 drivers/gpu/drm/i915/i915_guc_reg.h        |  17 +-
 drivers/gpu/drm/i915/i915_guc_submission.c | 916 +++++++++++++++++++++++++++++
 drivers/gpu/drm/i915/i915_irq.c            | 519 ++++++++++------
 drivers/gpu/drm/i915/i915_params.c         |  10 +-
 drivers/gpu/drm/i915/i915_reg.h            | 156 +++--
 drivers/gpu/drm/i915/i915_trace.h          |  58 +-
 drivers/gpu/drm/i915/i915_vgpu.h           |  34 +-
 drivers/gpu/drm/i915/intel_atomic.c        |  13 +-
 drivers/gpu/drm/i915/intel_atomic_plane.c  |   6 +-
 drivers/gpu/drm/i915/intel_bios.c          |  18 -
 drivers/gpu/drm/i915/intel_bios.h          |   1 -
 drivers/gpu/drm/i915/intel_csr.c           |  12 +-
 drivers/gpu/drm/i915/intel_ddi.c           |  41 +-
 drivers/gpu/drm/i915/intel_display.c       | 415 ++++++-------
 drivers/gpu/drm/i915/intel_dp.c            | 766 +++++++++++++++---------
 drivers/gpu/drm/i915/intel_dp_mst.c        |  21 +-
 drivers/gpu/drm/i915/intel_drv.h           |  66 ++-
 drivers/gpu/drm/i915/intel_dsi.c           |   3 +
 drivers/gpu/drm/i915/intel_dvo.c           |   7 +
 drivers/gpu/drm/i915/intel_fbdev.c         |  11 +-
 drivers/gpu/drm/i915/intel_guc.h           | 122 ++++
 drivers/gpu/drm/i915/intel_guc_fwif.h      |  20 +-
 drivers/gpu/drm/i915/intel_guc_loader.c    | 613 +++++++++++++++++++
 drivers/gpu/drm/i915/intel_hdmi.c          | 207 ++++---
 drivers/gpu/drm/i915/intel_lrc.c           | 398 ++++++++-----
 drivers/gpu/drm/i915/intel_lrc.h           |  12 +-
 drivers/gpu/drm/i915/intel_lvds.c          |  17 +-
 drivers/gpu/drm/i915/intel_panel.c         | 234 +++++++-
 drivers/gpu/drm/i915/intel_pm.c            |  33 +-
 drivers/gpu/drm/i915/intel_ringbuffer.c    |  99 ++--
 drivers/gpu/drm/i915/intel_ringbuffer.h    |  15 +-
 drivers/gpu/drm/i915/intel_runtime_pm.c    | 415 +++++++++++--
 drivers/gpu/drm/i915/intel_sdvo.c          |   6 +-
 drivers/gpu/drm/i915/intel_sprite.c        |  36 +-
 drivers/gpu/drm/i915/intel_tv.c            |   2 +-
 drivers/gpu/drm/i915/intel_uncore.c        |  10 +-
 include/drm/drm_dp_helper.h                |   7 +
 53 files changed, 5170 insertions(+), 1495 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_guc_submission.c
 create mode 100644 drivers/gpu/drm/i915/intel_guc.h
 create mode 100644 drivers/gpu/drm/i915/intel_guc_loader.c
Merging drm-tegra/drm/tegra/for-next (459cc2c6800b drm/tegra: sor: Add HDMI support)
$ git merge drm-tegra/drm/tegra/for-next
Already up-to-date.
Merging drm-misc/topic/drm-misc (28cc504e8d52 drm/i915: enable atomic fb-helper)
$ git merge drm-misc/topic/drm-misc
Resolved 'drivers/gpu/drm/drm_dp_helper.c' using previous resolution.
Auto-merging include/drm/drm_dp_helper.h
Auto-merging drivers/gpu/drm/i915/intel_tv.c
Auto-merging drivers/gpu/drm/i915/intel_fbdev.c
Auto-merging drivers/gpu/drm/i915/intel_drv.h
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_audio.c
Auto-merging drivers/gpu/drm/drm_dp_helper.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/drm_dp_helper.c
Auto-merging drivers/gpu/drm/drm_atomic_helper.c
Auto-merging drivers/gpu/drm/drm_atomic.c
Auto-merging Documentation/kernel-parameters.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 8f4274c48054] Merge remote-tracking branch 'drm-misc/topic/drm-misc'
$ git diff -M --stat --summary HEAD^..
 Documentation/kernel-parameters.txt             |  15 +-
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c |   4 +-
 drivers/gpu/drm/drm_atomic.c                    |  25 ++
 drivers/gpu/drm/drm_atomic_helper.c             | 316 ++++++++++++++++++------
 drivers/gpu/drm/drm_crtc.c                      |  18 +-
 drivers/gpu/drm/drm_dp_helper.c                 |  43 +++-
 drivers/gpu/drm/drm_drv.c                       |   8 +-
 drivers/gpu/drm/drm_edid.c                      |   8 +-
 drivers/gpu/drm/drm_edid_load.c                 |  43 +++-
 drivers/gpu/drm/drm_fb_helper.c                 | 178 ++++++++++++-
 drivers/gpu/drm/drm_internal.h                  |   2 +-
 drivers/gpu/drm/drm_mm.c                        |   6 +-
 drivers/gpu/drm/drm_modeset_lock.c              |   2 +
 drivers/gpu/drm/drm_plane_helper.c              |   6 +-
 drivers/gpu/drm/drm_sysfs.c                     |  49 ++--
 drivers/gpu/drm/exynos/exynos_drm_drv.c         |   2 +-
 drivers/gpu/drm/i2c/ch7006_drv.c                |   6 +-
 drivers/gpu/drm/i2c/ch7006_mode.c               |  26 +-
 drivers/gpu/drm/i2c/ch7006_priv.h               |  12 +-
 drivers/gpu/drm/i915/intel_audio.c              |   2 +-
 drivers/gpu/drm/i915/intel_display.c            |   9 +-
 drivers/gpu/drm/i915/intel_dp.c                 |   1 +
 drivers/gpu/drm/i915/intel_drv.h                |   2 -
 drivers/gpu/drm/i915/intel_fbdev.c              |   2 +
 drivers/gpu/drm/i915/intel_tv.c                 |   4 +-
 drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c       |  10 +-
 drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c       |  10 +-
 drivers/gpu/drm/msm/msm_atomic.c                |   2 +-
 drivers/gpu/drm/nouveau/dispnv04/tvmodesnv17.c  |   2 +-
 drivers/gpu/drm/nouveau/dispnv04/tvnv17.h       |   2 +-
 drivers/gpu/drm/omapdrm/omap_drv.c              |   2 +-
 drivers/gpu/drm/omapdrm/omap_plane.c            |  10 +-
 drivers/gpu/drm/radeon/atombios_dp.c            |   1 +
 drivers/gpu/drm/rcar-du/rcar_du_kms.c           |   2 +-
 drivers/gpu/drm/sti/sti_drv.c                   |   2 +-
 drivers/gpu/drm/tegra/dc.c                      |   2 -
 drivers/gpu/drm/tegra/dpaux.c                   |   3 +-
 drivers/gpu/drm/tegra/drm.c                     |   2 +-
 include/drm/drm_atomic_helper.h                 |  12 +-
 include/drm/drm_crtc.h                          |   4 +-
 include/drm/drm_dp_helper.h                     |   2 +-
 include/drm/drm_edid.h                          |   5 +-
 include/drm/drm_fb_helper.h                     |  31 ++-
 include/drm/drm_modeset_lock.h                  |  10 +-
 include/drm/drm_plane_helper.h                  |   2 -
 include/uapi/drm/drm_mode.h                     |  42 +++-
 46 files changed, 710 insertions(+), 237 deletions(-)
Merging drm-exynos/exynos-drm/for-next (7d9071a09502 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge drm-exynos/exynos-drm/for-next
Already up-to-date.
Merging drm-msm/msm-next (d248b61f6114 drm/msm/dsi: Introduce DSI configuration module)
$ git merge drm-msm/msm-next
Already up-to-date.
Merging sound/for-next (0052b7dcf9d9 ALSA: pcm: remove structure member of 'struct snd_pcm_hwptr_log *' type because this structure had been removed)
$ git merge sound/for-next
Merge made by the 'recursive' strategy.
 include/sound/pcm.h      | 6 ------
 sound/core/pcm.c         | 3 ---
 sound/pci/rme9652/hdsp.c | 1 +
 3 files changed, 1 insertion(+), 9 deletions(-)
Merging sound-asoc/for-next (93bbe6690efe Merge remote-tracking branches 'asoc/topic/simple', 'asoc/topic/spear', 'asoc/topic/sunxi', 'asoc/topic/tlv320aic3x' and 'asoc/topic/ux500' into asoc-next)
$ git merge sound-asoc/for-next
Removing sound/soc/codecs/hdmi.c
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/sound/ak4613.txt |  17 +
 Documentation/devicetree/bindings/sound/ak4642.txt |  22 +-
 .../devicetree/bindings/sound/renesas,rsnd.txt     |   7 +
 .../devicetree/bindings/sound/sun4i-codec.txt      |  33 +
 .../devicetree/bindings/sound/tdm-slot.txt         |  11 +-
 drivers/spi/spi-atmel.c                            |  21 +-
 include/sound/rcar_snd.h                           |   1 -
 include/sound/simple_card.h                        |   2 +
 include/sound/soc.h                                |  14 +
 sound/arm/Kconfig                                  |  15 +-
 sound/soc/Kconfig                                  |   1 +
 sound/soc/Makefile                                 |   1 +
 sound/soc/atmel/atmel_wm8904.c                     |   1 +
 sound/soc/au1x/db1000.c                            |  10 +-
 sound/soc/au1x/db1200.c                            |  10 +-
 sound/soc/au1x/psc-i2s.c                           |   1 -
 sound/soc/blackfin/bf5xx-ad1836.c                  |  11 +-
 sound/soc/blackfin/bfin-eval-adau1373.c            |  12 +-
 sound/soc/blackfin/bfin-eval-adau1701.c            |  12 +-
 sound/soc/blackfin/bfin-eval-adav80x.c             |  12 +-
 sound/soc/codecs/Kconfig                           |   9 +-
 sound/soc/codecs/Makefile                          |   4 +-
 sound/soc/codecs/ak4613.c                          | 497 ++++++++++++++
 sound/soc/codecs/ak4642.c                          | 153 +++--
 sound/soc/codecs/arizona.c                         |  16 +
 sound/soc/codecs/arizona.h                         |   2 +
 sound/soc/codecs/hdmi.c                            | 109 ----
 sound/soc/codecs/rt5645.c                          |  13 +-
 sound/soc/codecs/tlv320aic3x.c                     |  30 +-
 sound/soc/codecs/wm0010.c                          |  23 +-
 sound/soc/codecs/wm5110.c                          | 187 +++++-
 sound/soc/codecs/wm8960.c                          |  26 +-
 sound/soc/codecs/wm8962.c                          |   3 +-
 sound/soc/davinci/davinci-mcasp.c                  | 319 +++++----
 sound/soc/fsl/fsl-asoc-card.c                      |   4 +-
 sound/soc/fsl/fsl_sai.c                            |   1 +
 sound/soc/fsl/fsl_ssi.c                            |   5 +-
 sound/soc/generic/simple-card.c                    |   8 +-
 sound/soc/intel/atom/sst-mfld-platform-pcm.c       |  17 -
 sound/soc/intel/boards/broadwell.c                 |   9 +-
 sound/soc/intel/haswell/sst-haswell-ipc.c          |  20 +-
 sound/soc/intel/skylake/skl-pcm.c                  |  33 -
 sound/soc/jz4740/jz4740-i2s.c                      |   1 +
 sound/soc/kirkwood/armada-370-db.c                 |   1 +
 sound/soc/mediatek/mt8173-max98090.c               |  11 +-
 sound/soc/mediatek/mt8173-rt5650-rt5676.c          |  11 +-
 sound/soc/mediatek/mtk-afe-pcm.c                   |  17 +
 sound/soc/mxs/mxs-sgtl5000.c                       |   6 +-
 sound/soc/pxa/Kconfig                              |   2 -
 sound/soc/pxa/brownstone.c                         |   9 +-
 sound/soc/pxa/corgi.c                              |  11 +-
 sound/soc/pxa/e740_wm9705.c                        |   5 +-
 sound/soc/pxa/e750_wm9705.c                        |   5 +-
 sound/soc/pxa/e800_wm9712.c                        |   5 +-
 sound/soc/pxa/hx4700.c                             |   4 +-
 sound/soc/pxa/imote2.c                             |  11 +-
 sound/soc/pxa/mioa701_wm9713.c                     |  11 +-
 sound/soc/pxa/palm27x.c                            |   9 +-
 sound/soc/pxa/poodle.c                             |  11 +-
 sound/soc/pxa/pxa-ssp.c                            |   1 +
 sound/soc/pxa/pxa2xx-pcm.c                         |   1 +
 sound/soc/pxa/spitz.c                              |   5 +-
 sound/soc/pxa/tosa.c                               |   5 +-
 sound/soc/pxa/ttc-dkb.c                            |  12 +-
 sound/soc/qcom/lpass-cpu.c                         |   3 +-
 sound/soc/rockchip/Kconfig                         |   4 +-
 sound/soc/sh/Kconfig                               |   1 +
 sound/soc/sh/rcar/adg.c                            | 303 +++++++--
 sound/soc/sh/rcar/core.c                           |  12 +
 sound/soc/sh/rcar/ctu.c                            |   6 +-
 sound/soc/sh/rcar/dvc.c                            |   6 +-
 sound/soc/sh/rcar/mix.c                            |   6 +-
 sound/soc/sh/rcar/rsnd.h                           |  15 +-
 sound/soc/sh/rcar/src.c                            |  17 +-
 sound/soc/sh/rcar/ssi.c                            |  98 +--
 sound/soc/sh/siu_dai.c                             |  85 +--
 sound/soc/soc-core.c                               |  25 +
 sound/soc/soc-dapm.c                               |   2 +-
 sound/soc/soc-pcm.c                                |  49 ++
 sound/soc/soc-utils.c                              |   9 +
 sound/soc/spear/Kconfig                            |   2 +-
 sound/soc/sti/uniperif_player.c                    |  14 +-
 sound/soc/sti/uniperif_reader.c                    |   6 +-
 sound/soc/sunxi/Kconfig                            |  11 +
 sound/soc/sunxi/Makefile                           |   2 +
 sound/soc/sunxi/sun4i-codec.c                      | 719 +++++++++++++++++++++
 sound/soc/ux500/mop500.c                           |   1 +
 sound/soc/ux500/ux500_msp_dai.c                    |   1 +
 88 files changed, 2433 insertions(+), 820 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/ak4613.txt
 create mode 100644 Documentation/devicetree/bindings/sound/sun4i-codec.txt
 create mode 100644 sound/soc/codecs/ak4613.c
 delete mode 100644 sound/soc/codecs/hdmi.c
 create mode 100644 sound/soc/sunxi/Kconfig
 create mode 100644 sound/soc/sunxi/Makefile
 create mode 100644 sound/soc/sunxi/sun4i-codec.c
Merging modules/modules-next (5cfb203a304d modpost: abort if a module symbol is too long)
$ git merge modules/modules-next
Merge made by the 'recursive' strategy.
 scripts/mod/modpost.c | 11 +++++++++++
 1 file changed, 11 insertions(+)
Merging input/next (c5c18a06af75 Input: ad714x - convert to using managed resources)
$ git merge input/next
Merge made by the 'recursive' strategy.
 drivers/input/misc/ad714x-i2c.c |  10 --
 drivers/input/misc/ad714x-spi.c |  10 --
 drivers/input/misc/ad714x.c     | 214 +++++++++++++++-------------------------
 drivers/input/misc/ad714x.h     |   1 -
 4 files changed, 82 insertions(+), 153 deletions(-)
Merging block/for-next (3cb73014ad06 Merge branch 'for-4.3/core' into for-next)
$ git merge block/for-next
Merge made by the 'recursive' strategy.
Merging device-mapper/for-next (586b286b110e dm crypt: constrain crypt device's max_segment_size to PAGE_SIZE)
$ git merge device-mapper/for-next
Merge made by the 'recursive' strategy.
 drivers/md/dm-crypt.c | 17 +++++++++++++++--
 drivers/md/dm-thin.c  |  4 ++++
 2 files changed, 19 insertions(+), 2 deletions(-)
Merging pcmcia/master (e8e68fd86d22 pcmcia: do not break rsrc_nonstatic when handling anonymous cards)
$ git merge pcmcia/master
Already up-to-date.
Merging mmc/mmc-next (11bc9381b277 mmc: sdhci-s3c: use mmc_of_parse and remove the card_tasklet)
$ git merge mmc/mmc-next
Already up-to-date.
Merging mmc-uh/next (ed0a326af152 mmc: sdhci-pltfm: Use of_property_read_u32 instead of open-coding it)
$ git merge mmc-uh/next
Merge made by the 'recursive' strategy.
 drivers/mmc/core/core.c           |  6 ++++++
 drivers/mmc/core/host.c           |  4 ++--
 drivers/mmc/core/mmc_ops.c        |  1 -
 drivers/mmc/core/mmc_ops.h        |  3 +++
 drivers/mmc/core/pwrseq_emmc.c    |  2 +-
 drivers/mmc/core/sd.c             |  2 --
 drivers/mmc/core/sdio.c           | 20 +++++++++++++++-----
 drivers/mmc/host/mmc_spi.c        |  1 +
 drivers/mmc/host/sdhci-acpi.c     |  1 +
 drivers/mmc/host/sdhci-bcm-kona.c |  2 +-
 drivers/mmc/host/sdhci-of-at91.c  |  1 -
 drivers/mmc/host/sdhci-pltfm.c    |  6 +-----
 drivers/mmc/host/sdhci.c          | 22 +++++++++++-----------
 drivers/mmc/host/vub300.c         |  6 +++---
 drivers/mmc/host/wbsd.c           |  2 +-
 include/linux/mmc/core.h          |  2 --
 16 files changed, 46 insertions(+), 35 deletions(-)
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 (e89c6fdf9e0e Merge linux-block/for-4.3/core into md/for-linux)
$ git merge md/for-next
Already up-to-date.
Merging mfd/for-mfd-next (ea1d38d77b43 mfd: rt5033: Remove unnecessary MODULE_ALIAS())
$ git merge mfd/for-mfd-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mfd/axp20x.txt |   4 +-
 drivers/mfd/88pm80x.c                            |   2 +
 drivers/mfd/arizona-irq.c                        |   2 +-
 drivers/mfd/atmel-hlcdc.c                        |   1 +
 drivers/mfd/bcm590xx.c                           |   1 -
 drivers/mfd/cros_ec_i2c.c                        |   7 +
 drivers/mfd/hi6421-pmic-core.c                   |   1 +
 drivers/mfd/intel-lpss.c                         |  12 +-
 drivers/mfd/max8997.c                            |   1 +
 drivers/mfd/rt5033.c                             |   1 -
 drivers/mfd/sec-core.c                           |  30 ++++
 drivers/mfd/sm501.c                              |   1 +
 drivers/mfd/stmpe.c                              |   1 +
 drivers/mfd/tps65217.c                           |   4 +
 drivers/mfd/twl6040.c                            |   2 +
 drivers/mfd/wm5110-tables.c                      | 188 ++++++++++++++++++++++-
 drivers/mfd/wm831x-core.c                        |   4 +-
 drivers/mfd/wm8998-tables.c                      |  10 +-
 include/linux/mfd/88pm80x.h                      |   1 +
 include/linux/mfd/arizona/registers.h            |  70 +++++++++
 include/linux/mfd/samsung/core.h                 |   2 +
 include/linux/mfd/samsung/s2mps11.h              |   1 +
 22 files changed, 322 insertions(+), 24 deletions(-)
Merging backlight/for-backlight-next (13d20b3b618a backlight: tosa: Export I2C module alias information)
$ git merge backlight/for-backlight-next
Already up-to-date.
Merging battery/master (9bdc0e5eee20 twl4030_charger: fix another compile error)
$ git merge battery/master
Merge made by the 'recursive' strategy.
Merging omap_dss2/for-next (7b554088d56e video: fbdev: pxa168fb: Use devm_clk_get)
$ git merge omap_dss2/for-next
Already up-to-date.
Merging regulator/for-next (8f81f50a9c8b Merge remote-tracking branches 'regulator/topic/pwm', 'regulator/topic/qcom-smd' and 'regulator/topic/tps65023' into regulator-next)
$ git merge regulator/for-next
Merge made by the 'recursive' strategy.
 .../bindings/regulator/pbias-regulator.txt         |   7 +-
 .../devicetree/bindings/regulator/regulator.txt    |   1 +
 .../devicetree/bindings/regulator/tps65023.txt     |  60 +++++
 drivers/regulator/anatop-regulator.c               |   1 +
 drivers/regulator/bcm590xx-regulator.c             |   2 +-
 drivers/regulator/core.c                           | 284 +++++++++++++--------
 drivers/regulator/da9063-regulator.c               |   2 +-
 drivers/regulator/gpio-regulator.c                 |   1 +
 drivers/regulator/of_regulator.c                   |   3 +
 drivers/regulator/pbias-regulator.c                |  56 +++-
 drivers/regulator/pwm-regulator.c                  |  35 ++-
 drivers/regulator/qcom_smd-regulator.c             |  28 +-
 drivers/regulator/tps65023-regulator.c             | 282 ++++++++------------
 drivers/regulator/tps65218-regulator.c             |   2 +-
 drivers/regulator/vexpress.c                       |   1 +
 15 files changed, 455 insertions(+), 310 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/regulator/tps65023.txt
Merging security/next (07f081fb5057 PKCS#7: Add OIDs for sha224, sha284 and sha512 hash algos and use them)
$ git merge security/next
Already up-to-date.
Merging integrity/next (24fd03c87695 ima: update builtin policies)
$ git merge integrity/next
Already up-to-date.
Merging selinux/next (fda4d578ed0a selinux: explicitly declare the role "base_r")
$ git merge selinux/next
Already up-to-date.
Merging lblnet/next (b2776bf7149b Linux 3.18)
$ git merge lblnet/next
Already up-to-date.
Merging watchdog/master (55f1dfb398d9 watchdog: iTCO: Fix dependencies on I2C)
$ git merge watchdog/master
Merge made by the 'recursive' strategy.
 drivers/watchdog/Kconfig       |  3 ++-
 drivers/watchdog/bcm2835_wdt.c | 10 ++++++++--
 drivers/watchdog/gef_wdt.c     |  1 +
 drivers/watchdog/mena21_wdt.c  |  1 +
 drivers/watchdog/moxart_wdt.c  |  1 +
 5 files changed, 13 insertions(+), 3 deletions(-)
Merging iommu/next (4ad79562577a Merge branches 'arm/omap', 'arm/msm', 'arm/smmu', 'arm/tegra', 'x86/vt-d', 'x86/amd', 'ppc/pamu' and 'core' into next)
$ git merge iommu/next
Already up-to-date.
Merging dwmw2-iommu/master (5dbaf90a6780 iommu/vt-d: Add initial shell of SVM support)
$ git merge dwmw2-iommu/master
Auto-merging include/linux/intel-iommu.h
Auto-merging drivers/iommu/intel-iommu.c
Auto-merging drivers/iommu/Kconfig
Merge made by the 'recursive' strategy.
 drivers/iommu/Kconfig       |  10 +++-
 drivers/iommu/Makefile      |   1 +
 drivers/iommu/intel-iommu.c |  19 +++++--
 drivers/iommu/intel-svm.c   |  71 ++++++++++++++++++++++++++
 drivers/iommu/iova.c        | 120 +++++++++++++++++++++++++-------------------
 include/linux/intel-iommu.h |  15 ++++++
 include/linux/iova.h        |   4 +-
 7 files changed, 183 insertions(+), 57 deletions(-)
 create mode 100644 drivers/iommu/intel-svm.c
Merging vfio/next (a714ea5fa416 MAINTAINERS: Add vfio-platform sub-maintainer)
$ git merge vfio/next
Already up-to-date.
Merging jc_docs/docs-next (ad29fff88976 README: Add ARC architecture)
$ git merge jc_docs/docs-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/DocBook/.gitignore            |   2 +
 Documentation/filesystems/sysfs-tagging.txt |  14 ++--
 Documentation/filesystems/sysfs.txt         |   9 ++-
 Documentation/locking/lockstat.txt          |   2 +-
 Documentation/misc-devices/apds990x.txt     |   2 +-
 Documentation/misc-devices/isl29003         |   2 +-
 Documentation/misc-devices/max6875          |   2 +-
 Documentation/networking/can.txt            |  97 ++++++++++++++++++-----
 Documentation/rbtree.txt                    |   2 +-
 Documentation/zh_CN/filesystems/sysfs.txt   |   2 +-
 MAINTAINERS                                 |   2 +
 README                                      |   2 +-
 scripts/kernel-doc                          | 115 ++++++++++++++++------------
 13 files changed, 166 insertions(+), 87 deletions(-)
Merging trivial/for-next (e5f6450c3f40 MAINTAINERS: update my e-mail address)
$ git merge trivial/for-next
Already up-to-date.
Merging audit/next (15ce414b82b0 fixup: audit: implement audit by executable)
$ git merge audit/next
Already up-to-date.
Merging devicetree/devicetree/next (48a9b733e644 of/irq: Rename "intc_desc" to "of_intc_desc" to fix OF on sh)
$ git merge devicetree/devicetree/next
Already up-to-date.
Merging dt-rh/for-next (c8aa33a71147 of_pci_irq: Silence bogus "of_irq_parse_pci() failed ..." messages.)
$ git merge dt-rh/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/gic-v3.txt   |  5 ++++
 .../devicetree/bindings/iio/accel/bma180.txt       |  8 +++++--
 .../devicetree/bindings/thermal/thermal.txt        | 27 +++++++++++-----------
 .../devicetree/bindings/vendor-prefixes.txt        |  1 +
 drivers/of/of_pci_irq.c                            | 22 +++++++++++-------
 5 files changed, 40 insertions(+), 23 deletions(-)
Merging mailbox/mailbox-for-next (86e488adaab7 mailbox: arm_mhu: reduce txpoll_period from 10ms to 1 ms)
$ git merge mailbox/mailbox-for-next
Already up-to-date.
Merging spi/for-next (930fbeda2630 Merge remote-tracking branches 'spi/topic/stats' and 'spi/topic/txx9' into spi-next)
$ git merge spi/for-next
Auto-merging drivers/spi/spi-atmel.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/spi/spi-mt65xx.txt         | 16 ++--
 drivers/spi/spi-atmel.c                            |  2 +
 drivers/spi/spi-au1550.c                           | 11 ++-
 drivers/spi/spi-bcm2835.c                          |  6 +-
 drivers/spi/spi-bcm53xx.c                          | 13 +--
 drivers/spi/spi-bcm63xx.c                          | 24 ++++--
 drivers/spi/spi-bfin-sport.c                       |  5 +-
 drivers/spi/spi-bfin5xx.c                          |  6 +-
 drivers/spi/spi-bitbang.c                          | 17 ++--
 drivers/spi/spi-dw.c                               | 46 ++++------
 drivers/spi/spi-fsl-dspi.c                         |  3 -
 drivers/spi/spi-meson-spifc.c                      |  1 +
 drivers/spi/spi-mpc512x-psc.c                      |  8 +-
 drivers/spi/spi-mt65xx.c                           | 53 +++++-------
 drivers/spi/spi-oc-tiny.c                          | 14 ++--
 drivers/spi/spi-octeon.c                           |  2 +-
 drivers/spi/spi-omap-100k.c                        | 26 ++----
 drivers/spi/spi-omap-uwire.c                       |  7 +-
 drivers/spi/spi-ppc4xx.c                           |  4 +-
 drivers/spi/spi-pxa2xx.c                           | 98 ++++++++++------------
 drivers/spi/spi-pxa2xx.h                           |  3 -
 drivers/spi/spi-s3c24xx.c                          |  4 +-
 drivers/spi/spi-s3c64xx.c                          | 46 ++++++----
 drivers/spi/spi-txx9.c                             |  2 +-
 drivers/spi/spi.c                                  | 64 +++++++++++++-
 drivers/spi/spidev.c                               |  3 +-
 include/linux/spi/spi.h                            |  6 +-
 include/linux/spi/spi_bitbang.h                    |  2 +-
 28 files changed, 262 insertions(+), 230 deletions(-)
Merging tip/auto-latest (de36fa404f8e Merge branch 'x86/urgent')
$ git merge tip/auto-latest
Removing tools/lib/api/fs/tracefs.h
Removing tools/lib/api/fs/tracefs.c
Removing tools/lib/api/fs/findfs.h
Removing tools/lib/api/fs/findfs.c
Removing tools/lib/api/fs/debugfs.h
Removing tools/lib/api/fs/debugfs.c
Auto-merging kernel/sched/core.c
Auto-merging arch/x86/kvm/x86.c
Auto-merging arch/x86/crypto/sha512_ssse3_glue.c
Auto-merging arch/x86/crypto/sha256_ssse3_glue.c
Auto-merging arch/x86/crypto/sha1_ssse3_glue.c
Auto-merging arch/s390/kernel/perf_cpum_cf.c
Merge made by the 'recursive' strategy.
 Documentation/atomic_ops.txt                       |   4 +
 arch/arm64/include/asm/acpi.h                      |   5 +
 arch/arm64/include/asm/memory.h                    |   1 +
 arch/arm64/include/asm/pgtable.h                   |   2 +
 arch/arm64/kernel/acpi.c                           |  29 +
 arch/arm64/mm/proc.S                               |   4 +-
 arch/powerpc/perf/core-book3s.c                    |  36 +-
 arch/powerpc/perf/hv-24x7.c                        | 166 +++-
 arch/s390/kernel/perf_cpum_cf.c                    |  35 +-
 arch/sparc/kernel/perf_event.c                     |  32 +-
 arch/x86/boot/header.S                             |   2 +-
 arch/x86/crypto/camellia_aesni_avx2_glue.c         |   3 +-
 arch/x86/crypto/camellia_aesni_avx_glue.c          |   3 +-
 arch/x86/crypto/cast5_avx_glue.c                   |   3 +-
 arch/x86/crypto/cast6_avx_glue.c                   |   3 +-
 arch/x86/crypto/chacha20_glue.c                    |   2 +-
 arch/x86/crypto/poly1305_glue.c                    |   2 +-
 arch/x86/crypto/serpent_avx2_glue.c                |   3 +-
 arch/x86/crypto/serpent_avx_glue.c                 |   3 +-
 arch/x86/crypto/sha1_ssse3_glue.c                  |   2 +-
 arch/x86/crypto/sha256_ssse3_glue.c                |   2 +-
 arch/x86/crypto/sha512_ssse3_glue.c                |   2 +-
 arch/x86/crypto/twofish_avx_glue.c                 |   2 +-
 arch/x86/ia32/ia32_signal.c                        |   8 +-
 arch/x86/include/asm/acpi.h                        |  23 +
 arch/x86/include/asm/fpu/signal.h                  |   2 +-
 arch/x86/include/asm/fpu/types.h                   | 148 ++--
 arch/x86/include/asm/fpu/xstate.h                  |  15 +-
 arch/x86/include/asm/ia32.h                        |   4 +-
 arch/x86/include/asm/processor.h                   |   2 +-
 arch/x86/include/asm/sigcontext.h                  |  75 +-
 arch/x86/include/asm/sigframe.h                    |   8 +-
 arch/x86/include/asm/signal.h                      |   2 +-
 arch/x86/include/asm/trace/mpx.h                   |   7 +-
 arch/x86/include/asm/uv/uv_hub.h                   |   2 +-
 arch/x86/include/uapi/asm/sigcontext.h             | 475 +++++++----
 arch/x86/include/uapi/asm/sigcontext32.h           |  73 +-
 arch/x86/kernel/asm-offsets.c                      |  18 +-
 arch/x86/kernel/cpu/perf_event.c                   |  39 +-
 arch/x86/kernel/cpu/perf_event.h                   |   2 +-
 arch/x86/kernel/cpu/perf_event_intel_bts.c         |  13 +
 arch/x86/kernel/cpu/perf_event_intel_ds.c          |  40 +-
 arch/x86/kernel/cpu/perf_event_intel_lbr.c         |   5 +-
 arch/x86/kernel/cpu/perf_event_intel_pt.c          |   7 +-
 arch/x86/kernel/fpu/init.c                         |  18 +-
 arch/x86/kernel/fpu/regset.c                       |   4 +-
 arch/x86/kernel/fpu/signal.c                       |  10 +-
 arch/x86/kernel/fpu/xstate.c                       | 398 ++++++++--
 arch/x86/kernel/signal.c                           |   4 +-
 arch/x86/kernel/traps.c                            |   4 +-
 arch/x86/kernel/tsc.c                              |  24 +-
 arch/x86/kvm/cpuid.c                               |   4 +-
 arch/x86/kvm/x86.c                                 |  27 +-
 arch/x86/kvm/x86.h                                 |   6 +-
 arch/x86/lib/x86-opcode-map.txt                    |  24 +-
 arch/x86/math-emu/fpu_emu.h                        |   2 +-
 arch/x86/math-emu/fpu_entry.c                      |  36 -
 arch/x86/mm/mpx.c                                  |  15 +-
 arch/x86/platform/efi/efi-bgrt.c                   |   9 +-
 arch/x86/platform/efi/efi.c                        |  18 -
 arch/x86/platform/intel-mid/sfi.c                  |   3 +-
 arch/x86/platform/uv/uv_nmi.c                      |  53 +-
 drivers/acpi/apei/ghes.c                           |  10 +-
 drivers/firmware/efi/efi.c                         |  39 +-
 drivers/net/ethernet/sfc/mcdi.c                    |   2 +-
 drivers/phy/phy-rcar-gen2.c                        |   3 +-
 drivers/staging/speakup/selection.c                |   2 +-
 include/linux/efi.h                                |   1 +
 include/linux/perf_event.h                         | 120 ++-
 include/linux/sched.h                              |   8 +-
 kernel/cpu.c                                       |   8 +-
 kernel/events/core.c                               | 218 +++--
 kernel/sched/core.c                                |  32 +-
 kernel/sched/fair.c                                | 386 ++++-----
 kernel/sched/features.h                            |  21 +-
 kernel/sched/sched.h                               |  25 +-
 kernel/time/clocksource.c                          |   2 +-
 kernel/time/hrtimer.c                              |   2 +-
 kernel/time/timekeeping.c                          |   4 +-
 tools/build/Makefile.feature                       |   8 +-
 tools/build/feature/Makefile                       |  10 +-
 tools/build/feature/test-all.c                     |  10 +
 tools/build/feature/test-get_cpuid.c               |   7 +
 tools/build/feature/test-numa_num_possible_cpus.c  |   6 +
 tools/include/linux/err.h                          |  49 ++
 tools/include/linux/filter.h                       | 231 ++++++
 tools/lib/api/Build                                |   1 +
 tools/lib/api/cpu.c                                |  18 +
 tools/lib/api/cpu.h                                |   6 +
 tools/lib/api/fs/Build                             |   4 +-
 tools/lib/api/fs/debugfs.c                         | 129 ---
 tools/lib/api/fs/debugfs.h                         |  23 -
 tools/lib/api/fs/findfs.c                          |  63 --
 tools/lib/api/fs/findfs.h                          |  23 -
 tools/lib/api/fs/fs.c                              | 163 +++-
 tools/lib/api/fs/fs.h                              |  30 +-
 tools/lib/api/fs/tracefs.c                         |  78 --
 tools/lib/api/fs/tracefs.h                         |  21 -
 tools/lib/api/fs/tracing_path.c                    | 142 ++++
 tools/lib/api/fs/tracing_path.h                    |  16 +
 tools/lib/traceevent/event-parse.c                 |  56 +-
 tools/lib/traceevent/event-parse.h                 |   1 +
 tools/perf/Documentation/perf-report.txt           |   6 +-
 tools/perf/MANIFEST                                |   1 +
 tools/perf/Makefile.perf                           |   2 +-
 tools/perf/arch/common.c                           |  10 +-
 tools/perf/arch/common.h                           |   4 +-
 tools/perf/arch/x86/Makefile                       |   1 +
 tools/perf/arch/x86/util/dwarf-regs.c              | 122 ++-
 tools/perf/arch/x86/util/intel-pt.c                |  55 +-
 tools/perf/builtin-annotate.c                      |   2 +-
 tools/perf/builtin-kvm.c                           |   1 -
 tools/perf/builtin-probe.c                         | 116 ++-
 tools/perf/builtin-report.c                        |  11 +
 tools/perf/builtin-stat.c                          |   2 +-
 tools/perf/builtin-top.c                           |  17 +-
 tools/perf/builtin-trace.c                         |  24 +-
 tools/perf/config/Makefile                         |  24 +-
 tools/perf/perf.c                                  |  14 +-
 tools/perf/tests/Build                             |   4 +
 tools/perf/tests/builtin-test.c                    |  44 +-
 tools/perf/tests/code-reading.c                    |  74 +-
 tools/perf/tests/evsel-tp-sched.c                  |  10 +-
 tools/perf/tests/gen-insn-x86-dat.awk              |  75 ++
 tools/perf/tests/gen-insn-x86-dat.sh               |  43 +
 tools/perf/tests/hists_filter.c                    |  55 +-
 tools/perf/tests/insn-x86-dat-32.c                 | 658 ++++++++++++++++
 tools/perf/tests/insn-x86-dat-64.c                 | 768 ++++++++++++++++++
 tools/perf/tests/insn-x86-dat-src.c                | 877 +++++++++++++++++++++
 tools/perf/tests/insn-x86.c                        | 184 +++++
 tools/perf/tests/mmap-basic.c                      |   3 +-
 tools/perf/tests/openat-syscall-all-cpus.c         |  13 +-
 tools/perf/tests/openat-syscall-tp-fields.c        |   3 +-
 tools/perf/tests/openat-syscall.c                  |  13 +-
 tools/perf/tests/parse-events.c                    |  19 +-
 tools/perf/tests/tests.h                           |   2 +
 tools/perf/tests/topology.c                        | 115 +++
 tools/perf/trace/strace/groups/file                |   2 +
 tools/perf/ui/browsers/hists.c                     |  61 +-
 tools/perf/util/Build                              |   1 +
 tools/perf/util/cpumap.c                           |  63 +-
 tools/perf/util/cpumap.h                           |   2 +
 tools/perf/util/env.c                              |  86 ++
 tools/perf/util/env.h                              |  44 ++
 tools/perf/util/event.c                            |   8 +
 tools/perf/util/evlist.c                           |   3 +-
 tools/perf/util/evsel.c                            |  18 +-
 tools/perf/util/evsel.h                            |   4 +-
 tools/perf/util/header.c                           | 136 +++-
 tools/perf/util/header.h                           |  27 +-
 tools/perf/util/hist.c                             |  38 +
 tools/perf/util/hist.h                             |   6 +-
 tools/perf/util/include/dwarf-regs.h               |   8 +
 tools/perf/util/intel-pt-decoder/Build             |  13 +-
 .../perf/util/intel-pt-decoder/x86-opcode-map.txt  |  24 +-
 tools/perf/util/intel-pt.c                         | 129 ++-
 tools/perf/util/machine.c                          |   1 +
 tools/perf/util/machine.h                          |   1 +
 tools/perf/util/parse-events.c                     |  68 +-
 tools/perf/util/parse-events.h                     |   3 +-
 tools/perf/util/parse-events.y                     |  16 +-
 tools/perf/util/parse-options.c                    |   2 +-
 tools/perf/util/probe-event.c                      | 130 ++-
 tools/perf/util/probe-event.h                      |  11 +
 tools/perf/util/probe-file.c                       |  56 +-
 tools/perf/util/probe-file.h                       |   4 +
 .../perf/util/scripting-engines/trace-event-perl.c |   1 +
 .../util/scripting-engines/trace-event-python.c    |   1 +
 tools/perf/util/session.c                          |  23 +-
 tools/perf/util/sort.c                             |  29 +-
 tools/perf/util/sort.h                             |   3 +
 tools/perf/util/srcline.c                          |  29 +-
 tools/perf/util/stat.c                             |  16 +-
 tools/perf/util/symbol-elf.c                       |   2 +-
 tools/perf/util/symbol.h                           |   1 +
 tools/perf/util/trace-event-info.c                 |   2 +-
 tools/perf/util/trace-event.c                      |  16 +-
 tools/perf/util/util.c                             |  72 +-
 tools/perf/util/util.h                             |  11 +-
 179 files changed, 6629 insertions(+), 1865 deletions(-)
 create mode 100644 tools/build/feature/test-get_cpuid.c
 create mode 100644 tools/build/feature/test-numa_num_possible_cpus.c
 create mode 100644 tools/include/linux/err.h
 create mode 100644 tools/include/linux/filter.h
 create mode 100644 tools/lib/api/cpu.c
 create mode 100644 tools/lib/api/cpu.h
 delete mode 100644 tools/lib/api/fs/debugfs.c
 delete mode 100644 tools/lib/api/fs/debugfs.h
 delete mode 100644 tools/lib/api/fs/findfs.c
 delete mode 100644 tools/lib/api/fs/findfs.h
 delete mode 100644 tools/lib/api/fs/tracefs.c
 delete mode 100644 tools/lib/api/fs/tracefs.h
 create mode 100644 tools/lib/api/fs/tracing_path.c
 create mode 100644 tools/lib/api/fs/tracing_path.h
 create mode 100644 tools/perf/tests/gen-insn-x86-dat.awk
 create mode 100755 tools/perf/tests/gen-insn-x86-dat.sh
 create mode 100644 tools/perf/tests/insn-x86-dat-32.c
 create mode 100644 tools/perf/tests/insn-x86-dat-64.c
 create mode 100644 tools/perf/tests/insn-x86-dat-src.c
 create mode 100644 tools/perf/tests/insn-x86.c
 create mode 100644 tools/perf/tests/topology.c
 create mode 100644 tools/perf/util/env.c
 create mode 100644 tools/perf/util/env.h
Merging clockevents/clockevents/next (0e4baaa9a11b clocksource/drivers/exynos_mct: Use container_of() instead of this_cpu_ptr())
$ git merge clockevents/clockevents/next
Auto-merging drivers/clocksource/sh_cmt.c
Merge made by the 'recursive' strategy.
 drivers/clocksource/em_sti.c        |  2 --
 drivers/clocksource/exynos_mct.c    | 12 ++++++++----
 drivers/clocksource/h8300_timer16.c |  1 -
 drivers/clocksource/h8300_timer8.c  |  1 -
 drivers/clocksource/h8300_tpu.c     |  1 -
 drivers/clocksource/mtk_timer.c     | 26 ++++++++++++++++----------
 drivers/clocksource/sh_cmt.c        |  1 -
 7 files changed, 24 insertions(+), 20 deletions(-)
Merging edac/linux_next (12f0721c5a70 sb_edac: correctly fetch DIMM width on Ivy Bridge and Haswell)
$ git merge edac/linux_next
Already up-to-date.
Merging edac-amd/for-next (d5c268153978 x86/mce: Don't clear shared banks on Intel when offlining CPUs)
$ git merge edac-amd/for-next
Merge made by the 'recursive' strategy.
 arch/x86/kernel/cpu/mcheck/mce.c | 30 ++++++++++++++++++++----------
 1 file changed, 20 insertions(+), 10 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 (b7dc42fd7939 ring-buffer: Revert "ring-buffer: Get timestamp after event is allocated")
$ git merge ftrace/for-next
Already up-to-date.
Merging rcu/rcu/next (19a5ecde086a rcu: Suppress lockdep false positive for rcp->exp_funnel_mutex)
$ git merge rcu/rcu/next
Merge made by the 'recursive' strategy.
 include/linux/rcupdate.h | 11 +++++------
 kernel/rcu/tree.c        |  5 +++++
 2 files changed, 10 insertions(+), 6 deletions(-)
Merging kvm/linux-next (00cc1633816d sched: access local runqueue directly in single_task_running)
$ git merge kvm/linux-next
Already up-to-date.
Merging kvm-arm/next (ef748917b529 arm/arm64: KVM: Remove 'config KVM_ARM_MAX_VCPUS')
$ git merge kvm-arm/next
Already up-to-date.
Merging kvm-ppc/kvm-ppc-next (c63517c2e381 KVM: PPC: Book3S: correct width in XER handling)
$ git merge kvm-ppc/kvm-ppc-next
Already up-to-date.
Merging kvm-ppc-paulus/kvm-ppc-next (3eb4ee682542 KVM: PPC: Book3S: Take the kvm->srcu lock in kvmppc_h_logical_ci_load/store())
$ git merge kvm-ppc-paulus/kvm-ppc-next
Merge made by the 'recursive' strategy.
 arch/powerpc/kvm/book3s.c               | 6 ++++++
 arch/powerpc/kvm/book3s_hv.c            | 6 +++++-
 arch/powerpc/kvm/book3s_hv_rmhandlers.S | 1 +
 3 files changed, 12 insertions(+), 1 deletion(-)
Merging kvms390/next (152b28392a8d KVM: s390: Fix assumption that kvm_set_irq_routing is always run successfully)
$ git merge kvms390/next
Already up-to-date.
Merging xen-tip/linux-next (3e64472c1c74 xen: switch extra memory accounting to use pfns)
$ git merge xen-tip/linux-next
Resolved 'arch/x86/include/asm/xen/page.h' using previous resolution.
Auto-merging arch/x86/include/asm/xen/page.h
CONFLICT (content): Merge conflict in arch/x86/include/asm/xen/page.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master b234ecb11d26] Merge remote-tracking branch 'xen-tip/linux-next'
$ git diff -M --stat --summary HEAD^..
Merging percpu/for-next (292c24a073ee percpu: clean up of schunk->map[] assignment in pcpu_setup_first_chunk)
$ git merge percpu/for-next
Already up-to-date.
Merging workqueues/for-next (355c06633e23 workqueue: fix some docbook warnings)
$ git merge workqueues/for-next
Already up-to-date.
Merging drivers-x86/for-next (8a1513b49321 hp-wmi: limit hotkey enable)
$ git merge drivers-x86/for-next
Already up-to-date.
Merging chrome-platform/for-next (1d95e6f10fd8 platform/chrome: cros_ec: Fix possible leak in led_rgb_store())
$ git merge chrome-platform/for-next
Merge made by the 'recursive' strategy.
 drivers/platform/chrome/Kconfig            |  5 +++--
 drivers/platform/chrome/cros_ec_dev.c      |  6 ++++++
 drivers/platform/chrome/cros_ec_lightbar.c | 31 ++++++++++++++++--------------
 drivers/platform/chrome/cros_ec_lpc.c      | 21 +++++++++-----------
 4 files changed, 35 insertions(+), 28 deletions(-)
Merging regmap/for-next (2435ddafefad Merge remote-tracking branches 'regmap/topic/atomic', 'regmap/topic/debugfs' and 'regmap/topic/irq' into regmap-next)
$ git merge regmap/for-next
Merge made by the 'recursive' strategy.
 drivers/base/regmap/internal.h       |  1 +
 drivers/base/regmap/regmap-debugfs.c | 12 +++++-----
 drivers/base/regmap/regmap-irq.c     | 43 +++++++++++++++++++++++++++++++-----
 drivers/base/regmap/regmap.c         | 12 +++++++++-
 include/linux/regmap.h               |  5 +++++
 5 files changed, 60 insertions(+), 13 deletions(-)
Merging hsi/for-next (c616ac28a5b3 HSI: Fix a typo)
$ git merge hsi/for-next
Merge made by the 'recursive' strategy.
 drivers/hsi/clients/ssi_protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging leds/for-next (18ce230f96e1 LED/MIPS: Move SEAD3 LED driver to where it belongs.)
$ git merge leds/for-next
Auto-merging drivers/leds/leds-sead3.c
Merge made by the 'recursive' strategy.
 arch/mips/mti-sead3/Makefile                       |  2 --
 drivers/leds/Kconfig                               | 10 ++++++++
 drivers/leds/Makefile                              |  1 +
 drivers/leds/leds-cobalt-qube.c                    | 23 +-----------------
 drivers/leds/leds-hp6xx.c                          | 17 ++------------
 drivers/leds/leds-ipaq-micro.c                     | 27 ++++++++--------------
 drivers/leds/leds-ot200.c                          | 21 ++---------------
 {arch/mips/mti-sead3 => drivers/leds}/leds-sead3.c |  1 +
 8 files changed, 27 insertions(+), 75 deletions(-)
 rename {arch/mips/mti-sead3 => drivers/leds}/leds-sead3.c (99%)
Merging ipmi/for-next (bf2d087749d9 ipmi:ssif: Add a module parm to specify that SMBus alerts don't work)
$ git merge ipmi/for-next
Already up-to-date.
Merging driver-core/driver-core-next (6ff33f3902c3 Linux 4.3-rc1)
$ git merge driver-core/driver-core-next
Already up-to-date.
Merging tty/tty-next (1f93e4a96c91 Linux 4.3-rc2)
$ git merge tty/tty-next
Already up-to-date.
Merging usb/usb-next (1f93e4a96c91 Linux 4.3-rc2)
$ git merge usb/usb-next
Already up-to-date.
Merging usb-gadget/next (2f3cc24f07b8 usb: musb: gadget: fix build break by adding missing 'break')
$ git merge usb-gadget/next
Already up-to-date.
Merging usb-serial/usb-next (6ff33f3902c3 Linux 4.3-rc1)
$ git merge usb-serial/usb-next
Already up-to-date.
Merging staging/staging-next (8e0735c5e0a9 staging: wilc1000: rename WILC_WFI_frame_register)
$ git merge staging/staging-next
Removing drivers/staging/wilc1000/wilc_memory.h
Removing drivers/staging/wilc1000/wilc_memory.c
Removing drivers/staging/wilc1000/wilc_exported_buf.c
Removing drivers/staging/wilc1000/wilc_errorsupport.h
Auto-merging drivers/staging/fbtft/flexfb.c
Auto-merging drivers/staging/fbtft/fbtft-core.c
Auto-merging drivers/staging/fbtft/fb_watterott.c
Auto-merging drivers/staging/fbtft/fb_uc1611.c
Removing drivers/staging/comedi/drivers/unioxx5.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                        |    4 +-
 drivers/staging/android/Kconfig                    |    2 +-
 drivers/staging/android/ashmem.c                   |   18 +-
 drivers/staging/android/sw_sync.c                  |    6 +-
 drivers/staging/comedi/Kconfig                     |    8 -
 drivers/staging/comedi/comedi_fops.c               |   12 +-
 drivers/staging/comedi/drivers.c                   |   32 +-
 drivers/staging/comedi/drivers/Makefile            |    1 -
 drivers/staging/comedi/drivers/addi_apci_3120.c    |    5 -
 drivers/staging/comedi/drivers/mpc624.c            |   30 +-
 drivers/staging/comedi/drivers/s526.c              |  560 ++--
 drivers/staging/comedi/drivers/serial2002.c        |   51 +-
 drivers/staging/comedi/drivers/ssv_dnp.c           |   57 +-
 drivers/staging/comedi/drivers/unioxx5.c           |  506 ----
 drivers/staging/comedi/drivers/usbdux.c            |  100 +-
 drivers/staging/comedi/drivers/usbduxfast.c        |  274 +-
 drivers/staging/comedi/drivers/usbduxsigma.c       |   72 +-
 drivers/staging/comedi/drivers/vmk80xx.c           |  127 +-
 .../staging/comedi/kcomedilib/kcomedilib_main.c    |   32 +-
 drivers/staging/dgap/dgap.c                        |   32 +-
 drivers/staging/dgnc/dgnc_mgmt.c                   |    3 +-
 drivers/staging/emxx_udc/emxx_udc.c                |   96 +-
 drivers/staging/emxx_udc/emxx_udc.h                |   30 -
 drivers/staging/fbtft/fb_agm1264k-fl.c             |    9 +-
 drivers/staging/fbtft/fb_bd663474.c                |    7 +-
 drivers/staging/fbtft/fb_hx8340bn.c                |   16 +-
 drivers/staging/fbtft/fb_hx8347d.c                 |   12 +-
 drivers/staging/fbtft/fb_hx8353d.c                 |   15 +-
 drivers/staging/fbtft/fb_hx8357d.c                 |    8 +-
 drivers/staging/fbtft/fb_ili9163.c                 |    7 +-
 drivers/staging/fbtft/fb_ili9320.c                 |   15 +-
 drivers/staging/fbtft/fb_ili9325.c                 |   14 +-
 drivers/staging/fbtft/fb_ili9340.c                 |   10 +-
 drivers/staging/fbtft/fb_ili9341.c                 |   14 +-
 drivers/staging/fbtft/fb_ili9481.c                 |    8 +-
 drivers/staging/fbtft/fb_ili9486.c                 |   10 +-
 drivers/staging/fbtft/fb_pcd8544.c                 |   17 +-
 drivers/staging/fbtft/fb_ra8875.c                  |   36 +-
 drivers/staging/fbtft/fb_s6d02a1.c                 |   14 +-
 drivers/staging/fbtft/fb_s6d1121.c                 |   12 +-
 drivers/staging/fbtft/fb_ssd1289.c                 |   14 +-
 drivers/staging/fbtft/fb_ssd1306.c                 |   17 +-
 drivers/staging/fbtft/fb_ssd1331.c                 |    5 -
 drivers/staging/fbtft/fb_ssd1351.c                 |   19 +-
 drivers/staging/fbtft/fb_st7735r.c                 |   18 +-
 drivers/staging/fbtft/fb_tinylcd.c                 |   10 +-
 drivers/staging/fbtft/fb_tls8204.c                 |   16 +-
 drivers/staging/fbtft/fb_uc1611.c                  |    4 -
 drivers/staging/fbtft/fb_uc1701.c                  |   19 +-
 drivers/staging/fbtft/fb_upd161704.c               |    7 +-
 drivers/staging/fbtft/fb_watterott.c               |   24 +-
 drivers/staging/fbtft/fbtft-bus.c                  |   13 +-
 drivers/staging/fbtft/fbtft-core.c                 |   91 +-
 drivers/staging/fbtft/fbtft-sysfs.c                |    6 +-
 drivers/staging/fbtft/fbtft.h                      |    9 -
 drivers/staging/fbtft/fbtft_device.c               |   96 +-
 drivers/staging/fbtft/flexfb.c                     |   10 -
 drivers/staging/fsl-mc/bus/mc-bus.c                |    6 +-
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_dnld.c |   19 +-
 .../staging/ft1000/ft1000-usb/ft1000_download.c    |    8 +-
 drivers/staging/ft1000/ft1000-usb/ft1000_hw.c      |    2 +-
 drivers/staging/ft1000/ft1000-usb/ft1000_usb.c     |    8 +-
 drivers/staging/gdm72xx/gdm_qos.c                  |    2 +-
 drivers/staging/gdm72xx/gdm_sdio.c                 |   20 +-
 drivers/staging/gdm72xx/gdm_usb.c                  |   16 +-
 drivers/staging/gdm72xx/gdm_wimax.c                |    4 +-
 drivers/staging/gdm72xx/sdio_boot.c                |    4 +-
 drivers/staging/gdm72xx/usb_boot.c                 |    8 +-
 drivers/staging/goldfish/goldfish_nand.c           |    4 +-
 drivers/staging/goldfish/goldfish_nand_reg.h       |   10 +-
 drivers/staging/iio/addac/adt7316.c                |   14 +-
 drivers/staging/iio/cdc/ad7746.c                   |    8 +-
 drivers/staging/iio/meter/ade7753.c                |    8 +-
 drivers/staging/iio/meter/ade7754.c                |    6 +-
 drivers/staging/iio/meter/ade7758_core.c           |    6 +-
 drivers/staging/iio/meter/ade7759.c                |    8 +-
 drivers/staging/iio/meter/ade7854.c                |    6 +-
 .../staging/lustre/include/linux/libcfs/libcfs.h   |    8 +
 .../lustre/include/linux/libcfs/libcfs_prim.h      |    1 -
 .../lustre/include/linux/libcfs/libcfs_private.h   |    2 +-
 .../staging/lustre/include/linux/lnet/lib-lnet.h   |    4 +-
 drivers/staging/lustre/include/linux/lnet/types.h  |    2 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c    |    9 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h    |  287 +--
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c |   60 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd.c    |   51 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c |    8 +-
 .../lustre/lnet/klnds/socklnd/socklnd_lib.c        |    6 +-
 drivers/staging/lustre/lnet/lnet/api-ni.c          |    4 +-
 drivers/staging/lustre/lnet/lnet/lib-ptl.c         |    4 +-
 drivers/staging/lustre/lnet/lnet/router.c          |    2 +-
 drivers/staging/lustre/lnet/lnet/router_proc.c     |   43 +-
 drivers/staging/lustre/lnet/selftest/conrpc.h      |    4 +-
 drivers/staging/lustre/lnet/selftest/console.c     |   16 +-
 drivers/staging/lustre/lnet/selftest/selftest.h    |   22 +-
 drivers/staging/lustre/lustre/fld/fld_cache.c      |    2 +-
 drivers/staging/lustre/lustre/include/cl_object.h  |   14 +-
 .../lustre/lustre/include/linux/lustre_lite.h      |    2 +-
 .../staging/lustre/lustre/include/lprocfs_status.h |    3 +-
 drivers/staging/lustre/lustre/include/lu_object.h  |   25 +-
 .../lustre/lustre/include/lustre/lustre_idl.h      |   39 +-
 .../lustre/lustre/include/lustre/lustre_user.h     |    7 +-
 .../staging/lustre/lustre/include/lustre_capa.h    |    2 +-
 drivers/staging/lustre/lustre/include/lustre_cfg.h |    6 +-
 .../staging/lustre/lustre/include/lustre_disk.h    |  144 +-
 drivers/staging/lustre/lustre/include/lustre_dlm.h |    6 +-
 .../lustre/lustre/include/lustre_dlm_flags.h       |  152 +-
 .../staging/lustre/lustre/include/lustre_import.h  |    2 -
 drivers/staging/lustre/lustre/include/lustre_lib.h |   10 +-
 drivers/staging/lustre/lustre/include/lustre_net.h |   67 +-
 drivers/staging/lustre/lustre/include/obd.h        |   14 +-
 drivers/staging/lustre/lustre/include/obd_class.h  |    4 -
 .../staging/lustre/lustre/include/obd_support.h    |  204 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_flock.c    |    8 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_request.c  |    8 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_resource.c |    4 +-
 drivers/staging/lustre/lustre/libcfs/fail.c        |    4 +-
 drivers/staging/lustre/lustre/libcfs/hash.c        |   18 +-
 drivers/staging/lustre/lustre/libcfs/libcfs_lock.c |    6 +-
 drivers/staging/lustre/lustre/libcfs/libcfs_mem.c  |   10 +-
 .../staging/lustre/lustre/libcfs/linux/linux-cpu.c |    3 +-
 .../lustre/lustre/libcfs/linux/linux-crypto.c      |    5 +-
 .../lustre/lustre/libcfs/linux/linux-debug.c       |    2 +-
 .../lustre/lustre/libcfs/linux/linux-prim.c        |    6 -
 .../lustre/lustre/libcfs/linux/linux-tracefile.c   |   22 +-
 drivers/staging/lustre/lustre/libcfs/module.c      |  188 +-
 drivers/staging/lustre/lustre/libcfs/tracefile.c   |    4 +-
 drivers/staging/lustre/lustre/libcfs/workitem.c    |   12 +-
 drivers/staging/lustre/lustre/llite/dir.c          |   13 +-
 drivers/staging/lustre/lustre/llite/file.c         |   25 +-
 drivers/staging/lustre/lustre/llite/llite_close.c  |    5 +-
 .../staging/lustre/lustre/llite/llite_internal.h   |   13 +-
 drivers/staging/lustre/lustre/llite/llite_lib.c    |   55 +-
 drivers/staging/lustre/lustre/llite/llite_nfs.c    |    5 +-
 drivers/staging/lustre/lustre/llite/lproc_llite.c  |    5 +-
 drivers/staging/lustre/lustre/llite/namei.c        |   14 +-
 drivers/staging/lustre/lustre/llite/rw.c           |    6 +-
 drivers/staging/lustre/lustre/llite/statahead.c    |    4 +-
 drivers/staging/lustre/lustre/llite/super25.c      |   16 +-
 drivers/staging/lustre/lustre/llite/vvp_io.c       |    2 +-
 drivers/staging/lustre/lustre/lmv/lmv_obd.c        |   13 +-
 drivers/staging/lustre/lustre/lov/lov_dev.c        |    2 +
 drivers/staging/lustre/lustre/lov/lov_io.c         |    2 +
 drivers/staging/lustre/lustre/lov/lov_obd.c        |    6 +-
 drivers/staging/lustre/lustre/mdc/mdc_locks.c      |    4 +-
 drivers/staging/lustre/lustre/mdc/mdc_request.c    |    2 +-
 drivers/staging/lustre/lustre/mgc/mgc_request.c    |   44 +-
 drivers/staging/lustre/lustre/obdclass/capa.c      |    2 +-
 drivers/staging/lustre/lustre/obdclass/cl_io.c     |   10 +-
 drivers/staging/lustre/lustre/obdclass/cl_lock.c   |    6 +-
 drivers/staging/lustre/lustre/obdclass/cl_object.c |   11 +-
 drivers/staging/lustre/lustre/obdclass/cl_page.c   |    3 +-
 drivers/staging/lustre/lustre/obdclass/class_obd.c |  107 +-
 drivers/staging/lustre/lustre/obdclass/dt_object.c |    5 +-
 drivers/staging/lustre/lustre/obdclass/genops.c    |   96 +-
 .../lustre/lustre/obdclass/linux/linux-module.c    |    2 -
 drivers/staging/lustre/lustre/obdclass/llog.c      |    4 +-
 .../staging/lustre/lustre/obdclass/llog_internal.h |    8 -
 .../lustre/lustre/obdclass/lprocfs_counters.c      |    9 -
 .../lustre/lustre/obdclass/lprocfs_status.c        |    2 +-
 drivers/staging/lustre/lustre/obdclass/lu_object.c |  119 +-
 .../staging/lustre/lustre/obdclass/obd_config.c    |   43 +-
 drivers/staging/lustre/lustre/obdclass/obd_mount.c |   97 +-
 drivers/staging/lustre/lustre/osc/lproc_osc.c      |   17 +-
 drivers/staging/lustre/lustre/osc/osc_cache.c      |   28 +-
 .../staging/lustre/lustre/osc/osc_cl_internal.h    |    2 +-
 drivers/staging/lustre/lustre/osc/osc_internal.h   |    6 +-
 drivers/staging/lustre/lustre/osc/osc_page.c       |    5 +-
 drivers/staging/lustre/lustre/osc/osc_request.c    |  136 +-
 drivers/staging/lustre/lustre/ptlrpc/client.c      |   39 +-
 drivers/staging/lustre/lustre/ptlrpc/import.c      |   38 +-
 drivers/staging/lustre/lustre/ptlrpc/layout.c      |    6 +-
 .../staging/lustre/lustre/ptlrpc/lproc_ptlrpc.c    |    4 +-
 drivers/staging/lustre/lustre/ptlrpc/niobuf.c      |    3 +-
 .../staging/lustre/lustre/ptlrpc/pack_generic.c    |   98 +-
 drivers/staging/lustre/lustre/ptlrpc/pinger.c      |    4 +-
 .../staging/lustre/lustre/ptlrpc/ptlrpc_internal.h |    4 +-
 .../staging/lustre/lustre/ptlrpc/ptlrpc_module.c   |    3 +-
 drivers/staging/lustre/lustre/ptlrpc/ptlrpcd.c     |  702 +++--
 drivers/staging/lustre/lustre/ptlrpc/sec_plain.c   |    1 +
 drivers/staging/lustre/lustre/ptlrpc/service.c     |    6 +-
 drivers/staging/lustre/lustre/ptlrpc/wiretest.c    |    4 -
 drivers/staging/most/aim-cdev/cdev.c               |   22 +-
 drivers/staging/most/aim-network/networking.c      |   12 +-
 drivers/staging/most/aim-sound/sound.c             |    5 +-
 drivers/staging/most/aim-v4l2/Makefile             |    1 -
 drivers/staging/most/aim-v4l2/video.c              |    2 +-
 drivers/staging/most/hdm-dim2/dim2_hal.c           |    5 -
 drivers/staging/most/hdm-dim2/dim2_hal.h           |    5 -
 drivers/staging/most/hdm-dim2/dim2_hdm.c           |   19 +-
 drivers/staging/most/hdm-usb/hdm_usb.c             |   13 +-
 drivers/staging/most/mostcore/core.c               |   10 +-
 drivers/staging/mt29f_spinand/mt29f_spinand.c      |    1 +
 drivers/staging/octeon-usb/octeon-hcd.c            |    1 +
 drivers/staging/panel/panel.c                      |   63 +-
 drivers/staging/rdma/hfi1/user_sdma.c              |    3 +-
 drivers/staging/rtl8188eu/Makefile                 |    1 +
 drivers/staging/rtl8188eu/core/rtw_mlme_ext.c      |   12 +-
 drivers/staging/rtl8188eu/core/rtw_recv.c          |   14 +
 drivers/staging/rtl8188eu/core/rtw_sta_mgt.c       |    6 +-
 drivers/staging/rtl8188eu/core/rtw_wlan_util.c     |    6 +-
 drivers/staging/rtl8188eu/core/rtw_xmit.c          |    4 +
 .../staging/rtl8188eu/hal/Hal8188ERateAdaptive.c   |   14 +-
 drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c       |    4 +-
 drivers/staging/rtl8188eu/hal/rtl8188eu_recv.c     |    2 +-
 drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.c     |    6 +-
 drivers/staging/rtl8188eu/include/drv_types.h      |    2 +
 drivers/staging/rtl8188eu/include/mon.h            |   36 +
 drivers/staging/rtl8188eu/include/rtl8188e_spec.h  |    4 -
 drivers/staging/rtl8188eu/include/wifi.h           |   12 -
 drivers/staging/rtl8188eu/os_dep/mlme_linux.c      |    4 +-
 drivers/staging/rtl8188eu/os_dep/mon.c             |  194 ++
 drivers/staging/rtl8188eu/os_dep/os_intfs.c        |    5 +
 drivers/staging/rtl8188eu/os_dep/osdep_service.c   |    2 +-
 drivers/staging/rtl8188eu/os_dep/recv_linux.c      |    2 +-
 drivers/staging/rtl8188eu/os_dep/usb_intf.c        |   10 +
 drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c     |    3 -
 .../staging/rtl8192e/rtl8192e/r8192E_firmware.c    |    1 +
 drivers/staging/rtl8192e/rtl8192e/rtl_core.c       |    4 -
 drivers/staging/rtl8192e/rtl8192e/rtl_wx.c         |    3 +-
 .../staging/rtl8192u/ieee80211/ieee80211_module.c  |    2 +-
 .../staging/rtl8192u/ieee80211/ieee80211_softmac.c |    3 +-
 .../rtl8192u/ieee80211/ieee80211_softmac_wx.c      |   79 +-
 drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c  |    2 +-
 drivers/staging/rtl8192u/r8192U.h                  |    4 +-
 drivers/staging/rtl8192u/r8192U_core.c             | 1918 ++++++++------
 drivers/staging/rtl8712/mlme_linux.c               |    3 +-
 drivers/staging/rtl8712/osdep_service.h            |    4 -
 drivers/staging/rtl8712/usb_ops_linux.c            |    2 +-
 drivers/staging/rtl8712/wifi.h                     |    9 -
 drivers/staging/rtl8723au/core/rtw_mlme_ext.c      |    7 +-
 drivers/staging/rtl8723au/core/rtw_security.c      |   17 +-
 drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c  |   42 +-
 drivers/staging/rtl8723au/hal/rtl8723a_phycfg.c    |   55 +-
 drivers/staging/rtl8723au/hal/rtl8723a_rf6052.c    |   48 +-
 drivers/staging/rtl8723au/hal/usb_halinit.c        |    5 +-
 drivers/staging/rtl8723au/include/rtw_cmd.h        |    2 -
 drivers/staging/slicoss/slicoss.c                  |   28 +-
 drivers/staging/sm750fb/ddk750_hwi2c.c             |  109 +-
 drivers/staging/sm750fb/ddk750_hwi2c.h             |    9 +-
 drivers/staging/sm750fb/ddk750_sii164.c            |    8 +-
 drivers/staging/sm750fb/ddk750_swi2c.c             |  291 ++-
 drivers/staging/sm750fb/ddk750_swi2c.h             |   47 +-
 drivers/staging/sm750fb/sm750_hw.c                 |   10 +-
 drivers/staging/speakup/devsynth.c                 |    4 +-
 drivers/staging/speakup/kobjects.c                 |   16 +-
 drivers/staging/speakup/serialio.c                 |    4 +-
 drivers/staging/speakup/speakup_dectlk.c           |    3 +-
 drivers/staging/speakup/varhandlers.c              |   18 +-
 drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c      |    1 -
 .../Documentation/ABI/sysfs-platform-visorchipset  |    2 +
 drivers/staging/unisys/Documentation/overview.txt  |  458 +++-
 drivers/staging/unisys/Kconfig                     |    1 +
 drivers/staging/unisys/Makefile                    |    1 +
 drivers/staging/unisys/TODO                        |   25 +-
 drivers/staging/unisys/visorhid/Kconfig            |   10 +
 drivers/staging/unisys/visorhid/Makefile           |    7 +
 drivers/staging/unisys/visorhid/keyboardchannel.h  |   32 +
 drivers/staging/unisys/visorhid/mousechannel.h     |   33 +
 drivers/staging/unisys/visorhid/ultrainputreport.h |   74 +
 drivers/staging/unisys/visorhid/visorhid.c         |  668 +++++
 drivers/staging/vt6655/card.c                      |   14 +-
 drivers/staging/vt6655/desc.h                      |   58 +-
 drivers/staging/vt6655/device.h                    |   26 +-
 drivers/staging/vt6655/device_main.c               |  236 +-
 drivers/staging/vt6655/dpc.c                       |    8 +-
 drivers/staging/vt6655/dpc.h                       |    2 +-
 drivers/staging/wilc1000/Kconfig                   |    1 -
 drivers/staging/wilc1000/Makefile                  |    9 +-
 drivers/staging/wilc1000/coreconfigurator.c        | 1295 +---------
 drivers/staging/wilc1000/coreconfigurator.h        |    8 -
 drivers/staging/wilc1000/host_interface.c          | 2710 +++++++++-----------
 drivers/staging/wilc1000/host_interface.h          |  212 +-
 drivers/staging/wilc1000/linux_mon.c               |  187 +-
 drivers/staging/wilc1000/linux_wlan.c              |  813 +-----
 drivers/staging/wilc1000/linux_wlan_common.h       |   14 +-
 drivers/staging/wilc1000/linux_wlan_sdio.c         |   10 +-
 drivers/staging/wilc1000/linux_wlan_spi.c          |  103 +-
 drivers/staging/wilc1000/linux_wlan_spi.h          |    4 +-
 drivers/staging/wilc1000/wilc_errorsupport.h       |   67 -
 drivers/staging/wilc1000/wilc_exported_buf.c       |   71 -
 drivers/staging/wilc1000/wilc_memory.c             |   16 -
 drivers/staging/wilc1000/wilc_memory.h             |   66 -
 drivers/staging/wilc1000/wilc_msgqueue.c           |  160 +-
 drivers/staging/wilc1000/wilc_msgqueue.h           |   10 +-
 drivers/staging/wilc1000/wilc_oswrapper.h          |    7 -
 drivers/staging/wilc1000/wilc_platform.h           |    6 -
 drivers/staging/wilc1000/wilc_sdio.c               |   89 +-
 drivers/staging/wilc1000/wilc_spi.c                |  233 +-
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c  |  897 +++----
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.h  |   93 +-
 drivers/staging/wilc1000/wilc_wfi_netdevice.h      |   52 +-
 drivers/staging/wilc1000/wilc_wlan.c               |  561 ++--
 drivers/staging/wilc1000/wilc_wlan.h               |   62 +-
 drivers/staging/wilc1000/wilc_wlan_cfg.c           |  176 +-
 drivers/staging/wilc1000/wilc_wlan_cfg.h           |   16 +-
 drivers/staging/wilc1000/wilc_wlan_if.h            |  114 +-
 drivers/staging/wlan-ng/p80211conv.c               |   50 +-
 drivers/staging/wlan-ng/p80211conv.h               |    7 +-
 299 files changed, 7993 insertions(+), 11273 deletions(-)
 delete mode 100644 drivers/staging/comedi/drivers/unioxx5.c
 create mode 100644 drivers/staging/rtl8188eu/include/mon.h
 create mode 100644 drivers/staging/rtl8188eu/os_dep/mon.c
 create mode 100644 drivers/staging/unisys/visorhid/Kconfig
 create mode 100644 drivers/staging/unisys/visorhid/Makefile
 create mode 100644 drivers/staging/unisys/visorhid/keyboardchannel.h
 create mode 100644 drivers/staging/unisys/visorhid/mousechannel.h
 create mode 100644 drivers/staging/unisys/visorhid/ultrainputreport.h
 create mode 100644 drivers/staging/unisys/visorhid/visorhid.c
 delete mode 100644 drivers/staging/wilc1000/wilc_errorsupport.h
 delete mode 100644 drivers/staging/wilc1000/wilc_exported_buf.c
 delete mode 100644 drivers/staging/wilc1000/wilc_memory.c
 delete mode 100644 drivers/staging/wilc1000/wilc_memory.h
Merging char-misc/char-misc-next (1f93e4a96c91 Linux 4.3-rc2)
$ git merge char-misc/char-misc-next
Already up-to-date.
Merging extcon/extcon-next (d8df81ae2b8e extcon: axp288: Convert to using managed resources)
$ git merge extcon/extcon-next
Merge made by the 'recursive' strategy.
 drivers/extcon/extcon-axp288.c  | 23 +++++------------------
 drivers/extcon/extcon-rt8973a.c |  1 +
 drivers/extcon/extcon-sm5502.c  |  1 +
 drivers/extcon/extcon.c         |  2 +-
 4 files changed, 8 insertions(+), 19 deletions(-)
Merging kdbus/kdbus (a36324913ff2 kdbus: selftests: add more name registry tests)
$ git merge kdbus/kdbus
Resolved 'tools/testing/selftests/Makefile' using previous resolution.
Auto-merging tools/testing/selftests/Makefile
CONFLICT (content): Merge conflict in tools/testing/selftests/Makefile
Auto-merging init/Kconfig
Auto-merging include/uapi/linux/Kbuild
Auto-merging Makefile
Auto-merging MAINTAINERS
Auto-merging Documentation/ioctl/ioctl-number.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 02c3954e057d] 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                     |   44 +
 Documentation/kdbus/kdbus.bus.xml                |  344 ++++
 Documentation/kdbus/kdbus.connection.xml         | 1244 ++++++++++++
 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                       |  984 ++++++++++
 include/uapi/linux/magic.h                       |    2 +
 init/Kconfig                                     |   13 +
 ipc/Makefile                                     |    2 +-
 ipc/kdbus/Makefile                               |   33 +
 ipc/kdbus/bus.c                                  |  514 +++++
 ipc/kdbus/bus.h                                  |  101 +
 ipc/kdbus/connection.c                           | 2227 ++++++++++++++++++++++
 ipc/kdbus/connection.h                           |  260 +++
 ipc/kdbus/domain.c                               |  296 +++
 ipc/kdbus/domain.h                               |   77 +
 ipc/kdbus/endpoint.c                             |  303 +++
 ipc/kdbus/endpoint.h                             |   70 +
 ipc/kdbus/fs.c                                   |  508 +++++
 ipc/kdbus/fs.h                                   |   28 +
 ipc/kdbus/handle.c                               |  691 +++++++
 ipc/kdbus/handle.h                               |  103 +
 ipc/kdbus/item.c                                 |  293 +++
 ipc/kdbus/item.h                                 |   61 +
 ipc/kdbus/limits.h                               |   61 +
 ipc/kdbus/main.c                                 |  114 ++
 ipc/kdbus/match.c                                |  546 ++++++
 ipc/kdbus/match.h                                |   35 +
 ipc/kdbus/message.c                              | 1040 ++++++++++
 ipc/kdbus/message.h                              |  120 ++
 ipc/kdbus/metadata.c                             | 1347 +++++++++++++
 ipc/kdbus/metadata.h                             |   86 +
 ipc/kdbus/names.c                                |  854 +++++++++
 ipc/kdbus/names.h                                |  105 +
 ipc/kdbus/node.c                                 |  897 +++++++++
 ipc/kdbus/node.h                                 |   86 +
 ipc/kdbus/notify.c                               |  204 ++
 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                                |  363 ++++
 ipc/kdbus/queue.h                                |   84 +
 ipc/kdbus/reply.c                                |  252 +++
 ipc/kdbus/reply.h                                |   68 +
 ipc/kdbus/util.c                                 |  156 ++
 ipc/kdbus/util.h                                 |   73 +
 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                    | 1346 +++++++++++++
 tools/testing/selftests/Makefile                 |    1 +
 tools/testing/selftests/kdbus/.gitignore         |    1 +
 tools/testing/selftests/kdbus/Makefile           |   49 +
 tools/testing/selftests/kdbus/kdbus-enum.c       |   94 +
 tools/testing/selftests/kdbus/kdbus-enum.h       |   15 +
 tools/testing/selftests/kdbus/kdbus-test.c       |  905 +++++++++
 tools/testing/selftests/kdbus/kdbus-test.h       |   84 +
 tools/testing/selftests/kdbus/kdbus-util.c       | 1612 ++++++++++++++++
 tools/testing/selftests/kdbus/kdbus-util.h       |  218 +++
 tools/testing/selftests/kdbus/test-activator.c   |  318 +++
 tools/testing/selftests/kdbus/test-benchmark.c   |  451 +++++
 tools/testing/selftests/kdbus/test-bus.c         |  175 ++
 tools/testing/selftests/kdbus/test-chat.c        |  124 ++
 tools/testing/selftests/kdbus/test-connection.c  |  597 ++++++
 tools/testing/selftests/kdbus/test-daemon.c      |   65 +
 tools/testing/selftests/kdbus/test-endpoint.c    |  352 ++++
 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     |  734 +++++++
 tools/testing/selftests/kdbus/test-metadata-ns.c |  500 +++++
 tools/testing/selftests/kdbus/test-monitor.c     |  176 ++
 tools/testing/selftests/kdbus/test-names.c       |  272 +++
 tools/testing/selftests/kdbus/test-policy-ns.c   |  632 ++++++
 tools/testing/selftests/kdbus/test-policy-priv.c | 1285 +++++++++++++
 tools/testing/selftests/kdbus/test-policy.c      |   80 +
 tools/testing/selftests/kdbus/test-sync.c        |  369 ++++
 tools/testing/selftests/kdbus/test-timeout.c     |   99 +
 96 files changed, 33726 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-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 (472912a2b5e2 memcg: generate file modified notifications on "memory.events")
$ git merge cgroup/for-next
Auto-merging include/linux/jump_label.h
Merge made by the 'recursive' strategy.
 Documentation/cgroups/unified-hierarchy.txt |  15 +-
 block/blk-throttle.c                        |   2 +-
 block/cfq-iosched.c                         |   4 +-
 include/linux/cgroup-defs.h                 |  33 ++-
 include/linux/cgroup.h                      |  92 +++----
 include/linux/hugetlb_cgroup.h              |   4 +-
 include/linux/jump_label.h                  |  18 +-
 include/linux/memcontrol.h                  |   8 +-
 kernel/cgroup.c                             | 377 ++++++++++++++++++----------
 kernel/cpuset.c                             |  29 +--
 mm/memcontrol.c                             |   8 +-
 11 files changed, 351 insertions(+), 239 deletions(-)
Merging scsi/for-next (294ab783ad98 scsi_dh: fix randconfig build error)
$ git merge scsi/for-next
Already up-to-date.
Merging target-updates/for-next (6ff33f3902c3 Linux 4.3-rc1)
$ git merge target-updates/for-next
Already up-to-date.
Merging target-merge/for-next-merge (8edb1554f7c2 mpt3sas: Fix unprotected list lookup in v4.3-rc0 changes)
$ git merge target-merge/for-next-merge
Merge made by the 'recursive' strategy.
 drivers/scsi/mpt3sas/mpt3sas_base.h      |  25 +-
 drivers/scsi/mpt3sas/mpt3sas_scsih.c     | 595 ++++++++++++++++++++++---------
 drivers/scsi/mpt3sas/mpt3sas_transport.c |  18 +-
 3 files changed, 458 insertions(+), 180 deletions(-)
Merging pinctrl/for-next (fa84b52cb681 pinctrl: samsung: s3c24xx: fix syntax error)
$ git merge pinctrl/for-next
Already up-to-date.
Merging vhost/linux-next (d629f2b585cb virtio: introduce avail cache)
$ git merge vhost/linux-next
Merge made by the 'recursive' strategy.
 drivers/virtio/virtio_ring.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)
Merging remoteproc/for-next (8de3dbd0895b remoteproc: fix !CONFIG_OF build breakage)
$ git merge remoteproc/for-next
Already up-to-date.
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 (46d4f7c25e1b gpio: omap: Fix GPIO numbering for deferred probe)
$ git merge gpio/for-next
Already up-to-date.
Merging dma-mapping/dma-mapping-next (d770e558e219 Linux 4.2-rc1)
$ git merge dma-mapping/dma-mapping-next
Already up-to-date.
Merging pwm/for-next (a83a6a82250f pwm: atmel-hlcdc: Fix module autoload for OF platform driver)
$ git merge pwm/for-next
Merge made by the 'recursive' strategy.
 drivers/pwm/pwm-atmel-hlcdc.c | 1 +
 1 file changed, 1 insertion(+)
Merging dma-buf/for-next (86ea07ca846a Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux)
$ git merge dma-buf/for-next
Already up-to-date.
Merging userns/for-next (4b75de861505 fs: Set the size of empty dirs to 0.)
$ git merge userns/for-next
Already up-to-date.
Merging ktest/for-next (b953c0d234bc Linux 4.1)
$ git merge ktest/for-next
Already up-to-date.
Merging clk/clk-next (7001b3f960c6 clk: qcom: Add MSM8916 audio clocks)
$ git merge clk/clk-next
Merge made by the 'recursive' strategy.
 drivers/clk/at91/clk-system.c                 |   3 +-
 drivers/clk/at91/clk-utmi.c                   |   4 +-
 drivers/clk/clk-divider.c                     |  20 +-
 drivers/clk/clk.c                             |   2 +-
 drivers/clk/hisilicon/clk-hi6220-stub.c       |   2 +-
 drivers/clk/mvebu/common.c                    |   2 +-
 drivers/clk/qcom/Kconfig                      |   9 +
 drivers/clk/qcom/Makefile                     |   1 +
 drivers/clk/qcom/clk-rcg.h                    |   5 +-
 drivers/clk/qcom/clk-rcg2.c                   | 170 +++++++-
 drivers/clk/qcom/common.c                     |  16 +-
 drivers/clk/qcom/common.h                     |   2 +
 drivers/clk/qcom/gcc-apq8084.c                |  42 ++
 drivers/clk/qcom/gcc-msm8916.c                | 562 +++++++++++++++++++++++++-
 drivers/clk/qcom/gcc-msm8974.c                |  15 +
 drivers/clk/qcom/gdsc.c                       | 237 +++++++++++
 drivers/clk/qcom/gdsc.h                       |  68 ++++
 drivers/clk/qcom/mmcc-apq8084.c               | 104 ++++-
 drivers/clk/qcom/mmcc-msm8974.c               |  83 +++-
 drivers/clk/sunxi/clk-sun6i-apb0-gates.c      |   1 +
 drivers/clk/sunxi/clk-sun6i-apb0.c            |   1 +
 drivers/clk/sunxi/clk-sun6i-ar100.c           |   1 +
 drivers/clk/sunxi/clk-sun8i-apb0.c            |   1 +
 drivers/clk/sunxi/clk-sun9i-mmc.c             |   1 +
 include/dt-bindings/clock/qcom,gcc-apq8084.h  |   6 +
 include/dt-bindings/clock/qcom,gcc-msm8916.h  |  30 ++
 include/dt-bindings/clock/qcom,gcc-msm8974.h  |   3 +
 include/dt-bindings/clock/qcom,mmcc-apq8084.h |  10 +
 include/dt-bindings/clock/qcom,mmcc-msm8974.h |   8 +
 29 files changed, 1344 insertions(+), 65 deletions(-)
 create mode 100644 drivers/clk/qcom/gdsc.c
 create mode 100644 drivers/clk/qcom/gdsc.h
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 (6ff33f3902c3 Linux 4.3-rc1)
$ 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 (6ff33f3902c3 Linux 4.3-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 d54e1f2d5f18] 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 (c231afa3ccf1 compiler.h: cast away attributes in WRITE_ONCE magic)
$ git merge access_once/linux-next
Merge made by the 'recursive' strategy.
Merging livepatching/for-next (07d42d41dfc4 Merge branch 'for-4.3/upstream' into for-next)
$ git merge livepatching/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging coresight/next (ce9478fdb6e0 coresight: etm3x: making error message unambiguous)
$ git merge coresight/next
Merge made by the 'recursive' strategy.
 .../ABI/testing/sysfs-bus-coresight-devices-etm3x  |  77 +++++++++++++--
 drivers/hwtracing/coresight/coresight-etm3x.c      | 107 ++++++++++++---------
 drivers/hwtracing/coresight/coresight-etm4x.c      |  22 +++--
 drivers/hwtracing/coresight/coresight.c            |   5 +
 include/linux/coresight.h                          |   2 +-
 5 files changed, 154 insertions(+), 59 deletions(-)
Merging rtc/rtc-next (ec7fe80d5f9e rtc: pcf2127: make module license match the file header)
$ git merge rtc/rtc-next
Merge made by the 'recursive' strategy.
 drivers/rtc/rtc-pcf2127.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging hwspinlock/for-next (bd5717a4632c hwspinlock: qcom: Correct msb in regmap_field)
$ git merge hwspinlock/for-next
Already up-to-date.
Merging nvdimm/libnvdimm-for-next (ae4f97696889 mm: fix type cast in __pfn_to_phys())
$ git merge nvdimm/libnvdimm-for-next
Already up-to-date.
Merging akpm-current/current (8cebeb996ea1 ipc/msg.c: use freezable blocking call)
$ git merge --no-ff akpm-current/current
Resolved 'tools/testing/selftests/vm/userfaultfd.c' using previous resolution.
Auto-merging tools/testing/selftests/vm/userfaultfd.c
CONFLICT (content): Merge conflict in tools/testing/selftests/vm/userfaultfd.c
Auto-merging net/sunrpc/sched.c
Auto-merging mm/memcontrol.c
Auto-merging kernel/time/timekeeping.c
Auto-merging include/linux/sched.h
Auto-merging include/linux/memcontrol.h
Auto-merging include/linux/hugetlb_cgroup.h
Auto-merging fs/fs-writeback.c
Auto-merging drivers/thermal/power_allocator.c
Auto-merging arch/x86/kernel/acpi/boot.c
Auto-merging arch/x86/Kconfig
Auto-merging arch/arm64/include/asm/pgtable.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 81f8a9eb31b1] Merge branch 'akpm-current/current'
$ git diff -M --stat --summary HEAD^..
 Documentation/devicetree/bindings/w1/omap-hdq.txt  |    7 +-
 Documentation/filesystems/proc.txt                 |   10 +
 Documentation/filesystems/vfat.txt                 |   10 +
 Documentation/kasan.txt                            |   43 +-
 Documentation/printk-formats.txt                   |    8 +
 Documentation/vm/split_page_table_lock             |    4 +-
 Documentation/vm/transhuge.txt                     |   10 +
 Documentation/w1/masters/omap-hdq                  |    6 +
 arch/alpha/include/uapi/asm/mman.h                 |    4 +
 arch/arm/include/asm/pgtable-3level.h              |    1 +
 arch/arm/mm/alignment.c                            |    2 +-
 arch/arm64/include/asm/pgtable.h                   |    2 +
 arch/mips/include/uapi/asm/mman.h                  |    7 +
 arch/mips/include/uapi/asm/unistd.h                |   15 +-
 arch/mips/kernel/scall32-o32.S                     |    1 +
 arch/mips/kernel/scall64-64.S                      |    1 +
 arch/mips/kernel/scall64-n32.S                     |    1 +
 arch/mips/kernel/scall64-o32.S                     |    1 +
 arch/parisc/include/uapi/asm/mman.h                |    4 +
 arch/powerpc/include/asm/pgtable-ppc64.h           |    2 +
 arch/powerpc/include/uapi/asm/mman.h               |    1 +
 arch/powerpc/mm/numa.c                             |    2 +-
 arch/powerpc/sysdev/fsl_pci.c                      |    2 +-
 arch/sparc/include/asm/pgtable_64.h                |    9 +
 arch/sparc/include/uapi/asm/mman.h                 |    1 +
 arch/tile/include/uapi/asm/mman.h                  |    1 +
 arch/x86/Kconfig                                   |    3 +
 arch/x86/boot/Makefile                             |    4 +-
 arch/x86/entry/syscalls/syscall_32.tbl             |    1 +
 arch/x86/entry/syscalls/syscall_64.tbl             |    1 +
 arch/x86/include/asm/efi.h                         |   10 +
 arch/x86/include/asm/pgtable.h                     |    5 +
 arch/x86/kernel/acpi/boot.c                        |    9 +-
 arch/x86/kernel/machine_kexec_64.c                 |    1 +
 arch/x86/kernel/smpboot.c                          |    2 +
 arch/x86/mm/kasan_init_64.c                        |    2 +-
 arch/x86/mm/numa.c                                 |   59 +-
 arch/xtensa/configs/iss_defconfig                  |    1 -
 arch/xtensa/include/uapi/asm/mman.h                |    7 +
 block/genhd.c                                      |    2 +-
 drivers/block/zram/zram_drv.c                      |    6 +-
 drivers/firmware/efi/libstub/efistub.h             |    4 -
 drivers/gpu/drm/drm_irq.c                          |    4 +-
 drivers/gpu/drm/drm_lock.c                         |   41 -
 drivers/gpu/drm/tegra/sor.c                        |    4 +-
 drivers/media/i2c/ov9650.c                         |    2 +-
 drivers/misc/sgi-xp/xpc_uv.c                       |    2 +-
 drivers/net/ethernet/intel/i40e/i40e_txrx.c        |    2 +-
 drivers/net/ethernet/intel/i40evf/i40e_txrx.c      |    2 +-
 drivers/net/wireless/mac80211_hwsim.c              |    2 +-
 drivers/thermal/power_allocator.c                  |    2 +-
 drivers/w1/masters/omap_hdq.c                      |  224 +++-
 fs/9p/vfs_file.c                                   |    3 +-
 fs/cifs/file.c                                     |    8 +-
 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/fs-writeback.c                                  |    7 +-
 fs/gfs2/lock_dlm.c                                 |    2 +-
 fs/mpage.c                                         |   23 +-
 fs/notify/inotify/inotify_user.c                   |   14 +-
 fs/ocfs2/alloc.c                                   |  101 +-
 fs/ocfs2/aops.c                                    | 1118 ++++++++++----------
 fs/ocfs2/aops.h                                    |   11 +-
 fs/ocfs2/dlm/dlmcommon.h                           |    1 -
 fs/ocfs2/dlm/dlmconvert.c                          |    2 -
 fs/ocfs2/dlm/dlmdebug.c                            |    7 +-
 fs/ocfs2/dlm/dlmlock.c                             |    1 -
 fs/ocfs2/dlm/dlmmaster.c                           |    9 +-
 fs/ocfs2/dlm/dlmrecovery.c                         |   18 +-
 fs/ocfs2/file.c                                    |  138 +--
 fs/ocfs2/inode.c                                   |    3 +
 fs/ocfs2/inode.h                                   |    3 +
 fs/ocfs2/mmap.c                                    |    4 +-
 fs/ocfs2/ocfs2_trace.h                             |   16 +-
 fs/ocfs2/super.c                                   |    1 +
 fs/proc/array.c                                    |   10 +-
 fs/proc/task_mmu.c                                 |   39 +
 fs/seq_file.c                                      |   40 +-
 fs/sync.c                                          |    7 +-
 fs/userfaultfd.c                                   |    8 +-
 include/drm/drmP.h                                 |    1 -
 include/linux/compiler-gcc.h                       |    5 +-
 include/linux/crc64_ecma.h                         |   56 +
 include/linux/fs.h                                 |    1 +
 include/linux/huge_mm.h                            |    4 +
 include/linux/hugetlb.h                            |   19 +
 include/linux/hugetlb_cgroup.h                     |    4 +-
 include/linux/kernel.h                             |   44 +-
 include/linux/kexec.h                              |    2 +
 include/linux/memblock.h                           |    4 -
 include/linux/memcontrol.h                         |   58 +-
 include/linux/mm.h                                 |   89 +-
 include/linux/mm_types.h                           |   43 +-
 include/linux/mmzone.h                             |    3 +-
 include/linux/moduleparam.h                        |    1 +
 include/linux/page-flags.h                         |  280 +++--
 include/linux/pageblock-flags.h                    |    2 +-
 include/linux/pagemap.h                            |   25 +-
 include/linux/poison.h                             |    6 +-
 include/linux/rmap.h                               |    9 +-
 include/linux/sched.h                              |   23 +-
 include/linux/slab.h                               |    2 +-
 include/linux/string.h                             |    1 +
 include/linux/swap.h                               |    3 +-
 include/linux/syscalls.h                           |    2 +
 include/linux/tracehook.h                          |    3 +
 include/linux/uaccess.h                            |   40 +-
 include/linux/vm_event_item.h                      |    1 +
 include/linux/wait.h                               |    5 +-
 include/linux/zpool.h                              |    8 +-
 include/linux/zsmalloc.h                           |    2 +-
 include/linux/zutil.h                              |    4 +-
 include/trace/events/huge_memory.h                 |  165 +++
 include/uapi/asm-generic/mman-common.h             |    6 +
 include/uapi/asm-generic/mman.h                    |    1 +
 include/uapi/asm-generic/unistd.h                  |   10 +-
 ipc/msg.c                                          |    5 +-
 kernel/fork.c                                      |    3 +-
 kernel/params.c                                    |    3 +-
 kernel/profile.c                                   |    2 +-
 kernel/sched/wait.c                                |    7 +-
 kernel/signal.c                                    |   51 +-
 kernel/sys_ni.c                                    |    1 +
 kernel/time/timekeeping.c                          |    2 +-
 lib/Kconfig                                        |    7 +
 lib/Makefile                                       |    1 +
 lib/crc64_ecma.c                                   |  341 ++++++
 lib/div64.c                                        |    2 +-
 lib/dynamic_debug.c                                |    8 +-
 lib/halfmd4.c                                      |    3 +-
 lib/iommu-common.c                                 |    6 +-
 lib/kasprintf.c                                    |   16 +
 lib/kobject.c                                      |   30 +-
 lib/llist.c                                        |    4 +-
 lib/test-string_helpers.c                          |   36 +
 lib/test_kasan.c                                   |   69 ++
 lib/vsprintf.c                                     |   20 +-
 mm/Kconfig                                         |   12 -
 mm/compaction.c                                    |   26 +-
 mm/debug.c                                         |    6 +-
 mm/early_ioremap.c                                 |    6 +-
 mm/filemap.c                                       |   90 +-
 mm/frame_vector.c                                  |    2 +-
 mm/gup.c                                           |   10 +-
 mm/huge_memory.c                                   |  286 ++++-
 mm/hugetlb.c                                       |   48 +-
 mm/hugetlb_cgroup.c                                |    2 +-
 mm/internal.h                                      |   12 +-
 mm/kasan/kasan.c                                   |   38 +-
 mm/kasan/kasan.h                                   |    5 +-
 mm/kasan/report.c                                  |  112 +-
 mm/kmemleak.c                                      |    2 +-
 mm/ksm.c                                           |    2 +-
 mm/list_lru.c                                      |   34 +-
 mm/maccess.c                                       |    5 +
 mm/madvise.c                                       |  176 +++
 mm/memblock.c                                      |    2 +-
 mm/memcontrol.c                                    |  135 +--
 mm/memory-failure.c                                |   43 +-
 mm/memory.c                                        |    4 +-
 mm/memory_hotplug.c                                |    4 +-
 mm/migrate.c                                       |    7 +-
 mm/mincore.c                                       |    2 +-
 mm/mlock.c                                         |  100 +-
 mm/mmap.c                                          |   18 +-
 mm/mremap.c                                        |   12 +-
 mm/msync.c                                         |    2 +-
 mm/nommu.c                                         |    8 +-
 mm/oom_kill.c                                      |   17 +-
 mm/page_alloc.c                                    |  106 +-
 mm/percpu.c                                        |   10 +-
 mm/readahead.c                                     |   14 +-
 mm/rmap.c                                          |   50 +-
 mm/shmem.c                                         |    4 +-
 mm/slab.c                                          |   30 +-
 mm/slab_common.c                                   |    2 +-
 mm/slub.c                                          |   75 +-
 mm/swap.c                                          |   48 +-
 mm/swap_state.c                                    |    4 +-
 mm/util.c                                          |   42 +-
 mm/vmalloc.c                                       |   12 +-
 mm/vmscan.c                                        |  125 ++-
 mm/vmstat.c                                        |    1 +
 mm/zbud.c                                          |    2 +-
 mm/zpool.c                                         |   18 +-
 mm/zsmalloc.c                                      |   21 +-
 mm/zswap.c                                         |   82 +-
 net/openvswitch/flow.c                             |    2 +-
 net/sctp/transport.c                               |    2 +-
 net/sunrpc/sched.c                                 |    2 +-
 tools/testing/selftests/membarrier/Makefile        |    7 +-
 .../testing/selftests/membarrier/membarrier_test.c |    5 +-
 tools/testing/selftests/vm/Makefile                |   11 +-
 tools/testing/selftests/vm/mlock2-tests.c          |  737 +++++++++++++
 tools/testing/selftests/vm/on-fault-limit.c        |   47 +
 tools/testing/selftests/vm/run_vmtests             |   22 +
 tools/testing/selftests/vm/userfaultfd.c           |   54 +-
 201 files changed, 4619 insertions(+), 2072 deletions(-)
 create mode 100644 include/linux/crc64_ecma.h
 create mode 100644 include/trace/events/huge_memory.h
 create mode 100644 lib/crc64_ecma.c
 create mode 100644 tools/testing/selftests/vm/mlock2-tests.c
 create mode 100644 tools/testing/selftests/vm/on-fault-limit.c
$ git am -3 ../patches/0001-vmscan-fix-sane_reclaim-helper-for-legacy-memcg-fix.patch
Applying: vmscan-fix-sane_reclaim-helper-for-legacy-memcg-fix
$ git reset HEAD^
Unstaged changes after reset:
M	mm/vmscan.c
$ git add -A .
$ git commit -v -a --amend
[master d760af9a1c4f] Merge branch 'akpm-current/current'
 Date: Tue Sep 22 13:33:19 2015 +1000
$ git am -3 ../patches/0001-Revert-Input-walkera0701-fix-abs-calculations-on-64-.patch
Applying: Revert "Input: walkera0701 - fix abs() calculations on 64 bit values"
$ git reset HEAD^
Unstaged changes after reset:
M	drivers/input/joystick/walkera0701.c
$ git add -A .
$ git commit -v -a --amend
[master 146203d85df4] Merge branch 'akpm-current/current'
 Date: Tue Sep 22 13:33:19 2015 +1000
$ 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: net/ipv4/route.c: prevent oops
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
 + a09be1864d25...5f16d3921f20 akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (5f16d3921f20 drivers/w1/w1_int.c: call put_device if device_register fails)
$ git merge --no-ff akpm/master
Merge made by the 'recursive' strategy.
 drivers/w1/w1_int.c | 3 +--
 net/ipv4/route.c    | 2 ++
 2 files changed, 3 insertions(+), 2 deletions(-)