summaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: d23ab99230ac196c8df4b03b31068557d2d1502e (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
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
$ date -R
Thu, 05 Jan 2017 09:39:37 +1100
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at 0f64df301240 Merge branch 'parisc-4.10-2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux
Merging origin/master (62f8c4059217 Merge branch 'for-linus' of git://git.kernel.dk/linux-block)
$ git merge origin/master
Updating 0f64df301240..62f8c4059217
Fast-forward
 Documentation/block/queue-sysfs.txt         |  6 +-
 MAINTAINERS                                 | 13 ++++-
 block/blk-wbt.c                             | 13 +++--
 drivers/nvme/host/core.c                    | 17 +-----
 drivers/nvme/host/fc.c                      | 19 ++++---
 drivers/nvme/host/nvme.h                    |  1 -
 drivers/nvme/host/pci.c                     | 13 +----
 drivers/nvme/host/scsi.c                    | 27 ---------
 drivers/nvme/target/admin-cmd.c             |  4 +-
 drivers/nvme/target/fcloop.c                |  4 +-
 drivers/video/fbdev/cobalt_lcdfb.c          |  5 ++
 fs/block_dev.c                              |  3 +
 fs/buffer.c                                 |  2 +-
 include/linux/genhd.h                       |  9 ---
 scripts/gcc-plugins/gcc-common.h            | 85 +++++++++++++++++++++++++++++
 scripts/gcc-plugins/latent_entropy_plugin.c |  4 +-
 16 files changed, 134 insertions(+), 91 deletions(-)
Merging fixes/master (30066ce675d3 Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6)
$ git merge fixes/master
Already up-to-date.
Merging kbuild-current/rc-fixes (152b695d7437 builddeb: fix cross-building to arm64 producing host-arch debs)
$ git merge kbuild-current/rc-fixes
Already up-to-date.
Merging arc-current/for-curr (7ce7d89f4883 Linux 4.10-rc1)
$ git merge arc-current/for-curr
Already up-to-date.
Merging arm-current/fixes (8478132a8784 Revert "arm: move exports to definitions")
$ git merge arm-current/fixes
Already up-to-date.
Merging m68k-current/for-linus (ad595b77c4a8 m68k/atari: Use seq_puts() in atari_get_hardware_list())
$ git merge m68k-current/for-linus
Already up-to-date.
Merging metag-fixes/fixes (35d04077ad96 metag: Only define atomic_dec_if_positive conditionally)
$ git merge metag-fixes/fixes
Already up-to-date.
Merging powerpc-fixes/fixes (69973b830859 Linux 4.9)
$ git merge powerpc-fixes/fixes
Already up-to-date.
Merging sparc/master (4bbc84ffd137 sparc: use symbolic names for tsb indexing)
$ git merge sparc/master
Merge made by the 'recursive' strategy.
 arch/sparc/include/asm/mmu_context_64.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
Merging fscrypt-current/for-stable (42d97eb0ade3 fscrypt: fix renaming and linking special files)
$ git merge fscrypt-current/for-stable
Already up-to-date.
Merging net/master (71eae1ca77fd sh_eth: enable RX descriptor word 0 shift on SH7734)
$ git merge net/master
Merge made by the 'recursive' strategy.
 Documentation/networking/mpls-sysctl.txt           |  4 +-
 drivers/infiniband/hw/mlx4/main.c                  | 14 +++-
 drivers/net/ethernet/broadcom/bcmsysport.c         | 23 +++---
 drivers/net/ethernet/cadence/macb_pci.c            | 27 +++----
 drivers/net/ethernet/cavium/Kconfig                |  2 +-
 drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.c  | 12 ++-
 drivers/net/ethernet/emulex/benet/be_main.c        |  4 +-
 drivers/net/ethernet/freescale/dpaa/dpaa_eth.c     |  6 +-
 drivers/net/ethernet/mellanox/mlx4/en_clock.c      |  8 +-
 drivers/net/ethernet/mellanox/mlx4/en_rx.c         |  8 +-
 drivers/net/ethernet/mellanox/mlx4/icm.c           |  7 +-
 drivers/net/ethernet/mellanox/mlx4/main.c          | 18 +++++
 .../net/ethernet/mellanox/mlx4/resource_tracker.c  | 28 ++-----
 drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c |  3 +
 .../net/ethernet/mellanox/mlx5/core/en_ethtool.c   | 17 ----
 .../ethernet/mellanox/mlx5/core/en_fs_ethtool.c    |  1 +
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  | 51 ++++--------
 drivers/net/ethernet/mellanox/mlx5/core/en_stats.h | 32 +-------
 drivers/net/ethernet/mellanox/mlx5/core/eswitch.c  |  2 +-
 .../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 11 +++
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  |  1 +
 drivers/net/ethernet/mellanox/mlx5/core/main.c     | 15 +++-
 drivers/net/ethernet/renesas/sh_eth.c              |  3 +-
 drivers/net/ethernet/sfc/ef10.c                    |  3 +-
 drivers/net/ethernet/sfc/ethtool.c                 |  2 +
 drivers/net/ethernet/sfc/net_driver.h              |  2 +
 drivers/net/ethernet/sfc/siena.c                   |  1 +
 drivers/net/ethernet/stmicro/stmmac/dwmac-oxnas.c  | 89 ++++++++-------------
 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c  | 23 +++---
 drivers/net/usb/asix_devices.c                     |  1 +
 drivers/net/vrf.c                                  |  3 +
 drivers/net/wan/slic_ds26522.c                     |  2 +-
 include/linux/mlx4/device.h                        |  2 +
 include/linux/mlx5/device.h                        |  5 --
 include/linux/mlx5/driver.h                        |  1 -
 include/linux/mlx5/mlx5_ifc.h                      | 93 ----------------------
 net/atm/lec.c                                      |  2 +
 net/core/drop_monitor.c                            | 39 ++++++---
 net/core/flow_dissector.c                          |  5 +-
 net/core/rtnetlink.c                               |  6 ++
 net/ipv4/fib_frontend.c                            |  2 +-
 net/ipv4/igmp.c                                    |  7 +-
 net/ipv4/ip_sockglue.c                             |  8 +-
 net/ipv4/route.c                                   |  3 +-
 net/ipv6/ip6_output.c                              |  2 +-
 net/l2tp/l2tp_ip.c                                 | 19 ++---
 net/l2tp/l2tp_ip6.c                                | 24 ++----
 net/mac80211/tx.c                                  |  3 +-
 net/sched/cls_flower.c                             |  4 +
 net/socket.c                                       |  2 +-
 50 files changed, 273 insertions(+), 377 deletions(-)
Merging ipsec/master (4e5da369df64 Documentation/networking: fix typo in mpls-sysctl)
$ git merge ipsec/master
Already up-to-date.
Merging netfilter/master (6c5d5cfbe3c5 netfilter: ipt_CLUSTERIP: check duplicate config when initializing)
$ git merge netfilter/master
Merge made by the 'recursive' strategy.
 net/ipv4/netfilter/ipt_CLUSTERIP.c | 34 +++++++++++++++++++++++-----------
 net/netfilter/nf_tables_api.c      |  2 +-
 net/netfilter/nft_payload.c        | 27 +++++++++++++++++++--------
 net/netfilter/nft_queue.c          |  2 +-
 net/netfilter/nft_quota.c          | 26 ++++++++++++++------------
 5 files changed, 58 insertions(+), 33 deletions(-)
Merging ipvs/master (045169816b31 Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6)
$ git merge ipvs/master
Already up-to-date.
Merging wireless-drivers/master (60f59ce02785 rtlwifi: rtl_usb: Fix missing entry in USB driver's private data)
$ git merge wireless-drivers/master
Merge made by the 'recursive' strategy.
 drivers/net/wireless/intersil/orinoco/mic.c     | 44 +++++++++++++++----------
 drivers/net/wireless/intersil/orinoco/mic.h     |  3 +-
 drivers/net/wireless/intersil/orinoco/orinoco.h |  4 +--
 drivers/net/wireless/realtek/rtlwifi/usb.c      |  1 +
 4 files changed, 31 insertions(+), 21 deletions(-)
Merging mac80211/master (35f432a03e41 mac80211: initialize fast-xmit 'info' later)
$ git merge mac80211/master
Already up-to-date.
Merging sound-current/for-linus (c7efff9284df ALSA: hda - Apply asus-mode8 fixup to ASUS X71SL)
$ git merge sound-current/for-linus
Merge made by the 'recursive' strategy.
 sound/firewire/amdtp-stream.c               | 2 +-
 sound/firewire/amdtp-stream.h               | 4 ++--
 sound/firewire/fireworks/fireworks_stream.c | 2 +-
 sound/firewire/tascam/tascam-stream.c       | 2 +-
 sound/pci/hda/patch_realtek.c               | 2 ++
 5 files changed, 7 insertions(+), 5 deletions(-)
Merging pci-current/for-linus (4931a6781f83 x86/PCI: Ignore _CRS on Supermicro X8DTH-i/6/iF/6F)
$ git merge pci-current/for-linus
Merge made by the 'recursive' strategy.
 arch/x86/pci/acpi.c             | 10 ++++++++++
 drivers/pci/pcie/portdrv_core.c |  3 ---
 drivers/pci/pcie/portdrv_pci.c  | 43 -----------------------------------------
 3 files changed, 10 insertions(+), 46 deletions(-)
Merging driver-core.current/driver-core-linus (0c744ea4f77d Linux 4.10-rc2)
$ git merge driver-core.current/driver-core-linus
Already up-to-date.
Merging tty.current/tty-linus (0c744ea4f77d Linux 4.10-rc2)
$ git merge tty.current/tty-linus
Already up-to-date.
Merging usb.current/usb-linus (29fc1aa454d0 usb: host: xhci: handle COMP_STOP from SETUP phase too)
$ git merge usb.current/usb-linus
Merge made by the 'recursive' strategy.
 drivers/usb/dwc2/gadget.c           |   2 +-
 drivers/usb/dwc2/params.c           |  30 ++---
 drivers/usb/dwc3/core.h             |  10 +-
 drivers/usb/dwc3/dwc3-omap.c        |   6 +-
 drivers/usb/dwc3/dwc3-pci.c         |  17 +--
 drivers/usb/dwc3/ep0.c              |  46 ++++---
 drivers/usb/dwc3/gadget.c           |  24 ++--
 drivers/usb/gadget/composite.c      |  12 +-
 drivers/usb/gadget/function/f_fs.c  |  14 +-
 drivers/usb/gadget/function/f_hid.c |   2 +-
 drivers/usb/gadget/legacy/inode.c   |  18 ++-
 drivers/usb/gadget/udc/core.c       |   6 +-
 drivers/usb/gadget/udc/dummy_hcd.c  |   6 +-
 drivers/usb/host/xhci-mem.c         |  46 ++++++-
 drivers/usb/host/xhci-mtk.c         |   4 +-
 drivers/usb/host/xhci-pci.c         |   3 +-
 drivers/usb/host/xhci-ring.c        | 251 +++++++++++++++++++++---------------
 drivers/usb/host/xhci.c             |   4 +-
 drivers/usb/host/xhci.h             |   5 +-
 include/uapi/linux/usb/functionfs.h |   1 +
 20 files changed, 300 insertions(+), 207 deletions(-)
Merging usb-gadget-fixes/fixes (43aef5c2ca90 usb: gadget: Fix copy/pasted error message)
$ git merge usb-gadget-fixes/fixes
Already up-to-date.
Merging usb-serial-fixes/usb-linus (ef079936d3cd USB: serial: ti_usb_3410_5052: fix NULL-deref at open)
$ git merge usb-serial-fixes/usb-linus
Merge made by the 'recursive' strategy.
 drivers/usb/serial/cyberjack.c        | 10 +++++++
 drivers/usb/serial/f81534.c           |  8 +++--
 drivers/usb/serial/garmin_gps.c       |  1 +
 drivers/usb/serial/io_edgeport.c      |  5 ++++
 drivers/usb/serial/io_ti.c            | 22 ++++++++++----
 drivers/usb/serial/iuu_phoenix.c      | 11 +++++++
 drivers/usb/serial/keyspan_pda.c      | 14 +++++++++
 drivers/usb/serial/kobil_sct.c        | 12 ++++++++
 drivers/usb/serial/mos7720.c          | 56 +++++++++++++----------------------
 drivers/usb/serial/mos7840.c          | 24 ++++++++-------
 drivers/usb/serial/omninet.c          | 13 ++++++++
 drivers/usb/serial/oti6858.c          | 16 ++++++++++
 drivers/usb/serial/pl2303.c           |  8 +++++
 drivers/usb/serial/quatech2.c         |  4 ---
 drivers/usb/serial/spcp8x5.c          | 14 +++++++++
 drivers/usb/serial/ti_usb_3410_5052.c |  7 +++++
 16 files changed, 167 insertions(+), 58 deletions(-)
Merging usb-chipidea-fixes/ci-for-usb-stable (c7fbb09b2ea1 usb: chipidea: move the lock initialization to core file)
$ git merge usb-chipidea-fixes/ci-for-usb-stable
Merge made by the 'recursive' strategy.
Merging phy/fixes (4320f9d4c183 phy: sun4i: check PMU presence when poking unknown bit of pmu)
$ git merge phy/fixes
Already up-to-date.
Merging staging.current/staging-linus (e7c9a3d9e432 staging: octeon: Call SET_NETDEV_DEV())
$ git merge staging.current/staging-linus
Merge made by the 'recursive' strategy.
 drivers/iio/accel/st_accel_core.c                 | 12 +++++++++--
 drivers/iio/adc/Kconfig                           |  2 +-
 drivers/iio/common/st_sensors/st_sensors_buffer.c |  4 +++-
 drivers/iio/common/st_sensors/st_sensors_core.c   | 13 +++++++++++-
 drivers/iio/counter/104-quad-8.c                  | 13 +++++++-----
 drivers/iio/imu/bmi160/bmi160_core.c              | 25 ++++++-----------------
 drivers/iio/light/max44000.c                      |  2 +-
 drivers/staging/octeon/ethernet.c                 |  2 ++
 include/linux/iio/common/st_sensors.h             | 12 +++++++++++
 9 files changed, 55 insertions(+), 30 deletions(-)
Merging char-misc.current/char-misc-linus (b577fafc4366 nvmem: fix nvmem_cell_read() return type doc)
$ git merge char-misc.current/char-misc-linus
Merge made by the 'recursive' strategy.
 drivers/misc/mei/bus.c    |  2 +-
 drivers/misc/mei/client.c | 20 ++++++++++++--------
 drivers/nvmem/core.c      |  4 ++--
 drivers/nvmem/imx-ocotp.c |  2 +-
 drivers/nvmem/qfprom.c    | 14 +++++++-------
 5 files changed, 23 insertions(+), 19 deletions(-)
Merging input-current/for-linus (01427fe7c4b9 Input: adxl34x - make it enumerable in ACPI environment)
$ git merge input-current/for-linus
Auto-merging drivers/input/serio/i8042-x86ia64io.h
Merge made by the 'recursive' strategy.
 drivers/input/joydev.c                | 1 -
 drivers/input/joystick/xpad.c         | 6 ++++++
 drivers/input/misc/adxl34x-i2c.c      | 4 +---
 drivers/input/mouse/alps.h            | 2 +-
 drivers/input/mouse/synaptics_i2c.c   | 4 ++--
 drivers/input/rmi4/Kconfig            | 3 ++-
 drivers/input/serio/i8042-x86ia64io.h | 6 ++++++
 7 files changed, 18 insertions(+), 8 deletions(-)
Merging crypto-current/master (07825f0acd85 crypto: aesni - Fix failure when built-in with modular pcbc)
$ git merge crypto-current/master
Merge made by the 'recursive' strategy.
 arch/x86/crypto/aesni-intel_glue.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
Merging ide/master (b2ae75052a8c ide: Fix interface autodetection in legacy IDE driver (trial #2))
$ git merge ide/master
Merge made by the 'recursive' strategy.
 drivers/ide/ide-generic.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Merging vfio-fixes/for-linus (45e869714489 vfio-pci: use 32-bit comparisons for register address for gcc-4.5)
$ git merge vfio-fixes/for-linus
Merge made by the 'recursive' strategy.
 Documentation/vfio-mediated-device.txt |  27 +++++----
 drivers/gpu/drm/i915/gvt/kvmgt.c       |  22 ++++----
 drivers/vfio/mdev/mdev_core.c          | 100 +++++++++++++++++++++++++++------
 drivers/vfio/mdev/mdev_private.h       |  29 +++++++++-
 drivers/vfio/mdev/mdev_sysfs.c         |   8 +--
 drivers/vfio/mdev/vfio_mdev.c          |  12 ++--
 drivers/vfio/pci/vfio_pci_rdwr.c       |   5 +-
 drivers/vfio/vfio_iommu_type1.c        |  98 ++++++++++++++++----------------
 include/linux/mdev.h                   |  54 ++++--------------
 samples/Kconfig                        |   7 +++
 samples/Makefile                       |   3 +-
 samples/vfio-mdev/Makefile             |  14 +----
 samples/vfio-mdev/mtty.c               |  28 ++++-----
 13 files changed, 238 insertions(+), 169 deletions(-)
Merging kselftest-fixes/fixes (7ce7d89f4883 Linux 4.10-rc1)
$ 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 (1a41741fd60b mfd: wm8994-core: Don't use managed regulator bulk get API)
$ git merge mfd-fixes/for-mfd-fixes
Already up-to-date.
Merging drm-intel-fixes/for-linux-next-fixes (2471eb5fb6e1 drm/i915: Prevent timeline updates whilst performing reset)
$ git merge drm-intel-fixes/for-linux-next-fixes
Resolved 'drivers/gpu/drm/i915/gvt/kvmgt.c' using previous resolution.
Auto-merging drivers/gpu/drm/i915/gvt/kvmgt.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/gvt/kvmgt.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 242e64ec34e1] Merge remote-tracking branch 'drm-intel-fixes/for-linux-next-fixes'
$ git diff -M --stat --summary HEAD^..
 drivers/gpu/drm/i915/gvt/cfg_space.c    |  4 +--
 drivers/gpu/drm/i915/gvt/gtt.c          | 55 +++++++++++++++++++++++++++++++++
 drivers/gpu/drm/i915/gvt/gtt.h          |  4 +++
 drivers/gpu/drm/i915/gvt/gvt.h          |  1 +
 drivers/gpu/drm/i915/gvt/kvmgt.c        | 46 +++++++++++++++++++++------
 drivers/gpu/drm/i915/gvt/opregion.c     |  2 +-
 drivers/gpu/drm/i915/i915_gem.c         | 22 +++++++++----
 drivers/gpu/drm/i915/i915_gem_request.h | 19 ++++++++++++
 drivers/gpu/drm/i915/intel_display.c    | 32 +++++++++----------
 drivers/gpu/drm/i915/intel_dp.c         | 41 +++++++++++++++++++-----
 drivers/gpu/drm/i915/intel_overlay.c    |  9 ++++--
 11 files changed, 190 insertions(+), 45 deletions(-)
$ git am -3 ../patches/0001-vfio-mdev-fixup-for-Make-mdev_device-private-and-abs.patch
Applying: vfio-mdev: fixup for "Make mdev_device private and abstract interfaces"
$ git reset HEAD^
Unstaged changes after reset:
M	drivers/gpu/drm/i915/gvt/kvmgt.c
$ git add -A .
$ git commit -v -a --amend
[master 6ab636f7512f] Merge remote-tracking branch 'drm-intel-fixes/for-linux-next-fixes'
 Date: Thu Jan 5 09:48:35 2017 +1100
Merging drm-misc-fixes/for-linux-next-fixes (aebe55c2d4b9 drm: Clean up planes in atomic commit helper failure path)
$ git merge drm-misc-fixes/for-linux-next-fixes
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/drm_atomic_helper.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
Merging kbuild/for-next (a6d1da25b333 Merge branch 'kbuild/kbuild' into kbuild/for-next)
$ git merge kbuild/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging asm-generic/master (de4be6b87b6b asm-generic: page.h: fix comment typo)
$ git merge asm-generic/master
Resolved 'include/asm-generic/percpu.h' using previous resolution.
Auto-merging include/asm-generic/percpu.h
CONFLICT (content): Merge conflict in include/asm-generic/percpu.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master fcb5e6e19d0f] Merge remote-tracking branch 'asm-generic/master'
$ git diff -M --stat --summary HEAD^..
 include/asm-generic/page.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging arc/for-next (e5517c2a5a49 Linux 4.9-rc7)
$ git merge arc/for-next
Already up-to-date.
Merging arm/for-next (49b05da80546 Merge branch 'drm-armada-devel' into for-next)
$ git merge arm/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging arm-perf/for-next/perf (0c744ea4f77d Linux 4.10-rc2)
$ git merge arm-perf/for-next/perf
Already up-to-date.
Merging arm-soc/for-next (1b9ec8125882 Merge tag 'davinci-fixes-for-v4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci into fixes)
$ git merge arm-soc/for-next
Removing include/dt-bindings/mfd/tps65217.h
Removing arch/arm/mach-omap2/gpio.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../bindings/input/tps65218-pwrbutton.txt          |   4 +-
 .../bindings/power/supply/tps65217_charger.txt     |   7 +-
 MAINTAINERS                                        |   2 +-
 arch/arm/Kconfig                                   |   3 +-
 arch/arm/boot/dts/Makefile                         |   1 +
 arch/arm/boot/dts/am335x-bone-common.dtsi          |   8 +-
 arch/arm/boot/dts/am33xx.dtsi                      |   1 +
 arch/arm/boot/dts/am4372.dtsi                      |   1 +
 arch/arm/boot/dts/am571x-idk.dts                   |  10 +-
 arch/arm/boot/dts/am572x-idk.dts                   |  14 +-
 arch/arm/boot/dts/am57xx-idk-common.dtsi           |   9 +-
 arch/arm/boot/dts/dm814x.dtsi                      |   1 +
 arch/arm/boot/dts/dm816x.dtsi                      |   1 +
 arch/arm/boot/dts/dra7.dtsi                        |   1 +
 arch/arm/boot/dts/dra72-evm-tps65917.dtsi          |  16 +++
 arch/arm/boot/dts/imx31.dtsi                       |   4 +-
 arch/arm/boot/dts/imx6qdl-nitrogen6x.dtsi          |   1 -
 arch/arm/boot/dts/imx6qdl.dtsi                     |   1 +
 arch/arm/boot/dts/imx6sl.dtsi                      |   1 +
 arch/arm/boot/dts/imx6sx.dtsi                      |   1 +
 arch/arm/boot/dts/omap2.dtsi                       |   1 +
 arch/arm/boot/dts/omap3-n900.dts                   |   2 +
 arch/arm/boot/dts/omap3.dtsi                       |   1 +
 arch/arm/boot/dts/omap4.dtsi                       |   1 +
 arch/arm/boot/dts/omap5.dtsi                       |   1 +
 arch/arm/boot/dts/qcom-apq8064.dtsi                |   4 +
 arch/arm/boot/dts/vexpress-v2p-ca15-tc1.dts        |   2 +-
 arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts         |   2 +-
 arch/arm/boot/dts/vf610-zii-dev-rev-b.dts          |   3 +-
 arch/arm/mach-davinci/clock.c                      |  12 +-
 arch/arm/mach-davinci/clock.h                      |   2 +
 arch/arm/mach-davinci/da850.c                      |  32 ++++-
 arch/arm/mach-davinci/usb-da8xx.c                  |  34 ++---
 arch/arm/mach-exynos/platsmp.c                     |  31 ----
 arch/arm/mach-imx/mach-imx1.c                      |   1 -
 arch/arm/mach-omap2/Makefile                       |   2 +-
 arch/arm/mach-omap2/board-generic.c                |   2 +-
 arch/arm/mach-omap2/gpio.c                         | 160 ---------------------
 arch/arm/mach-omap2/omap_hwmod.c                   |   8 +-
 arch/arm/mach-omap2/omap_hwmod_common_data.h       |   4 -
 arch/arm/mach-omap2/prm_common.c                   |   4 +-
 arch/arm/mach-omap2/timer.c                        |   9 +-
 arch/arm/mach-s3c24xx/common.c                     |  76 ++++++++++
 arch/arm64/boot/dts/amlogic/meson-gx.dtsi          |  16 +++
 .../boot/dts/amlogic/meson-gxbb-nexbox-a95x.dts    |  16 +++
 arch/arm64/boot/dts/amlogic/meson-gxbb-p20x.dtsi   |  16 +++
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        |   4 +
 .../boot/dts/amlogic/meson-gxl-nexbox-a95x.dts     |  16 +++
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi         |   6 +-
 .../arm64/boot/dts/amlogic/meson-gxm-nexbox-a1.dts |  16 +++
 arch/arm64/boot/dts/amlogic/meson-gxm.dtsi         |   4 +
 arch/arm64/boot/dts/arm/rtsm_ve-aemv8a.dts         |   2 +-
 arch/arm64/boot/dts/qcom/msm8996.dtsi              |  10 ++
 arch/arm64/boot/dts/renesas/r8a7795-h3ulcb.dts     |   2 +-
 arch/arm64/configs/defconfig                       |   1 +
 drivers/firmware/arm_scpi.c                        |  10 +-
 drivers/firmware/psci_checker.c                    |   4 +-
 include/dt-bindings/mfd/tps65217.h                 |  26 ----
 58 files changed, 334 insertions(+), 296 deletions(-)
 delete mode 100644 arch/arm/mach-omap2/gpio.c
 delete mode 100644 include/dt-bindings/mfd/tps65217.h
Merging amlogic/for-next (b21a5fc2bb8a Merge branch 'v4.10/defconfig' into tmp/aml-rebuild)
$ git merge amlogic/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging at91/at91-next (0f59c948faed Merge tag 'at91-ab-4.8-defconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux into at91-next)
$ git merge at91/at91-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging bcm2835/for-next (ec09fdf764ee Merge branch anholt/bcm2835-defconfig-64-next into for-next)
$ git merge bcm2835/for-next
Auto-merging drivers/thermal/Makefile
Auto-merging drivers/thermal/Kconfig
Merge made by the 'recursive' strategy.
 drivers/thermal/Kconfig           |   8 +
 drivers/thermal/Makefile          |   1 +
 drivers/thermal/bcm2835_thermal.c | 340 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 349 insertions(+)
 create mode 100644 drivers/thermal/bcm2835_thermal.c
Merging berlin/berlin/for-next (5153351425c9 Merge branch 'berlin/dt' into berlin/for-next)
$ git merge berlin/berlin/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging cortex-m/for-next (f719a0d6a854 ARM: efm32: switch to vendor,device compatible strings)
$ git merge cortex-m/for-next
Already up-to-date.
Merging imx-mxs/for-next (814ff7844e57 Merge branch 'imx/defconfig' into for-next)
$ git merge imx-mxs/for-next
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/imx1-ads.dts                     |   1 -
 arch/arm/boot/dts/imx1.dtsi                        |   3 +-
 arch/arm/boot/dts/imx23.dtsi                       |   5 +-
 arch/arm/boot/dts/imx25.dtsi                       |   5 +-
 arch/arm/boot/dts/imx27-apf27dev.dts               |   2 -
 .../boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts  |   1 -
 arch/arm/boot/dts/imx27-pdk.dts                    |   1 -
 arch/arm/boot/dts/imx27-phytec-phycard-s-som.dtsi  |   1 -
 arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts     |   1 -
 arch/arm/boot/dts/imx27-phytec-phycore-som.dtsi    |   1 -
 arch/arm/boot/dts/imx27.dtsi                       |   1 +
 arch/arm/boot/dts/imx28.dtsi                       |   7 +-
 arch/arm/boot/dts/imx31.dtsi                       |   5 +-
 arch/arm/boot/dts/imx35.dtsi                       |   5 +-
 arch/arm/boot/dts/imx50-evk.dts                    |   1 -
 arch/arm/boot/dts/imx51-apf51dev.dts               |   2 -
 arch/arm/boot/dts/imx51-babbage.dts                |   1 -
 arch/arm/boot/dts/imx51-digi-connectcore-som.dtsi  |   1 -
 .../boot/dts/imx51-eukrea-mbimxsd51-baseboard.dts  |   1 -
 arch/arm/boot/dts/imx53-smd.dts                    |   1 -
 arch/arm/boot/dts/imx53-tqma53.dtsi                |   2 -
 arch/arm/boot/dts/imx53-tx53.dtsi                  |   1 -
 arch/arm/boot/dts/imx53-voipac-dmm-668.dtsi        |   1 -
 arch/arm/boot/dts/imx6dl-aristainetos_4.dts        |   1 -
 arch/arm/boot/dts/imx6dl-icore-rqs.dts             |  51 +++++++
 arch/arm/boot/dts/imx6q-ba16.dtsi                  |   1 -
 arch/arm/boot/dts/imx6q-bx50v3.dtsi                |   1 -
 arch/arm/boot/dts/imx6q-cm-fx6.dts                 |  22 ++-
 arch/arm/boot/dts/imx6q-dmo-edmqmx6.dts            |   1 -
 arch/arm/boot/dts/imx6q-evi.dts                    |   3 -
 arch/arm/boot/dts/imx6q-gw5400-a.dts               |   1 -
 arch/arm/boot/dts/imx6q-icore-rqs.dts              |   2 +-
 arch/arm/boot/dts/imx6q-marsboard.dts              |   1 -
 arch/arm/boot/dts/imx6q-novena.dts                 |   1 -
 arch/arm/boot/dts/imx6qdl-apalis.dtsi              |   2 -
 arch/arm/boot/dts/imx6qdl-apf6dev.dtsi             |   1 -
 arch/arm/boot/dts/imx6qdl-aristainetos.dtsi        |   1 -
 arch/arm/boot/dts/imx6qdl-aristainetos2.dtsi       |   3 -
 arch/arm/boot/dts/imx6qdl-colibri.dtsi             |   1 -
 arch/arm/boot/dts/imx6qdl-dfi-fs700-m60.dtsi       |   1 -
 arch/arm/boot/dts/imx6qdl-gw51xx.dtsi              | 132 ++++++++++++----
 arch/arm/boot/dts/imx6qdl-gw52xx.dtsi              | 166 +++++++++++++++------
 arch/arm/boot/dts/imx6qdl-gw53xx.dtsi              | 163 ++++++++++++++------
 arch/arm/boot/dts/imx6qdl-gw54xx.dtsi              |  16 ++
 arch/arm/boot/dts/imx6qdl-gw551x.dtsi              | 132 ++++++++++++----
 arch/arm/boot/dts/imx6qdl-gw552x.dtsi              | 130 ++++++++++++----
 arch/arm/boot/dts/imx6qdl-gw553x.dtsi              |  98 ++++++++++--
 arch/arm/boot/dts/imx6qdl-nit6xlite.dtsi           |   3 -
 arch/arm/boot/dts/imx6qdl-nitrogen6_max.dtsi       |   5 -
 arch/arm/boot/dts/imx6qdl-nitrogen6_som2.dtsi      |   3 -
 arch/arm/boot/dts/imx6qdl-nitrogen6x.dtsi          |   3 -
 arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi       |   1 -
 arch/arm/boot/dts/imx6qdl-rex.dtsi                 |   2 -
 arch/arm/boot/dts/imx6qdl-sabreauto.dtsi           |   1 -
 arch/arm/boot/dts/imx6qdl-sabrelite.dtsi           |   3 -
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi             |   1 -
 arch/arm/boot/dts/imx6qdl-ts4900.dtsi              |   2 -
 arch/arm/boot/dts/imx6qdl-tx6.dtsi                 |   1 -
 arch/arm/boot/dts/imx6sl-evk.dts                   |   1 -
 arch/arm/boot/dts/imx6sx-nitrogen6sx.dts           |   1 -
 arch/arm/boot/dts/imx6sx-udoo-neo.dtsi             |   1 +
 arch/arm/boot/dts/imx6ul-isiot.dts                 | 119 +++++++++++++++
 arch/arm/boot/dts/imx6ul-tx6ul.dtsi                |   1 -
 arch/arm/boot/dts/imx6ul.dtsi                      |   1 -
 arch/arm/boot/dts/imx7d-sdb.dts                    |   1 -
 arch/arm/boot/dts/imx7s.dtsi                       |   1 -
 arch/arm/configs/imx_v6_v7_defconfig               |   4 +-
 arch/arm/mach-imx/devices/platform-flexcan.c       |   9 --
 .../mach-imx/devices/platform-sdhci-esdhc-imx.c    |  10 --
 arch/arm/mach-imx/mach-mx27_3ds.c                  | 107 -------------
 arch/arm/mach-imx/mach-mx31_3ds.c                  | 160 --------------------
 arch/arm/mach-imx/mach-mx35_3ds.c                  | 103 -------------
 arch/arm/mach-imx/mach-pcm037.c                    | 115 --------------
 arch/arm/mach-imx/mx31moboard-marxbot.c            |  92 ------------
 arch/arm/mach-imx/mx31moboard-smartbot.c           |  74 ---------
 arch/arm64/boot/dts/freescale/fsl-ls2080a-rdb.dts  |   1 -
 77 files changed, 863 insertions(+), 946 deletions(-)
 create mode 100644 arch/arm/boot/dts/imx6dl-icore-rqs.dts
 create mode 100644 arch/arm/boot/dts/imx6ul-isiot.dts
Merging keystone/next (fb2a68db621a Merge branch 'for_4.9/keystone_dts' into next)
$ git merge keystone/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging mvebu/for-next (3536988747b6 Merge branch 'mvebu/dt64' into mvebu/for-next)
$ git merge mvebu/for-next
Auto-merging arch/arm64/configs/defconfig
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/armada-370-db.dts                |  10 +-
 arch/arm/boot/dts/armada-370-dlink-dns327l.dts     |  10 +-
 arch/arm/boot/dts/armada-370-mirabox.dts           |  10 +-
 arch/arm/boot/dts/armada-370-netgear-rn102.dts     |  10 +-
 arch/arm/boot/dts/armada-370-netgear-rn104.dts     |  10 +-
 arch/arm/boot/dts/armada-370-rd.dts                |  10 +-
 arch/arm/boot/dts/armada-370-synology-ds213j.dts   |  10 +-
 arch/arm/boot/dts/armada-370-xp.dtsi               |  10 +-
 arch/arm/boot/dts/armada-370.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-375-db.dts                |  10 +-
 arch/arm/boot/dts/armada-375.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-380.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-385.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-388-clearfog-base.dts     | 109 ++++++
 arch/arm/boot/dts/armada-388-clearfog-pro.dts      |  55 +++
 arch/arm/boot/dts/armada-388-clearfog.dts          | 374 ++++-----------------
 arch/arm/boot/dts/armada-388-clearfog.dtsi         | 307 +++++++++++++++++
 arch/arm/boot/dts/armada-388-db.dts                |  10 +-
 arch/arm/boot/dts/armada-388-rd.dts                |  10 +-
 .../arm/boot/dts/armada-38x-solidrun-microsom.dtsi | 130 ++++---
 arch/arm/boot/dts/armada-38x.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-390-db.dts                |  10 +-
 arch/arm/boot/dts/armada-390.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-395.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-398-db.dts                |  10 +-
 arch/arm/boot/dts/armada-398.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-39x.dtsi                  |  10 +-
 arch/arm/boot/dts/armada-xp-axpwifiap.dts          |  10 +-
 arch/arm/boot/dts/armada-xp-db.dts                 |  10 +-
 arch/arm/boot/dts/armada-xp-gp.dts                 |  10 +-
 arch/arm/boot/dts/armada-xp-lenovo-ix4-300d.dts    |  10 +-
 arch/arm/boot/dts/armada-xp-matrix.dts             |  10 +-
 arch/arm/boot/dts/armada-xp-mv78230.dtsi           |  10 +-
 arch/arm/boot/dts/armada-xp-mv78260.dtsi           |  10 +-
 arch/arm/boot/dts/armada-xp-mv78460.dtsi           |  10 +-
 arch/arm/boot/dts/armada-xp-netgear-rn2120.dts     |  10 +-
 arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts   |  10 +-
 arch/arm/boot/dts/armada-xp-synology-ds414.dts     |  10 +-
 arch/arm/boot/dts/armada-xp.dtsi                   |  10 +-
 arch/arm/boot/dts/dove-cm-a510.dtsi                |  10 +-
 arch/arm/boot/dts/dove-sbc-a510.dts                |  10 +-
 arch/arm/boot/dts/kirkwood-linkstation-6282.dtsi   |  10 +-
 .../boot/dts/kirkwood-linkstation-duo-6281.dtsi    |  10 +-
 arch/arm/boot/dts/kirkwood-linkstation-lsqvl.dts   |  10 +-
 arch/arm/boot/dts/kirkwood-linkstation-lsvl.dts    |  10 +-
 arch/arm/boot/dts/kirkwood-linkstation-lswsxl.dts  |  10 +-
 arch/arm/boot/dts/kirkwood-linkstation-lswvl.dts   |  10 +-
 arch/arm/boot/dts/kirkwood-linkstation-lswxl.dts   |  10 +-
 arch/arm/boot/dts/kirkwood-linkstation.dtsi        |  10 +-
 arch/arm/boot/dts/mvebu-linkstation-fan.dtsi       |  10 +-
 .../boot/dts/mvebu-linkstation-gpio-simple.dtsi    |  10 +-
 arch/arm/boot/dts/orion5x-kuroboxpro.dts           |  10 +-
 arch/arm/boot/dts/orion5x-linkstation-lsgl.dts     |  10 +-
 arch/arm/boot/dts/orion5x-linkstation-lswtgl.dts   |  10 +-
 arch/arm/boot/dts/orion5x-linkstation.dtsi         |  10 +-
 arch/arm/boot/dts/orion5x-lschl.dts                |  10 +-
 arch/arm/boot/dts/orion5x-lswsgl.dts               |  10 +-
 arch/arm64/boot/dts/marvell/armada-371x.dtsi       |  10 +-
 arch/arm64/boot/dts/marvell/armada-3720-db.dts     |  44 ++-
 .../boot/dts/marvell/armada-3720-espressobin.dts   |  76 ++++-
 arch/arm64/boot/dts/marvell/armada-372x.dtsi       |  10 +-
 arch/arm64/boot/dts/marvell/armada-37xx.dtsi       |  39 ++-
 arch/arm64/configs/defconfig                       |   1 +
 64 files changed, 1033 insertions(+), 644 deletions(-)
 create mode 100644 arch/arm/boot/dts/armada-388-clearfog-base.dts
 create mode 100644 arch/arm/boot/dts/armada-388-clearfog-pro.dts
 create mode 100644 arch/arm/boot/dts/armada-388-clearfog.dtsi
Merging omap/for-next (35ef8633bd14 Merge branch 'omap-for-v4.11/dt' into for-next)
$ git merge omap/for-next
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/Makefile                      |   2 +
 arch/arm/boot/dts/am335x-boneblack-common.dtsi  | 163 ++++++++++++++++++++++++
 arch/arm/boot/dts/am335x-boneblack-wireless.dts | 109 ++++++++++++++++
 arch/arm/boot/dts/am335x-boneblack.dts          | 155 +---------------------
 arch/arm/boot/dts/am335x-bonegreen-common.dtsi  |  44 +++++++
 arch/arm/boot/dts/am335x-bonegreen-wireless.dts | 126 ++++++++++++++++++
 arch/arm/boot/dts/am335x-bonegreen.dts          |  38 +-----
 7 files changed, 446 insertions(+), 191 deletions(-)
 create mode 100644 arch/arm/boot/dts/am335x-boneblack-common.dtsi
 create mode 100644 arch/arm/boot/dts/am335x-boneblack-wireless.dts
 create mode 100644 arch/arm/boot/dts/am335x-bonegreen-common.dtsi
 create mode 100644 arch/arm/boot/dts/am335x-bonegreen-wireless.dts
Merging omap-pending/for-next (c20c8f750d9f ARM: OMAP2+: hwmod: fix _idle() hwmod state sanity check sequence)
$ git merge omap-pending/for-next
Already up-to-date.
Merging qcom/for-next (bbf9c90768f9 Merge tag 'qcom-dts-for-4.10-2' into all-for-4.10-part2)
$ git merge qcom/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging renesas/next (0a704567b658 Merge branches 'fixes-for-v4.10', 'arm64-dt-for-v4.11', 'defconfig-for-v4.11', 'dt-for-v4.11' and 'soc-for-v4.11' into next)
$ git merge renesas/next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/shmobile.txt |   2 +-
 arch/arm/boot/dts/r8a73a4.dtsi                     |   4 +-
 arch/arm/boot/dts/r8a7743.dtsi                     |  13 +-
 arch/arm/boot/dts/r8a7745.dtsi                     |  13 +-
 arch/arm/boot/dts/r8a7778.dtsi                     |  10 +-
 arch/arm/boot/dts/r8a7779.dtsi                     |   8 +-
 arch/arm/boot/dts/r8a7790.dtsi                     |  35 ++--
 arch/arm/boot/dts/r8a7791.dtsi                     |  33 ++--
 arch/arm/boot/dts/r8a7792.dtsi                     |  24 ++-
 arch/arm/boot/dts/r8a7793-gose.dts                 |  21 +++
 arch/arm/boot/dts/r8a7793.dtsi                     |  21 ++-
 arch/arm/boot/dts/r8a7794.dtsi                     |  21 ++-
 arch/arm/boot/dts/sh73a0.dtsi                      |   2 +-
 arch/arm/configs/multi_v7_defconfig                |   2 +
 arch/arm/configs/shmobile_defconfig                |   6 +
 arch/arm/mach-shmobile/platsmp-apmu.c              |  41 +++--
 arch/arm/mach-shmobile/rcar-gen2.h                 |   2 -
 arch/arm/mach-shmobile/setup-rcar-gen2.c           |  18 --
 arch/arm/mach-shmobile/smp-r8a7791.c               |  14 +-
 arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts |   2 +
 arch/arm64/boot/dts/renesas/r8a7795.dtsi           |  56 +++++--
 arch/arm64/boot/dts/renesas/r8a7796-salvator-x.dts |  37 +++++
 arch/arm64/boot/dts/renesas/r8a7796.dtsi           | 183 ++++++++++++++++++++-
 23 files changed, 426 insertions(+), 142 deletions(-)
Merging rockchip/for-next (7efd9733e204 Merge branch 'v4.11-clk/next' into for-next)
$ git merge rockchip/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/rk3036-evb.dts                   |   2 +-
 arch/arm/boot/dts/rk3036-kylin.dts                 |  12 +--
 arch/arm/boot/dts/rk3066a-bqcurie2.dts             |   8 +-
 arch/arm/boot/dts/rk3066a-marsboard.dts            |   6 +-
 arch/arm/boot/dts/rk3066a-mk808.dts                |  10 +-
 arch/arm/boot/dts/rk3066a-rayeager.dts             |  18 ++--
 arch/arm/boot/dts/rk3188-px3-evb.dts               |  10 +-
 arch/arm/boot/dts/rk3188-radxarock.dts             |  20 ++--
 arch/arm/boot/dts/rk3229-evb.dts                   |   2 +-
 arch/arm/boot/dts/rk3288-evb-act8846.dts           |   6 +-
 arch/arm/boot/dts/rk3288-evb-rk808.dts             |   2 +-
 arch/arm/boot/dts/rk3288-evb.dtsi                  |  14 +--
 arch/arm/boot/dts/rk3288-fennec.dts                |   6 +-
 arch/arm/boot/dts/rk3288-firefly-beta.dts          |   2 +-
 arch/arm/boot/dts/rk3288-firefly-reload-core.dtsi  |   2 +-
 arch/arm/boot/dts/rk3288-firefly-reload.dts        |  26 +++---
 arch/arm/boot/dts/rk3288-firefly.dts               |   2 +-
 arch/arm/boot/dts/rk3288-firefly.dtsi              |  18 ++--
 arch/arm/boot/dts/rk3288-miqi.dts                  |   8 +-
 arch/arm/boot/dts/rk3288-popmetal.dts              |   8 +-
 arch/arm/boot/dts/rk3288-r89.dts                   |  14 +--
 arch/arm/boot/dts/rk3288-rock2-som.dtsi            |   4 +-
 arch/arm/boot/dts/rk3288-rock2-square.dts          |  14 +--
 arch/arm/boot/dts/rk3288-veyron-analog-audio.dtsi  |   8 +-
 arch/arm/boot/dts/rk3288-veyron-brain.dts          |   8 +-
 arch/arm/boot/dts/rk3288-veyron-chromebook.dtsi    |  14 +--
 arch/arm/boot/dts/rk3288-veyron-jaq.dts            |  14 +--
 arch/arm/boot/dts/rk3288-veyron-jerry.dts          |  12 +--
 arch/arm/boot/dts/rk3288-veyron-mickey.dts         |   6 +-
 arch/arm/boot/dts/rk3288-veyron-minnie.dts         |  18 ++--
 arch/arm/boot/dts/rk3288-veyron-pinky.dts          |   4 +-
 arch/arm/boot/dts/rk3288-veyron-sdmmc.dtsi         |   2 +-
 arch/arm/boot/dts/rk3288-veyron-speedy.dts         |  10 +-
 arch/arm/boot/dts/rk3288-veyron.dtsi               |  10 +-
 arch/arm/boot/dts/rk3288.dtsi                      |  84 +++++++++++++++++
 arch/arm64/boot/dts/rockchip/rk3368-evb.dtsi       |  10 +-
 arch/arm64/boot/dts/rockchip/rk3368-geekbox.dts    |  10 +-
 .../boot/dts/rockchip/rk3368-orion-r68-meta.dts    |  14 +--
 arch/arm64/boot/dts/rockchip/rk3368-px5-evb.dts    |  10 +-
 arch/arm64/boot/dts/rockchip/rk3368-r88.dts        |  16 ++--
 arch/arm64/boot/dts/rockchip/rk3399-evb.dts        |   8 +-
 arch/arm64/boot/dts/rockchip/rk3399.dtsi           |  37 ++++++--
 drivers/clk/rockchip/Makefile                      |   1 +
 drivers/clk/rockchip/clk-muxgrf.c                  | 102 +++++++++++++++++++++
 drivers/clk/rockchip/clk-pll.c                     |  16 +++-
 drivers/clk/rockchip/clk-rk3288.c                  |  11 +--
 drivers/clk/rockchip/clk.c                         |   7 ++
 drivers/clk/rockchip/clk.h                         |  22 +++++
 48 files changed, 456 insertions(+), 212 deletions(-)
 create mode 100644 drivers/clk/rockchip/clk-muxgrf.c
Merging rpi/for-rpi-next (bc0195aad0da Linux 4.2-rc2)
$ git merge rpi/for-rpi-next
Already up-to-date.
Merging samsung/for-next (1001354ca341 Linux 4.9-rc1)
$ git merge samsung/for-next
Already up-to-date.
Merging samsung-krzk/for-next (8ae2065bd399 Merge branch 'next/dt64' into for-next)
$ git merge samsung-krzk/for-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                      |   1 +
 arch/arm/boot/dts/exynos4.dtsi                   |   6 +-
 arch/arm/boot/dts/exynos4412-itop-elite.dts      |  25 ++-
 arch/arm/boot/dts/exynos4412-odroid-common.dtsi  |  28 ++--
 arch/arm/boot/dts/exynos4412-odroidu3.dts        |   5 +-
 arch/arm/boot/dts/exynos4412-odroidx.dts         |  13 ++
 arch/arm/boot/dts/exynos4412-odroidx2.dts        |  25 +--
 arch/arm/boot/dts/exynos4412-prime.dtsi          |  41 +++++
 arch/arm/boot/dts/exynos4412.dtsi                |   2 +-
 arch/arm/boot/dts/exynos5250.dtsi                |   8 +
 arch/arm/boot/dts/exynos5410.dtsi                |   8 +
 arch/arm/boot/dts/exynos5420.dtsi                |   8 +
 arch/arm/configs/exynos_defconfig                |   1 +
 arch/arm/configs/s3c2410_defconfig               |   6 +-
 arch/arm/configs/s5pv210_defconfig               |   4 -
 arch/arm/mach-exynos/exynos.c                    |   4 +-
 arch/arm/mach-exynos/mcpm-exynos.c               |   2 +-
 arch/arm/mach-exynos/suspend.c                   |  10 +-
 arch/arm/mach-s3c24xx/bast-irq.c                 |   4 +-
 arch/arm/mach-s3c24xx/iotiming-s3c2410.c         |   2 +-
 arch/arm/mach-s3c24xx/pm-s3c2412.c               |   2 +-
 arch/arm/mach-s3c64xx/common.c                   |   3 +-
 arch/arm/mach-s3c64xx/dev-audio.c                |  19 ---
 arch/arm/mach-s3c64xx/pm.c                       |   2 +-
 arch/arm/plat-samsung/devs.c                     |  19 ---
 arch/arm/plat-samsung/include/plat/wakeup-mask.h |   2 +-
 arch/arm/plat-samsung/wakeup-mask.c              |   2 +-
 arch/arm64/boot/dts/exynos/exynos5433-bus.dtsi   | 197 +++++++++++++++++++++++
 arch/arm64/boot/dts/exynos/exynos5433-tm2.dts    |  70 ++++++++
 arch/arm64/boot/dts/exynos/exynos5433.dtsi       |  25 +++
 drivers/clk/samsung/clk-exynos4.c                |   4 +
 31 files changed, 427 insertions(+), 121 deletions(-)
 create mode 100644 arch/arm/boot/dts/exynos4412-prime.dtsi
 create mode 100644 arch/arm64/boot/dts/exynos/exynos5433-bus.dtsi
Merging tegra/for-next (e8d16d40e269 Merge branch for-4.10/i2c into for-next)
$ git merge tegra/for-next
Auto-merging drivers/i2c/busses/Makefile
Auto-merging drivers/i2c/busses/Kconfig
Merge made by the 'recursive' strategy.
 .../bindings/i2c/nvidia,tegra186-bpmp-i2c.txt      |  42 ++
 drivers/clk/tegra/Kconfig                          |   4 +
 drivers/clk/tegra/Makefile                         |   1 +
 drivers/clk/tegra/clk-bpmp.c                       | 620 +++++++++++++++++++++
 drivers/clk/tegra/clk-tegra20.c                    |   1 +
 drivers/clk/tegra/clk-tegra30.c                    |   1 +
 drivers/i2c/busses/Kconfig                         |  11 +
 drivers/i2c/busses/Makefile                        |   1 +
 drivers/i2c/busses/i2c-tegra-bpmp.c                | 365 ++++++++++++
 9 files changed, 1046 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/i2c/nvidia,tegra186-bpmp-i2c.txt
 create mode 100644 drivers/clk/tegra/clk-bpmp.c
 create mode 100644 drivers/i2c/busses/i2c-tegra-bpmp.c
Merging arm64/for-next/core (75037120e62b arm64: Disable PAN on uaccess_enable())
$ git merge arm64/for-next/core
Already up-to-date.
Merging clk/clk-next (cac53644aa06 clk: qcom: Add GCC_MSS_RESET support)
$ git merge clk/clk-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/clock/qcom,rpmcc.txt       |   1 +
 .../devicetree/bindings/clock/st,stm32-rcc.txt     |  17 +
 .../devicetree/bindings/clock/zx296718-clk.txt     |   3 +
 drivers/clk/axs10x/i2s_pll_clock.c                 |   1 +
 drivers/clk/clk-stm32f4.c                          | 599 ++++++++++++++++++++-
 drivers/clk/clk-wm831x.c                           |   3 +-
 drivers/clk/imx/clk-pllv3.c                        |  99 ++++
 drivers/clk/imx/clk-vf610.c                        |   4 +-
 drivers/clk/imx/clk.h                              |   1 +
 drivers/clk/qcom/clk-smd-rpm.c                     |  71 +++
 drivers/clk/qcom/gcc-ipq4019.c                     | 479 +++++++++++++++-
 drivers/clk/qcom/gcc-msm8996.c                     |   1 +
 drivers/clk/renesas/clk-mstp.c                     |  27 +-
 drivers/clk/zte/clk-zx296718.c                     | 154 +++++-
 drivers/clk/zte/clk.c                              | 127 +++++
 drivers/clk/zte/clk.h                              |  21 +
 include/dt-bindings/clock/qcom,gcc-ipq4019.h       |  11 +
 include/dt-bindings/clock/qcom,gcc-msm8996.h       |   1 +
 include/dt-bindings/clock/qcom,rpmcc.h             |  40 +-
 include/dt-bindings/clock/stm32fx-clock.h          |  39 ++
 20 files changed, 1645 insertions(+), 54 deletions(-)
 create mode 100644 include/dt-bindings/clock/stm32fx-clock.h
Merging blackfin/for-linus (391e74a51ea2 eth: bf609 eth clock: add pclk clock for stmmac driver probe)
$ git merge blackfin/for-linus
Resolved 'arch/blackfin/mach-common/pm.c' using previous resolution.
Auto-merging arch/blackfin/mach-common/pm.c
CONFLICT (content): Merge conflict in arch/blackfin/mach-common/pm.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 8f5779b47c88] Merge remote-tracking branch 'blackfin/for-linus'
$ git diff -M --stat --summary HEAD^..
Merging c6x/for-linux-next (ca3060d39ae7 c6x: Use generic clkdev.h header)
$ git merge c6x/for-linux-next
Already up-to-date.
Merging cris/for-next (8f50f2a1b46a cris: No need to append -O2 and $(LINUXINCLUDE))
$ git merge cris/for-next
Already up-to-date.
Merging h8300/h8300-next (58c57526711f h8300: Add missing include file to asm/io.h)
$ git merge h8300/h8300-next
Merge made by the 'recursive' strategy.
Merging hexagon/linux-next (02cc2ccfe771 Revert "Hexagon: fix signal.c compile error")
$ git merge hexagon/linux-next
Already up-to-date.
Merging ia64/next (fbb0e4da96f4 ia64: salinfo: use a waitqueue instead a sema down/up combo)
$ git merge ia64/next
Already up-to-date.
Merging m68k/for-next (ad595b77c4a8 m68k/atari: Use seq_puts() in atari_get_hardware_list())
$ git merge m68k/for-next
Already up-to-date.
Merging m68knommu/for-next (7ce7d89f4883 Linux 4.10-rc1)
$ git merge m68knommu/for-next
Already up-to-date.
Merging metag/for-next (f5d163aad31e metag: perf: fix build on Meta1)
$ git merge metag/for-next
Already up-to-date.
Merging microblaze/next (3400606d8ffd microblaze: Add new fpga families)
$ git merge microblaze/next
Already up-to-date.
Merging mips/mips-for-linux-next (95eb33ae0ea2 MIPS: Fix printk continuations in cpu-bugs64.c)
$ git merge mips/mips-for-linux-next
Removing arch/mips/kernel/mips_ksyms.c
Removing arch/mips/include/asm/unaligned.h
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../bindings/mips/img/pistachio-marduk.txt         |  10 +
 MAINTAINERS                                        |   8 +-
 arch/mips/Kconfig                                  |  40 +-
 arch/mips/Makefile                                 |  16 +-
 arch/mips/Makefile.postlink                        |  35 +
 arch/mips/ath79/clock.c                            |   2 +-
 arch/mips/boot/compressed/Makefile                 |  10 +-
 arch/mips/boot/dts/img/Makefile                    |   9 +
 arch/mips/boot/dts/img/pistachio.dtsi              | 924 +++++++++++++++++++++
 arch/mips/boot/dts/img/pistachio_marduk.dts        | 163 ++++
 arch/mips/boot/dts/xilfpga/nexys4ddr.dts           |  63 ++
 .../cavium-octeon/executive/cvmx-helper-rgmii.c    |   3 +-
 .../cavium-octeon/executive/cvmx-helper-sgmii.c    |   3 +-
 .../mips/cavium-octeon/executive/cvmx-helper-spi.c |   3 +-
 .../cavium-octeon/executive/cvmx-helper-xaui.c     |   3 +-
 arch/mips/cavium-octeon/executive/cvmx-helper.c    |  47 +-
 arch/mips/cavium-octeon/octeon-memcpy.S            |   5 +
 arch/mips/cavium-octeon/setup.c                    |  23 +
 arch/mips/cavium-octeon/smp.c                      |  21 +-
 arch/mips/configs/loongson1b_defconfig             |   4 +
 arch/mips/configs/loongson1c_defconfig             |   4 +
 arch/mips/configs/xilfpga_defconfig                |  37 +-
 arch/mips/configs/xway_defconfig                   |  21 +-
 arch/mips/generic/Makefile                         |   1 +
 arch/mips/generic/init.c                           |  13 +
 arch/mips/generic/kexec.c                          |  44 +
 arch/mips/include/asm/Kbuild                       |   2 +
 arch/mips/include/asm/asm.h                        |  10 +-
 arch/mips/include/asm/bootinfo.h                   |  13 +
 arch/mips/include/asm/elf.h                        |   9 +
 arch/mips/include/asm/highmem.h                    |   3 -
 arch/mips/include/asm/i8259.h                      |   1 -
 arch/mips/include/asm/irq.h                        |  12 +
 .../asm/mach-cavium-octeon/kernel-entry-init.h     |  15 +-
 arch/mips/include/asm/mach-loongson32/loongson1.h  |   9 +-
 arch/mips/include/asm/mach-loongson32/platform.h   |   9 +-
 arch/mips/include/asm/mach-loongson32/regs-rtc.h   |  23 +
 arch/mips/include/asm/mach-ralink/mt7620.h         |   7 +-
 arch/mips/include/asm/mips-cm.h                    |   7 +
 arch/mips/include/asm/octeon/cvmx-helper-rgmii.h   |   3 +-
 arch/mips/include/asm/octeon/cvmx-helper-sgmii.h   |   3 +-
 arch/mips/include/asm/octeon/cvmx-helper-spi.h     |   3 +-
 arch/mips/include/asm/octeon/cvmx-helper-xaui.h    |   3 +-
 arch/mips/include/asm/octeon/cvmx-helper.h         |  14 +-
 arch/mips/include/asm/smp.h                        |  10 +-
 arch/mips/include/asm/stackframe.h                 |  19 +-
 arch/mips/include/asm/switch_to.h                  |  18 +-
 arch/mips/include/asm/thread_info.h                |   1 -
 arch/mips/include/asm/unaligned.h                  |  28 -
 arch/mips/kernel/Makefile                          |   4 +-
 arch/mips/kernel/asm-offsets.c                     |   2 +-
 arch/mips/kernel/cacheinfo.c                       |  85 ++
 arch/mips/kernel/cpu-bugs64.c                      |  24 +-
 arch/mips/kernel/crash.c                           |   2 +-
 arch/mips/kernel/entry.S                           |  18 -
 arch/mips/kernel/genex.S                           |  81 +-
 arch/mips/kernel/irq.c                             |  11 +
 arch/mips/kernel/machine_kexec.c                   |  22 +
 arch/mips/kernel/mcount.S                          |   3 +
 arch/mips/kernel/mips-r2-to-r6-emul.c              |  12 +-
 arch/mips/kernel/mips_ksyms.c                      |  94 ---
 arch/mips/kernel/process.c                         | 214 +++--
 arch/mips/kernel/prom.c                            |   7 +
 arch/mips/kernel/ptrace.c                          |  34 +-
 arch/mips/kernel/r2300_switch.S                    |   2 +
 arch/mips/kernel/r4k_switch.S                      |   3 +
 arch/mips/kernel/relocate.c                        |  56 +-
 arch/mips/kernel/setup.c                           |  94 ++-
 arch/mips/kernel/smp-bmips.c                       |   2 +-
 arch/mips/kernel/smp-cps.c                         |   7 +-
 arch/mips/kernel/smp.c                             |  34 +-
 arch/mips/kernel/traps.c                           |  65 +-
 arch/mips/kernel/uprobes.c                         |   2 +-
 arch/mips/kernel/vmlinux.lds.S                     |   2 +-
 arch/mips/lib/csum_partial.S                       |   6 +
 arch/mips/lib/memcpy.S                             |   9 +
 arch/mips/lib/memset.S                             |   5 +
 arch/mips/lib/strlen_user.S                        |   2 +
 arch/mips/lib/strncpy_user.S                       |   5 +
 arch/mips/lib/strnlen_user.S                       |   3 +
 arch/mips/loongson32/common/platform.c             |  45 +-
 arch/mips/loongson32/ls1b/board.c                  |   7 +-
 arch/mips/loongson32/ls1c/board.c                  |   7 +-
 arch/mips/loongson64/loongson-3/smp.c              |   1 -
 arch/mips/mm/c-r4k.c                               |   6 +-
 arch/mips/mm/init.c                                |   2 +
 arch/mips/mm/mmap.c                                |  10 +-
 arch/mips/mm/page-funcs.S                          |   3 +
 arch/mips/mm/page.c                                |   2 +
 arch/mips/mm/sc-ip22.c                             |  54 +-
 arch/mips/mm/sc-mips.c                             |   1 +
 arch/mips/mm/tlbex.c                               |   6 +-
 arch/mips/netlogic/common/irq.c                    |   4 +-
 arch/mips/netlogic/common/smpboot.S                |   4 +-
 arch/mips/pci/pci-tx4927.c                         |  22 +-
 arch/mips/pci/pci-tx4938.c                         |  30 +-
 arch/mips/pci/pci-tx4939.c                         |  10 +-
 arch/mips/ralink/Kconfig                           |   1 +
 arch/mips/ralink/clk.c                             |   6 +
 arch/mips/ralink/mt7620.c                          |  31 +-
 arch/mips/ralink/mt7621.c                          |   2 +-
 arch/mips/ralink/of.c                              |  12 +-
 arch/mips/ralink/prom.c                            |   9 +-
 arch/mips/ralink/rt288x.c                          |   1 +
 arch/mips/ralink/rt305x.c                          |   2 +
 arch/mips/ralink/rt3883.c                          |   4 +-
 arch/mips/txx9/generic/7segled.c                   |   4 +-
 arch/mips/txx9/generic/pci.c                       |  28 +-
 arch/mips/txx9/generic/setup_tx3927.c              |   6 +-
 arch/mips/txx9/generic/setup_tx4927.c              |  20 +-
 arch/mips/txx9/generic/setup_tx4938.c              |  28 +-
 arch/mips/txx9/generic/setup_tx4939.c              |   8 +-
 arch/mips/txx9/generic/smsc_fdc37m81x.c            |  17 +-
 arch/mips/txx9/jmr3927/prom.c                      |   2 +-
 arch/mips/txx9/jmr3927/setup.c                     |  11 +-
 arch/mips/txx9/rbtx4938/setup.c                    |  14 +-
 arch/mips/xilfpga/intc.c                           |   7 +-
 drivers/of/base.c                                  |   2 +-
 drivers/of/fdt.c                                   |   9 +-
 119 files changed, 2437 insertions(+), 645 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mips/img/pistachio-marduk.txt
 create mode 100644 arch/mips/Makefile.postlink
 create mode 100644 arch/mips/boot/dts/img/Makefile
 create mode 100644 arch/mips/boot/dts/img/pistachio.dtsi
 create mode 100644 arch/mips/boot/dts/img/pistachio_marduk.dts
 create mode 100644 arch/mips/generic/kexec.c
 create mode 100644 arch/mips/include/asm/mach-loongson32/regs-rtc.h
 delete mode 100644 arch/mips/include/asm/unaligned.h
 create mode 100644 arch/mips/kernel/cacheinfo.c
 delete mode 100644 arch/mips/kernel/mips_ksyms.c
Merging nios2/for-next (744606c76c4a nios2: add screen_info)
$ git merge nios2/for-next
Already up-to-date.
Merging openrisc/for-next (7c7808ce107d openrisc: prevent VGA console, fix builds)
$ git merge openrisc/for-next
Already up-to-date.
Merging parisc-hd/for-next (69973b830859 Linux 4.9)
$ git merge parisc-hd/for-next
Already up-to-date.
Merging powerpc/next (c6f6634721c8 Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux into next)
$ git merge powerpc/next
Already up-to-date.
Merging fsl/next (baae856ebdee powerpc/fsl/dts: add FMan node for t1042d4rdb)
$ git merge fsl/next
Already up-to-date.
Merging mpc5xxx/next (39e69f55f857 powerpc: Introduce the use of the managed version of kzalloc)
$ git merge mpc5xxx/next
Already up-to-date.
Merging s390/features (a664736c4958 s390/topology: make "topology=off" parameter work)
$ git merge s390/features
Auto-merging drivers/s390/crypto/zcrypt_api.c
Auto-merging drivers/s390/char/zcore.c
Auto-merging arch/s390/kernel/time.c
Merge made by the 'recursive' strategy.
 arch/s390/include/asm/cpu_mf.h         |   5 +-
 arch/s390/include/asm/pci_clp.h        |   2 +-
 arch/s390/include/asm/uaccess.h        |   4 +-
 arch/s390/kernel/early.c               |  12 ++
 arch/s390/kernel/ipl.c                 |   3 +-
 arch/s390/kernel/os_info.c             |   6 +-
 arch/s390/kernel/perf_cpum_cf_events.c |   2 +-
 arch/s390/kernel/processor.c           |   2 +-
 arch/s390/kernel/setup.c               |   2 +
 arch/s390/kernel/time.c                |   2 +-
 arch/s390/kernel/topology.c            |  19 +--
 arch/s390/kvm/priv.c                   |   2 +-
 arch/s390/kvm/vsie.c                   |   2 +-
 arch/s390/lib/mem.S                    |  28 ++---
 arch/s390/mm/extmem.c                  |   2 +-
 arch/s390/mm/mem_detect.c              |   6 +-
 arch/s390/pci/pci.c                    |   8 +-
 drivers/s390/char/con3270.c            |   2 +-
 drivers/s390/char/raw3270.c            |   2 +-
 drivers/s390/char/zcore.c              |   3 +-
 drivers/s390/cio/chp.c                 |  13 +-
 drivers/s390/cio/chp.h                 |   2 +-
 drivers/s390/cio/chsc.c                |  48 +++++++-
 drivers/s390/cio/chsc.h                |   2 +
 drivers/s390/cio/css.c                 | 209 +++++++++++++++++----------------
 drivers/s390/cio/css.h                 |  11 +-
 drivers/s390/crypto/ap_asm.h           |  10 +-
 drivers/s390/crypto/ap_card.c          |   2 +-
 drivers/s390/crypto/ap_queue.c         |   2 +-
 drivers/s390/crypto/zcrypt_api.c       |   4 +-
 drivers/s390/virtio/virtio_ccw.c       |   2 +-
 31 files changed, 245 insertions(+), 174 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 sh/for-next (e61c10e468a4 sh: add device tree source for J2 FPGA on Mimas v2 board)
$ git merge sh/for-next
Already up-to-date.
Merging tile/master (14e73e78ee98 tile: use __ro_after_init instead of tile-specific __write_once)
$ git merge tile/master
Already up-to-date.
Merging uml/linux-next (f88f0bdfc32f um: UBD Improvements)
$ git merge uml/linux-next
Already up-to-date.
Merging unicore32/unicore32 (bc27113620ca unicore32-oldabi: add oldabi syscall interface)
$ git merge unicore32/unicore32
Merge made by the 'recursive' strategy.
 arch/unicore32/Kconfig                          |  14 +
 arch/unicore32/include/asm/Kbuild               |   3 -
 arch/unicore32/include/asm/signal.h             |  21 +
 arch/unicore32/include/asm/syscalls.h           |  25 +
 arch/unicore32/include/uapi/asm/sigcontext.h    |  14 +
 arch/unicore32/include/uapi/asm/stat-oldabi.h   |  71 +++
 arch/unicore32/include/uapi/asm/stat.h          |  19 +
 arch/unicore32/include/uapi/asm/unistd-oldabi.h | 770 ++++++++++++++++++++++++
 arch/unicore32/include/uapi/asm/unistd.h        |   8 +
 arch/unicore32/kernel/entry.S                   |  17 +
 arch/unicore32/kernel/signal.c                  |  41 ++
 11 files changed, 1000 insertions(+), 3 deletions(-)
 create mode 100644 arch/unicore32/include/asm/signal.h
 create mode 100644 arch/unicore32/include/asm/syscalls.h
 create mode 100644 arch/unicore32/include/uapi/asm/stat-oldabi.h
 create mode 100644 arch/unicore32/include/uapi/asm/stat.h
 create mode 100644 arch/unicore32/include/uapi/asm/unistd-oldabi.h
Merging xtensa/xtensa-for-next (30b507051dd1 xtensa: update DMA-related Documentation/features entries)
$ git merge xtensa/xtensa-for-next
Already up-to-date.
Merging fscrypt/master (58ae74683ae2 fscrypt: factor out bio specific functions)
$ git merge fscrypt/master
Merge made by the 'recursive' strategy.
 fs/crypto/Kconfig           |   1 -
 fs/crypto/Makefile          |   1 +
 fs/crypto/bio.c             | 145 ++++++++++++++++++++++++++++++++++++++++
 fs/crypto/crypto.c          | 157 +++++---------------------------------------
 fs/crypto/fname.c           |   4 +-
 fs/crypto/fscrypt_private.h |  16 ++++-
 fs/crypto/policy.c          |  73 ++++++++------------
 fs/ext4/ialloc.c            |   2 +-
 fs/ext4/namei.c             |   4 +-
 fs/f2fs/dir.c               |   5 +-
 fs/f2fs/namei.c             |   4 +-
 include/linux/fscrypto.h    |  11 ++--
 12 files changed, 223 insertions(+), 200 deletions(-)
 create mode 100644 fs/crypto/bio.c
Merging befs/for-next (f7b75aaed5ef befs: add NFS export support)
$ git merge befs/for-next
Merge made by the 'recursive' strategy.
Merging btrfs/next (8b8b08cbfb90 Btrfs: fix delalloc accounting after copy_from_user faults)
$ git merge btrfs/next
Already up-to-date.
Merging btrfs-kdave/for-next (003501108e6b fixup! Btrfs: fix btrfs_ordered_update_i_size to update disk_i_size properly)
$ git merge btrfs-kdave/for-next
Auto-merging fs/btrfs/super.c
Auto-merging fs/btrfs/ioctl.c
Auto-merging fs/btrfs/inode.c
Auto-merging fs/btrfs/file.c
Auto-merging fs/btrfs/extent_io.c
Auto-merging fs/btrfs/ctree.h
Merge made by the 'recursive' strategy.
 fs/btrfs/async-thread.c      |   4 +-
 fs/btrfs/ctree.c             |   8 +-
 fs/btrfs/ctree.h             |  36 ++++-
 fs/btrfs/delayed-inode.c     |   4 +-
 fs/btrfs/delayed-ref.c       |   6 +-
 fs/btrfs/delayed-ref.h       |   3 +-
 fs/btrfs/export.c            |   3 -
 fs/btrfs/extent-tree.c       |  67 ++++++---
 fs/btrfs/extent_io.c         |  61 +++++++-
 fs/btrfs/extent_io.h         |   5 +
 fs/btrfs/file-item.c         |   4 +-
 fs/btrfs/file.c              |  26 ++--
 fs/btrfs/free-space-cache.c  |   6 +-
 fs/btrfs/inode-map.c         |   6 +-
 fs/btrfs/inode.c             | 324 +++++++++++++++++++++++++++++++++----------
 fs/btrfs/ioctl.c             |  21 ++-
 fs/btrfs/ordered-data.c      |  42 +++---
 fs/btrfs/qgroup.c            |  31 ++++-
 fs/btrfs/relocation.c        |  14 +-
 fs/btrfs/super.c             |   2 +-
 fs/btrfs/tests/inode-tests.c |  15 +-
 fs/btrfs/transaction.c       |  10 +-
 fs/btrfs/tree-log.c          |  13 +-
 fs/btrfs/tree-log.h          |   4 +-
 fs/btrfs/uuid-tree.c         |   4 +-
 include/trace/events/btrfs.h |  16 ++-
 26 files changed, 542 insertions(+), 193 deletions(-)
Merging ceph/master (45ee2c1d6618 libceph: remove now unused finish_request() wrapper)
$ git merge ceph/master
Already up-to-date.
Merging cifs/for-next (7c0f6ba682b9 Replace <asm/uaccess.h> with <linux/uaccess.h> globally)
$ git merge cifs/for-next
Already up-to-date.
Merging configfs/for-next (e16769d4bca6 fs: configfs: don't return anything from drop_link)
$ git merge configfs/for-next
Already up-to-date.
Merging ecryptfs/next (be280b25c328 ecryptfs: remove private bin2hex implementation)
$ git merge ecryptfs/next
Auto-merging fs/ecryptfs/main.c
Auto-merging fs/ecryptfs/ecryptfs_kernel.h
Merge made by the 'recursive' strategy.
 fs/ecryptfs/crypto.c          | 15 ---------------
 fs/ecryptfs/ecryptfs_kernel.h |  9 ++++++++-
 fs/ecryptfs/keystore.c        |  2 +-
 fs/ecryptfs/main.c            |  2 +-
 fs/ecryptfs/miscdev.c         |  2 +-
 5 files changed, 11 insertions(+), 19 deletions(-)
Merging ext3/for_next (a17f0cb5b9ea fs/udf: make #ifdef UDF_PREALLOCATE unconditional)
$ git merge ext3/for_next
Merge made by the 'recursive' strategy.
 fs/udf/inode.c   | 2 --
 fs/udf/super.c   | 9 ++++++---
 fs/udf/udfdecl.h | 1 -
 3 files changed, 6 insertions(+), 6 deletions(-)
Merging ext4/dev (a551d7c8deef Merge branch 'fscrypt' into dev)
$ git merge ext4/dev
Already up-to-date.
Merging f2fs/dev (0f64df301240 Merge branch 'parisc-4.10-2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux)
$ git merge f2fs/dev
Already up-to-date.
Merging freevxfs/for-next (bf1bb4b460c8 freevxfs: update Kconfig information)
$ git merge freevxfs/for-next
Already up-to-date.
Merging fscache/fscache (d52bd54db8be Merge branch 'akpm' (patches from Andrew))
$ git merge fscache/fscache
Already up-to-date.
Merging fuse/for-next (c01638f5d919 fuse: fix clearing suid, sgid for chown())
$ git merge fuse/for-next
Already up-to-date.
Merging gfs2/for-next (23754c081d1b GFS2: Limit number of transaction blocks requested for truncates)
$ git merge gfs2/for-next
Auto-merging fs/gfs2/glock.c
Auto-merging fs/gfs2/bmap.c
Merge made by the 'recursive' strategy.
 fs/gfs2/bmap.c   | 29 ++++++++++++++++++++++++++---
 fs/gfs2/glock.c  | 12 +++++++-----
 fs/gfs2/incore.h |  2 ++
 fs/gfs2/super.c  |  2 ++
 4 files changed, 37 insertions(+), 8 deletions(-)
Merging jfs/jfs-next (362ad5d58e9a fs: jfs: Replace CURRENT_TIME_SEC by current_time())
$ git merge jfs/jfs-next
Already up-to-date.
Merging nfs/linux-next (8ac2b42238f5 NFSv4: Retry the DELEGRETURN if the embedded GETATTR is rejected with EACCES)
$ git merge nfs/linux-next
Already up-to-date.
Merging nfsd/nfsd-next (60db988b6132 svcauth_gss: remove context sooner after PROC_DESTROY)
$ git merge nfsd/nfsd-next
Merge made by the 'recursive' strategy.
 fs/nfsd/nfs3proc.c                |  9 +++-----
 fs/nfsd/nfs4proc.c                |  2 +-
 fs/nfsd/nfs4state.c               |  1 -
 fs/nfsd/nfs4xdr.c                 |  3 +--
 fs/nfsd/nfsctl.c                  | 10 ++++++---
 fs/nfsd/nfsproc.c                 |  9 ++------
 fs/nfsd/vfs.c                     | 45 ++++++++++++---------------------------
 fs/nfsd/vfs.h                     |  6 +++---
 include/linux/sunrpc/cache.h      |  1 +
 include/linux/sunrpc/svc.h        | 16 --------------
 include/linux/sunrpc/svc_xprt.h   |  1 -
 net/sunrpc/auth_gss/svcauth_gss.c |  4 ++--
 net/sunrpc/cache.c                | 12 +++++++++++
 net/sunrpc/svc.c                  |  6 ------
 net/sunrpc/svc_xprt.c             | 37 --------------------------------
 net/sunrpc/svcsock.c              | 13 +----------
 16 files changed, 47 insertions(+), 128 deletions(-)
Merging orangefs/for-next (04102c76a779 orangefs: Axe some dead code)
$ git merge orangefs/for-next
Already up-to-date.
Merging overlayfs/overlayfs-next (c3c869966480 ovl: fix reStructuredText syntax errors in documentation)
$ git merge overlayfs/overlayfs-next
Already up-to-date.
Merging v9fs/for-next (a333e4bf2556 fs/9p: use fscache mutex rather than spinlock)
$ git merge v9fs/for-next
Already up-to-date.
Merging ubifs/linux-next (ba75d570b60c ubifs: Initialize fstr_real_len)
$ git merge ubifs/linux-next
Already up-to-date.
Merging xfs/for-next (9807b773dad4 Merge branch 'xfs-4.10-misc-fixes-4' into for-next)
$ git merge xfs/for-next
Already up-to-date.
Merging file-locks/linux-next (07d9a380680d Linux 4.9-rc2)
$ git merge file-locks/linux-next
Already up-to-date.
Merging vfs/for-next (59479ae85e43 Merge branches 'work.sendmsg' and 'work.splice-net' into for-next)
$ git merge vfs/for-next
Auto-merging net/socket.c
Auto-merging include/net/tcp.h
Merge made by the 'recursive' strategy.
 drivers/block/drbd/drbd_main.c           |  11 ++-
 drivers/block/nbd.c                      |  76 +++++++++------------
 drivers/target/iscsi/iscsi_target_util.c |  64 +++++++----------
 drivers/usb/usbip/usbip_common.c         |  32 +++------
 fs/afs/rxrpc.c                           |  15 ++--
 fs/ncpfs/sock.c                          | 111 +++++++++++-------------------
 fs/splice.c                              |  22 +++---
 include/linux/fs.h                       |   1 +
 include/linux/net.h                      |   2 +-
 include/linux/skbuff.h                   |   3 +-
 include/linux/splice.h                   |   4 +-
 include/net/tcp.h                        |   2 +-
 kernel/relay.c                           |   1 -
 kernel/trace/trace.c                     |   2 -
 net/ceph/messenger.c                     |  44 ++++++++----
 net/core/skbuff.c                        |   4 +-
 net/ipv4/tcp.c                           |   7 +-
 net/kcm/kcmsock.c                        |   5 +-
 net/rds/page.c                           |  29 --------
 net/rds/rds.h                            |   7 --
 net/socket.c                             |   4 +-
 net/unix/af_unix.c                       | 113 +++----------------------------
 22 files changed, 186 insertions(+), 373 deletions(-)
Merging vfs-jk/vfs (030b533c4fd4 fs: Avoid premature clearing of capabilities)
$ git merge vfs-jk/vfs
Already up-to-date.
Merging vfs-miklos/next (b12826c5188e Merge branch 'vfs-ovl' into next)
$ git merge vfs-miklos/next
Resolved 'fs/overlayfs/dir.c' using previous resolution.
Resolved 'fs/read_write.c' using previous resolution.
Auto-merging include/linux/fs.h
Auto-merging fs/read_write.c
CONFLICT (content): Merge conflict in fs/read_write.c
Auto-merging fs/proc/namespaces.c
Auto-merging fs/proc/base.c
Auto-merging fs/overlayfs/dir.c
CONFLICT (content): Merge conflict in fs/overlayfs/dir.c
Auto-merging fs/nsfs.c
Auto-merging fs/namei.c
Auto-merging Documentation/filesystems/vfs.txt
Auto-merging Documentation/filesystems/Locking
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master d7ee838ec187] Merge remote-tracking branch 'vfs-miklos/next'
$ git diff -M --stat --summary HEAD^..
 Documentation/filesystems/Locking |  6 ++--
 Documentation/filesystems/porting |  3 ++
 Documentation/filesystems/vfs.txt |  5 ++-
 fs/afs/mntpt.c                    |  2 +-
 fs/bad_inode.c                    |  8 +----
 fs/namei.c                        | 65 +++++++++++++++------------------------
 fs/nsfs.c                         | 17 +++++++---
 fs/overlayfs/dir.c                |  3 +-
 fs/proc/base.c                    | 57 ++++++++++++----------------------
 fs/proc/namespaces.c              | 13 ++++----
 fs/read_write.c                   | 17 +++++++---
 include/linux/fs.h                |  6 +---
 include/linux/proc_ns.h           |  4 +--
 13 files changed, 89 insertions(+), 117 deletions(-)
Merging pci/next (7ce7d89f4883 Linux 4.10-rc1)
$ git merge pci/next
Already up-to-date.
Merging pstore/for-next/pstore (0c744ea4f77d Linux 4.10-rc2)
$ git merge pstore/for-next/pstore
Already up-to-date.
Merging hid/for-next (d0dbfbe26b0c Merge branch 'for-4.10/upstream-fixes' into for-next)
$ git merge hid/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/input/hid-over-i2c.txt     |  5 +++
 drivers/hid/hid-core.c                             |  2 -
 drivers/hid/hid-ids.h                              |  1 -
 drivers/hid/hid-microsoft.c                        |  2 -
 drivers/hid/i2c-hid/i2c-hid.c                      | 45 ++++++++++++++++++++--
 drivers/hid/intel-ish-hid/ipc/pci-ish.c            |  4 +-
 drivers/hid/intel-ish-hid/ishtp-hid.c              |  2 +-
 drivers/hid/intel-ish-hid/ishtp/hbm.c              |  1 -
 drivers/hid/intel-ish-hid/ishtp/init.c             |  1 -
 drivers/hid/intel-ish-hid/ishtp/ishtp-dev.h        |  3 +-
 drivers/hid/usbhid/hid-quirks.c                    |  1 -
 include/linux/i2c/i2c-hid.h                        |  6 +++
 12 files changed, 58 insertions(+), 15 deletions(-)
Merging i2c/i2c/for-next (649ac63a9ae5 i2c: mux: mlxcpld: fix i2c mux selection caching)
$ git merge i2c/i2c/for-next
Already up-to-date.
Merging jdelvare-hwmon/master (08d27eb20666 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge jdelvare-hwmon/master
Already up-to-date.
Merging dmi/master (0c744ea4f77d Linux 4.10-rc2)
$ git merge dmi/master
Already up-to-date.
Merging hwmon-staging/hwmon-next (53e678d75e7c hwmon: (sht21) Add Electronic Identification Code retrieval)
$ git merge hwmon-staging/hwmon-next
Merge made by the 'recursive' strategy.
 Documentation/hwmon/sht21      |   5 +-
 drivers/hwmon/adm1021.c        |  14 +-
 drivers/hwmon/adm1025.c        |  16 +-
 drivers/hwmon/adm1026.c        | 128 ++++++++-------
 drivers/hwmon/adm1031.c        |  15 +-
 drivers/hwmon/adm9240.c        |  28 ++--
 drivers/hwmon/adt7411.c        | 361 ++++++++++++++++++++++++++++++++++++-----
 drivers/hwmon/adt7470.c        |  48 +++---
 drivers/hwmon/adt7475.c        |  28 ++--
 drivers/hwmon/adt7x10.c        |   7 +-
 drivers/hwmon/asb100.c         |  36 ++--
 drivers/hwmon/atxp1.c          |  35 ++--
 drivers/hwmon/dme1737.c        |  18 +-
 drivers/hwmon/ds1621.c         |  16 +-
 drivers/hwmon/emc2103.c        |  36 ++--
 drivers/hwmon/f71805f.c        |  16 +-
 drivers/hwmon/f71882fg.c       |   6 +-
 drivers/hwmon/fam15h_power.c   |  34 ++--
 drivers/hwmon/fschmd.c         |   6 +-
 drivers/hwmon/g760a.c          |  22 +--
 drivers/hwmon/g762.c           |  86 +++++-----
 drivers/hwmon/gl520sm.c        |  48 +++---
 drivers/hwmon/gpio-fan.c       |  54 +++---
 drivers/hwmon/hwmon.c          |   4 +-
 drivers/hwmon/i5500_temp.c     |   6 +-
 drivers/hwmon/i5k_amb.c        |   4 +-
 drivers/hwmon/it87.c           |  20 +--
 drivers/hwmon/jz4740-hwmon.c   |   6 +-
 drivers/hwmon/k10temp.c        |  12 +-
 drivers/hwmon/k8temp.c         |   4 +-
 drivers/hwmon/lm63.c           |  48 +++---
 drivers/hwmon/lm70.c           |   6 +-
 drivers/hwmon/lm78.c           |  38 ++---
 drivers/hwmon/lm80.c           |   4 +-
 drivers/hwmon/lm83.c           |   4 +-
 drivers/hwmon/lm85.c           |  22 +--
 drivers/hwmon/lm87.c           |  43 ++---
 drivers/hwmon/lm90.c           |  10 +-
 drivers/hwmon/lm92.c           |  10 +-
 drivers/hwmon/lm93.c           |  39 ++---
 drivers/hwmon/lm95234.c        |  12 +-
 drivers/hwmon/max1111.c        |   4 +-
 drivers/hwmon/max1619.c        |   4 +-
 drivers/hwmon/max197.c         |   6 +-
 drivers/hwmon/max6650.c        |  44 ++---
 drivers/hwmon/mc13783-adc.c    |   6 +-
 drivers/hwmon/mcp3021.c        |   6 +-
 drivers/hwmon/nct6683.c        |  17 +-
 drivers/hwmon/nct6775.c        |   4 +-
 drivers/hwmon/nsa320-hwmon.c   |  12 +-
 drivers/hwmon/pc87360.c        |  26 +--
 drivers/hwmon/pc87427.c        |   4 +-
 drivers/hwmon/pcf8591.c        |  24 ++-
 drivers/hwmon/sch5627.c        |   4 +-
 drivers/hwmon/sch56xx-common.c |   1 -
 drivers/hwmon/sht15.c          |   4 +-
 drivers/hwmon/sht21.c          |  92 ++++++++++-
 drivers/hwmon/sis5595.c        |  36 ++--
 drivers/hwmon/smsc47m1.c       |  10 +-
 drivers/hwmon/smsc47m192.c     |  14 +-
 drivers/hwmon/tmp401.c         |  11 +-
 drivers/hwmon/via-cputemp.c    |   6 +-
 drivers/hwmon/via686a.c        |   8 +-
 drivers/hwmon/vt8231.c         |  59 +++----
 drivers/hwmon/w83627ehf.c      |   8 +-
 drivers/hwmon/w83627hf.c       |  53 +++---
 drivers/hwmon/w83781d.c        |  34 ++--
 drivers/hwmon/w83791d.c        |  23 ++-
 drivers/hwmon/w83792d.c        |  15 +-
 drivers/hwmon/w83793.c         |   6 +-
 70 files changed, 1119 insertions(+), 777 deletions(-)
Merging jc_docs/docs-next (df31175bb4d3 kernel-doc: make highlights more homogenous for the various backends)
$ git merge jc_docs/docs-next
Removing Documentation/DocBook/iio.tmpl
Merge made by the 'recursive' strategy.
 Documentation/DocBook/Makefile                     |   2 +-
 Documentation/DocBook/iio.tmpl                     | 697 ---------------------
 Documentation/cpu-freq/user-guide.txt              |   4 +-
 Documentation/driver-api/iio/buffers.rst           | 125 ++++
 Documentation/driver-api/iio/core.rst              | 182 ++++++
 Documentation/driver-api/iio/index.rst             |  17 +
 Documentation/driver-api/iio/intro.rst             |  33 +
 Documentation/driver-api/iio/triggered-buffers.rst |  69 ++
 Documentation/driver-api/iio/triggers.rst          |  80 +++
 Documentation/driver-api/index.rst                 |   1 +
 Documentation/hwmon/ds1621                         |   8 +-
 Documentation/pps/pps.txt                          |  18 +-
 Documentation/thermal/nouveau_thermal              |   2 +-
 scripts/kernel-doc                                 |  99 ++-
 14 files changed, 601 insertions(+), 736 deletions(-)
 delete mode 100644 Documentation/DocBook/iio.tmpl
 create mode 100644 Documentation/driver-api/iio/buffers.rst
 create mode 100644 Documentation/driver-api/iio/core.rst
 create mode 100644 Documentation/driver-api/iio/index.rst
 create mode 100644 Documentation/driver-api/iio/intro.rst
 create mode 100644 Documentation/driver-api/iio/triggered-buffers.rst
 create mode 100644 Documentation/driver-api/iio/triggers.rst
Merging v4l-dvb/master (5dd2470bfddb Merge branch 'v4l_for_linus' into to_next)
$ git merge v4l-dvb/master
Merge made by the 'recursive' strategy.
 drivers/media/cec/cec-adap.c             | 103 ++++++++++++------------
 drivers/media/dvb-core/dvb_net.c         |  15 ++--
 drivers/media/i2c/Kconfig                |   1 +
 drivers/media/i2c/smiapp/smiapp-core.c   |  33 +++-----
 drivers/media/i2c/tvp5150.c              |  56 ++++++++-----
 drivers/media/i2c/tvp5150_reg.h          |   9 +++
 drivers/media/pci/cobalt/cobalt-driver.c |   8 +-
 drivers/media/pci/cobalt/cobalt-driver.h |   2 -
 drivers/media/usb/dvb-usb/pctv452e.c     | 133 +++++++++++++++++--------------
 include/uapi/linux/cec-funcs.h           |  10 ++-
 10 files changed, 195 insertions(+), 175 deletions(-)
Merging pm/linux-next (66c8d3a3b69b Merge branch 'pm-docs' into linux-next)
$ git merge pm/linux-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/admin-guide/kernel-parameters.txt | 10 +++++
 Documentation/driver-api/infrastructure.rst     | 15 -------
 MAINTAINERS                                     |  1 +
 drivers/acpi/acpi_watchdog.c                    |  2 +-
 drivers/acpi/glue.c                             | 11 ++++-
 drivers/acpi/internal.h                         |  1 +
 drivers/acpi/scan.c                             |  1 +
 drivers/acpi/sysfs.c                            | 56 +++++++++++++++++++++++++
 drivers/base/power/domain.c                     |  1 +
 drivers/cpufreq/cpufreq-dt-platdev.c            |  2 +
 drivers/cpufreq/intel_pstate.c                  | 53 +++++++++++++----------
 drivers/devfreq/devfreq.c                       | 15 ++++---
 drivers/devfreq/exynos-bus.c                    |  2 +-
 13 files changed, 124 insertions(+), 46 deletions(-)
Merging idle/next (306899f94804 x86 tsc: Add the Intel Denverton Processor to native_calibrate_tsc())
$ git merge idle/next
Auto-merging arch/x86/kernel/tsc.c
Merge made by the 'recursive' strategy.
 arch/x86/kernel/tsc.c | 1 +
 1 file changed, 1 insertion(+)
Merging thermal/next (7cb1a7ff392d Merge branches 'thermal-core' and 'ida-conversion' into next)
$ git merge thermal/next
Merge made by the 'recursive' strategy.
 drivers/thermal/clock_cooling.c   | 50 ++++-------------------
 drivers/thermal/cpu_cooling.c     | 63 +++++------------------------
 drivers/thermal/devfreq_cooling.c | 53 +++++-------------------
 drivers/thermal/thermal_core.c    | 85 ++++++++++++++-------------------------
 drivers/thermal/thermal_hwmon.c   | 20 ++-------
 include/linux/thermal.h           |  4 +-
 6 files changed, 64 insertions(+), 211 deletions(-)
Merging thermal-soc/next (18591add41ec thermal: rockchip: handle set_trips without the trip points)
$ git merge thermal-soc/next
Merge made by the 'recursive' strategy.
 drivers/thermal/rockchip_thermal.c | 153 ++++++++++++++++++++++++-------------
 1 file changed, 100 insertions(+), 53 deletions(-)
Merging ieee1394/for-next (e9300a4b7bba firewire: net: fix fragmented datagram_size off-by-one)
$ git merge ieee1394/for-next
Already up-to-date.
Merging dlm/next (aa9f1012858b dlm: don't specify WQ_UNBOUND for the ast callback workqueue)
$ git merge dlm/next
Already up-to-date.
Merging swiotlb/linux-next (8ee7e3952663 swiotlb: Fix missing 'static inline' on swiotlb_max_segment)
$ git merge swiotlb/linux-next
Auto-merging drivers/gpu/drm/i915/i915_gem.c
Auto-merging arch/arm64/mm/dma-mapping.c
Auto-merging Documentation/admin-guide/kernel-parameters.txt
Merge made by the 'recursive' strategy.
 Documentation/admin-guide/kernel-parameters.txt |  3 +-
 arch/arm64/mm/dma-mapping.c                     |  3 +-
 arch/arm64/mm/init.c                            |  3 +-
 arch/x86/kernel/pci-swiotlb.c                   |  6 +--
 arch/x86/xen/pci-swiotlb-xen.c                  |  2 +-
 drivers/gpu/drm/i915/i915_gem.c                 | 11 +-----
 drivers/xen/swiotlb-xen.c                       |  8 +++-
 include/linux/swiotlb.h                         | 11 +++++-
 include/trace/events/swiotlb.h                  | 17 ++++----
 lib/swiotlb.c                                   | 52 ++++++++++++++++++++++---
 10 files changed, 82 insertions(+), 34 deletions(-)
Merging net-next/master (5952758101fb dsa: mv88e6xxx: Optimise atu_get)
$ git merge net-next/master
Auto-merging net/socket.c
Auto-merging net/rds/rds.h
Auto-merging net/ipv4/tcp.c
Auto-merging net/ipv4/ip_sockglue.c
Auto-merging include/net/tcp.h
Auto-merging include/linux/mlx5/mlx5_ifc.h
Auto-merging include/linux/mlx5/driver.h
Auto-merging include/linux/mlx5/device.h
Auto-merging drivers/net/wireless/realtek/rtlwifi/usb.c
Auto-merging drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
Auto-merging drivers/net/ethernet/renesas/sh_eth.c
Auto-merging drivers/net/ethernet/mellanox/mlx5/core/main.c
Auto-merging drivers/net/ethernet/mellanox/mlx5/core/en_main.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/net/stmmac.txt   |    1 -
 Documentation/networking/packet_mmap.txt           |    9 +-
 Documentation/sysctl/net.txt                       |   21 +
 MAINTAINERS                                        |    6 +
 drivers/atm/eni.c                                  |    2 +-
 drivers/atm/midway.h                               |    2 +-
 drivers/infiniband/hw/mlx5/main.c                  |   50 +-
 drivers/infiniband/hw/mlx5/mem.c                   |   32 +-
 drivers/infiniband/hw/mlx5/mlx5_ib.h               |   89 +-
 drivers/infiniband/hw/mlx5/mr.c                    |  518 ++--
 drivers/infiniband/hw/mlx5/odp.c                   |  424 ++--
 drivers/infiniband/hw/mlx5/qp.c                    |  154 +-
 drivers/net/dsa/mv88e6xxx/chip.c                   |    9 +-
 drivers/net/ethernet/3com/typhoon.c                |   25 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt.c          |  385 ++-
 drivers/net/ethernet/broadcom/bnxt/bnxt.h          |  108 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c  |   73 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h      |   34 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c    |   15 +-
 drivers/net/ethernet/cavium/liquidio/lio_main.c    |   10 +-
 .../net/ethernet/cavium/liquidio/octeon_config.h   |   10 +-
 .../net/ethernet/cavium/liquidio/octeon_console.c  |   10 +
 .../net/ethernet/cavium/liquidio/octeon_device.h   |    6 +
 .../net/ethernet/cavium/liquidio/octeon_mem_ops.c  |   21 +-
 drivers/net/ethernet/chelsio/cxgb4/cxgb4.h         |    5 +
 drivers/net/ethernet/chelsio/cxgb4/sge.c           |   16 +-
 drivers/net/ethernet/chelsio/cxgb4/t4_hw.c         |    7 +
 drivers/net/ethernet/chelsio/cxgb4/t4_msg.h        |   15 +
 drivers/net/ethernet/chelsio/cxgb4/t4_regs.h       |    4 +
 drivers/net/ethernet/dec/tulip/de2104x.c           |   91 +-
 drivers/net/ethernet/dec/tulip/uli526x.c           |   41 +-
 drivers/net/ethernet/dec/tulip/winbond-840.c       |   14 +-
 drivers/net/ethernet/dlink/dl2k.c                  |   71 +-
 drivers/net/ethernet/dlink/sundance.c              |   14 +-
 drivers/net/ethernet/emulex/benet/be_ethtool.c     |   73 +-
 drivers/net/ethernet/faraday/ftmac100.c            |   14 +-
 drivers/net/ethernet/fealnx.c                      |   14 +-
 drivers/net/ethernet/freescale/dpaa/dpaa_ethtool.c |   18 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe.h           |    5 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c     |    2 -
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c     |    2 -
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c    |  113 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.h    |    6 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c   |  153 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c       |    8 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c      |   92 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h       |    1 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c       |   66 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h       |    4 -
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c       |   12 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c     |   50 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h      |   90 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c      |   10 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c      |  594 ++++-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf.h       |    1 +
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c  |   66 +-
 drivers/net/ethernet/intel/ixgbevf/mbx.h           |    1 +
 drivers/net/ethernet/intel/ixgbevf/vf.c            |   24 +-
 drivers/net/ethernet/mellanox/mlx5/core/dev.c      |   33 +
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |    2 +-
 drivers/net/ethernet/mellanox/mlx5/core/eq.c       |  290 ++-
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |   41 +-
 .../net/ethernet/mellanox/mlx5/core/mlx5_core.h    |    2 +
 drivers/net/ethernet/mellanox/mlx5/core/qp.c       |  114 -
 drivers/net/ethernet/qlogic/qed/qed.h              |   34 +-
 drivers/net/ethernet/qlogic/qed/qed_cxt.c          |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_cxt.h          |   34 +-
 drivers/net/ethernet/qlogic/qed/qed_dcbx.c         |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_dcbx.h         |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_dev.c          |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_dev_api.h      |   34 +-
 drivers/net/ethernet/qlogic/qed/qed_hsi.h          |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_hw.c           |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_hw.h           |   32 +-
 .../net/ethernet/qlogic/qed/qed_init_fw_funcs.c    |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_init_ops.c     |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_init_ops.h     |   34 +-
 drivers/net/ethernet/qlogic/qed/qed_int.c          |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_int.h          |   34 +-
 drivers/net/ethernet/qlogic/qed/qed_iscsi.c        |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_iscsi.h        |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_l2.c           |  303 ++-
 drivers/net/ethernet/qlogic/qed/qed_l2.h           |   60 +-
 drivers/net/ethernet/qlogic/qed/qed_ll2.c          |   31 +-
 drivers/net/ethernet/qlogic/qed/qed_ll2.h          |   31 +-
 drivers/net/ethernet/qlogic/qed/qed_main.c         |   43 +-
 drivers/net/ethernet/qlogic/qed/qed_mcp.c          |   36 +-
 drivers/net/ethernet/qlogic/qed/qed_mcp.h          |   34 +-
 drivers/net/ethernet/qlogic/qed/qed_ooo.c          |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_ooo.h          |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_reg_addr.h     |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_roce.c         |    2 +-
 drivers/net/ethernet/qlogic/qed/qed_roce.h         |    2 +-
 drivers/net/ethernet/qlogic/qed/qed_selftest.c     |   32 +
 drivers/net/ethernet/qlogic/qed/qed_sp.h           |   34 +-
 drivers/net/ethernet/qlogic/qed/qed_sp_commands.c  |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_spq.c          |   32 +-
 drivers/net/ethernet/qlogic/qed/qed_sriov.c        |  242 +-
 drivers/net/ethernet/qlogic/qed/qed_sriov.h        |   41 +-
 drivers/net/ethernet/qlogic/qed/qed_vf.c           |   44 +-
 drivers/net/ethernet/qlogic/qed/qed_vf.h           |   32 +-
 drivers/net/ethernet/qlogic/qede/Makefile          |    2 +-
 drivers/net/ethernet/qlogic/qede/qede.h            |   83 +-
 drivers/net/ethernet/qlogic/qede/qede_ethtool.c    |  114 +-
 drivers/net/ethernet/qlogic/qede/qede_filter.c     |  759 ++++++
 drivers/net/ethernet/qlogic/qede/qede_fp.c         | 1691 +++++++++++++
 drivers/net/ethernet/qlogic/qede/qede_main.c       | 2617 ++------------------
 drivers/net/ethernet/qlogic/qede/qede_roce.c       |    2 +-
 drivers/net/ethernet/renesas/sh_eth.c              |  103 +-
 drivers/net/ethernet/renesas/sh_eth.h              |    2 +-
 drivers/net/ethernet/sfc/efx.c                     |    1 +
 drivers/net/ethernet/sfc/falcon/efx.c              |    3 +-
 drivers/net/ethernet/sfc/falcon/ethtool.c          |   29 +-
 drivers/net/ethernet/sfc/falcon/mdio_10g.c         |   44 +-
 drivers/net/ethernet/sfc/falcon/mdio_10g.h         |    3 +-
 drivers/net/ethernet/sfc/falcon/net_driver.h       |   12 +-
 drivers/net/ethernet/sfc/falcon/qt202x_phy.c       |    9 +-
 drivers/net/ethernet/sfc/falcon/tenxpress.c        |   22 +-
 drivers/net/ethernet/sfc/falcon/txc43128_phy.c     |    9 +-
 drivers/net/ethernet/stmicro/stmmac/common.h       |    5 +
 drivers/net/ethernet/stmicro/stmmac/dwmac4.h       |   20 +
 drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c  |   71 +
 drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c   |    5 +
 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c  |   26 +
 .../net/ethernet/stmicro/stmmac/stmmac_platform.c  |    1 -
 drivers/net/fddi/skfp/cfm.c                        |   22 +-
 drivers/net/fddi/skfp/drvfbi.c                     |    4 +-
 drivers/net/fddi/skfp/ecm.c                        |   34 +-
 drivers/net/fddi/skfp/ess.c                        |   66 +-
 drivers/net/fddi/skfp/fplustm.c                    |   24 +-
 drivers/net/fddi/skfp/h/cmtdef.h                   |   67 +-
 drivers/net/fddi/skfp/h/hwmtm.h                    |   24 +-
 drivers/net/fddi/skfp/hwmtm.c                      |  178 +-
 drivers/net/fddi/skfp/pcmplc.c                     |   83 +-
 drivers/net/fddi/skfp/pmf.c                        |    4 +-
 drivers/net/fddi/skfp/rmt.c                        |   40 +-
 drivers/net/fddi/skfp/smt.c                        |  109 +-
 drivers/net/fddi/skfp/srf.c                        |   14 +-
 drivers/net/ipvlan/ipvlan.h                        |    1 +
 drivers/net/ipvlan/ipvlan_core.c                   |    3 -
 drivers/net/ipvlan/ipvlan_main.c                   |   85 +-
 drivers/net/mdio.c                                 |  178 ++
 drivers/net/virtio_net.c                           |    3 +-
 drivers/net/wireless/admtek/adm8211.c              |   27 +-
 drivers/net/wireless/ath/ath10k/core.c             |   11 +-
 drivers/net/wireless/ath/ath10k/core.h             |    2 +-
 drivers/net/wireless/ath/ath10k/debug.c            |   43 +-
 drivers/net/wireless/ath/ath10k/debug.h            |    8 +
 drivers/net/wireless/ath/ath10k/htt_tx.c           |    2 +
 drivers/net/wireless/ath/ath10k/hw.h               |    2 +-
 drivers/net/wireless/ath/ath10k/mac.c              |   73 +-
 drivers/net/wireless/ath/ath10k/pci.c              |    4 +-
 drivers/net/wireless/ath/ath10k/wmi-tlv.c          |   12 +-
 drivers/net/wireless/ath/ath9k/ar5008_phy.c        |    2 +-
 drivers/net/wireless/ath/ath9k/ar9002_hw.c         |    6 +-
 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c     |   21 +-
 drivers/net/wireless/ath/ath9k/ar9003_eeprom.h     |    4 +-
 drivers/net/wireless/ath/ath9k/ath9k.h             |   36 +-
 drivers/net/wireless/ath/ath9k/channel.c           |   14 +-
 drivers/net/wireless/ath/ath9k/debug.c             |    3 +
 drivers/net/wireless/ath/ath9k/debug.h             |   13 +
 drivers/net/wireless/ath/ath9k/debug_sta.c         |   54 +
 drivers/net/wireless/ath/ath9k/eeprom.c            |   42 +-
 drivers/net/wireless/ath/ath9k/eeprom.h            |   85 +-
 drivers/net/wireless/ath/ath9k/eeprom_4k.c         |  137 +-
 drivers/net/wireless/ath/ath9k/eeprom_9287.c       |  129 +-
 drivers/net/wireless/ath/ath9k/eeprom_def.c        |  163 +-
 drivers/net/wireless/ath/ath9k/init.c              |    2 +
 drivers/net/wireless/ath/ath9k/main.c              |    6 +-
 drivers/net/wireless/ath/ath9k/recv.c              |   65 +
 drivers/net/wireless/ath/ath9k/xmit.c              |  192 +-
 .../broadcom/brcm80211/brcmfmac/cfg80211.c         |    4 +-
 drivers/net/wireless/intel/iwlegacy/3945-mac.c     |   20 +-
 drivers/net/wireless/marvell/libertas/cfg.c        |    2 +-
 drivers/net/wireless/marvell/mwifiex/fw.h          |   19 +-
 drivers/net/wireless/marvell/mwifiex/init.c        |    3 +-
 drivers/net/wireless/marvell/mwifiex/main.h        |    2 +-
 drivers/net/wireless/marvell/mwifiex/sdio.c        |    6 +
 drivers/net/wireless/marvell/mwifiex/sta_cmd.c     |    8 +-
 drivers/net/wireless/ralink/rt2x00/rt2800.h        |    2 +
 drivers/net/wireless/ralink/rt2x00/rt2800lib.c     |   79 +-
 drivers/net/wireless/ralink/rt2x00/rt2800lib.h     |    2 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00.h        |    6 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00dev.c     |    7 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00lib.h     |   31 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00link.c    |  132 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00mac.c     |    8 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00queue.c   |   12 +-
 drivers/net/wireless/realtek/rtlwifi/base.c        |   15 +-
 drivers/net/wireless/realtek/rtlwifi/cam.c         |   14 +-
 drivers/net/wireless/realtek/rtlwifi/core.c        |   31 +-
 drivers/net/wireless/realtek/rtlwifi/debug.h       |   16 +-
 drivers/net/wireless/realtek/rtlwifi/efuse.c       |    3 +-
 drivers/net/wireless/realtek/rtlwifi/pci.c         |   48 +-
 drivers/net/wireless/realtek/rtlwifi/ps.c          |    3 +-
 drivers/net/wireless/realtek/rtlwifi/rc.c          |    3 +-
 drivers/net/wireless/realtek/rtlwifi/regd.c        |    2 +-
 .../net/wireless/realtek/rtlwifi/rtl8188ee/fw.c    |   44 +-
 .../net/wireless/realtek/rtlwifi/rtl8188ee/hw.c    |   33 +-
 .../net/wireless/realtek/rtlwifi/rtl8188ee/phy.c   |   35 +-
 .../net/wireless/realtek/rtlwifi/rtl8188ee/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8188ee/sw.c    |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8188ee/trx.c   |    8 +-
 .../wireless/realtek/rtlwifi/rtl8192c/fw_common.c  |   46 +-
 .../wireless/realtek/rtlwifi/rtl8192c/phy_common.c |   28 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ce/hw.c    |   39 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ce/led.c   |    7 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ce/phy.c   |   15 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ce/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ce/sw.c    |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ce/trx.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192cu/hw.c    |   35 +-
 .../net/wireless/realtek/rtlwifi/rtl8192cu/led.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192cu/mac.c   |   12 +-
 .../net/wireless/realtek/rtlwifi/rtl8192cu/phy.c   |   15 +-
 .../net/wireless/realtek/rtlwifi/rtl8192cu/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8192cu/sw.c    |    5 +-
 .../net/wireless/realtek/rtlwifi/rtl8192cu/trx.c   |    2 +-
 .../net/wireless/realtek/rtlwifi/rtl8192de/fw.c    |   34 +-
 .../net/wireless/realtek/rtlwifi/rtl8192de/hw.c    |   35 +-
 .../net/wireless/realtek/rtlwifi/rtl8192de/led.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192de/phy.c   |   45 +-
 .../net/wireless/realtek/rtlwifi/rtl8192de/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8192de/sw.c    |   10 +-
 .../net/wireless/realtek/rtlwifi/rtl8192de/trx.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ee/fw.c    |   40 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ee/hw.c    |   15 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ee/phy.c   |   39 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ee/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ee/sw.c    |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192ee/trx.c   |   15 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/fw.c    |   46 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/hw.c    |   43 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/led.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/phy.c   |   45 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/sw.c    |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/trx.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8723ae/fw.c    |   15 +-
 .../net/wireless/realtek/rtlwifi/rtl8723ae/hw.c    |   21 +-
 .../net/wireless/realtek/rtlwifi/rtl8723ae/led.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8723ae/phy.c   |   31 +-
 .../net/wireless/realtek/rtlwifi/rtl8723ae/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8723ae/sw.c    |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8723ae/trx.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8723be/fw.c    |   15 +-
 .../net/wireless/realtek/rtlwifi/rtl8723be/hw.c    |   18 +-
 .../net/wireless/realtek/rtlwifi/rtl8723be/led.c   |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8723be/phy.c   |   33 +-
 .../net/wireless/realtek/rtlwifi/rtl8723be/rf.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8723be/sw.c    |    8 +-
 .../net/wireless/realtek/rtlwifi/rtl8723be/trx.c   |   14 +-
 .../realtek/rtlwifi/rtl8723com/fw_common.c         |   26 +-
 .../realtek/rtlwifi/rtl8723com/phy_common.c        |    6 +-
 .../net/wireless/realtek/rtlwifi/rtl8821ae/dm.c    |    3 +-
 .../net/wireless/realtek/rtlwifi/rtl8821ae/fw.c    |   28 +-
 .../net/wireless/realtek/rtlwifi/rtl8821ae/hw.c    |   33 +-
 .../net/wireless/realtek/rtlwifi/rtl8821ae/phy.c   |   54 +-
 .../net/wireless/realtek/rtlwifi/rtl8821ae/rf.c    |    5 +-
 .../net/wireless/realtek/rtlwifi/rtl8821ae/sw.c    |   14 +-
 .../net/wireless/realtek/rtlwifi/rtl8821ae/trx.c   |   20 +-
 drivers/net/wireless/realtek/rtlwifi/usb.c         |   48 +-
 drivers/net/wireless/ti/wlcore/debugfs.c           |    2 +-
 include/linux/etherdevice.h                        |   60 +
 include/linux/mdio.h                               |   21 +
 include/linux/mlx5/device.h                        |    6 +-
 include/linux/mlx5/driver.h                        |  105 +-
 include/linux/mlx5/mlx5_ifc.h                      |   31 +-
 include/linux/mlx5/qp.h                            |   76 +-
 include/linux/netdevice.h                          |    4 +
 include/linux/qed/common_hsi.h                     |   33 +-
 include/linux/qed/eth_common.h                     |   32 +-
 include/linux/qed/iscsi_common.h                   |   32 +-
 include/linux/qed/qed_chain.h                      |   34 +-
 include/linux/qed/qed_eth_if.h                     |   34 +-
 include/linux/qed/qed_if.h                         |   35 +-
 include/linux/qed/qed_iov_if.h                     |   34 +-
 include/linux/qed/qed_iscsi_if.h                   |   32 +-
 include/linux/qed/qed_ll2_if.h                     |   31 +-
 include/linux/qed/qed_roce_if.h                    |    2 +-
 include/linux/qed/qede_roce.h                      |    2 +-
 include/linux/qed/rdma_common.h                    |   32 +-
 include/linux/qed/roce_common.h                    |   32 +-
 include/linux/qed/storage_common.h                 |   32 +-
 include/linux/qed/tcp_common.h                     |   32 +-
 include/linux/socket.h                             |    6 +-
 include/linux/stmmac.h                             |    1 -
 include/net/inet_timewait_sock.h                   |   13 +-
 include/net/netns/ipv4.h                           |   12 +
 include/net/request_sock.h                         |    4 +-
 include/net/sctp/structs.h                         |    7 +-
 include/net/tcp.h                                  |    1 -
 include/uapi/linux/rds.h                           |   33 +
 include/uapi/linux/rtnetlink.h                     |    1 +
 net/compat.c                                       |   17 +-
 net/core/dev.c                                     |    8 +-
 net/core/request_sock.c                            |    2 -
 net/core/scm.c                                     |    2 +-
 net/core/sysctl_net_core.c                         |   31 +-
 net/dsa/dsa.c                                      |   40 +-
 net/dsa/slave.c                                    |   12 +
 net/ipv4/af_inet.c                                 |    2 -
 net/ipv4/inet_timewait_sock.c                      |    3 +-
 net/ipv4/ip_sockglue.c                             |    9 +-
 net/ipv4/ipmr.c                                    |    4 +-
 net/ipv4/proc.c                                    |    2 +-
 net/ipv4/sysctl_net_ipv4.c                         |   42 +-
 net/ipv4/tcp.c                                     |    5 +-
 net/ipv4/tcp_input.c                               |    6 +-
 net/ipv4/tcp_ipv4.c                                |   17 +-
 net/ipv4/tcp_minisocks.c                           |   14 +-
 net/ipv6/ip6mr.c                                   |    4 +-
 net/ipv6/ipv6_sockglue.c                           |   16 +-
 net/ipv6/ping.c                                    |    7 -
 net/ipv6/tcp_ipv6.c                                |    7 +-
 net/packet/af_packet.c                             |   39 +-
 net/rds/af_rds.c                                   |   28 +
 net/rds/bind.c                                     |    4 +-
 net/rds/connection.c                               |   10 +-
 net/rds/ib.c                                       |   11 +
 net/rds/ib.h                                       |   22 +-
 net/rds/ib_cm.c                                    |   89 +-
 net/rds/ib_frmr.c                                  |   16 +-
 net/rds/ib_recv.c                                  |   14 +-
 net/rds/ib_send.c                                  |   29 +-
 net/rds/ib_stats.c                                 |    2 +
 net/rds/rdma.c                                     |   22 +-
 net/rds/rdma_transport.c                           |   11 +-
 net/rds/rds.h                                      |   17 +
 net/rds/recv.c                                     |   36 +-
 net/rds/send.c                                     |   50 +-
 net/rds/tcp_listen.c                               |    1 +
 net/rds/tcp_recv.c                                 |    5 +
 net/rxrpc/sendmsg.c                                |    2 +-
 net/sched/cls_matchall.c                           |   22 +-
 net/sched/sch_generic.c                            |    2 +-
 net/sctp/chunk.c                                   |  107 +-
 net/sctp/input.c                                   |   17 +-
 net/sctp/ipv6.c                                    |   16 +-
 net/sctp/output.c                                  |   14 +-
 net/sctp/protocol.c                                |   18 +-
 net/sctp/sm_statefuns.c                            |  122 +-
 net/socket.c                                       |    2 +
 net/tipc/bcast.c                                   |    6 +-
 net/tipc/link.c                                    |   75 +-
 net/tipc/msg.h                                     |    2 -
 net/tipc/name_table.c                              |  100 +-
 net/tipc/name_table.h                              |   21 +-
 net/tipc/node.c                                    |   15 +-
 net/tipc/socket.c                                  |  449 ++--
 tools/testing/selftests/net/psock_tpacket.c        |   91 +-
 351 files changed, 10771 insertions(+), 7079 deletions(-)
 create mode 100644 drivers/net/ethernet/qlogic/qede/qede_filter.c
 create mode 100644 drivers/net/ethernet/qlogic/qede/qede_fp.c
Merging ipsec-next/master (1365e547c6bb xfrm: trivial typos)
$ git merge ipsec-next/master
Merge made by the 'recursive' strategy.
 net/xfrm/xfrm_policy.c | 2 +-
 net/xfrm/xfrm_state.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Merging netfilter-next/master (949a358418aa netfilter: nft_ct: add average bytes per packet support)
$ git merge netfilter-next/master
Removing net/netfilter/nf_nat_proto_udplite.c
Removing net/netfilter/nf_conntrack_proto_udplite.c
Merge made by the 'recursive' strategy.
 include/net/netfilter/ipv4/nf_conntrack_ipv4.h |   1 +
 include/net/netfilter/ipv6/nf_conntrack_ipv6.h |   1 +
 include/net/netns/conntrack.h                  |  16 --
 include/uapi/linux/netfilter/nf_tables.h       |   5 +
 net/netfilter/Makefile                         |   2 -
 net/netfilter/nf_conntrack_proto_udp.c         | 123 ++++++++++
 net/netfilter/nf_conntrack_proto_udplite.c     | 324 -------------------------
 net/netfilter/nf_nat_proto_udp.c               |  78 +++++-
 net/netfilter/nf_nat_proto_udplite.c           |  73 ------
 net/netfilter/nft_ct.c                         |  22 +-
 10 files changed, 217 insertions(+), 428 deletions(-)
 delete mode 100644 net/netfilter/nf_conntrack_proto_udplite.c
 delete mode 100644 net/netfilter/nf_nat_proto_udplite.c
Merging ipvs-next/master (8d8e20e2d7bb ipvs: Decrement ttl)
$ git merge ipvs-next/master
Already up-to-date.
Merging wireless-drivers-next/master (0a0a8d6b0e88 net: fealnx: use new api ethtool_{get|set}_link_ksettings)
$ git merge wireless-drivers-next/master
Already up-to-date.
Merging bluetooth/master (107bc0aa95ca Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next)
$ git merge bluetooth/master
Already up-to-date.
Merging mac80211-next/master (5ec71dd7f1b6 cfg80211: sysfs: use wiphy_name())
$ git merge mac80211-next/master
Auto-merging net/mac80211/tx.c
Auto-merging net/mac80211/sta_info.c
Auto-merging net/mac80211/rx.c
Auto-merging net/mac80211/ieee80211_i.h
Merge made by the 'recursive' strategy.
 Documentation/networking/regulatory.txt         |   8 +-
 drivers/net/wireless/ath/ath10k/htt_rx.c        |   3 +-
 drivers/net/wireless/marvell/mwifiex/cfg80211.c |   2 +-
 include/net/cfg80211.h                          |  17 +--
 include/uapi/linux/nl80211.h                    |   5 +-
 net/mac80211/cfg.c                              |  12 +++
 net/mac80211/chan.c                             |   4 +-
 net/mac80211/debugfs.c                          |  27 +++++
 net/mac80211/debugfs_netdev.c                   |   3 +
 net/mac80211/ieee80211_i.h                      |   6 +-
 net/mac80211/mesh.c                             |   7 +-
 net/mac80211/mesh.h                             |   2 +-
 net/mac80211/mesh_plink.c                       |  14 +--
 net/mac80211/mesh_sync.c                        |  27 ++---
 net/mac80211/mlme.c                             |   4 -
 net/mac80211/rc80211_minstrel.c                 |  21 ++--
 net/mac80211/rc80211_minstrel.h                 |  33 +++---
 net/mac80211/rc80211_minstrel_debugfs.c         |  24 ++---
 net/mac80211/rc80211_minstrel_ht.c              |  68 ++++--------
 net/mac80211/rc80211_minstrel_ht.h              |   6 +-
 net/mac80211/rc80211_minstrel_ht_debugfs.c      |  32 +++---
 net/mac80211/rx.c                               |   4 -
 net/mac80211/scan.c                             |   8 +-
 net/mac80211/sta_info.c                         |  18 ++--
 net/mac80211/status.c                           |   3 +-
 net/mac80211/tx.c                               | 132 ++++++++++++++++++++++--
 net/mac80211/vht.c                              |   4 -
 net/rfkill/core.c                               |  30 +++---
 net/wireless/nl80211.c                          |  42 ++------
 net/wireless/nl80211.h                          |   6 +-
 net/wireless/scan.c                             |   9 +-
 net/wireless/sysfs.c                            |   6 +-
 net/wireless/util.c                             |   5 +-
 33 files changed, 330 insertions(+), 262 deletions(-)
Merging rdma/for-next (6f94ba20799b Merge branch 'vmw_pvrdma' into merge-test)
$ git merge rdma/for-next
Already up-to-date.
Merging rdma-leon/rdma-next (110a951cdcf4 Merge branch 'topic/cma-misc-for-4.11' into rdma-next)
$ git merge rdma-leon/rdma-next
Auto-merging include/linux/mlx5/mlx5_ifc.h
Auto-merging include/linux/mlx5/driver.h
Auto-merging include/linux/mlx5/device.h
Auto-merging drivers/net/ethernet/mellanox/mlx5/core/main.c
Auto-merging drivers/net/ethernet/mellanox/mlx5/core/fs_core.c
Auto-merging drivers/net/ethernet/mellanox/mlx5/core/en_main.c
Auto-merging drivers/infiniband/hw/mlx4/main.c
Merge made by the 'recursive' strategy.
 drivers/infiniband/core/cm.c                       |   2 +
 drivers/infiniband/core/cma.c                      |  92 +++-
 drivers/infiniband/core/umem.c                     |   3 -
 drivers/infiniband/core/umem_odp.c                 |  92 +++-
 drivers/infiniband/core/umem_rbtree.c              |  21 +-
 drivers/infiniband/core/uverbs.h                   |   1 +
 drivers/infiniband/core/uverbs_cmd.c               |  53 +-
 drivers/infiniband/hw/cxgb3/iwch_provider.c        |   7 +-
 drivers/infiniband/hw/cxgb4/provider.c             |   8 +-
 drivers/infiniband/hw/hfi1/verbs.c                 |   1 +
 drivers/infiniband/hw/hns/hns_roce_main.c          |   7 +-
 drivers/infiniband/hw/i40iw/i40iw_verbs.c          |   8 +-
 drivers/infiniband/hw/mlx4/alias_GUID.c            |   1 +
 drivers/infiniband/hw/mlx4/main.c                  |  23 +-
 drivers/infiniband/hw/mlx4/sysfs.c                 |   1 +
 drivers/infiniband/hw/mlx5/cq.c                    |  10 +-
 drivers/infiniband/hw/mlx5/mad.c                   |  14 +-
 drivers/infiniband/hw/mlx5/main.c                  | 561 +++++++++++++++------
 drivers/infiniband/hw/mlx5/mlx5_ib.h               |  78 ++-
 drivers/infiniband/hw/mlx5/mr.c                    | 128 +++--
 drivers/infiniband/hw/mlx5/odp.c                   | 499 ++++++++++++++++--
 drivers/infiniband/hw/mlx5/qp.c                    | 374 +++++++-------
 drivers/infiniband/hw/mlx5/srq.c                   |  11 +-
 drivers/infiniband/hw/mthca/mthca_provider.c       |   9 +-
 drivers/infiniband/hw/nes/nes_verbs.c              |   5 +-
 drivers/infiniband/hw/ocrdma/ocrdma_main.c         |   9 +-
 drivers/infiniband/hw/ocrdma/ocrdma_verbs.c        |   1 +
 drivers/infiniband/hw/qedr/verbs.c                 |   9 +-
 drivers/infiniband/hw/qib/qib_verbs.c              |   1 +
 drivers/infiniband/hw/usnic/usnic_ib_main.c        |   4 +-
 drivers/infiniband/hw/usnic/usnic_ib_verbs.c       |   2 +-
 drivers/infiniband/sw/rdmavt/vt.c                  |   7 +-
 drivers/infiniband/sw/rxe/rxe_verbs.c              |   6 +-
 drivers/infiniband/ulp/ipoib/ipoib_cm.c            |  30 +-
 drivers/infiniband/ulp/ipoib/ipoib_main.c          |  34 +-
 drivers/infiniband/ulp/ipoib/ipoib_multicast.c     |   6 +-
 drivers/infiniband/ulp/ipoib/ipoib_vlan.c          |  10 +-
 drivers/net/ethernet/mellanox/mlx5/core/Kconfig    |   2 +-
 drivers/net/ethernet/mellanox/mlx5/core/cq.c       |   2 +
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |  11 +-
 .../net/ethernet/mellanox/mlx5/core/en_common.c    |  12 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |  21 +-
 drivers/net/ethernet/mellanox/mlx5/core/eq.c       |  14 +-
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  |  12 +-
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |  26 +-
 drivers/net/ethernet/mellanox/mlx5/core/mr.c       |  16 +
 drivers/net/ethernet/mellanox/mlx5/core/uar.c      | 351 ++++++++-----
 include/linux/mlx5/cq.h                            |   5 +-
 include/linux/mlx5/device.h                        |  23 +-
 include/linux/mlx5/doorbell.h                      |  32 +-
 include/linux/mlx5/driver.h                        |  88 ++--
 include/linux/mlx5/mlx5_ifc.h                      |   9 +-
 include/rdma/ib_umem_odp.h                         |  21 +-
 include/rdma/ib_verbs.h                            |  57 ++-
 include/uapi/rdma/ib_user_verbs.h                  |  19 +-
 include/uapi/rdma/mlx5-abi.h                       |  19 +-
 56 files changed, 2061 insertions(+), 807 deletions(-)
Merging rdma-leon-test/testing/rdma-next (a909d3e63699 Linux 4.9-rc3)
$ git merge rdma-leon-test/testing/rdma-next
Already up-to-date.
Merging mtd/master (445caaa20c4d mtd: Allocate bdi objects dynamically)
$ git merge mtd/master
Already up-to-date.
Merging l2-mtd/master (445caaa20c4d mtd: Allocate bdi objects dynamically)
$ git merge l2-mtd/master
Already up-to-date.
Merging nand/nand/next (2eaa03de5645 mtd: nand: lpc32xx: fix invalid error handling of a requested irq)
$ git merge nand/nand/next
Removing include/linux/mtd/fsmc.h
Merge made by the 'recursive' strategy.
 drivers/mtd/nand/Kconfig       |   1 +
 drivers/mtd/nand/fsmc_nand.c   | 153 ++++++++++++++++++++++++++++++++++------
 drivers/mtd/nand/lpc32xx_mlc.c |   2 +-
 drivers/mtd/nand/lpc32xx_slc.c |   9 +--
 include/linux/mtd/fsmc.h       | 156 -----------------------------------------
 include/linux/mtd/nand.h       |   3 +-
 6 files changed, 138 insertions(+), 186 deletions(-)
 delete mode 100644 include/linux/mtd/fsmc.h
Merging crypto/master (c821f6ab2e47 crypto: skcipher - introduce walksize attribute for SIMD algos)
$ git merge crypto/master
Auto-merging arch/x86/crypto/aesni-intel_glue.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/crypto/mediatek-crypto.txt |   27 +
 arch/x86/crypto/aesni-intel_glue.c                 |   12 +-
 arch/x86/crypto/chacha20_glue.c                    |   69 +-
 crypto/algif_hash.c                                |    2 +-
 crypto/chacha20_generic.c                          |   73 +-
 crypto/skcipher.c                                  |   20 +-
 drivers/char/hw_random/core.c                      |   64 +-
 drivers/crypto/Kconfig                             |   17 +
 drivers/crypto/Makefile                            |   15 +-
 drivers/crypto/bfin_crc.c                          |    6 +-
 drivers/crypto/bfin_crc.h                          |    1 -
 drivers/crypto/mediatek/Makefile                   |    2 +
 drivers/crypto/mediatek/mtk-aes.c                  |  765 +++++++++++
 drivers/crypto/mediatek/mtk-platform.c             |  604 ++++++++
 drivers/crypto/mediatek/mtk-platform.h             |  238 ++++
 drivers/crypto/mediatek/mtk-regs.h                 |  194 +++
 drivers/crypto/mediatek/mtk-sha.c                  | 1437 ++++++++++++++++++++
 drivers/crypto/qat/qat_c3xxx/adf_drv.c             |    2 +-
 drivers/crypto/qat/qat_c3xxxvf/adf_drv.c           |    2 +-
 drivers/crypto/qat/qat_c62x/adf_drv.c              |    4 +-
 drivers/crypto/qat/qat_c62xvf/adf_drv.c            |    2 +-
 drivers/crypto/qat/qat_common/adf_accel_devices.h  |    1 +
 drivers/crypto/qat/qat_common/adf_cfg_common.h     |    1 +
 drivers/crypto/qat/qat_common/adf_common_drv.h     |    4 +-
 drivers/crypto/qat/qat_common/adf_dev_mgr.c        |    2 +-
 drivers/crypto/qat/qat_common/adf_init.c           |   28 +-
 drivers/crypto/qat/qat_common/adf_sriov.c          |    4 +-
 drivers/crypto/qat/qat_common/adf_vf_isr.c         |    4 +-
 drivers/crypto/qat/qat_common/qat_hal.c            |    4 +-
 drivers/crypto/qat/qat_dh895xcc/adf_drv.c          |    2 +-
 drivers/crypto/qat/qat_dh895xccvf/adf_drv.c        |    2 +-
 drivers/crypto/virtio/Kconfig                      |    1 +
 drivers/crypto/virtio/virtio_crypto_algs.c         |   52 +-
 drivers/crypto/virtio/virtio_crypto_common.h       |   16 +
 drivers/crypto/virtio/virtio_crypto_core.c         |   74 +-
 include/crypto/chacha20.h                          |    6 +-
 include/crypto/internal/skcipher.h                 |    2 +-
 include/crypto/skcipher.h                          |   34 +
 include/linux/miscdevice.h                         |    1 +
 39 files changed, 3589 insertions(+), 205 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/crypto/mediatek-crypto.txt
 create mode 100644 drivers/crypto/mediatek/Makefile
 create mode 100644 drivers/crypto/mediatek/mtk-aes.c
 create mode 100644 drivers/crypto/mediatek/mtk-platform.c
 create mode 100644 drivers/crypto/mediatek/mtk-platform.h
 create mode 100644 drivers/crypto/mediatek/mtk-regs.h
 create mode 100644 drivers/crypto/mediatek/mtk-sha.c
Merging drm/drm-next (2cf026ae85c4 Merge branch 'linux-4.10' of git://github.com/skeggsb/linux into drm-next)
$ git merge drm/drm-next
Already up-to-date.
Merging drm-panel/drm/panel/for-next (8c31f6034b24 drm/panel: simple: Add support for AUO G185HAN01)
$ git merge drm-panel/drm/panel/for-next
Already up-to-date.
Merging drm-intel/for-linux-next (b1ed35d9179b drm/i915: Revoke fenced GTT mmapings across GPU reset)
$ git merge drm-intel/for-linux-next
Resolved 'drivers/gpu/drm/i915/intel_overlay.c' using previous resolution.
Auto-merging drivers/gpu/drm/i915/intel_uc.h
Auto-merging drivers/gpu/drm/i915/intel_overlay.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/intel_overlay.c
Auto-merging drivers/gpu/drm/i915/intel_dp.c
Auto-merging drivers/gpu/drm/i915/intel_display.c
Auto-merging drivers/gpu/drm/i915/i915_gem_request.h
Auto-merging drivers/gpu/drm/i915/i915_gem.c
Auto-merging drivers/gpu/drm/drm_atomic_helper.c
Auto-merging MAINTAINERS
Removing Documentation/dma-buf-sharing.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master fc78a7cc9188] Merge remote-tracking branch 'drm-intel/for-linux-next'
$ git diff -M --stat --summary HEAD^..
 .../bindings/display/bridge/ti,ths8135.txt         |   46 +
 .../bindings/display/hisilicon/hisi-ade.txt        |    2 +-
 Documentation/dma-buf-sharing.txt                  |  482 -----
 Documentation/driver-api/dma-buf.rst               |   92 +
 Documentation/gpu/i915.rst                         |  103 +
 MAINTAINERS                                        |    2 +-
 drivers/dma-buf/dma-buf.c                          |  208 +-
 drivers/dma-buf/sync_file.c                        |   15 +-
 drivers/gpu/drm/Kconfig                            |   19 +
 drivers/gpu/drm/Makefile                           |    2 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_display.c        |    2 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_fb.c             |    4 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c            |    6 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_mode.h           |    1 +
 drivers/gpu/drm/amd/amdgpu/dce_v10_0.c             |    6 +-
 drivers/gpu/drm/amd/amdgpu/dce_v11_0.c             |    6 +-
 drivers/gpu/drm/amd/amdgpu/dce_v6_0.c              |    6 +-
 drivers/gpu/drm/amd/amdgpu/dce_v8_0.c              |    6 +-
 drivers/gpu/drm/arc/arcpgu_crtc.c                  |    3 +-
 drivers/gpu/drm/arc/arcpgu_hdmi.c                  |    5 +-
 drivers/gpu/drm/arm/hdlcd_crtc.c                   |   18 +-
 drivers/gpu/drm/arm/malidp_planes.c                |   10 +-
 drivers/gpu/drm/armada/armada_crtc.c               |    9 +-
 drivers/gpu/drm/armada/armada_fb.c                 |    2 +-
 drivers/gpu/drm/armada/armada_fbdev.c              |    5 +-
 drivers/gpu/drm/armada/armada_overlay.c            |    4 +-
 drivers/gpu/drm/ast/ast_drv.h                      |    1 +
 drivers/gpu/drm/ast/ast_fb.c                       |    4 +-
 drivers/gpu/drm/ast/ast_main.c                     |    2 +-
 drivers/gpu/drm/ast/ast_mode.c                     |   16 +-
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.c    |    2 +-
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c   |    4 +-
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c    |   22 +-
 drivers/gpu/drm/bochs/bochs.h                      |    1 +
 drivers/gpu/drm/bochs/bochs_fbdev.c                |    2 +-
 drivers/gpu/drm/bochs/bochs_mm.c                   |    2 +-
 drivers/gpu/drm/bridge/analogix/analogix_dp_core.c |    9 +-
 drivers/gpu/drm/bridge/dumb-vga-dac.c              |    1 +
 drivers/gpu/drm/bridge/dw-hdmi.c                   |    3 +-
 drivers/gpu/drm/cirrus/cirrus_drv.h                |    1 +
 drivers/gpu/drm/cirrus/cirrus_fbdev.c              |    6 +-
 drivers/gpu/drm/cirrus/cirrus_main.c               |    2 +-
 drivers/gpu/drm/cirrus/cirrus_mode.c               |    9 +-
 drivers/gpu/drm/drm_atomic.c                       |   26 +-
 drivers/gpu/drm/drm_atomic_helper.c                |  115 +-
 drivers/gpu/drm/drm_bridge.c                       |   59 +-
 drivers/gpu/drm/drm_connector.c                    |  229 ++-
 drivers/gpu/drm/drm_crtc.c                         |    9 +-
 drivers/gpu/drm/drm_crtc_helper.c                  |   53 +-
 drivers/gpu/drm/drm_crtc_internal.h                |    9 +
 drivers/gpu/drm/drm_debugfs.c                      |    1 +
 drivers/gpu/drm/drm_drv.c                          |   11 +-
 drivers/gpu/drm/drm_edid.c                         |    1 +
 drivers/gpu/drm/drm_encoder.c                      |   17 +-
 drivers/gpu/drm/drm_fb_cma_helper.c                |   11 +-
 drivers/gpu/drm/drm_fb_helper.c                    |   28 +-
 drivers/gpu/drm/drm_fops.c                         |    2 +-
 drivers/gpu/drm/drm_framebuffer.c                  |   53 +-
 drivers/gpu/drm/drm_internal.h                     |    8 +-
 drivers/gpu/drm/drm_ioctl.c                        |   23 +-
 drivers/gpu/drm/drm_irq.c                          |   30 +-
 drivers/gpu/drm/drm_mm.c                           |  571 +++--
 drivers/gpu/drm/drm_mode_config.c                  |  145 +-
 drivers/gpu/drm/drm_mode_object.c                  |    3 +-
 drivers/gpu/drm/drm_modeset_helper.c               |   25 +-
 drivers/gpu/drm/drm_of.c                           |    1 +
 drivers/gpu/drm/drm_plane.c                        |   14 +-
 drivers/gpu/drm/drm_plane_helper.c                 |    6 +-
 drivers/gpu/drm/drm_probe_helper.c                 |   18 +-
 drivers/gpu/drm/drm_simple_kms_helper.c            |   21 +-
 drivers/gpu/drm/etnaviv/etnaviv_drv.c              |    2 +-
 drivers/gpu/drm/etnaviv/etnaviv_mmu.c              |    9 +-
 drivers/gpu/drm/exynos/exynos5433_drm_decon.c      |    6 +-
 drivers/gpu/drm/exynos/exynos7_drm_decon.c         |    8 +-
 drivers/gpu/drm/exynos/exynos_dp.c                 |    5 +-
 drivers/gpu/drm/exynos/exynos_drm_dsi.c            |    6 +-
 drivers/gpu/drm/exynos/exynos_drm_fb.c             |    2 +-
 drivers/gpu/drm/exynos/exynos_drm_fbdev.c          |    6 +-
 drivers/gpu/drm/exynos/exynos_drm_fimd.c           |    4 +-
 drivers/gpu/drm/exynos/exynos_mixer.c              |   12 +-
 drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c          |    3 +-
 drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.h          |    2 +
 drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_plane.c        |    4 +-
 drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_rgb.c          |    5 +-
 drivers/gpu/drm/gma500/accel_2d.c                  |    2 +-
 drivers/gpu/drm/gma500/framebuffer.c               |    6 +-
 drivers/gpu/drm/gma500/gma_display.c               |   13 +-
 drivers/gpu/drm/gma500/mdfld_intel_display.c       |   17 +-
 drivers/gpu/drm/gma500/oaktrail_crtc.c             |   13 +-
 drivers/gpu/drm/gma500/psb_intel_drv.h             |    1 +
 drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_de.c     |    6 +-
 drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_fbdev.c  |    2 +-
 drivers/gpu/drm/hisilicon/hibmc/hibmc_ttm.c        |    2 +-
 drivers/gpu/drm/hisilicon/kirin/dw_drm_dsi.c       |    5 +-
 drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c    |   17 +-
 drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c    |    8 +-
 drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.h    |    4 +-
 drivers/gpu/drm/i915/Kconfig.debug                 |   15 +
 drivers/gpu/drm/i915/Makefile                      |    9 +-
 drivers/gpu/drm/i915/gvt/aperture_gm.c             |    7 +-
 drivers/gpu/drm/i915/gvt/cmd_parser.c              |    5 +-
 drivers/gpu/drm/i915/gvt/handlers.c                |    2 +-
 drivers/gpu/drm/i915/gvt/scheduler.c               |   10 +-
 drivers/gpu/drm/i915/i915_cmd_parser.c             |  172 +-
 drivers/gpu/drm/i915/i915_debugfs.c                | 1047 +---------
 drivers/gpu/drm/i915/i915_drv.c                    |  146 +-
 drivers/gpu/drm/i915/i915_drv.h                    |  853 +++++---
 drivers/gpu/drm/i915/i915_gem.c                    |  189 +-
 drivers/gpu/drm/i915/i915_gem.h                    |    4 +-
 drivers/gpu/drm/i915/i915_gem_context.c            |  233 +--
 drivers/gpu/drm/i915/i915_gem_context.h            |  272 +++
 drivers/gpu/drm/i915/i915_gem_dmabuf.c             |    2 +-
 drivers/gpu/drm/i915/i915_gem_evict.c              |  164 +-
 drivers/gpu/drm/i915/i915_gem_execbuffer.c         |   10 +-
 drivers/gpu/drm/i915/i915_gem_fence_reg.c          |   36 +-
 drivers/gpu/drm/i915/i915_gem_gtt.c                |  153 +-
 drivers/gpu/drm/i915/i915_gem_gtt.h                |   12 +-
 drivers/gpu/drm/i915/i915_gem_internal.c           |    4 +-
 drivers/gpu/drm/i915/i915_gem_request.c            |   75 +-
 drivers/gpu/drm/i915/i915_gem_request.h            |   11 -
 drivers/gpu/drm/i915/i915_gem_stolen.c             |   74 +-
 drivers/gpu/drm/i915/i915_gem_tiling.c             |    2 +-
 drivers/gpu/drm/i915/i915_gem_timeline.h           |    2 +-
 drivers/gpu/drm/i915/i915_gem_userptr.c            |    2 +-
 drivers/gpu/drm/i915/i915_gpu_error.c              |  115 +-
 drivers/gpu/drm/i915/i915_guc_reg.h                |    4 +-
 drivers/gpu/drm/i915/i915_guc_submission.c         |  366 ++--
 drivers/gpu/drm/i915/i915_irq.c                    |   14 +-
 drivers/gpu/drm/i915/i915_oa_hsw.c                 |  752 +++++++
 drivers/gpu/drm/i915/i915_oa_hsw.h                 |   38 +
 drivers/gpu/drm/i915/i915_params.c                 |    6 +-
 drivers/gpu/drm/i915/i915_params.h                 |    2 +-
 drivers/gpu/drm/i915/i915_pci.c                    |  183 +-
 drivers/gpu/drm/i915/i915_perf.c                   | 2096 +++++++++++++++++++
 drivers/gpu/drm/i915/i915_reg.h                    |  462 ++++-
 drivers/gpu/drm/i915/i915_suspend.c                |   16 +-
 drivers/gpu/drm/i915/i915_sw_fence.c               |  140 +-
 drivers/gpu/drm/i915/i915_sw_fence.h               |    6 +
 drivers/gpu/drm/i915/i915_sysfs.c                  |    4 +-
 drivers/gpu/drm/i915/i915_trace.h                  |   34 +-
 drivers/gpu/drm/i915/i915_vma.c                    |   49 +-
 drivers/gpu/drm/i915/i915_vma.h                    |   18 +-
 drivers/gpu/drm/i915/intel_atomic.c                |   31 -
 drivers/gpu/drm/i915/intel_atomic_plane.c          |   51 +-
 drivers/gpu/drm/i915/intel_audio.c                 |   39 +-
 drivers/gpu/drm/i915/intel_bios.c                  |   20 +-
 drivers/gpu/drm/i915/intel_breadcrumbs.c           |   10 +-
 drivers/gpu/drm/i915/intel_crt.c                   |    7 +-
 drivers/gpu/drm/i915/intel_csr.c                   |    4 +-
 drivers/gpu/drm/i915/intel_ddi.c                   |   70 +-
 drivers/gpu/drm/i915/intel_device_info.c           |   53 +-
 drivers/gpu/drm/i915/intel_display.c               |  744 ++++---
 drivers/gpu/drm/i915/intel_dp.c                    |  314 ++-
 drivers/gpu/drm/i915/intel_dp_mst.c                |   28 +-
 drivers/gpu/drm/i915/intel_dpio_phy.c              |  130 +-
 drivers/gpu/drm/i915/intel_dpll_mgr.c              |  351 +++-
 drivers/gpu/drm/i915/intel_dpll_mgr.h              |  178 +-
 drivers/gpu/drm/i915/intel_drv.h                   |  103 +-
 drivers/gpu/drm/i915/intel_dsi.c                   |   46 +-
 drivers/gpu/drm/i915/intel_dsi_panel_vbt.c         |   38 +-
 drivers/gpu/drm/i915/intel_dsi_pll.c               |   18 +-
 drivers/gpu/drm/i915/intel_dvo.c                   |    9 +-
 drivers/gpu/drm/i915/intel_engine_cs.c             |   28 +-
 drivers/gpu/drm/i915/intel_fbc.c                   |   18 +-
 drivers/gpu/drm/i915/intel_fbdev.c                 |   14 +-
 drivers/gpu/drm/i915/intel_guc_fwif.h              |   55 +-
 drivers/gpu/drm/i915/intel_guc_loader.c            |   49 +-
 drivers/gpu/drm/i915/intel_hangcheck.c             |  256 ++-
 drivers/gpu/drm/i915/intel_hdmi.c                  |  184 +-
 drivers/gpu/drm/i915/intel_i2c.c                   |   22 +-
 drivers/gpu/drm/i915/intel_lrc.c                   |  197 +-
 drivers/gpu/drm/i915/intel_lrc.h                   |    9 +-
 drivers/gpu/drm/i915/intel_lspcon.c                |   94 +-
 drivers/gpu/drm/i915/intel_lvds.c                  |    8 +-
 drivers/gpu/drm/i915/intel_mocs.c                  |    7 +-
 drivers/gpu/drm/i915/intel_mocs.h                  |    2 +-
 drivers/gpu/drm/i915/intel_overlay.c               |  286 +--
 drivers/gpu/drm/i915/intel_panel.c                 |   32 +-
 drivers/gpu/drm/i915/intel_pipe_crc.c              |  939 +++++++++
 drivers/gpu/drm/i915/intel_pm.c                    |  843 ++++----
 drivers/gpu/drm/i915/intel_psr.c                   |    6 +-
 drivers/gpu/drm/i915/intel_ringbuffer.c            |   83 +-
 drivers/gpu/drm/i915/intel_ringbuffer.h            |   66 +-
 drivers/gpu/drm/i915/intel_runtime_pm.c            |  163 +-
 drivers/gpu/drm/i915/intel_sdvo.c                  |   21 +-
 drivers/gpu/drm/i915/intel_sprite.c                |  131 +-
 drivers/gpu/drm/i915/intel_tv.c                    |    4 +-
 drivers/gpu/drm/i915/intel_uc.c                    |  142 ++
 drivers/gpu/drm/i915/{intel_guc.h => intel_uc.h}   |   40 +-
 drivers/gpu/drm/i915/intel_uncore.c                |   14 +-
 drivers/gpu/drm/i915/intel_vbt_defs.h              |   12 +-
 drivers/gpu/drm/imx/imx-ldb.c                      |    8 +-
 drivers/gpu/drm/imx/ipuv3-plane.c                  |   40 +-
 drivers/gpu/drm/imx/parallel-display.c             |    6 +-
 drivers/gpu/drm/lib/drm_random.c                   |   41 +
 drivers/gpu/drm/lib/drm_random.h                   |   25 +
 drivers/gpu/drm/mediatek/mtk_dpi.c                 |    8 +-
 drivers/gpu/drm/mediatek/mtk_drm_drv.c             |    3 +-
 drivers/gpu/drm/mediatek/mtk_drm_fb.c              |    2 +-
 drivers/gpu/drm/mediatek/mtk_drm_plane.c           |    4 +-
 drivers/gpu/drm/mediatek/mtk_dsi.c                 |   24 +-
 drivers/gpu/drm/mediatek/mtk_hdmi.c                |   11 +-
 drivers/gpu/drm/meson/meson_plane.c                |    2 +-
 drivers/gpu/drm/mgag200/mgag200_drv.h              |    1 +
 drivers/gpu/drm/mgag200/mgag200_fb.c               |    4 +-
 drivers/gpu/drm/mgag200/mgag200_main.c             |    2 +-
 drivers/gpu/drm/mgag200/mgag200_mode.c             |   23 +-
 drivers/gpu/drm/msm/dsi/dsi_manager.c              |   17 +-
 drivers/gpu/drm/msm/edp/edp_bridge.c               |    2 +-
 drivers/gpu/drm/msm/hdmi/hdmi_bridge.c             |    2 +-
 drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c          |    2 +-
 drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c          |    2 +-
 drivers/gpu/drm/msm/msm_fb.c                       |   12 +-
 drivers/gpu/drm/msm/msm_fbdev.c                    |    2 +-
 drivers/gpu/drm/mxsfb/mxsfb_crtc.c                 |    2 +-
 drivers/gpu/drm/mxsfb/mxsfb_drv.c                  |    4 +-
 drivers/gpu/drm/nouveau/dispnv04/crtc.c            |   17 +-
 drivers/gpu/drm/nouveau/dispnv04/dfp.c             |    3 +-
 drivers/gpu/drm/nouveau/dispnv04/overlay.c         |    8 +-
 drivers/gpu/drm/nouveau/nouveau_connector.c        |    5 +-
 drivers/gpu/drm/nouveau/nouveau_connector.h        |    1 +
 drivers/gpu/drm/nouveau/nouveau_display.c          |   10 +-
 drivers/gpu/drm/nouveau/nouveau_fbcon.c            |    6 +-
 drivers/gpu/drm/nouveau/nouveau_ttm.c              |   28 +-
 drivers/gpu/drm/nouveau/nv50_display.c             |   14 +-
 drivers/gpu/drm/omapdrm/omap_fb.c                  |   12 +-
 drivers/gpu/drm/omapdrm/omap_fbdev.c               |    2 +-
 drivers/gpu/drm/qxl/qxl_display.c                  |    2 +-
 drivers/gpu/drm/qxl/qxl_draw.c                     |    2 +-
 drivers/gpu/drm/qxl/qxl_drv.h                      |    1 +
 drivers/gpu/drm/qxl/qxl_fb.c                       |    5 +-
 drivers/gpu/drm/radeon/atombios_crtc.c             |   19 +-
 drivers/gpu/drm/radeon/r100.c                      |   10 +-
 drivers/gpu/drm/radeon/radeon_display.c            |    8 +-
 drivers/gpu/drm/radeon/radeon_fb.c                 |    4 +-
 drivers/gpu/drm/radeon/radeon_irq_kms.c            |   12 +-
 drivers/gpu/drm/radeon/radeon_legacy_crtc.c        |   16 +-
 drivers/gpu/drm/radeon/radeon_mode.h               |    1 +
 drivers/gpu/drm/rcar-du/rcar_du_encoder.h          |    1 +
 drivers/gpu/drm/rcar-du/rcar_du_hdmienc.c          |    5 +-
 drivers/gpu/drm/rcar-du/rcar_du_plane.c            |    4 +-
 drivers/gpu/drm/rcar-du/rcar_du_vsp.c              |    4 +-
 drivers/gpu/drm/rockchip/rockchip_drm_fb.c         |    2 +-
 drivers/gpu/drm/rockchip/rockchip_drm_fbdev.c      |    5 +-
 drivers/gpu/drm/rockchip/rockchip_drm_vop.c        |   22 +-
 drivers/gpu/drm/selftests/Makefile                 |    1 +
 drivers/gpu/drm/selftests/drm_mm_selftests.h       |   23 +
 drivers/gpu/drm/selftests/drm_selftest.c           |  109 +
 drivers/gpu/drm/selftests/drm_selftest.h           |   41 +
 drivers/gpu/drm/selftests/test-drm_mm.c            | 2172 ++++++++++++++++++++
 drivers/gpu/drm/shmobile/shmob_drm_crtc.c          |    6 +-
 drivers/gpu/drm/shmobile/shmob_drm_crtc.h          |    1 +
 drivers/gpu/drm/shmobile/shmob_drm_plane.c         |    4 +-
 drivers/gpu/drm/sti/sti_dvo.c                      |    3 +-
 drivers/gpu/drm/sti/sti_gdp.c                      |   10 +-
 drivers/gpu/drm/sti/sti_hda.c                      |    3 +-
 drivers/gpu/drm/sti/sti_hdmi.c                     |    3 +-
 drivers/gpu/drm/sti/sti_hqvdp.c                    |    2 +-
 drivers/gpu/drm/sun4i/sun4i_backend.c              |    5 +-
 drivers/gpu/drm/sun4i/sun4i_rgb.c                  |   13 +-
 drivers/gpu/drm/tegra/dc.c                         |    8 +-
 drivers/gpu/drm/tegra/drm.c                        |    5 +-
 drivers/gpu/drm/tegra/drm.h                        |    1 +
 drivers/gpu/drm/tegra/fb.c                         |    6 +-
 drivers/gpu/drm/tilcdc/tilcdc_crtc.c               |    4 +-
 drivers/gpu/drm/tilcdc/tilcdc_external.c           |    4 +-
 drivers/gpu/drm/tilcdc/tilcdc_plane.c              |    4 +-
 drivers/gpu/drm/ttm/ttm_bo_manager.c               |   10 +-
 drivers/gpu/drm/udl/udl_fb.c                       |    6 +-
 drivers/gpu/drm/vc4/vc4_drv.h                      |    2 +
 drivers/gpu/drm/vc4/vc4_plane.c                    |    8 +-
 drivers/gpu/drm/virtio/virtgpu_display.c           |    3 +-
 drivers/gpu/drm/virtio/virtgpu_drv.h               |    1 +
 drivers/gpu/drm/virtio/virtgpu_fb.c                |    4 +-
 drivers/gpu/drm/virtio/virtgpu_ttm.c               |   10 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_fb.c                 |   11 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_gmrid_manager.c      |   10 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_kms.c                |    4 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_kms.h                |    1 +
 drivers/gpu/drm/vmwgfx/vmwgfx_ldu.c                |    5 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_scrn.c               |    4 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_stdu.c               |    2 +-
 drivers/gpu/drm/zte/zx_plane.c                     |    4 +-
 include/drm/drmP.h                                 |   13 +
 include/drm/drm_atomic.h                           |    8 +-
 include/drm/drm_atomic_helper.h                    |    3 -
 include/drm/drm_auth.h                             |   17 +-
 include/drm/drm_bridge.h                           |    4 +-
 include/drm/drm_connector.h                        |   79 +-
 include/drm/drm_crtc.h                             |    8 -
 include/drm/drm_encoder.h                          |    7 +-
 include/drm/drm_encoder_slave.h                    |    1 +
 include/drm/drm_framebuffer.h                      |   27 +-
 include/drm/drm_mm.h                               |  300 ++-
 include/drm/drm_mode_config.h                      |   12 +-
 include/drm/drm_modeset_helper.h                   |    3 +-
 include/drm/drm_modeset_helper_vtables.h           |    1 +
 include/drm/drm_simple_kms_helper.h                |    2 -
 include/drm/i915_pciids.h                          |   21 +-
 include/linux/dma-buf.h                            |  224 +-
 include/linux/kref.h                               |    2 +-
 include/linux/prime_numbers.h                      |   37 +
 include/linux/reservation.h                        |   34 +
 include/uapi/drm/drm_fourcc.h                      |   11 +
 include/uapi/drm/i915_drm.h                        |  135 ++
 lib/Kconfig                                        |    7 +
 lib/Makefile                                       |    2 +
 lib/prime_numbers.c                                |  314 +++
 tools/testing/selftests/drivers/gpu/drm_mm.sh      |   15 +
 tools/testing/selftests/lib/prime_numbers.sh       |   15 +
 310 files changed, 14854 insertions(+), 6034 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/display/bridge/ti,ths8135.txt
 delete mode 100644 Documentation/dma-buf-sharing.txt
 create mode 100644 drivers/gpu/drm/i915/i915_gem_context.h
 create mode 100644 drivers/gpu/drm/i915/i915_oa_hsw.c
 create mode 100644 drivers/gpu/drm/i915/i915_oa_hsw.h
 create mode 100644 drivers/gpu/drm/i915/i915_perf.c
 create mode 100644 drivers/gpu/drm/i915/intel_pipe_crc.c
 create mode 100644 drivers/gpu/drm/i915/intel_uc.c
 rename drivers/gpu/drm/i915/{intel_guc.h => intel_uc.h} (85%)
 create mode 100644 drivers/gpu/drm/lib/drm_random.c
 create mode 100644 drivers/gpu/drm/lib/drm_random.h
 create mode 100644 drivers/gpu/drm/selftests/Makefile
 create mode 100644 drivers/gpu/drm/selftests/drm_mm_selftests.h
 create mode 100644 drivers/gpu/drm/selftests/drm_selftest.c
 create mode 100644 drivers/gpu/drm/selftests/drm_selftest.h
 create mode 100644 drivers/gpu/drm/selftests/test-drm_mm.c
 create mode 100644 include/linux/prime_numbers.h
 create mode 100644 lib/prime_numbers.c
 create mode 100755 tools/testing/selftests/drivers/gpu/drm_mm.sh
 create mode 100755 tools/testing/selftests/lib/prime_numbers.sh
Merging drm-tegra/drm/tegra/for-next (585ee0f27ef7 drm/tegra: Set sgt pointer in BO pin)
$ git merge drm-tegra/drm/tegra/for-next
Already up-to-date.
Merging drm-misc/for-linux-next (76fede2fa79d drm/atomic: Fix outdated comment.)
$ git merge drm-misc/for-linux-next
Auto-merging include/drm/drmP.h
Auto-merging drivers/gpu/drm/drm_atomic_helper.c
Auto-merging drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
Merge made by the 'recursive' strategy.
 Documentation/gpu/drm-mm.rst                    |  29 ++++---
 Documentation/gpu/drm-uapi.rst                  |  25 +++---
 Documentation/gpu/introduction.rst              |  15 ++--
 drivers/dma-buf/dma-buf.c                       |   9 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c     |   3 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c         |   6 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c    |   3 +-
 drivers/gpu/drm/armada/Makefile                 |   2 +
 drivers/gpu/drm/armada/armada_debugfs.c         |   6 +-
 drivers/gpu/drm/armada/armada_drv.c             |   6 --
 drivers/gpu/drm/drm_atomic.c                    |  18 ++--
 drivers/gpu/drm/drm_atomic_helper.c             |  24 ++++--
 drivers/gpu/drm/drm_auth.c                      |   8 +-
 drivers/gpu/drm/drm_bridge.c                    |  29 +++----
 drivers/gpu/drm/drm_color_mgmt.c                |   4 +-
 drivers/gpu/drm/drm_connector.c                 |   2 +-
 drivers/gpu/drm/drm_crtc.c                      |  20 +++++
 drivers/gpu/drm/drm_crtc_helper.c               |  14 +--
 drivers/gpu/drm/drm_drv.c                       |  20 +++--
 drivers/gpu/drm/drm_dumb_buffers.c              |   2 +-
 drivers/gpu/drm/drm_edid.c                      |   6 +-
 drivers/gpu/drm/drm_encoder.c                   |   4 +-
 drivers/gpu/drm/drm_fb_cma_helper.c             |  86 ++++++++-----------
 drivers/gpu/drm/drm_fops.c                      |   2 +-
 drivers/gpu/drm/drm_framebuffer.c               |   6 +-
 drivers/gpu/drm/drm_gem_cma_helper.c            |  22 ++---
 drivers/gpu/drm/drm_global.c                    |  23 +++++
 drivers/gpu/drm/drm_ioctl.c                     |  11 ++-
 drivers/gpu/drm/drm_irq.c                       |   2 +-
 drivers/gpu/drm/drm_mm.c                        | 108 ++++++++----------------
 drivers/gpu/drm/drm_pci.c                       |   4 -
 drivers/gpu/drm/drm_plane.c                     |   2 +-
 drivers/gpu/drm/drm_plane_helper.c              |   2 +-
 drivers/gpu/drm/drm_platform.c                  |   4 -
 drivers/gpu/drm/drm_print.c                     |   6 ++
 drivers/gpu/drm/drm_probe_helper.c              |   2 +-
 drivers/gpu/drm/drm_property.c                  |   2 +-
 drivers/gpu/drm/drm_rect.c                      |   6 +-
 drivers/gpu/drm/drm_simple_kms_helper.c         |   2 +-
 drivers/gpu/drm/etnaviv/etnaviv_drv.c           |  10 ++-
 drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c       |   4 -
 drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c |   4 -
 drivers/gpu/drm/mgag200/mgag200_main.c          |   2 +
 drivers/gpu/drm/msm/msm_debugfs.c               |   6 +-
 drivers/gpu/drm/nouveau/Kconfig                 |   1 +
 drivers/gpu/drm/omapdrm/omap_debugfs.c          |   6 +-
 drivers/gpu/drm/qxl/qxl_ttm.c                   |   6 +-
 drivers/gpu/drm/radeon/radeon_ttm.c             |   6 +-
 drivers/gpu/drm/rockchip/rockchip_drm_drv.c     |  17 +---
 drivers/gpu/drm/selftests/test-drm_mm.c         |  12 ++-
 drivers/gpu/drm/tegra/drm.c                     |   9 +-
 drivers/gpu/drm/tilcdc/tilcdc_drv.c             |   4 +-
 drivers/gpu/drm/ttm/ttm_bo_manager.c            |   3 +-
 drivers/gpu/drm/virtio/virtgpu_drm_bus.c        |   4 -
 drivers/gpu/drm/zte/zx_vou.c                    |  15 +---
 include/drm/drmP.h                              |   1 +
 include/drm/drm_atomic.h                        |   2 +-
 include/drm/drm_auth.h                          |   2 +-
 include/drm/drm_bridge.h                        |  42 +++++----
 include/drm/drm_connector.h                     |  16 ++--
 include/drm/drm_crtc.h                          |  23 ++---
 include/drm/drm_drv.h                           |  35 ++++++++
 include/drm/drm_fb_cma_helper.h                 |   5 +-
 include/drm/drm_fb_helper.h                     |   2 +-
 include/drm/drm_framebuffer.h                   |   6 +-
 include/drm/drm_irq.h                           |   4 +-
 include/drm/drm_mm.h                            |  93 ++++++++++++++------
 include/drm/drm_mode_config.h                   |  10 +--
 include/drm/drm_modeset_helper_vtables.h        |   2 +-
 include/drm/drm_plane.h                         |   4 +-
 include/drm/drm_print.h                         |  24 +++++-
 include/drm/drm_simple_kms_helper.h             |   8 +-
 include/linux/dma-buf.h                         |  10 +--
 73 files changed, 498 insertions(+), 445 deletions(-)
$ git am -3 ../patches/0001-Revert-drm-nouveau-fix-build-when-LEDS_CLASS-m.patch
Applying: Revert "drm: nouveau: fix build when LEDS_CLASS=m"
$ git reset HEAD^
Unstaged changes after reset:
M	drivers/gpu/drm/nouveau/Kconfig
$ git add -A .
$ git commit -v -a --amend
[master a026e9180b57] Merge remote-tracking branch 'drm-misc/for-linux-next'
 Date: Thu Jan 5 11:32:37 2017 +1100
Merging drm-exynos/exynos-drm/for-next (7d1e04231461 Merge tag 'usercopy-v4.8-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux)
$ git merge drm-exynos/exynos-drm/for-next
Already up-to-date.
Merging drm-msm/msm-next (2401a0084614 drm/msm: gpu: Add support for the GPMU)
$ git merge drm-msm/msm-next
Already up-to-date.
Merging hdlcd/for-upstream/hdlcd (747e5a5ff2a2 drm: hdlcd: Fix cleanup order)
$ git merge hdlcd/for-upstream/hdlcd
Already up-to-date.
Merging mali-dp/for-upstream/mali-dp (8e3eb71c80ad drm/arm/malidp: Fix possible dereference of NULL)
$ git merge mali-dp/for-upstream/mali-dp
Auto-merging drivers/gpu/drm/arm/malidp_planes.c
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/arm/malidp_planes.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)
Merging sunxi/sunxi/for-next (63e8e44adfdc Merge branch 'sunxi/dt-late-for-4.10' into sunxi/for-next)
$ git merge sunxi/sunxi/for-next
Resolved 'arch/arm/boot/dts/sun8i-h3.dtsi' using previous resolution.
Auto-merging arch/arm/boot/dts/sun8i-h3.dtsi
CONFLICT (content): Merge conflict in arch/arm/boot/dts/sun8i-h3.dtsi
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 9888fbedc1c0] Merge remote-tracking branch 'sunxi/sunxi/for-next'
$ git diff -M --stat --summary HEAD^..
 arch/arm/boot/dts/sun4i-a10-a1000.dts              |  12 +-
 arch/arm/boot/dts/sun4i-a10-ba10-tvbox.dts         |   2 +-
 arch/arm/boot/dts/sun4i-a10-chuwi-v7-cw0825.dts    |  14 +-
 arch/arm/boot/dts/sun4i-a10-cubieboard.dts         |  14 +-
 arch/arm/boot/dts/sun4i-a10-dserve-dsrv9703c.dts   |  38 ++-
 arch/arm/boot/dts/sun4i-a10-gemei-g9.dts           |   6 +-
 arch/arm/boot/dts/sun4i-a10-hackberry.dts          |  12 +-
 arch/arm/boot/dts/sun4i-a10-hyundai-a7hd.dts       |  16 +-
 arch/arm/boot/dts/sun4i-a10-inet1.dts              |  26 +-
 arch/arm/boot/dts/sun4i-a10-inet97fv2.dts          |  14 +-
 arch/arm/boot/dts/sun4i-a10-inet9f-rev03.dts       |  29 +--
 arch/arm/boot/dts/sun4i-a10-jesurun-q5.dts         |  12 +-
 arch/arm/boot/dts/sun4i-a10-marsboard.dts          |  13 +-
 arch/arm/boot/dts/sun4i-a10-mini-xplus.dts         |   2 +-
 arch/arm/boot/dts/sun4i-a10-mk802.dts              |  18 +-
 arch/arm/boot/dts/sun4i-a10-olinuxino-lime.dts     |  27 +-
 arch/arm/boot/dts/sun4i-a10-pcduino.dts            |  19 +-
 arch/arm/boot/dts/sun4i-a10-pcduino2.dts           |   6 +-
 arch/arm/boot/dts/sun4i-a10-pov-protab2-ips9.dts   |  32 +--
 arch/arm/boot/dts/sun4i-a10.dtsi                   | 170 +++++--------
 arch/arm/boot/dts/sun5i-a10s-auxtek-t003.dts       |  18 +-
 arch/arm/boot/dts/sun5i-a10s-auxtek-t004.dts       |  29 +--
 arch/arm/boot/dts/sun5i-a10s-mk802.dts             |  19 +-
 arch/arm/boot/dts/sun5i-a10s-olinuxino-micro.dts   |  36 ++-
 arch/arm/boot/dts/sun5i-a10s-r7-tv-dongle.dts      |  20 +-
 arch/arm/boot/dts/sun5i-a10s-wobo-i5.dts           |  21 +-
 arch/arm/boot/dts/sun5i-a10s.dtsi                  |  43 ++--
 .../boot/dts/sun5i-a13-empire-electronix-d709.dts  |  23 +-
 arch/arm/boot/dts/sun5i-a13-hsg-h702.dts           |  22 +-
 arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dts    |  40 ++-
 arch/arm/boot/dts/sun5i-a13-olinuxino.dts          |  36 ++-
 arch/arm/boot/dts/sun5i-a13-utoo-p66.dts           |  11 +-
 arch/arm/boot/dts/sun5i-a13.dtsi                   |  24 +-
 arch/arm/boot/dts/sun5i-gr8-chip-pro.dts           |  12 +-
 arch/arm/boot/dts/sun5i-gr8-evb.dts                |  24 +-
 arch/arm/boot/dts/sun5i-gr8.dtsi                   | 122 ++++-----
 arch/arm/boot/dts/sun5i-r8-chip.dts                |  27 +-
 .../boot/dts/sun5i-reference-design-tablet.dtsi    |  33 +--
 arch/arm/boot/dts/sun5i.dtsi                       |  76 +++---
 arch/arm/boot/dts/sun6i-a31-app4-evb1.dts          |   6 +-
 arch/arm/boot/dts/sun6i-a31-colombus.dts           |  22 +-
 arch/arm/boot/dts/sun6i-a31-hummingbird.dts        |  23 +-
 arch/arm/boot/dts/sun6i-a31-i7.dts                 |  19 +-
 arch/arm/boot/dts/sun6i-a31-m9.dts                 |  19 +-
 arch/arm/boot/dts/sun6i-a31-mele-a1000g-quad.dts   |  19 +-
 arch/arm/boot/dts/sun6i-a31.dtsi                   | 102 ++++----
 arch/arm/boot/dts/sun6i-a31s-primo81.dts           |  20 +-
 arch/arm/boot/dts/sun6i-a31s-sina31s.dts           |  13 +-
 arch/arm/boot/dts/sun6i-a31s-sinovoip-bpi-m2.dts   |  29 +--
 .../dts/sun6i-a31s-yones-toptech-bs1078-v2.dts     |   9 +-
 .../boot/dts/sun6i-reference-design-tablet.dtsi    |  14 +-
 arch/arm/boot/dts/sun7i-a20-bananapi-m1-plus.dts   |  27 +-
 arch/arm/boot/dts/sun7i-a20-bananapi.dts           |  26 +-
 arch/arm/boot/dts/sun7i-a20-bananapro.dts          |  37 +--
 arch/arm/boot/dts/sun7i-a20-cubieboard2.dts        |  13 +-
 arch/arm/boot/dts/sun7i-a20-cubietruck.dts         |  38 +--
 arch/arm/boot/dts/sun7i-a20-hummingbird.dts        |  24 +-
 arch/arm/boot/dts/sun7i-a20-i12-tvbox.dts          |  26 +-
 arch/arm/boot/dts/sun7i-a20-itead-ibox.dts         |   7 +-
 arch/arm/boot/dts/sun7i-a20-lamobo-r1.dts          |  30 +--
 arch/arm/boot/dts/sun7i-a20-m3.dts                 |   6 +-
 arch/arm/boot/dts/sun7i-a20-mk808c.dts             |  12 +-
 arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts     |  32 +--
 arch/arm/boot/dts/sun7i-a20-olinuxino-lime.dts     |  27 +-
 .../boot/dts/sun7i-a20-olinuxino-lime2-emmc.dts    |   6 +-
 arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts    |  33 +--
 arch/arm/boot/dts/sun7i-a20-olinuxino-micro.dts    |  28 +--
 arch/arm/boot/dts/sun7i-a20-orangepi-mini.dts      |  45 ++--
 arch/arm/boot/dts/sun7i-a20-orangepi.dts           |  38 ++-
 arch/arm/boot/dts/sun7i-a20-pcduino3-nano.dts      |  25 +-
 arch/arm/boot/dts/sun7i-a20-pcduino3.dts           |  21 +-
 arch/arm/boot/dts/sun7i-a20-wexler-tab7200.dts     |  25 +-
 arch/arm/boot/dts/sun7i-a20-wits-pro-a20-dkt.dts   |  13 +-
 arch/arm/boot/dts/sun7i-a20.dtsi                   | 279 ++++++++-------------
 arch/arm/boot/dts/sun8i-a23-a33.dtsi               | 102 ++++----
 arch/arm/boot/dts/sun8i-a23-evb.dts                |   7 +-
 .../boot/dts/sun8i-a23-polaroid-mid2407pxe03.dts   |   8 +-
 .../boot/dts/sun8i-a23-polaroid-mid2809pxe04.dts   |   8 +-
 arch/arm/boot/dts/sun8i-a33-inet-d978-rev2.dts     |   9 +-
 arch/arm/boot/dts/sun8i-a33-olinuxino.dts          |  18 +-
 arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts     |  11 +-
 arch/arm/boot/dts/sun8i-a33.dtsi                   |   6 +-
 arch/arm/boot/dts/sun8i-a83t.dtsi                  |  22 +-
 arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts    |  18 +-
 arch/arm/boot/dts/sun8i-h3-nanopi.dtsi             |  18 +-
 arch/arm/boot/dts/sun8i-h3-orangepi-2.dts          |  26 +-
 arch/arm/boot/dts/sun8i-h3-orangepi-lite.dts       |  18 +-
 arch/arm/boot/dts/sun8i-h3-orangepi-one.dts        |  18 +-
 arch/arm/boot/dts/sun8i-h3-orangepi-pc-plus.dts    |   4 +-
 arch/arm/boot/dts/sun8i-h3-orangepi-pc.dts         |  18 +-
 arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts       |  10 +-
 arch/arm/boot/dts/sun8i-h3.dtsi                    | 107 ++++----
 arch/arm/boot/dts/sun8i-q8-common.dtsi             |   9 +-
 arch/arm/boot/dts/sun8i-r16-parrot.dts             |  36 ++-
 .../boot/dts/sun8i-reference-design-tablet.dtsi    |  26 +-
 arch/arm/boot/dts/sun9i-a80-cubieboard4.dts        |  23 +-
 arch/arm/boot/dts/sun9i-a80-optimus.dts            |  41 ++-
 arch/arm/boot/dts/sun9i-a80.dtsi                   |  64 +++--
 arch/arm/boot/dts/sunxi-common-regulators.dtsi     |  24 +-
 99 files changed, 1099 insertions(+), 1783 deletions(-)
Merging kspp/for-next/kspp (3545d3c27c43 gcc-plugins: update gcc-common.h for gcc-7)
$ git merge kspp/for-next/kspp
Merge made by the 'recursive' strategy.
Merging kconfig/for-next (5bcba792bb30 localmodconfig: Fix whitespace repeat count after "tristate")
$ git merge kconfig/for-next
Already up-to-date.
Merging regmap/for-next (a5cb009162e6 Merge tag 'regmap-v4.10' into regmap-linus)
$ git merge regmap/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging sound/for-next (ed3c177d960b ALSA: vx: Don't try to update capture stream before running)
$ git merge sound/for-next
Auto-merging sound/pci/hda/patch_realtek.c
Merge made by the 'recursive' strategy.
 sound/drivers/vx/vx_pcm.c              |  8 +++++---
 sound/firewire/Kconfig                 |  1 +
 sound/firewire/dice/dice-interface.h   |  1 +
 sound/firewire/dice/dice-stream.c      | 12 +++++++++++-
 sound/firewire/oxfw/oxfw.c             |  1 +
 sound/pci/cs5535audio/cs5535audio_pm.c |  4 ++--
 sound/pci/hda/hda_intel.c              | 13 +++++++++++++
 sound/pci/hda/patch_realtek.c          | 20 +++++++++++++++++++-
 sound/pci/mixart/mixart.h              |  2 +-
 sound/pci/vx222/vx222_ops.c            | 12 ++++++------
 sound/pcmcia/vx/vxp_ops.c              | 12 ++++++------
 sound/synth/emux/emux_seq.c            | 14 +++++++-------
 sound/usb/quirks.c                     | 15 +++++++++++++++
 13 files changed, 88 insertions(+), 27 deletions(-)
Merging sound-asoc/for-next (e1c203b78560 Merge remote-tracking branches 'asoc/fix/tlv320aic3x' and 'asoc/fix/topology' into asoc-linus)
$ git merge sound-asoc/for-next
Merge made by the 'recursive' strategy.
 include/sound/hdmi-codec.h            |  8 ++--
 include/sound/soc.h                   |  3 ++
 sound/soc/codecs/nau8825.c            |  9 +++--
 sound/soc/codecs/nau8825.h            |  7 ++--
 sound/soc/codecs/tlv320aic3x.c        | 13 ++++++
 sound/soc/codecs/wm_adsp.c            | 25 +++++++++++-
 sound/soc/dwc/designware_i2s.c        | 25 ++++++------
 sound/soc/fsl/fsl_ssi.c               | 74 +++++++++++++++++++++++++----------
 sound/soc/intel/boards/bytcr_rt5640.c | 16 ++++++--
 sound/soc/intel/skylake/skl-pcm.c     |  3 ++
 sound/soc/sh/rcar/core.c              |  4 +-
 sound/soc/soc-core.c                  | 10 ++---
 sound/soc/soc-topology.c              |  3 +-
 13 files changed, 140 insertions(+), 60 deletions(-)
Merging modules/modules-next (ea6351698b6c taint/module: Fix problems when out-of-kernel driver defines true or false)
$ git merge modules/modules-next
Merge made by the 'recursive' strategy.
 include/linux/kernel.h | 4 ++--
 include/linux/module.h | 2 --
 kernel/module.c        | 2 +-
 kernel/panic.c         | 2 +-
 4 files changed, 4 insertions(+), 6 deletions(-)
Merging input/next (39acdeca63a5 Input: xpad - don't depend on endpoint order)
$ git merge input/next
Auto-merging drivers/input/serio/i8042-x86ia64io.h
Auto-merging drivers/input/joystick/xpad.c
Merge made by the 'recursive' strategy.
 drivers/input/joystick/xpad.c         | 111 ++++++++++++++++------------------
 drivers/input/misc/bma150.c           |   4 +-
 drivers/input/serio/i8042-x86ia64io.h |   8 +++
 3 files changed, 62 insertions(+), 61 deletions(-)
Merging block/for-next (cdb98c2698b4 Revert "nvme: add support for the Write Zeroes command")
$ git merge block/for-next
Already up-to-date.
Merging lightnvm/for-next (a5f78b7f7dd1 Merge branch 'for-4.10/block' into for-next)
$ git merge lightnvm/for-next
Merge made by the 'recursive' strategy.
Merging device-mapper/for-next (ef548c551e72 dm flakey: introduce "error_writes" feature)
$ git merge device-mapper/for-next
Already up-to-date.
Merging pcmcia/master (e8e68fd86d22 pcmcia: do not break rsrc_nonstatic when handling anonymous cards)
$ git merge pcmcia/master
Already up-to-date.
Merging mmc/next (9bd22fc27d92 mmc: block: Replace "goto retry" by a proper do / while loop)
$ git merge mmc/next
Merge made by the 'recursive' strategy.
 drivers/mmc/core/block.c          | 31 +++++++++---------
 drivers/mmc/core/mmc.c            | 12 +++++++
 drivers/mmc/host/sh_mobile_sdhi.c | 66 +++++++++++++++------------------------
 drivers/mmc/host/tmio_mmc_pio.c   |  7 +++--
 include/linux/mmc/card.h          |  3 ++
 include/linux/mmc/mmc.h           |  3 ++
 6 files changed, 62 insertions(+), 60 deletions(-)
Merging kgdb/kgdb-next (7a6653fca500 kdb: Fix handling of kallsyms_symbol_next() return value)
$ git merge kgdb/kgdb-next
Auto-merging kernel/debug/kdb/kdb_io.c
Merge made by the 'recursive' strategy.
 kernel/debug/kdb/kdb_io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging md/for-next (e68e0bb82beb md/r5cache: assign conf->log before r5l_load_log())
$ git merge md/for-next
Merge made by the 'recursive' strategy.
 drivers/md/linear.c      |   2 +
 drivers/md/md.c          |  42 ++++++++
 drivers/md/md.h          |   2 +
 drivers/md/multipath.c   |   4 +
 drivers/md/raid0.c       |   2 +
 drivers/md/raid1.c       | 267 ++++++++++++++++++++++++-----------------------
 drivers/md/raid10.c      | 245 ++++++++++++++++++++++++-------------------
 drivers/md/raid5-cache.c |  34 +++---
 8 files changed, 346 insertions(+), 252 deletions(-)
Merging mfd/for-mfd-next (5d8c57f42e2e mfd: axp20x: Drop wrong AXP288_PMIC_ADC_EN define)
$ git merge mfd/for-mfd-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/mfd/aspeed-lpc.txt         | 133 ++++
 Documentation/devicetree/bindings/mfd/mfd.txt      |  12 +-
 .../devicetree/bindings/mfd/syscon/aspeed-gfx.txt  |  17 +
 Documentation/mtd/intel-spi.txt                    |  88 +++
 drivers/mfd/arizona-irq.c                          |  86 ++-
 drivers/mfd/arizona.h                              |   2 -
 drivers/mfd/axp20x.c                               |  17 +-
 drivers/mfd/lpc_ich.c                              | 131 ++++
 drivers/mfd/sun6i-prcm.c                           |  13 +
 drivers/mtd/spi-nor/Kconfig                        |  20 +
 drivers/mtd/spi-nor/Makefile                       |   2 +
 drivers/mtd/spi-nor/intel-spi-platform.c           |  57 ++
 drivers/mtd/spi-nor/intel-spi.c                    | 777 +++++++++++++++++++++
 drivers/mtd/spi-nor/intel-spi.h                    |  24 +
 include/linux/mfd/axp20x.h                         |   4 +-
 include/linux/mfd/lpc_ich.h                        |   3 +
 include/linux/platform_data/intel-spi.h            |  31 +
 17 files changed, 1377 insertions(+), 40 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/aspeed-lpc.txt
 create mode 100644 Documentation/devicetree/bindings/mfd/syscon/aspeed-gfx.txt
 create mode 100644 Documentation/mtd/intel-spi.txt
 create mode 100644 drivers/mtd/spi-nor/intel-spi-platform.c
 create mode 100644 drivers/mtd/spi-nor/intel-spi.c
 create mode 100644 drivers/mtd/spi-nor/intel-spi.h
 create mode 100644 include/linux/platform_data/intel-spi.h
Merging backlight/for-backlight-next (0c9501f823a4 backlight: pwm_bl: Handle gpio that can sleep)
$ git merge backlight/for-backlight-next
Already up-to-date.
Merging battery/for-next (fb9a33ae6ba7 power: supply: gpio_charger: switch to using GPIO descriptors)
$ git merge battery/for-next
Auto-merging include/linux/mfd/axp20x.h
Merge made by the 'recursive' strategy.
 .../bindings/power/supply/axp20x_usb_power.txt     |   5 +
 .../bindings/power/supply/sbs_sbs-charger.txt      |  23 +
 .../bindings/power/supply/ti,bq24735.txt           |   8 +-
 drivers/power/supply/Kconfig                       |   6 +
 drivers/power/supply/Makefile                      |   1 +
 drivers/power/supply/ab8500_btemp.c                |   6 +-
 drivers/power/supply/axp20x_usb_power.c            | 116 ++++-
 drivers/power/supply/axp288_charger.c              | 387 ++++++---------
 drivers/power/supply/axp288_fuel_gauge.c           | 539 ++++-----------------
 drivers/power/supply/bq24190_charger.c             |   2 +-
 drivers/power/supply/bq24735-charger.c             | 108 +++--
 drivers/power/supply/gpio-charger.c                |  84 ++--
 drivers/power/supply/max8997_charger.c             |  15 +-
 drivers/power/supply/qcom_smbb.c                   |   2 +-
 drivers/power/supply/sbs-charger.c                 | 274 +++++++++++
 drivers/power/supply/tps65217_charger.c            |  99 ++--
 drivers/power/supply/wm97xx_battery.c              |   5 -
 include/linux/mfd/axp20x.h                         |  29 --
 18 files changed, 849 insertions(+), 860 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/power/supply/sbs_sbs-charger.txt
 create mode 100644 drivers/power/supply/sbs-charger.c
Merging omap_dss2/for-next (c456a2f30de5 video: smscufx: remove unused variable)
$ git merge omap_dss2/for-next
Already up-to-date.
Merging regulator/for-next (d00b74613fb1 Merge remote-tracking branches 'regulator/topic/tps65086' and 'regulator/topic/twl' into regulator-next)
$ git merge regulator/for-next
Already up-to-date.
Merging security/next (50523a29d900 Yama: allow access for the current ptrace parent)
$ git merge security/next
Already up-to-date.
Merging integrity/next (b4bfec7f4a86 security/integrity: Harden against malformed xattrs)
$ git merge integrity/next
Already up-to-date.
Merging keys/keys-next (ed51e44e914c Merge branch 'keys-asym-keyctl' into keys-next)
$ git merge keys/keys-next
Auto-merging security/keys/keyctl.c
Auto-merging crypto/asymmetric_keys/x509_cert_parser.c
Auto-merging crypto/asymmetric_keys/public_key.c
Merge made by the 'recursive' strategy.
 Documentation/crypto/asymmetric-keys.txt  |  26 ++-
 Documentation/security/keys.txt           | 217 ++++++++++++++++++++
 certs/Kconfig                             |  18 ++
 certs/Makefile                            |   6 +
 certs/blacklist.c                         | 174 ++++++++++++++++
 certs/blacklist.h                         |   3 +
 certs/blacklist_hashes.c                  |   6 +
 certs/blacklist_nohashes.c                |   5 +
 crypto/asymmetric_keys/Kconfig            |  10 +
 crypto/asymmetric_keys/Makefile           |  13 ++
 crypto/asymmetric_keys/asymmetric_keys.h  |   3 +
 crypto/asymmetric_keys/asymmetric_type.c  |  59 +++++-
 crypto/asymmetric_keys/pkcs7_parser.c     |   1 +
 crypto/asymmetric_keys/pkcs7_parser.h     |   1 +
 crypto/asymmetric_keys/pkcs7_verify.c     |  32 ++-
 crypto/asymmetric_keys/pkcs8.asn1         |  24 +++
 crypto/asymmetric_keys/pkcs8_parser.c     | 184 +++++++++++++++++
 crypto/asymmetric_keys/public_key.c       | 195 ++++++++++++++++--
 crypto/asymmetric_keys/signature.c        |  95 +++++++++
 crypto/asymmetric_keys/x509_cert_parser.c |  21 +-
 crypto/asymmetric_keys/x509_parser.h      |   1 +
 crypto/asymmetric_keys/x509_public_key.c  |  15 ++
 include/crypto/public_key.h               |  14 +-
 include/keys/asymmetric-subtype.h         |   9 +
 include/keys/system_keyring.h             |  12 ++
 include/linux/key-type.h                  |  11 +
 include/linux/keyctl.h                    |  46 +++++
 include/uapi/linux/keyctl.h               |  30 +++
 security/keys/Makefile                    |   1 +
 security/keys/compat.c                    |  18 ++
 security/keys/internal.h                  |  39 ++++
 security/keys/keyctl.c                    |  24 +++
 security/keys/keyctl_pkey.c               | 323 ++++++++++++++++++++++++++++++
 33 files changed, 1584 insertions(+), 52 deletions(-)
 create mode 100644 certs/blacklist.c
 create mode 100644 certs/blacklist.h
 create mode 100644 certs/blacklist_hashes.c
 create mode 100644 certs/blacklist_nohashes.c
 create mode 100644 crypto/asymmetric_keys/pkcs8.asn1
 create mode 100644 crypto/asymmetric_keys/pkcs8_parser.c
 create mode 100644 include/linux/keyctl.h
 create mode 100644 security/keys/keyctl_pkey.c
Merging selinux/next (36872bf3f5e3 selinux: default to security isid in sel_make_bools() if no sid is found)
$ git merge selinux/next
Auto-merging security/smack/smack_lsm.c
Auto-merging security/selinux/include/classmap.h
Auto-merging security/selinux/hooks.c
Auto-merging fs/proc/base.c
Merge made by the 'recursive' strategy.
 fs/proc/base.c                      |  13 +-
 include/linux/lsm_hooks.h           |   3 +-
 include/linux/security.h            |   4 +-
 security/apparmor/lsm.c             |   7 +-
 security/security.c                 |   4 +-
 security/selinux/hooks.c            | 380 ++++++++++++++++++------------------
 security/selinux/include/classmap.h |  68 +++++++
 security/selinux/include/objsec.h   |  10 +
 security/selinux/include/security.h |   3 +-
 security/selinux/selinuxfs.c        |  98 ++++++----
 security/selinux/ss/services.c      |   3 +
 security/smack/smack_lsm.c          |  11 +-
 12 files changed, 351 insertions(+), 253 deletions(-)
Merging tpmdd/next (1548c540d863 tpm/vtpm: fix kdoc warnings)
$ git merge tpmdd/next
Auto-merging drivers/char/tpm/tpm-chip.c
Merge made by the 'recursive' strategy.
 drivers/char/tpm/tpm-chip.c       |   8 +--
 drivers/char/tpm/tpm-interface.c  |  33 ++++++++++--
 drivers/char/tpm/tpm2-cmd.c       | 104 ++++++++++++++++++++-----------------
 drivers/char/tpm/tpm_ibmvtpm.c    | 106 ++++++++++++++++++++------------------
 drivers/char/tpm/tpm_vtpm_proxy.c |  48 ++++++++++++-----
 5 files changed, 179 insertions(+), 120 deletions(-)
Merging watchdog/master (7ce7d89f4883 Linux 4.10-rc1)
$ git merge watchdog/master
Already up-to-date.
Merging iommu/next (fce794089d60 Merge branches 'iommu/fixes' and 'core' into next)
$ git merge iommu/next
Merge made by the 'recursive' strategy.
 drivers/iommu/amd_iommu.c   |  2 +-
 drivers/iommu/intel-iommu.c | 42 +++++++++++++++++++++++++++++++++++++++++-
 drivers/iommu/iova.c        | 23 +++++++++++------------
 3 files changed, 53 insertions(+), 14 deletions(-)
Merging dwmw2-iommu/master (910170442944 iommu/vt-d: Fix PASID table allocation)
$ git merge dwmw2-iommu/master
Already up-to-date.
Merging vfio/next (2b8bb1d771f7 vfio iommu type1: Fix size argument to vfio_find_dma() in pin_pages/unpin_pages)
$ git merge vfio/next
Already up-to-date.
Merging trivial/for-next (74dcba3589fc NTB: correct ntb_spad_count comment typo)
$ git merge trivial/for-next
Already up-to-date.
Merging audit/next (89670affa2a6 audit: Make AUDIT_ANOM_ABEND event normalized)
$ git merge audit/next
Auto-merging kernel/auditsc.c
Auto-merging kernel/audit.c
Merge made by the 'recursive' strategy.
 kernel/audit.c   | 4 +++-
 kernel/auditsc.c | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)
Merging devicetree/for-next (63c343d384d1 dt-bindings: qman: Remove pool channel node)
$ git merge devicetree/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/clock/mvebu-gated-clock.txt  |  2 +-
 .../devicetree/bindings/display/panel/panel-dpi.txt  |  2 +-
 Documentation/devicetree/bindings/iommu/arm,smmu.txt | 10 +++++-----
 .../devicetree/bindings/mfd/omap-usb-host.txt        |  4 ++--
 Documentation/devicetree/bindings/pci/pci-iommu.txt  |  6 +++---
 .../devicetree/bindings/soc/fsl/qman-portals.txt     | 20 --------------------
 Documentation/devicetree/bindings/usb/ehci-omap.txt  |  1 -
 7 files changed, 12 insertions(+), 33 deletions(-)
Merging mailbox/mailbox-for-next (db4d22c07e3e mailbox: mailbox-test: allow reserved areas in SRAM)
$ git merge mailbox/mailbox-for-next
Already up-to-date.
Merging spi/for-next (e3cd632d6f15 Merge remote-tracking branches 'spi/fix/armada', 'spi/fix/dw', 'spi/fix/fsl-dspi', 'spi/fix/pxa2xx' and 'spi/fix/sh-msiof' into spi-linus)
$ git merge spi/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/spi/sh-msiof.txt | 19 +++++++++++++------
 drivers/spi/Kconfig                                |  1 +
 drivers/spi/spi-armada-3700.c                      | 11 ++++++-----
 drivers/spi/spi-dw-mid.c                           |  4 ++--
 drivers/spi/spi-dw.c                               |  5 ++++-
 drivers/spi/spi-pxa2xx.c                           |  1 +
 drivers/spi/spi-sh-msiof.c                         |  4 +++-
 7 files changed, 30 insertions(+), 15 deletions(-)
Merging tip/auto-latest (92f2ab52e19a Merge branch 'x86/cache')
$ git merge tip/auto-latest
Merge made by the 'recursive' strategy.
 Documentation/x86/intel_rdt_ui.txt     | 114 +++++++++++++++++++++++++++++++++
 arch/x86/events/amd/ibs.c              |   2 +-
 arch/x86/include/asm/e820.h            |   2 -
 arch/x86/kernel/e820.c                 |  16 ++---
 drivers/firmware/efi/libstub/efistub.h |   8 ---
 drivers/firmware/efi/libstub/fdt.c     |  87 ++++++++++++++++---------
 6 files changed, 176 insertions(+), 53 deletions(-)
Merging clockevents/clockevents/next (f947ee147e08 clocksource/drivers/arm_arch_timer: Map frame with of_io_request_and_map())
$ git merge clockevents/clockevents/next
Already up-to-date.
Merging edac/linux_next (9cae24b7b113 Merge commit 'daf34710a9e8849e04867d206692dc42d6d22263' into next)
$ git merge edac/linux_next
Resolved 'Documentation/00-INDEX' using previous resolution.
Resolved 'drivers/edac/edac_device.c' using previous resolution.
Resolved 'drivers/edac/edac_pci.c' using previous resolution.
Auto-merging drivers/edac/edac_pci.c
CONFLICT (content): Merge conflict in drivers/edac/edac_pci.c
Auto-merging drivers/edac/edac_device.c
CONFLICT (content): Merge conflict in drivers/edac/edac_device.c
Auto-merging Documentation/00-INDEX
CONFLICT (content): Merge conflict in Documentation/00-INDEX
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 595b6de5cc38] Merge remote-tracking branch 'edac/linux_next'
$ git diff -M --stat --summary HEAD^..
Merging edac-amd/for-next (0de2788447b6 EDAC, amd64: Fix improper return value)
$ git merge edac-amd/for-next
Already up-to-date.
Merging irqchip/irqchip/for-next (88e20c74ee02 irqchip/mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND)
$ git merge irqchip/irqchip/for-next
Merge made by the 'recursive' strategy.
 drivers/irqchip/irq-keystone.c | 28 +++++++++++++++++++---------
 drivers/irqchip/irq-mxs.c      |  4 ++++
 2 files changed, 23 insertions(+), 9 deletions(-)
Merging ftrace/for-next (3dbb16b87b57 selftests: ftrace: Shift down default message verbosity)
$ git merge ftrace/for-next
Already up-to-date.
Merging rcu/rcu/next (7acd02c9e62f squash! rcu: Check cond_resched_rcu_qs() state less often to reduce GP overhead)
$ git merge rcu/rcu/next
Merge made by the 'recursive' strategy.
 .../Design/Data-Structures/Data-Structures.html    |   5 +-
 .../Design/Expedited-Grace-Periods/ExpRCUFlow.svg  | 830 +++++++++++++++++++++
 .../Expedited-Grace-Periods/ExpSchedFlow.svg       | 826 ++++++++++++++++++++
 .../Expedited-Grace-Periods.html                   | 626 ++++++++++++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel0.svg | 275 +++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel1.svg | 275 +++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel2.svg | 287 +++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel3.svg | 323 ++++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel4.svg | 323 ++++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel5.svg | 335 +++++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel6.svg | 335 +++++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel7.svg | 347 +++++++++
 .../RCU/Design/Expedited-Grace-Periods/Funnel8.svg | 311 ++++++++
 .../RCU/Design/Requirements/Requirements.html      |  12 +-
 Documentation/memory-barriers.txt                  |  70 +-
 include/linux/llist.h                              |  37 +-
 include/linux/rcupdate.h                           |  20 +
 include/linux/rcutiny.h                            |  21 +
 include/linux/rcutree.h                            |   2 +
 include/linux/sched.h                              |   3 +-
 include/linux/srcu.h                               |   4 +-
 include/trace/events/rcu.h                         |  10 +-
 init/Kconfig                                       |  14 -
 kernel/locking/lockdep.c                           |  12 +-
 kernel/locking/locktorture.c                       |   6 +
 kernel/membarrier.c                                |   4 +
 kernel/rcu/rcutorture.c                            |  18 +-
 kernel/rcu/srcu.c                                  | 122 ++-
 kernel/rcu/tiny.c                                  |   2 -
 kernel/rcu/tree.c                                  | 333 ++++++---
 kernel/rcu/tree.h                                  |  15 +-
 kernel/rcu/tree_exp.h                              |  28 +-
 kernel/rcu/tree_plugin.h                           |  18 +-
 kernel/rcu/tree_trace.c                            |   2 +-
 kernel/rcu/update.c                                |   6 +-
 kernel/sched/core.c                                |   1 +
 lib/Kconfig.debug                                  |   1 +
 .../selftests/rcutorture/configs/rcu/CFcommon      |   3 -
 .../selftests/rcutorture/configs/rcu/TINY01        |   1 +
 .../selftests/rcutorture/configs/rcu/TINY02        |   3 +-
 .../selftests/rcutorture/configs/rcu/TREE01        |   3 +
 .../selftests/rcutorture/configs/rcu/TREE02        |   4 +
 .../selftests/rcutorture/configs/rcu/TREE03        |   3 +
 .../selftests/rcutorture/configs/rcu/TREE04        |   4 +
 .../selftests/rcutorture/configs/rcu/TREE05        |   3 +
 .../selftests/rcutorture/configs/rcu/TREE06        |   3 +
 .../selftests/rcutorture/configs/rcu/TREE07        |   3 +
 .../selftests/rcutorture/configs/rcu/TREE08        |   4 +-
 .../selftests/rcutorture/doc/TREE_RCU-kconfig.txt  |  33 +-
 .../rcutorture/formal/srcu-cbmc/.gitignore         |   1 +
 .../selftests/rcutorture/formal/srcu-cbmc/Makefile |  16 +
 .../formal/srcu-cbmc/empty_includes/linux/delay.h  |   0
 .../formal/srcu-cbmc/empty_includes/linux/export.h |   0
 .../formal/srcu-cbmc/empty_includes/linux/mutex.h  |   0
 .../formal/srcu-cbmc/empty_includes/linux/percpu.h |   0
 .../srcu-cbmc/empty_includes/linux/preempt.h       |   0
 .../srcu-cbmc/empty_includes/linux/rcupdate.h      |   0
 .../formal/srcu-cbmc/empty_includes/linux/sched.h  |   0
 .../formal/srcu-cbmc/empty_includes/linux/smp.h    |   0
 .../srcu-cbmc/empty_includes/linux/workqueue.h     |   0
 .../srcu-cbmc/empty_includes/uapi/linux/types.h    |   0
 .../formal/srcu-cbmc/include/linux/.gitignore      |   1 +
 .../formal/srcu-cbmc/include/linux/kconfig.h       |   1 +
 .../formal/srcu-cbmc/include/linux/types.h         | 155 ++++
 .../rcutorture/formal/srcu-cbmc/modify_srcu.awk    | 375 ++++++++++
 .../rcutorture/formal/srcu-cbmc/src/assume.h       |  16 +
 .../rcutorture/formal/srcu-cbmc/src/barriers.h     |  41 +
 .../rcutorture/formal/srcu-cbmc/src/bug_on.h       |  13 +
 .../formal/srcu-cbmc/src/combined_source.c         |  13 +
 .../rcutorture/formal/srcu-cbmc/src/config.h       |  27 +
 .../rcutorture/formal/srcu-cbmc/src/include_srcu.c |  31 +
 .../rcutorture/formal/srcu-cbmc/src/int_typedefs.h |  33 +
 .../rcutorture/formal/srcu-cbmc/src/locks.h        | 220 ++++++
 .../rcutorture/formal/srcu-cbmc/src/misc.c         |  11 +
 .../rcutorture/formal/srcu-cbmc/src/misc.h         |  58 ++
 .../rcutorture/formal/srcu-cbmc/src/percpu.h       |  92 +++
 .../rcutorture/formal/srcu-cbmc/src/preempt.c      |  78 ++
 .../rcutorture/formal/srcu-cbmc/src/preempt.h      |  58 ++
 .../formal/srcu-cbmc/src/simple_sync_srcu.c        |  50 ++
 .../rcutorture/formal/srcu-cbmc/src/workqueues.h   | 102 +++
 .../srcu-cbmc/tests/store_buffering/.gitignore     |   1 +
 .../srcu-cbmc/tests/store_buffering/Makefile       |  11 +
 .../tests/store_buffering/assert_end.fail          |   1 +
 .../srcu-cbmc/tests/store_buffering/force.fail     |   1 +
 .../srcu-cbmc/tests/store_buffering/force2.fail    |   1 +
 .../srcu-cbmc/tests/store_buffering/force3.fail    |   1 +
 .../srcu-cbmc/tests/store_buffering/main.pass      |   0
 .../formal/srcu-cbmc/tests/store_buffering/test.c  |  72 ++
 .../formal/srcu-cbmc/tests/test_script.sh          | 102 +++
 89 files changed, 7224 insertions(+), 284 deletions(-)
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/ExpRCUFlow.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/ExpSchedFlow.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Expedited-Grace-Periods.html
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel0.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel1.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel2.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel3.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel4.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel5.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel6.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel7.svg
 create mode 100644 Documentation/RCU/Design/Expedited-Grace-Periods/Funnel8.svg
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/.gitignore
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/Makefile
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/delay.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/export.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/mutex.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/percpu.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/preempt.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/rcupdate.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/sched.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/smp.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/linux/workqueue.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/empty_includes/uapi/linux/types.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/include/linux/.gitignore
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/include/linux/kconfig.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/include/linux/types.h
 create mode 100755 tools/testing/selftests/rcutorture/formal/srcu-cbmc/modify_srcu.awk
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/assume.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/barriers.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/bug_on.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/combined_source.c
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/config.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/include_srcu.c
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/int_typedefs.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/locks.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/misc.c
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/misc.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/percpu.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/preempt.c
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/preempt.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/simple_sync_srcu.c
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/workqueues.h
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/.gitignore
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/Makefile
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/assert_end.fail
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/force.fail
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/force2.fail
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/force3.fail
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/main.pass
 create mode 100644 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/test.c
 create mode 100755 tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/test_script.sh
Merging kvm/linux-next (ef85b6738543 kvm: nVMX: Allow L1 to intercept software exceptions (#BP and #OF))
$ git merge kvm/linux-next
Already up-to-date.
Merging kvm-arm/next (21cbe3cc8a48 arm64: KVM: pmu: Reset PMSELR_EL0.SEL to a sane value before entering the guest)
$ git merge kvm-arm/next
Already up-to-date.
Merging kvm-mips/next (07d9a380680d Linux 4.9-rc2)
$ git merge kvm-mips/next
Already up-to-date.
Merging kvm-ppc/kvm-ppc-next (e34af7849014 KVM: PPC: Book3S: Move prototypes for KVM functions into kvm_ppc.h)
$ git merge kvm-ppc/kvm-ppc-next
Already up-to-date.
Merging kvms390/next (252747dd7c67 KVM: s390: Get rid of ar_t)
$ git merge kvms390/next
Auto-merging arch/s390/kvm/vsie.c
Auto-merging arch/s390/kvm/priv.c
Merge made by the 'recursive' strategy.
 arch/s390/kvm/gaccess.c          | 26 ++++++++++++++++----------
 arch/s390/kvm/gaccess.h          | 10 +++++-----
 arch/s390/kvm/kvm-s390.c         |  4 +++-
 arch/s390/kvm/kvm-s390.h         | 10 ++++------
 arch/s390/kvm/priv.c             | 30 +++++++++++++++---------------
 arch/s390/kvm/vsie.c             |  3 +++
 arch/s390/tools/gen_facilities.c |  2 ++
 7 files changed, 48 insertions(+), 37 deletions(-)
Merging xen-tip/linux-next (0b47a6bd1150 Xen: ARM: Zero reserved fields of xatp before making hypervisor call)
$ git merge xen-tip/linux-next
Auto-merging drivers/xen/events/events_fifo.c
Merge made by the 'recursive' strategy.
 arch/x86/xen/setup.c                     |  6 ++--
 drivers/xen/arm-device.c                 |  8 ++++--
 drivers/xen/events/events_fifo.c         |  3 +-
 drivers/xen/evtchn.c                     |  4 +--
 drivers/xen/xenbus/xenbus_comms.h        |  1 -
 drivers/xen/xenbus/xenbus_dev_frontend.c | 49 ++++++++++++++++++--------------
 6 files changed, 39 insertions(+), 32 deletions(-)
Merging percpu/for-next (3ca45a46f8af percpu: ensure the requested alignment is power of two)
$ git merge percpu/for-next
Already up-to-date.
Merging workqueues/for-next (8bc4a0445596 Merge branch 'for-4.9' into for-4.10)
$ git merge workqueues/for-next
Already up-to-date.
Merging drivers-x86/for-next (b6a64704c25e platform/x86: mlx-platform: mlxcpld-hotplug driver style fixes)
$ git merge drivers-x86/for-next
Merge made by the 'recursive' strategy.
 drivers/platform/x86/acer-wmi.c       | 22 +++++++--
 drivers/platform/x86/fujitsu-laptop.c |  1 +
 drivers/platform/x86/hp_accel.c       |  1 +
 drivers/platform/x86/mlx-platform.c   | 84 +++++++++++++++++++++--------------
 4 files changed, 70 insertions(+), 38 deletions(-)
Merging chrome-platform/for-next (31b764171cb5 Revert "platform/chrome: chromeos_laptop: Add Leon Touch")
$ git merge chrome-platform/for-next
Merge made by the 'recursive' strategy.
Merging hsi/for-next (7ac5d7b1a125 HSI: hsi_char.h: use __u32 from linux/types.h)
$ git merge hsi/for-next
Already up-to-date.
Merging leds/for-next (aec71e2fb6f7 DT: leds: Improve examples by adding some context)
$ git merge leds/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/leds/common.txt | 28 +++++++++++++++--------
 1 file changed, 18 insertions(+), 10 deletions(-)
Merging ipmi/for-next (070cbd1d42aa ipmi: create hardware-independent softdep for ipmi_devintf)
$ git merge ipmi/for-next
Already up-to-date.
Merging driver-core/driver-core-next (0c744ea4f77d Linux 4.10-rc2)
$ git merge driver-core/driver-core-next
Already up-to-date.
Merging tty/tty-next (0c744ea4f77d Linux 4.10-rc2)
$ git merge tty/tty-next
Already up-to-date.
Merging usb/usb-next (0c744ea4f77d Linux 4.10-rc2)
$ git merge usb/usb-next
Already up-to-date.
Merging usb-gadget/next (d5c024f3761d usb: gadget: serial: fix possible Oops caused by calling kthread_stop(NULL))
$ git merge usb-gadget/next
Already up-to-date.
Merging usb-serial/usb-next (0c744ea4f77d Linux 4.10-rc2)
$ git merge usb-serial/usb-next
Already up-to-date.
Merging usb-chipidea-next/ci-for-usb-next (223e92311583 usb: chipdata: Replace the extcon API)
$ git merge usb-chipidea-next/ci-for-usb-next
Auto-merging drivers/usb/chipidea/core.c
Merge made by the 'recursive' strategy.
 drivers/usb/chipidea/core.c | 30 ++++++------------------------
 1 file changed, 6 insertions(+), 24 deletions(-)
Merging phy-next/next (5e253dfbdbea phy: rockchip-inno-usb2: select USB_COMMON)
$ git merge phy-next/next
Already up-to-date.
Merging staging/staging-next (6b8b810f2c9a staging: rtl8188eu: remove unused members from struct recv_priv)
$ git merge staging/staging-next
Merge made by the 'recursive' strategy.
 drivers/staging/android/ion/ion_cma_heap.c         |   6 +-
 drivers/staging/comedi/comedi_compat32.h           |   3 +-
 drivers/staging/comedi/comedi_fops.c               |   6 +-
 drivers/staging/comedi/comedi_internal.h           |   9 +-
 drivers/staging/comedi/comedi_pci.h                |  18 +--
 drivers/staging/comedi/comedi_pcmcia.c             |   3 +-
 drivers/staging/comedi/comedi_pcmcia.h             |  22 +--
 drivers/staging/comedi/comedi_usb.h                |  16 ++-
 drivers/staging/comedi/comedidev.h                 |  55 ++++----
 drivers/staging/comedi/drivers/addi_watchdog.h     |   2 +-
 drivers/staging/comedi/drivers/cb_pcidas64.c       | 140 +++++++++----------
 drivers/staging/comedi/drivers/comedi_8254.h       |  30 ++--
 drivers/staging/comedi/drivers/comedi_isadma.h     |  10 +-
 drivers/staging/comedi/drivers/mite.h              |  37 ++---
 drivers/staging/comedi/drivers/ni_670x.c           |   2 +-
 drivers/staging/comedi/drivers/ni_at_ao.c          |  62 ++++-----
 drivers/staging/comedi/drivers/ni_labpc.h          |   4 +-
 drivers/staging/comedi/drivers/ni_tio.h            |  42 +++---
 drivers/staging/comedi/drivers/ni_tio_internal.h   |  14 +-
 drivers/staging/comedi/proc.c                      |   6 +-
 drivers/staging/dgnc/TODO                          |   3 +-
 drivers/staging/emxx_udc/emxx_udc.c                |  30 ++--
 drivers/staging/fbtft/fb_agm1264k-fl.c             |  18 +--
 drivers/staging/greybus/arche-apb-ctrl.c           |   4 +-
 drivers/staging/greybus/connection.c               |   6 +
 drivers/staging/greybus/loopback.c                 |  11 ++
 drivers/staging/greybus/svc_watchdog.c             |   4 +-
 drivers/staging/ks7010/ks7010_sdio.h               |   4 +-
 drivers/staging/lustre/lnet/selftest/brw_test.c    |   2 +-
 drivers/staging/lustre/lustre/include/lu_object.h  |   3 +
 .../lustre/lustre/include/lustre/lustre_idl.h      |  46 -------
 .../staging/lustre/lustre/include/lustre_obdo.h    |  54 ++++++++
 drivers/staging/lustre/lustre/include/obd.h        |   5 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_flock.c    |   2 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lock.c     |   5 +-
 drivers/staging/lustre/lustre/llite/file.c         |   2 +-
 drivers/staging/lustre/lustre/llite/lproc_llite.c  |  27 ++--
 drivers/staging/lustre/lustre/llite/vvp_internal.h |   2 -
 drivers/staging/lustre/lustre/lov/lov_pack.c       |   3 +-
 drivers/staging/lustre/lustre/obdclass/cl_io.c     |   4 +-
 drivers/staging/lustre/lustre/obdclass/cl_object.c |   3 +-
 drivers/staging/lustre/lustre/obdclass/obdo.c      |  54 ++++++++
 drivers/staging/lustre/lustre/osc/osc_cache.c      |  30 ++--
 .../staging/lustre/lustre/osc/osc_cl_internal.h    |  11 +-
 drivers/staging/lustre/lustre/osc/osc_internal.h   |   4 +
 drivers/staging/lustre/lustre/osc/osc_io.c         |  62 +++++++--
 drivers/staging/lustre/lustre/osc/osc_object.c     |  19 +++
 drivers/staging/lustre/lustre/osc/osc_request.c    |  45 ++++--
 drivers/staging/lustre/lustre/ptlrpc/nrs.c         |   3 -
 .../staging/lustre/lustre/ptlrpc/ptlrpc_internal.h |   3 +
 drivers/staging/nvec/nvec_power.c                  |   2 +-
 drivers/staging/rtl8188eu/core/rtw_efuse.c         |   4 +
 drivers/staging/rtl8188eu/core/rtw_ieee80211.c     |   5 +-
 drivers/staging/rtl8188eu/core/rtw_led.c           |   1 +
 drivers/staging/rtl8188eu/core/rtw_mlme.c          |   3 +
 drivers/staging/rtl8188eu/core/rtw_mlme_ext.c      |  13 +-
 drivers/staging/rtl8188eu/core/rtw_pwrctrl.c       |   1 +
 drivers/staging/rtl8188eu/core/rtw_recv.c          |  84 ++++++-----
 drivers/staging/rtl8188eu/core/rtw_security.c      |  18 +++
 drivers/staging/rtl8188eu/core/rtw_sta_mgt.c       |   1 +
 drivers/staging/rtl8188eu/core/rtw_wlan_util.c     |   3 +
 drivers/staging/rtl8188eu/core/rtw_xmit.c          |   3 +
 drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.c     |   2 +-
 drivers/staging/rtl8188eu/include/drv_types.h      |   1 -
 drivers/staging/rtl8188eu/include/rtw_recv.h       |   2 -
 drivers/staging/rtl8188eu/os_dep/ioctl_linux.c     |   7 +-
 drivers/staging/rtl8188eu/os_dep/os_intfs.c        |   2 -
 drivers/staging/rtl8188eu/os_dep/osdep_service.c   |   2 +-
 drivers/staging/rtl8188eu/os_dep/rtw_android.c     |   1 +
 drivers/staging/rtl8188eu/os_dep/usb_intf.c        |   1 +
 drivers/staging/rtl8712/hal_init.c                 |  12 +-
 drivers/staging/rtl8712/ieee80211.c                |  14 +-
 drivers/staging/rtl8712/rtl8712_cmd.c              |   7 +-
 drivers/staging/rtl8712/rtl8712_event.h            |   2 +-
 drivers/staging/rtl8712/rtl8712_recv.c             |  10 +-
 drivers/staging/rtl8712/rtl8712_recv.h             |  28 ++--
 drivers/staging/rtl8712/rtl8712_xmit.h             |  16 +--
 drivers/staging/rtl8712/rtl871x_cmd.h              |   6 +-
 drivers/staging/rtl8712/rtl871x_event.h            |   2 +-
 drivers/staging/rtl8712/rtl871x_ioctl_linux.c      |   2 +-
 drivers/staging/rtl8712/rtl871x_mlme.c             |  15 +-
 drivers/staging/rtl8712/rtl871x_recv.c             |   2 +-
 drivers/staging/rtl8712/rtl871x_security.c         |  16 +--
 drivers/staging/rtl8712/usb_ops.c                  |  18 ++-
 drivers/staging/rtl8712/usb_ops_linux.c            |   5 +-
 drivers/staging/rtl8712/wifi.h                     |   4 +-
 drivers/staging/rtl8712/wlan_bssdef.h              |   2 +-
 drivers/staging/skein/skein_base.c                 |  16 +--
 drivers/staging/unisys/visorbus/controlvmchannel.h |  87 +++++-------
 drivers/staging/unisys/visorbus/visorchipset.c     | 153 +++++++++++----------
 drivers/staging/unisys/visorhba/visorhba_main.c    |   4 -
 .../vc04_services/interface/vchiq_arm/vchiq_core.c |  20 +--
 .../vc04_services/interface/vchiq_arm/vchiq_util.c |   9 +-
 drivers/staging/vt6656/wcmd.h                      |   4 +-
 drivers/staging/wilc1000/linux_wlan.c              |   2 +-
 drivers/staging/xgifb/vb_init.c                    |   3 +-
 96 files changed, 892 insertions(+), 679 deletions(-)
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_obdo.h
Merging char-misc/char-misc-next (0c744ea4f77d Linux 4.10-rc2)
$ git merge char-misc/char-misc-next
Already up-to-date.
Merging extcon/extcon-next (3bd62888574a extcon: Move defintion of struct extcon_dev to driver/extcon directory)
$ git merge extcon/extcon-next
Merge made by the 'recursive' strategy.
 Documentation/extcon/intel-int3496.txt |  22 ++++
 drivers/extcon/Kconfig                 |  10 ++
 drivers/extcon/Makefile                |   1 +
 drivers/extcon/devres.c                |   2 +-
 drivers/extcon/extcon-adc-jack.c       |   2 +-
 drivers/extcon/extcon-arizona.c        |  20 ++--
 drivers/extcon/extcon-axp288.c         | 110 ++++++++------------
 drivers/extcon/extcon-intel-int3496.c  | 179 +++++++++++++++++++++++++++++++++
 drivers/extcon/extcon-max14577.c       |   6 +-
 drivers/extcon/extcon-max77693.c       |  12 ++-
 drivers/extcon/extcon-max77843.c       |  24 +++--
 drivers/extcon/extcon-palmas.c         |   5 +
 drivers/extcon/extcon-rt8973a.c        |   6 +-
 drivers/extcon/extcon-sm5502.c         |   6 +-
 drivers/extcon/extcon.c                |  38 ++-----
 drivers/extcon/extcon.h                |  62 ++++++++++++
 include/linux/extcon.h                 |  66 ++----------
 include/linux/extcon/extcon-adc-jack.h |   2 +-
 18 files changed, 389 insertions(+), 184 deletions(-)
 create mode 100644 Documentation/extcon/intel-int3496.txt
 create mode 100644 drivers/extcon/extcon-intel-int3496.c
 create mode 100644 drivers/extcon/extcon.h
Merging slave-dma/next (69ec10a5c97c Merge branch 'topic/stm32-dma' into next)
$ git merge slave-dma/next
Auto-merging drivers/dma/zx_dma.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-platform-hidma     |  2 +-
 .../ABI/testing/sysfs-platform-hidma-mgmt          | 20 ++---
 .../devicetree/bindings/dma/stm32-dma.txt          |  5 +-
 MAINTAINERS                                        | 17 +++--
 drivers/dma/Kconfig                                |  6 +-
 drivers/dma/Makefile                               |  2 +-
 drivers/dma/dmaengine.c                            | 21 +++---
 drivers/dma/dw/Kconfig                             |  2 +-
 drivers/dma/ioat/hw.h                              |  2 +
 drivers/dma/ioat/init.c                            | 11 ++-
 drivers/dma/ipu/ipu_irq.c                          |  2 +-
 drivers/dma/omap-dma.c                             | 30 +++++---
 drivers/dma/pl330.c                                | 11 +++
 drivers/dma/stm32-dma.c                            | 86 +++++++++++++---------
 drivers/dma/ti-dma-crossbar.c                      |  2 +
 drivers/dma/{zx296702_dma.c => zx_dma.c}           |  4 +-
 16 files changed, 138 insertions(+), 85 deletions(-)
 rename drivers/dma/{zx296702_dma.c => zx_dma.c} (99%)
Merging cgroup/for-next (7b4632f04841 cgroup: fix a comment typo)
$ git merge cgroup/for-next
Auto-merging kernel/cgroup/cgroup.c
Merge made by the 'recursive' strategy.
 fs/kernfs/dir.c                               |    2 +-
 fs/kernfs/file.c                              |   53 +-
 fs/kernfs/kernfs-internal.h                   |    2 +-
 include/linux/cgroup-defs.h                   |   57 +-
 include/linux/cgroup.h                        |    2 +-
 include/linux/kernfs.h                        |   12 +-
 kernel/Makefile                               |    5 +-
 kernel/cgroup/Makefile                        |    5 +
 kernel/cgroup/cgroup-internal.h               |  157 ++
 kernel/cgroup/cgroup-v1.c                     | 1395 ++++++++++++++++++
 kernel/{ => cgroup}/cgroup.c                  | 1968 +++----------------------
 kernel/{ => cgroup}/cpuset.c                  |    0
 kernel/{cgroup_freezer.c => cgroup/freezer.c} |    0
 kernel/cgroup/namespace.c                     |  155 ++
 kernel/{cgroup_pids.c => cgroup/pids.c}       |    0
 15 files changed, 2006 insertions(+), 1807 deletions(-)
 create mode 100644 kernel/cgroup/Makefile
 create mode 100644 kernel/cgroup/cgroup-internal.h
 create mode 100644 kernel/cgroup/cgroup-v1.c
 rename kernel/{ => cgroup}/cgroup.c (74%)
 rename kernel/{ => cgroup}/cpuset.c (100%)
 rename kernel/{cgroup_freezer.c => cgroup/freezer.c} (100%)
 create mode 100644 kernel/cgroup/namespace.c
 rename kernel/{cgroup_pids.c => cgroup/pids.c} (100%)
Merging scsi/for-next (cadb39085066 Merge branch 'misc' into for-next)
$ git merge scsi/for-next
Merge made by the 'recursive' strategy.
 drivers/block/cciss.h            |  30 ++---
 drivers/message/fusion/mptlan.h  |   1 -
 drivers/scsi/dpt_i2o.c           |   8 +-
 drivers/scsi/hpsa.h              |  40 +++---
 drivers/scsi/lpfc/lpfc.h         |   5 -
 drivers/scsi/lpfc/lpfc_attr.c    | 266 +++++----------------------------------
 drivers/scsi/lpfc/lpfc_crtn.h    |   7 +-
 drivers/scsi/lpfc/lpfc_els.c     |   6 +
 drivers/scsi/lpfc/lpfc_hw.h      |   6 +
 drivers/scsi/lpfc/lpfc_init.c    |  16 +--
 drivers/scsi/lpfc/lpfc_scsi.c    |  18 ++-
 drivers/scsi/lpfc/lpfc_sli.c     |  13 +-
 drivers/scsi/lpfc/lpfc_version.h |   2 +-
 drivers/scsi/lpfc/lpfc_vport.c   |   8 ++
 drivers/scsi/qedi/Kconfig        |   2 +-
 drivers/scsi/scsi_lib.c          |   2 +-
 drivers/scsi/storvsc_drv.c       | 148 ++++++++++++++++++++--
 17 files changed, 260 insertions(+), 318 deletions(-)
Merging scsi-mkp/for-next (f1e65d125678 scsi: dpt_i2o: double free if adpt_i2o_online_hba() fails)
$ git merge scsi-mkp/for-next
Already up-to-date.
Merging target-updates/for-next (291e3e51a34d target: fix spelling mistake: "limitiation" -> "limitation")
$ git merge target-updates/for-next
Already up-to-date.
Merging target-merge/for-next-merge (2994a7518317 cxgb4: update Kconfig and Makefile)
$ git merge target-merge/for-next-merge
Already up-to-date.
Merging target-bva/for-next (83337e544323 iscsi-target: Return error if unable to add network portal)
$ git merge target-bva/for-next
Already up-to-date.
Merging libata/for-next (7ddf6a387c68 Merge branch 'for-4.10' into for-next)
$ git merge libata/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging binfmt_misc/for-next (4af75df6a410 binfmt_misc: add F option description to documentation)
$ git merge binfmt_misc/for-next
Already up-to-date.
Merging vhost/linux-next (6bdf1e0efb04 Makefile: drop -D__CHECK_ENDIAN__ from cflags)
$ git merge vhost/linux-next
Already up-to-date.
Merging rpmsg/for-next (a9cff670138e Merge branches 'hwspinlock-next', 'rpmsg-next' and 'rproc-next' into for-next)
$ git merge rpmsg/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/remoteproc/qcom,q6v5.txt   |   4 +-
 drivers/remoteproc/Kconfig                         |   7 +-
 drivers/remoteproc/da8xx_remoteproc.c              |   2 +-
 drivers/remoteproc/omap_remoteproc.c               |   2 +-
 drivers/remoteproc/qcom_q6v5_pil.c                 | 383 ++++++++++++++++-----
 drivers/remoteproc/remoteproc_core.c               |  29 +-
 drivers/remoteproc/st_remoteproc.c                 |   2 +-
 drivers/remoteproc/st_slim_rproc.c                 |   2 +-
 drivers/remoteproc/wkup_m3_rproc.c                 |   2 +-
 drivers/rpmsg/rpmsg_core.c                         |   4 +-
 include/linux/remoteproc.h                         |   4 +-
 11 files changed, 328 insertions(+), 113 deletions(-)
Merging gpio/for-next (4fe4d09cfd11 Merge branch 'devel' into for-next)
$ git merge gpio/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/gpio/gpio.txt |  8 +++----
 drivers/gpio/devres.c                           |  2 +-
 drivers/gpio/gpio-mm-lantiq.c                   |  2 +-
 drivers/gpio/gpio-mockup.c                      | 23 +++++++++---------
 drivers/gpio/gpio-mxs.c                         |  2 +-
 drivers/gpio/gpio-rcar.c                        | 21 +++++++++++++----
 drivers/gpio/gpio-stp-xway.c                    |  2 +-
 drivers/gpio/gpiolib-of.c                       | 31 ++++++++++++++++---------
 drivers/gpio/gpiolib.c                          |  2 +-
 9 files changed, 58 insertions(+), 35 deletions(-)
Merging pinctrl/for-next (9eb63a89ffd1 Merge branch 'devel' into for-next)
$ git merge pinctrl/for-next
Merge made by the 'recursive' strategy.
 .../bindings/pinctrl/marvell,kirkwood-pinctrl.txt  |   20 +-
 .../devicetree/bindings/pinctrl/pinctrl-aspeed.txt |  131 +-
 drivers/pinctrl/Kconfig                            |   11 +-
 drivers/pinctrl/aspeed/pinctrl-aspeed-g4.c         | 1115 +++++++++++++-
 drivers/pinctrl/aspeed/pinctrl-aspeed-g5.c         | 1524 +++++++++++++++++++-
 drivers/pinctrl/aspeed/pinctrl-aspeed.c            |  165 ++-
 drivers/pinctrl/aspeed/pinctrl-aspeed.h            |   33 +-
 drivers/pinctrl/core.c                             |  286 +++-
 drivers/pinctrl/core.h                             |   57 +
 drivers/pinctrl/devicetree.c                       |   28 +-
 drivers/pinctrl/devicetree.h                       |   12 +-
 drivers/pinctrl/freescale/pinctrl-imx.c            |  198 ++-
 drivers/pinctrl/freescale/pinctrl-imx.h            |    5 +-
 drivers/pinctrl/mediatek/pinctrl-mt7623.c          |    2 +-
 drivers/pinctrl/mediatek/pinctrl-mtk-mt7623.h      |    2 +-
 drivers/pinctrl/meson/pinctrl-meson.c              |    2 +-
 drivers/pinctrl/pinctrl-amd.c                      |   44 +-
 drivers/pinctrl/pinctrl-amd.h                      |    8 +-
 drivers/pinctrl/pinctrl-falcon.c                   |    2 +-
 drivers/pinctrl/pinctrl-lantiq.c                   |    2 +-
 drivers/pinctrl/pinctrl-lantiq.h                   |    2 +-
 drivers/pinctrl/pinctrl-single.c                   |  292 +---
 drivers/pinctrl/pinctrl-xway.c                     |    2 +-
 drivers/pinctrl/pinmux.c                           |  216 ++-
 drivers/pinctrl/pinmux.h                           |   56 +
 drivers/pinctrl/samsung/pinctrl-exynos.c           |   91 +-
 drivers/pinctrl/samsung/pinctrl-exynos.h           |   31 +
 drivers/pinctrl/sirf/pinctrl-atlas7.c              |   13 +-
 drivers/pinctrl/stm32/pinctrl-stm32.c              |    1 +
 include/dt-bindings/pinctrl/samsung.h              |   14 +
 30 files changed, 3770 insertions(+), 595 deletions(-)
Merging dma-mapping/dma-mapping-next (1001354ca341 Linux 4.9-rc1)
$ git merge dma-mapping/dma-mapping-next
Already up-to-date.
Merging pwm/for-next (fdd3ff4db177 Merge branch 'for-4.10/drivers' into for-next)
$ git merge pwm/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging dma-buf/for-next (194cad44c4e1 dma-buf/sync_file: improve Kconfig description for Sync Files)
$ git merge dma-buf/for-next
Resolved 'drivers/dma-buf/Kconfig' using previous resolution.
Auto-merging drivers/dma-buf/Kconfig
CONFLICT (content): Merge conflict in drivers/dma-buf/Kconfig
Auto-merging MAINTAINERS
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 6fefed59d588] Merge remote-tracking branch 'dma-buf/for-next'
$ git diff -M --stat --summary HEAD^..
 MAINTAINERS | 11 +++++++++++
 1 file changed, 11 insertions(+)
Merging userns/for-next (19339c251607 Revert "evm: Translate user/group ids relative to s_user_ns when computing HMAC")
$ git merge userns/for-next
Already up-to-date.
Merging ktest/for-next (2dcd0af568b0 Linux 4.6)
$ git merge ktest/for-next
Already up-to-date.
Merging random/dev (59b8d4f1f5d2 random: use for_each_online_node() to iterate over NUMA nodes)
$ git merge random/dev
Already up-to-date.
Merging aio/master (b562e44f507e Linux 4.5)
$ git merge aio/master
Already up-to-date.
Merging kselftest/next (7ce7d89f4883 Linux 4.10-rc1)
$ git merge kselftest/next
Already up-to-date.
Merging y2038/y2038 (549eb7b22e24 AFS: Correctly use 64-bit time for UUID)
$ git merge y2038/y2038
Resolved 'fs/afs/main.c' using previous resolution.
Auto-merging fs/afs/main.c
CONFLICT (content): Merge conflict in fs/afs/main.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 9d19ff54e3a9] Merge remote-tracking branch 'y2038/y2038'
$ git diff -M --stat --summary HEAD^..
 fs/afs/main.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
Merging luto-misc/next (2dcd0af568b0 Linux 4.6)
$ git merge luto-misc/next
Already up-to-date.
Merging borntraeger/linux-next (e76d21c40bd6 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge borntraeger/linux-next
Already up-to-date.
Merging livepatching/for-next (b766922e6535 powerpc/livepatch: Remove klp_write_module_reloc() stub)
$ git merge livepatching/for-next
Merge made by the 'recursive' strategy.
 arch/powerpc/include/asm/livepatch.h | 7 -------
 1 file changed, 7 deletions(-)
Merging coresight/next (9d8067efa456 coresight: etm4x: Fix timestamp configuration when working from perf)
$ git merge coresight/next
Merge made by the 'recursive' strategy.
 drivers/hwtracing/coresight/coresight-etm-perf.c |  1 +
 drivers/hwtracing/coresight/coresight-etm4x.c    | 10 +++++++---
 drivers/hwtracing/coresight/coresight-etm4x.h    |  1 +
 3 files changed, 9 insertions(+), 3 deletions(-)
Merging rtc/rtc-next (7ce7d89f4883 Linux 4.10-rc1)
$ git merge rtc/rtc-next
Already up-to-date.
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 (1db175428ee3 ext4: Simplify DAX fault path)
$ git merge nvdimm/libnvdimm-for-next
Already up-to-date.
Merging dax-misc/dax-misc (4d9a2c874667 dax: Remove i_mmap_lock protection)
$ git merge dax-misc/dax-misc
Already up-to-date.
Merging akpm-current/current (e1f8c36b6eb3 ipc/sem: add hysteresis)
$ git merge --no-ff akpm-current/current
Auto-merging mm/shmem.c
Auto-merging mm/memory.c
Auto-merging mm/internal.h
Auto-merging lib/Makefile
Auto-merging lib/Kconfig
Merge made by the 'recursive' strategy.
 arch/arm/include/asm/page.h         |   2 +
 arch/arm64/include/asm/setup.h      |  19 ++
 arch/arm64/include/uapi/asm/setup.h |   4 +-
 arch/x86/kernel/machine_kexec_64.c  |   1 +
 block/genhd.c                       |   2 +-
 fs/ocfs2/dlm/dlmmaster.c            |  66 +++++--
 fs/ocfs2/dlmglue.c                  |  10 ++
 fs/ocfs2/stackglue.c                |   6 +
 fs/ocfs2/stackglue.h                |   3 +
 include/linux/crc64_ecma.h          |  56 ++++++
 include/linux/kexec.h               |   2 +
 include/linux/nmi.h                 |   1 +
 include/linux/sem.h                 |   2 +-
 ipc/sem.c                           | 109 +++++++-----
 kernel/watchdog.c                   |   9 +
 kernel/watchdog_hld.c               |   3 +
 lib/Kconfig                         |   7 +
 lib/Makefile                        |   1 +
 lib/crc64_ecma.c                    | 341 ++++++++++++++++++++++++++++++++++++
 mm/internal.h                       |   4 +-
 mm/khugepaged.c                     |  21 +--
 mm/memory.c                         |   7 -
 mm/page_alloc.c                     |  73 ++++----
 mm/page_isolation.c                 |  10 +-
 mm/page_owner.c                     |   4 +-
 mm/shmem.c                          |   5 +-
 mm/z3fold.c                         | 337 ++++++++++++++++++++++++-----------
 scripts/gdb/linux/constants.py.in   |   7 +
 scripts/gdb/linux/proc.py           |  73 ++++++++
 scripts/spelling.txt                |  37 ++++
 30 files changed, 976 insertions(+), 246 deletions(-)
 create mode 100644 arch/arm64/include/asm/setup.h
 create mode 100644 include/linux/crc64_ecma.h
 create mode 100644 lib/crc64_ecma.c
$ git clone -s -l -n -q . ../rebase-tmp
$ cd ../rebase-tmp
$ git checkout -b akpm remotes/origin/akpm/master
Switched to a new branch 'akpm'
$ git rebase --onto master remotes/origin/akpm/master-base
First, rewinding head to replay your work on top of it...
Applying: fs: add i_blocksize()
Applying: Reimplement IDR and IDA using the radix tree
Applying: idr: support storing NULL in the IDR
Applying: reimplement-idr-and-ida-using-the-radix-tree-support-storing-null-in-the-idr-checkpatch-fixes
Applying: scripts/spelling.txt: add "swith" pattern and fix typo instances
Applying: scripts/spelling.txt: add "swithc" pattern and fix typo instances
Applying: scripts/spelling.txt: add "an user" pattern and fix typo instances
Applying: scripts/spelling.txt: add "an union" pattern and fix typo instances
Applying: scripts/spelling.txt: add "an one" pattern and fix typo instances
Applying: scripts/spelling.txt: add "partiton" pattern and fix typo instances
Applying: scripts/spelling.txt: add "aligment" pattern and fix typo instances
Applying: scripts/spelling.txt: add "algined" pattern and fix typo instances
Applying: scripts/spelling.txt: add "efective" pattern and fix typo instances
Applying: scripts/spelling.txt: add "varible" pattern and fix typo instances
Applying: scripts/spelling.txt: add "embeded" pattern and fix typo instances
Applying: scripts/spelling.txt: add "againt" pattern and fix typo instances
Applying: scripts/spelling.txt: add "neded" pattern and fix typo instances
Applying: scripts/spelling.txt: add "unneded" pattern and fix typo instances
Applying: scripts/spelling.txt: add "intialization" pattern and fix typo instances
Applying: scripts/spelling.txt: add "initialiazation" pattern and fix typo instances
Applying: scripts/spelling.txt: add "intialise(d)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "comsume(r)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "disble(d)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overide" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overrided" pattern and fix typo instances
Applying: scripts/spelling.txt: add "configuartion" pattern and fix typo instances
Applying: scripts/spelling.txt: add "applys" pattern and fix typo instances
Applying: scripts/spelling.txt: add "explictely" pattern and fix typo instances
Applying: scripts/spelling.txt: add "omited" pattern and fix typo instances
Applying: scripts/spelling.txt: add "disassocation" pattern and fix typo instances
Applying: scripts/spelling.txt: add "deintialize(d)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overwritting" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overwriten" pattern and fix typo instances
Applying: scripts/spelling.txt: add "therfore" pattern and fix typo instances
Applying: scripts/spelling.txt: add "followings" pattern and fix typo instances
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + be302a59ca06...4453f4fde106 akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (4453f4fde106 scripts/spelling.txt: add "followings" pattern and fix typo instances)
$ git merge --no-ff akpm/master
Merge made by the 'recursive' strategy.
 Documentation/DocBook/libata.tmpl                  |    2 +-
 Documentation/acpi/method-customizing.txt          |    2 +-
 Documentation/acpi/method-tracing.txt              |    2 +-
 Documentation/admin-guide/ras.rst                  |    2 +-
 Documentation/blockdev/mflash.txt                  |    2 +-
 Documentation/dev-tools/kcov.rst                   |    2 +-
 Documentation/device-mapper/dm-raid.txt            |    2 +-
 Documentation/devicetree/bindings/mfd/qcom-rpm.txt |    2 +-
 .../bindings/net/marvell-armada-370-neta.txt       |    2 +-
 Documentation/devicetree/bindings/opp/opp.txt      |    2 +-
 .../bindings/pinctrl/allwinner,sunxi-pinctrl.txt   |    2 +-
 .../devicetree/bindings/power/pd-samsung.txt       |    2 +-
 .../bindings/regulator/ti-abb-regulator.txt        |    2 +-
 .../devicetree/bindings/soc/rockchip/grf.txt       |    4 +-
 .../devicetree/bindings/sound/rockchip-i2s.txt     |    4 +-
 .../devicetree/bindings/sound/sun4i-codec.txt      |    2 +-
 .../devicetree/bindings/sound/sun4i-i2s.txt        |    4 +-
 Documentation/filesystems/quota.txt                |    2 +-
 Documentation/kselftest.txt                        |    4 +-
 Documentation/media/dvb-drivers/ci.rst             |    2 +-
 .../media/uapi/dvb/dvb-frontend-parameters.rst     |    4 +-
 Documentation/memory-hotplug.txt                   |    4 +-
 Documentation/networking/cdc_mbim.txt              |    4 +-
 Documentation/scsi/ChangeLog.megaraid_sas          |    2 +-
 Documentation/sound/hd-audio/notes.rst             |    2 +-
 Documentation/vm/userfaultfd.txt                   |    2 +-
 arch/Kconfig                                       |    2 +-
 arch/arc/kernel/unwind.c                           |    4 +-
 arch/arm/boot/compressed/head.S                    |    2 +-
 arch/arm/include/asm/mach/flash.h                  |    2 +-
 arch/arm/mach-omap2/omap_twl.c                     |    2 +-
 arch/arm/mm/cache-v7.S                             |    2 +-
 arch/arm/mm/cache-v7m.S                            |    2 +-
 arch/arm64/lib/copy_template.S                     |    2 +-
 arch/cris/arch-v32/drivers/cryptocop.c             |    2 +-
 arch/ia64/sn/kernel/sn2/sn_hwperf.c                |    2 +-
 arch/m68k/ifpsp060/src/isp.S                       |    2 +-
 arch/openrisc/kernel/entry.S                       |    6 +-
 arch/openrisc/kernel/head.S                        |    6 +-
 arch/openrisc/kernel/vmlinux.lds.S                 |    4 +-
 arch/powerpc/boot/dts/fsl/mpc8569mds.dts           |    2 +-
 arch/powerpc/include/asm/book3s/64/mmu.h           |    2 +-
 arch/powerpc/include/asm/fsl_hcalls.h              |    2 +-
 arch/powerpc/platforms/powernv/pci-ioda.c          |    2 +-
 arch/powerpc/platforms/pseries/iommu.c             |    2 +-
 arch/powerpc/xmon/ppc-opc.c                        |    2 +-
 arch/s390/kernel/vtime.c                           |    2 +-
 arch/sh/kernel/irq.c                               |    2 +-
 arch/sparc/include/asm/switch_to_32.h              |    2 +-
 arch/sparc/kernel/visemul.c                        |    2 +-
 arch/x86/include/asm/desc_defs.h                   |    2 +-
 arch/x86/kernel/ftrace.c                           |    2 +-
 arch/x86/kvm/mmu.c                                 |    2 +-
 block/blk-throttle.c                               |    2 +-
 certs/blacklist.c                                  |    2 +-
 drivers/acpi/acpica/acmacros.h                     |    2 +-
 drivers/acpi/acpica/dbconvert.c                    |    2 +-
 drivers/acpi/acpica/nspredef.c                     |    2 +-
 drivers/acpi/acpica/nsxfeval.c                     |    4 +-
 drivers/acpi/resource.c                            |    2 +-
 drivers/acpi/spcr.c                                |    2 +-
 drivers/ata/libata-eh.c                            |    2 +-
 drivers/atm/iphase.c                               |    2 +-
 drivers/atm/iphase.h                               |    2 +-
 drivers/block/loop.c                               |    2 +-
 drivers/block/paride/pcd.c                         |    2 +-
 drivers/block/paride/pd.c                          |    2 +-
 drivers/block/paride/pf.c                          |    2 +-
 drivers/block/paride/pg.c                          |    2 +-
 drivers/block/paride/pt.c                          |    2 +-
 drivers/char/pcmcia/cm4000_cs.c                    |    2 +-
 drivers/char/sonypi.c                              |    2 +-
 drivers/crypto/caam/ctrl.c                         |    2 +-
 drivers/crypto/ux500/cryp/cryp.c                   |    2 +-
 drivers/devfreq/devfreq.c                          |    2 +-
 drivers/extcon/extcon-rt8973a.c                    |    2 +-
 drivers/firewire/core-device.c                     |    4 +-
 drivers/gpu/drm/amd/amdgpu/sdma_v3_0.c             |    2 +-
 drivers/gpu/drm/amd/include/atombios.h             |    8 +-
 .../gpu/drm/amd/powerplay/inc/hardwaremanager.h    |    2 +-
 drivers/gpu/drm/drm_probe_helper.c                 |    4 +-
 drivers/gpu/drm/i915/i915_gem_render_state.c       |    2 +-
 drivers/gpu/drm/radeon/atombios.h                  |    6 +-
 drivers/hid/hid-kye.c                              |    2 +-
 drivers/hv/channel.c                               |    2 +-
 drivers/hwmon/g762.c                               |    2 +-
 drivers/infiniband/hw/qib/qib_iba6120.c            |    2 +-
 drivers/infiniband/hw/qib/qib_iba7220.c            |    2 +-
 drivers/infiniband/hw/qib/qib_iba7322.c            |    2 +-
 drivers/infiniband/sw/rdmavt/mad.c                 |    6 +-
 drivers/isdn/hardware/eicon/debug.c                |    2 +-
 drivers/isdn/hardware/mISDN/mISDNipac.c            |    2 +-
 drivers/isdn/hisax/st5481_b.c                      |    2 +-
 drivers/isdn/mISDN/dsp_core.c                      |    2 +-
 drivers/media/dvb-core/dvb_ringbuffer.h            |    4 +-
 drivers/media/dvb-frontends/drx39xyj/drx_driver.h  |   12 +-
 drivers/media/dvb-frontends/drx39xyj/drxj.c        |   16 +-
 drivers/media/dvb-frontends/drx39xyj/drxj.h        |    4 +-
 drivers/media/dvb-frontends/drxk_hard.c            |    2 +-
 drivers/media/i2c/adv7183_regs.h                   |    2 +-
 drivers/media/platform/exynos4-is/fimc-core.h      |    2 +-
 drivers/media/usb/gspca/t613.c                     |    6 +-
 drivers/media/usb/tm6000/tm6000-input.c            |    2 +-
 drivers/media/v4l2-core/tuner-core.c               |    4 +-
 drivers/misc/vmw_vmci/vmci_queue_pair.c            |    2 +-
 drivers/mmc/host/mmci_qcom_dml.c                   |    2 +-
 drivers/mtd/spi-nor/spi-nor.c                      |    2 +-
 drivers/net/can/flexcan.c                          |    2 +-
 drivers/net/ethernet/adi/bfin_mac.c                |    2 +-
 drivers/net/ethernet/broadcom/bcm63xx_enet.c       |    2 +-
 drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.c   |    2 +-
 drivers/net/ethernet/chelsio/cxgb4/cxgb4_debugfs.c |    2 +-
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c |    4 +-
 drivers/net/ethernet/intel/igb/e1000_phy.c         |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c     |    2 +-
 drivers/net/ethernet/micrel/ksz884x.c              |    8 +-
 .../net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c    |    2 +-
 drivers/net/ethernet/qlogic/qlge/qlge.h            |    4 +-
 drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c    |    8 +-
 drivers/net/ethernet/sfc/mcdi_pcol.h               |    2 +-
 drivers/net/ethernet/sis/sis900.c                  |    2 +-
 drivers/net/usb/kalmia.c                           |    2 +-
 drivers/net/wimax/i2400m/usb-fw.c                  |    2 +-
 drivers/net/wireless/ath/ath9k/ani.c               |    4 +-
 drivers/net/wireless/intel/ipw2x00/ipw2100.c       |    6 +-
 drivers/net/wireless/intel/ipw2x00/ipw2200.c       |    4 +-
 drivers/net/wireless/marvell/mwifiex/wmm.c         |    4 +-
 .../net/wireless/realtek/rtlwifi/rtl8192se/fw.c    |    4 +-
 drivers/net/wireless/rsi/rsi_91x_usb.c             |    2 +-
 drivers/net/wireless/ti/wl18xx/main.c              |    2 +-
 drivers/net/wireless/ti/wlcore/init.c              |    2 +-
 drivers/nfc/pn533/pn533.c                          |    2 +-
 drivers/nvme/host/rdma.c                           |    2 +-
 drivers/parport/parport_pc.c                       |    2 +-
 drivers/pci/quirks.c                               |    2 +-
 drivers/pinctrl/bcm/Kconfig                        |    2 +-
 drivers/power/avs/smartreflex.c                    |    6 +-
 drivers/scsi/aacraid/linit.c                       |    2 +-
 drivers/scsi/aic7xxx/aic79xx_core.c                |    2 +-
 drivers/scsi/bfa/bfi_ms.h                          |    2 +-
 drivers/scsi/fcoe/fcoe_ctlr.c                      |    2 +-
 drivers/scsi/ipr.c                                 |    2 +-
 drivers/scsi/lpfc/lpfc_attr.c                      |    2 +-
 drivers/scsi/lpfc/lpfc_sli.c                       |   18 +-
 drivers/scsi/mpt3sas/mpt3sas_ctl.c                 |    2 +-
 drivers/scsi/mpt3sas/mpt3sas_ctl.h                 |    2 +-
 drivers/scsi/osd/osd_initiator.c                   |    2 +-
 drivers/scsi/scsi_transport_sas.c                  |    2 +-
 drivers/scsi/storvsc_drv.c                         |    2 +-
 drivers/staging/gs_fpgaboot/gs_fpgaboot.h          |    2 +-
 .../lustre/lustre/include/lustre/lustre_idl.h      |    2 +-
 drivers/staging/rtl8192u/ieee80211/ieee80211.h     |    4 +-
 .../staging/rtl8192u/ieee80211/ieee80211_softmac.c |    2 +-
 .../vc04_services/interface/vchiq_arm/vchiq_arm.c  |    4 +-
 drivers/staging/wilc1000/linux_wlan.c              |    2 +-
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c  |    2 +-
 drivers/tty/serial/ioc4_serial.c                   |    2 +-
 drivers/usb/core/devio.c                           |    2 +-
 drivers/usb/gadget/legacy/inode.c                  |    3 +-
 drivers/usb/gadget/udc/fsl_udc_core.c              |    4 +-
 drivers/usb/gadget/udc/renesas_usb3.c              |    4 +-
 drivers/usb/host/xhci.c                            |    4 +-
 drivers/usb/usbip/usbip_common.c                   |    2 +-
 drivers/video/fbdev/aty/radeon_monitor.c           |    2 +-
 drivers/video/fbdev/intelfb/intelfbdrv.c           |    2 +-
 drivers/watchdog/bcm2835_wdt.c                     |    6 +-
 fs/block_dev.c                                     |    2 +-
 fs/btrfs/file.c                                    |    2 +-
 fs/buffer.c                                        |   12 +-
 fs/ceph/addr.c                                     |    2 +-
 fs/direct-io.c                                     |    2 +-
 fs/ecryptfs/kthread.c                              |    2 +-
 fs/ext4/extents_status.c                           |    2 +-
 fs/ext4/inode.c                                    |    6 +-
 fs/ext4/mballoc.c                                  |    2 +-
 fs/ext4/move_extent.c                              |    2 +-
 fs/inode.c                                         |    2 +-
 fs/iomap.c                                         |   10 +-
 fs/jfs/super.c                                     |    4 +-
 fs/mpage.c                                         |    2 +-
 fs/nfsd/blocklayout.c                              |    6 +-
 fs/nilfs2/btnode.c                                 |    2 +-
 fs/nilfs2/inode.c                                  |    4 +-
 fs/nilfs2/mdt.c                                    |    4 +-
 fs/nilfs2/segment.c                                |    2 +-
 fs/ocfs2/aops.c                                    |    2 +-
 fs/ocfs2/dlm/dlmmaster.c                           |    2 +-
 fs/ocfs2/file.c                                    |    2 +-
 fs/orangefs/orangefs-utils.c                       |    4 +-
 fs/reiserfs/file.c                                 |    2 +-
 fs/reiserfs/inode.c                                |    2 +-
 fs/stat.c                                          |    2 +-
 fs/udf/inode.c                                     |    2 +-
 fs/userfaultfd.c                                   |    6 +-
 fs/xfs/xfs_aops.c                                  |   16 +-
 fs/xfs/xfs_file.c                                  |    4 +-
 fs/xfs/xfs_log_recover.c                           |    2 +-
 include/dt-bindings/sound/cs42l42.h                |    2 +-
 include/linux/dcache.h                             |    4 +-
 include/linux/fs.h                                 |    5 +
 include/linux/idr.h                                |  138 ++-
 include/linux/kconfig.h                            |    2 +-
 include/linux/mtd/qinfo.h                          |    2 +-
 include/linux/radix-tree.h                         |   53 +-
 include/linux/regulator/machine.h                  |    2 +-
 include/linux/spi/flash.h                          |    2 +-
 include/media/v4l2-ctrls.h                         |    4 +-
 include/net/cfg80211.h                             |    2 +-
 include/net/irda/timer.h                           |    2 +-
 include/net/mac80211.h                             |    2 +-
 include/xen/interface/grant_table.h                |    2 +-
 init/main.c                                        |    3 +-
 kernel/cgroup/cgroup.c                             |    2 +-
 kernel/events/core.c                               |    2 +-
 kernel/irq/manage.c                                |    2 +-
 kernel/torture.c                                   |    2 +-
 kernel/trace/trace_stack.c                         |    2 +-
 lib/idr.c                                          | 1145 ++++----------------
 lib/radix-tree.c                                   |  347 ++++--
 mm/page-writeback.c                                |    2 +-
 mm/page_alloc.c                                    |    2 +-
 mm/percpu.c                                        |    2 +-
 net/bluetooth/hci_sock.c                           |    6 +-
 net/mac80211/mesh.c                                |    2 +-
 net/netfilter/nfnetlink_cthelper.c                 |    2 +-
 net/netfilter/x_tables.c                           |    2 +-
 net/sctp/transport.c                               |    4 +-
 scripts/recordmcount.pl                            |    2 +-
 scripts/spelling.txt                               |   44 +
 sound/pci/ac97/ac97_patch.c                        |    2 +-
 sound/pci/cs46xx/cs46xx_dsp_task_types.h           |    2 +-
 sound/pci/hda/patch_ca0132.c                       |    2 +-
 sound/pci/ice1712/wm8766.c                         |    2 +-
 sound/pci/ice1712/wm8776.c                         |    2 +-
 sound/ppc/snd_ps3.c                                |    2 +-
 sound/soc/amd/acp-pcm-dma.c                        |    4 +-
 sound/soc/codecs/wm_hubs.c                         |    2 +-
 sound/soc/fsl/fsl_asrc.c                           |    2 +-
 sound/soc/qcom/lpass.h                             |    2 +-
 sound/soc/soc-topology.c                           |    4 +-
 tools/include/linux/spinlock.h                     |    4 +
 tools/lguest/lguest.c                              |    2 +-
 tools/lib/bpf/Makefile                             |    2 +-
 tools/lib/bpf/bpf.c                                |    2 +-
 tools/lib/traceevent/Makefile                      |    2 +-
 tools/lib/traceevent/event-parse.h                 |    2 +-
 tools/perf/Documentation/tips.txt                  |    2 +-
 tools/perf/util/dso.c                              |    2 +-
 tools/perf/util/probe-finder.c                     |    4 +-
 tools/perf/util/sort.h                             |    2 +-
 tools/testing/radix-tree/.gitignore                |    1 +
 tools/testing/radix-tree/Makefile                  |   10 +-
 tools/testing/radix-tree/idr-test.c                |  242 +++++
 tools/testing/radix-tree/linux/export.h            |    1 +
 tools/testing/radix-tree/linux/gfp.h               |    8 +-
 tools/testing/radix-tree/linux/idr.h               |    1 +
 tools/testing/radix-tree/linux/kernel.h            |    2 +
 tools/testing/radix-tree/main.c                    |    6 +
 tools/testing/radix-tree/test.h                    |    2 +
 259 files changed, 1264 insertions(+), 1445 deletions(-)
 create mode 100644 tools/include/linux/spinlock.h
 create mode 100644 tools/testing/radix-tree/idr-test.c
 create mode 100644 tools/testing/radix-tree/linux/idr.h