summaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: 51e08731360b1ffd7ade16977dac08887da9d253 (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
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
$ date -R
Mon, 30 Apr 2018 07:58:38 +1000
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at 3be4aaf4e2d3 Merge branch 'userns-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
Merging origin/master (6da6c0db5316 Linux v4.17-rc3)
$ git merge origin/master
Updating 3be4aaf4e2d3..6da6c0db5316
Fast-forward
 .../bindings/serial/amlogic,meson-uart.txt         |   2 +-
 .../devicetree/bindings/serial/mvebu-uart.txt      |   2 +-
 .../bindings/serial/renesas,sci-serial.txt         |   2 +
 Documentation/devicetree/bindings/usb/usb-xhci.txt |   5 +-
 .../driver-api/firmware/request_firmware.rst       |  16 +-
 Documentation/driver-api/infrastructure.rst        |   2 +-
 Documentation/driver-api/usb/typec.rst             |   2 +-
 Documentation/i2c/dev-interface                    |  32 +-
 Documentation/ioctl/ioctl-number.txt               |   2 -
 Documentation/networking/ip-sysctl.txt             |  15 -
 Documentation/power/suspend-and-cpuhotplug.txt     |   2 +-
 Documentation/process/magic-number.rst             |   3 -
 Documentation/trace/ftrace.rst                     |  14 +-
 Documentation/virtual/kvm/api.txt                  |   9 +-
 Documentation/virtual/kvm/arm/psci.txt             |  30 ++
 MAINTAINERS                                        |  27 +-
 Makefile                                           |   2 +-
 arch/arm/boot/dts/gemini-nas4220b.dts              |  28 +-
 arch/arm/boot/dts/omap4.dtsi                       |   8 +-
 arch/arm/configs/gemini_defconfig                  |  27 +-
 arch/arm/configs/socfpga_defconfig                 |   1 +
 arch/arm/include/asm/kvm_host.h                    |   3 +
 arch/arm/include/uapi/asm/kvm.h                    |   6 +
 arch/arm/kvm/guest.c                               |  13 +
 arch/arm/mach-omap2/Makefile                       |   6 +-
 arch/arm/mach-omap2/pm-asm-offsets.c               |   3 +
 arch/arm/mach-omap2/sleep33xx.S                    |   1 -
 arch/arm/mach-omap2/sleep43xx.S                    |   1 -
 arch/arm/mach-s3c24xx/mach-jive.c                  |   4 +-
 arch/arm64/Makefile                                |   4 +
 .../arm64/boot/dts/amlogic/meson-gx-p23x-q20x.dtsi |   4 +
 .../dts/amlogic/meson-gxl-s905x-libretech-cc.dts   |  12 +
 .../dts/amlogic/meson-gxl-s905x-nexbox-a95x.dts    |   4 +
 .../boot/dts/amlogic/meson-gxl-s905x-p212.dtsi     |   4 +
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi         |  61 ++++
 .../boot/dts/amlogic/meson-gxm-khadas-vim2.dts     |   4 +
 arch/arm64/boot/dts/amlogic/meson-gxm.dtsi         |  17 ++
 arch/arm64/boot/dts/arm/juno-motherboard.dtsi      |   2 -
 .../boot/dts/broadcom/stingray/stingray-sata.dtsi  |  80 ++---
 arch/arm64/include/asm/kvm_host.h                  |   3 +
 arch/arm64/include/asm/module.h                    |   2 +-
 arch/arm64/include/asm/pgtable.h                   |   4 +-
 arch/arm64/include/uapi/asm/kvm.h                  |   6 +
 arch/arm64/kernel/cpufeature.c                     |   1 +
 arch/arm64/kernel/module-plts.c                    |   2 +-
 arch/arm64/kernel/module.c                         |   2 +-
 arch/arm64/kernel/ptrace.c                         |  20 +-
 arch/arm64/kernel/traps.c                          |   3 +-
 arch/arm64/kvm/guest.c                             |  14 +-
 arch/arm64/kvm/sys_regs.c                          |   6 +-
 arch/arm64/lib/Makefile                            |   4 +
 arch/arm64/mm/flush.c                              |   2 +-
 arch/powerpc/include/asm/powernv.h                 |   2 +-
 arch/powerpc/kernel/mce_power.c                    |   7 +-
 arch/powerpc/kernel/smp.c                          |  49 +++-
 arch/powerpc/kvm/booke.c                           |   7 +
 arch/powerpc/mm/mem.c                              |   2 +
 arch/powerpc/platforms/powernv/memtrace.c          |  17 --
 arch/powerpc/platforms/powernv/npu-dma.c           |  88 +++++-
 arch/powerpc/platforms/powernv/opal-rtc.c          |   8 +-
 arch/riscv/Kconfig                                 |   4 +-
 arch/riscv/include/asm/Kbuild                      |   1 -
 arch/riscv/kernel/vdso/Makefile                    |   2 +-
 arch/s390/include/asm/thread_info.h                |   3 +
 arch/s390/kernel/module.c                          |   4 +-
 arch/s390/kernel/perf_cpum_cf_events.c             |   8 +-
 arch/s390/kernel/process.c                         |  10 +
 arch/s390/kernel/uprobes.c                         |   9 +
 arch/x86/Kconfig                                   |   4 +
 arch/x86/entry/entry_64_compat.S                   |   8 +-
 arch/x86/events/intel/core.c                       |   9 +-
 arch/x86/include/asm/cpufeatures.h                 |   1 +
 arch/x86/include/asm/ftrace.h                      |  19 +-
 arch/x86/include/asm/irq_vectors.h                 |   7 -
 arch/x86/include/asm/jailhouse_para.h              |   2 +-
 arch/x86/include/asm/pgtable.h                     |   5 +
 arch/x86/include/asm/pgtable_64_types.h            |   8 +-
 arch/x86/include/uapi/asm/msgbuf.h                 |  31 ++
 arch/x86/include/uapi/asm/shmbuf.h                 |  42 +++
 arch/x86/kernel/cpu/intel.c                        |   3 +
 arch/x86/kernel/cpu/microcode/core.c               |   6 +-
 arch/x86/kernel/cpu/microcode/intel.c              |   2 -
 arch/x86/kernel/jailhouse.c                        |   2 +-
 arch/x86/kernel/setup.c                            |   6 +
 arch/x86/kernel/smpboot.c                          |   2 +
 arch/x86/kvm/vmx.c                                 |  14 +-
 arch/x86/kvm/x86.h                                 |   7 -
 arch/x86/mm/pageattr.c                             |  44 ++-
 arch/x86/mm/pti.c                                  |  26 +-
 block/bfq-iosched.c                                |  10 +-
 block/blk-cgroup.c                                 |  28 +-
 block/blk-core.c                                   |  15 +-
 block/blk-mq.c                                     |  41 ++-
 block/blk-mq.h                                     |   3 +
 crypto/api.c                                       |  11 +-
 crypto/drbg.c                                      |   2 +
 drivers/acpi/acpi_video.c                          |  27 +-
 drivers/acpi/acpi_watchdog.c                       |  59 +++-
 drivers/acpi/button.c                              |  24 +-
 drivers/acpi/scan.c                                |   2 +-
 drivers/acpi/sleep.c                               |  13 +
 drivers/amba/bus.c                                 |  17 +-
 drivers/android/binder.c                           |   8 +
 drivers/base/dma-coherent.c                        |   5 +-
 drivers/base/dma-mapping.c                         |   6 +-
 drivers/base/firmware_loader/fallback.c            |   4 +-
 drivers/base/firmware_loader/fallback.h            |   2 +-
 drivers/block/loop.c                               |  64 ++--
 drivers/block/loop.h                               |   1 -
 drivers/block/swim.c                               |  49 ++--
 drivers/block/swim3.c                              |   6 +-
 drivers/bus/Kconfig                                |   1 +
 drivers/cdrom/cdrom.c                              |   2 +-
 drivers/char/random.c                              |  48 ++-
 drivers/char/virtio_console.c                      | 157 +++++-----
 drivers/cpufreq/Kconfig.arm                        |  10 -
 drivers/cpufreq/brcmstb-avs-cpufreq.c              | 323 +--------------------
 drivers/cpufreq/powernv-cpufreq.c                  |  14 +-
 drivers/firmware/arm_scmi/clock.c                  |   2 +-
 drivers/fpga/altera-ps-spi.c                       |   2 +-
 drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c              |   7 +-
 drivers/gpu/drm/amd/amdkfd/Kconfig                 |   1 +
 drivers/gpu/drm/amd/amdkfd/kfd_chardev.c           |  17 +-
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  |  10 +-
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c  |   5 +-
 .../amd/display/amdgpu_dm/amdgpu_dm_mst_types.c    |  54 ++--
 drivers/gpu/drm/drm_edid.c                         |  11 +-
 drivers/gpu/drm/i915/intel_cdclk.c                 |  16 +-
 drivers/gpu/drm/i915/intel_drv.h                   |   4 +-
 drivers/gpu/drm/i915/intel_fbdev.c                 |   2 +-
 drivers/gpu/drm/i915/intel_runtime_pm.c            |  11 +-
 drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c          |   1 +
 drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c          |   1 +
 drivers/gpu/drm/msm/disp/mdp_format.c              |   3 +-
 drivers/gpu/drm/msm/disp/mdp_kms.h                 |   2 +-
 drivers/gpu/drm/msm/dsi/dsi_host.c                 |  16 +-
 drivers/gpu/drm/msm/dsi/phy/dsi_phy.c              | 109 +++++++
 drivers/gpu/drm/msm/dsi/phy/dsi_phy.h              |   2 +
 drivers/gpu/drm/msm/dsi/phy/dsi_phy_10nm.c         |  28 --
 drivers/gpu/drm/msm/msm_fb.c                       |   3 +-
 drivers/gpu/drm/msm/msm_fbdev.c                    |  11 +-
 drivers/gpu/drm/msm/msm_gem.c                      |  20 +-
 drivers/gpu/drm/msm/msm_kms.h                      |   5 +-
 drivers/gpu/drm/qxl/qxl_cmd.c                      |   6 +-
 drivers/gpu/drm/qxl/qxl_drv.h                      |   1 +
 drivers/gpu/drm/qxl/qxl_ioctl.c                    |   4 +-
 drivers/gpu/drm/qxl/qxl_release.c                  |  18 +-
 drivers/gpu/drm/sun4i/sun4i_lvds.c                 |  55 ----
 drivers/gpu/drm/virtio/virtgpu_vq.c                |   4 +-
 drivers/hwmon/k10temp.c                            |  17 +-
 drivers/hwmon/nct6683.c                            |   4 +-
 drivers/hwmon/scmi-hwmon.c                         |   5 +-
 drivers/i2c/busses/Kconfig                         |   3 -
 drivers/i2c/busses/i2c-sprd.c                      |  22 +-
 drivers/i2c/i2c-dev.c                              |   2 +-
 drivers/input/evdev.c                              |   7 +-
 drivers/memory/emif-asm-offsets.c                  |  72 +----
 drivers/message/fusion/mptsas.c                    |   1 +
 drivers/mtd/chips/cfi_cmdset_0001.c                |  33 ++-
 drivers/mtd/chips/cfi_cmdset_0002.c                |   9 +-
 drivers/mtd/nand/core.c                            |   3 -
 drivers/mtd/nand/raw/marvell_nand.c                |  25 +-
 drivers/mtd/nand/raw/tango_nand.c                  |   2 +-
 drivers/mtd/spi-nor/cadence-quadspi.c              |  19 +-
 drivers/of/fdt.c                                   |   7 +-
 drivers/pci/dwc/pcie-kirin.c                       |   2 +-
 drivers/pci/host/pci-aardvark.c                    |  53 ++--
 drivers/pci/pci-driver.c                           |   5 +-
 drivers/pci/pci.c                                  |   4 +-
 drivers/rtc/rtc-opal.c                             |  37 ++-
 drivers/s390/block/dasd_alias.c                    |  13 +-
 drivers/s390/cio/chsc.c                            |  14 +-
 drivers/s390/cio/vfio_ccw_fsm.c                    |  19 +-
 drivers/scsi/fnic/fnic_trace.c                     |   2 +-
 drivers/scsi/megaraid/megaraid_sas_fusion.c        |   6 +-
 drivers/scsi/scsi_debug.c                          |  33 ++-
 drivers/scsi/scsi_transport_iscsi.c                |  29 +-
 drivers/scsi/sd.c                                  |   2 +
 drivers/scsi/sd_zbc.c                              | 140 +++++----
 drivers/scsi/ufs/ufshcd.c                          |  40 +++
 drivers/slimbus/messaging.c                        |   2 +-
 drivers/soc/bcm/raspberrypi-power.c                |   2 +-
 drivers/staging/wilc1000/host_interface.c          |   2 +-
 drivers/target/target_core_pscsi.c                 |   2 +
 drivers/tty/n_gsm.c                                |  23 +-
 drivers/tty/serial/earlycon.c                      |   6 +-
 drivers/tty/serial/imx.c                           |  19 +-
 drivers/tty/serial/mvebu-uart.c                    |   1 -
 drivers/tty/serial/qcom_geni_serial.c              |  10 +-
 drivers/tty/serial/xilinx_uartps.c                 |   2 +-
 drivers/tty/tty_io.c                               |   5 +-
 drivers/tty/tty_ldisc.c                            |  29 +-
 drivers/uio/uio_hv_generic.c                       |  72 ++---
 drivers/usb/Kconfig                                |   1 +
 drivers/usb/core/hcd.c                             |  19 +-
 drivers/usb/core/hub.c                             |  10 +-
 drivers/usb/core/phy.c                             |  93 ++++--
 drivers/usb/core/phy.h                             |  22 +-
 drivers/usb/core/quirks.c                          |   3 +
 drivers/usb/host/xhci-dbgtty.c                     |   8 +-
 drivers/usb/host/xhci-pci.c                        |   5 +-
 drivers/usb/host/xhci-plat.c                       |  32 +-
 drivers/usb/host/xhci.h                            |   3 +-
 drivers/usb/musb/musb_dsps.c                       |   2 -
 drivers/usb/musb/musb_host.c                       |   1 +
 drivers/usb/serial/Kconfig                         |   1 +
 drivers/usb/serial/cp210x.c                        |   1 +
 drivers/usb/serial/ftdi_sio.c                      |   3 +-
 drivers/usb/serial/usb-serial-simple.c             |   7 +
 drivers/usb/typec/ucsi/Makefile                    |   2 +-
 drivers/usb/typec/ucsi/ucsi.c                      |   2 +-
 drivers/usb/usbip/stub_main.c                      |   5 +
 drivers/usb/usbip/usbip_common.h                   |   2 +-
 drivers/usb/usbip/usbip_event.c                    |   4 -
 drivers/usb/usbip/vhci_hcd.c                       |  13 +
 drivers/virt/vboxguest/vboxguest_core.c            |  70 +++--
 drivers/virt/vboxguest/vboxguest_core.h            |   9 +
 drivers/virt/vboxguest/vboxguest_linux.c           |  19 +-
 drivers/virt/vboxguest/vboxguest_utils.c           |  17 +-
 fs/ceph/xattr.c                                    |  28 +-
 fs/cifs/cifssmb.c                                  |   3 +
 fs/cifs/connect.c                                  |  32 +-
 fs/cifs/smb2ops.c                                  |  18 +-
 fs/cifs/smb2pdu.c                                  |  13 +-
 fs/cifs/smb2pdu.h                                  |   2 +-
 fs/cifs/smbdirect.c                                |  36 +--
 fs/cifs/transport.c                                |   9 +-
 fs/ext4/balloc.c                                   |   9 +-
 fs/ext4/extents.c                                  |  16 +-
 fs/ext4/super.c                                    |   1 +
 fs/jbd2/transaction.c                              |   1 +
 include/asm-generic/vmlinux.lds.h                  |   2 +-
 include/kvm/arm_psci.h                             |  16 +-
 include/linux/blk-mq.h                             |   3 +
 include/linux/blkdev.h                             |   6 +
 include/linux/device.h                             |   6 +-
 include/linux/fsnotify_backend.h                   |   4 +-
 include/linux/hrtimer.h                            |   2 +
 include/linux/mtd/flashchip.h                      |   1 +
 include/linux/serial_core.h                        |  21 +-
 include/linux/stringhash.h                         |   4 +-
 include/linux/ti-emif-sram.h                       |  75 +++++
 include/linux/timekeeper_internal.h                |   2 -
 include/linux/timekeeping.h                        |  37 ++-
 include/linux/tty.h                                |   2 +-
 include/linux/vbox_utils.h                         |  23 --
 include/linux/virtio.h                             |   3 +
 include/scsi/scsi_dbg.h                            |   2 -
 include/soc/bcm2835/raspberrypi-firmware.h         |   4 +-
 include/sound/control.h                            |   7 +-
 include/trace/events/ufs.h                         |  27 ++
 include/trace/events/workqueue.h                   |   2 +
 include/uapi/linux/kvm.h                           |   7 +
 include/uapi/linux/sysctl.h                        |  18 --
 include/uapi/linux/time.h                          |   1 -
 include/uapi/linux/virtio_balloon.h                |  15 +
 kernel/kprobes.c                                   |   2 +-
 kernel/module.c                                    |   3 +-
 kernel/sysctl_binary.c                             |  20 +-
 kernel/time/hrtimer.c                              |  16 +-
 kernel/time/posix-stubs.c                          |   2 -
 kernel/time/posix-timers.c                         |  26 +-
 kernel/time/tick-common.c                          |  15 -
 kernel/time/tick-internal.h                        |   6 -
 kernel/time/tick-sched.c                           |  19 +-
 kernel/time/timekeeping.c                          |  78 +++--
 kernel/time/timekeeping.h                          |   1 +
 kernel/trace/trace.c                               |   2 +-
 kernel/trace/trace_entries.h                       |   2 +-
 kernel/trace/trace_events_filter.c                 |  14 +-
 lib/dma-direct.c                                   |   3 +-
 lib/kobject.c                                      |  11 +-
 mm/mmap.c                                          |  11 +-
 net/ceph/messenger.c                               |   7 +
 net/ceph/mon_client.c                              |  14 +-
 sound/core/control.c                               |   2 +-
 sound/core/pcm_compat.c                            |   7 +-
 sound/core/pcm_native.c                            |  30 +-
 sound/core/seq/oss/seq_oss_event.c                 |  15 +-
 sound/core/seq/oss/seq_oss_midi.c                  |   2 +
 sound/core/seq/oss/seq_oss_synth.c                 |  85 +++---
 sound/core/seq/oss/seq_oss_synth.h                 |   3 +-
 sound/drivers/opl3/opl3_synth.c                    |   7 +-
 sound/firewire/dice/dice-stream.c                  |   2 +-
 sound/firewire/dice/dice.c                         |   2 +-
 sound/pci/asihpi/hpimsginit.c                      |  13 +-
 sound/pci/asihpi/hpioctl.c                         |   4 +-
 sound/pci/hda/hda_hwdep.c                          |  12 +-
 sound/pci/hda/patch_hdmi.c                         |   9 +-
 sound/pci/hda/patch_realtek.c                      |   5 +
 sound/pci/rme9652/hdspm.c                          |  24 +-
 sound/pci/rme9652/rme9652.c                        |   6 +-
 sound/soc/amd/acp-da7219-max98357a.c               |   2 +-
 sound/soc/codecs/adau17x1.c                        |  26 +-
 sound/soc/codecs/adau17x1.h                        |   3 +-
 sound/soc/codecs/msm8916-wcd-analog.c              |   9 +-
 sound/soc/codecs/rt5514.c                          |   3 +
 sound/soc/fsl/fsl_esai.c                           |   7 +
 sound/soc/fsl/fsl_ssi.c                            |  14 +-
 sound/soc/intel/Kconfig                            |  22 +-
 sound/soc/omap/omap-dmic.c                         |  14 +-
 sound/soc/sh/rcar/core.c                           |   4 +-
 sound/soc/soc-topology.c                           |  14 +-
 sound/usb/mixer.c                                  |   7 +-
 sound/usb/mixer_maps.c                             |   3 +
 sound/usb/stream.c                                 |   2 +-
 sound/usb/usx2y/us122l.c                           |   2 +-
 sound/usb/usx2y/usX2Yhwdep.c                       |   2 +-
 sound/usb/usx2y/usx2yhwdeppcm.c                    |   2 +-
 tools/perf/Documentation/perf-mem.txt              |  41 ++-
 tools/perf/arch/s390/util/auxtrace.c               |   1 +
 tools/perf/arch/s390/util/header.c                 |  18 --
 tools/perf/builtin-stat.c                          |  40 ++-
 tools/perf/pmu-events/arch/s390/mapfile.csv        |  10 +-
 tools/perf/tests/attr/test-record-group-sampling   |   3 +
 .../tests/shell/record+probe_libc_inet_pton.sh     |   6 +-
 tools/perf/util/evsel.c                            |  18 +-
 tools/perf/util/evsel.h                            |   1 +
 tools/perf/util/machine.c                          |  30 +-
 tools/perf/util/parse-events.y                     |   8 +-
 tools/perf/util/pmu.c                              |  22 +-
 tools/testing/selftests/firmware/Makefile          |   1 +
 tools/testing/selftests/firmware/fw_lib.sh         |  10 +-
 tools/testing/selftests/firmware/fw_run_tests.sh   |   2 +-
 .../inter-event/trigger-extended-error-support.tc  |   2 +-
 .../inter-event/trigger-multi-actions-accept.tc    |  44 +++
 tools/testing/selftests/x86/test_syscall_vdso.c    |  35 ++-
 virt/kvm/arm/arm.c                                 |  15 +-
 virt/kvm/arm/psci.c                                |  60 ++++
 virt/kvm/arm/vgic/vgic-mmio-v2.c                   |   5 +
 virt/kvm/arm/vgic/vgic.c                           |  22 +-
 331 files changed, 3053 insertions(+), 1955 deletions(-)
 create mode 100644 Documentation/virtual/kvm/arm/psci.txt
 create mode 100644 tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-multi-actions-accept.tc
Merging fixes/master (147a89bc71e7 Merge tag 'kconfig-v4.17' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild)
$ git merge fixes/master
Already up to date.
Merging kbuild-current/fixes (6d08b06e67cd Linux 4.17-rc2)
$ git merge kbuild-current/fixes
Already up to date.
Merging arc-current/for-curr (661e50bc8532 Linux 4.16-rc4)
$ git merge arc-current/for-curr
Already up to date.
Merging arm-current/fixes (30cfae461581 ARM: replace unnecessary perl with sed and the shell $(( )) operator)
$ git merge arm-current/fixes
Merge made by the 'recursive' strategy.
 arch/arm/boot/compressed/Makefile |  8 +++-----
 arch/arm/boot/compressed/head.S   | 20 ++++++++++----------
 arch/arm/kernel/machine_kexec.c   | 36 +++++++++++++++++++++++-------------
 3 files changed, 36 insertions(+), 28 deletions(-)
Merging arm64-fixes/for-next/fixes (3789c122d0a0 arm64: avoid instrumenting atomic_ll_sc.o)
$ git merge arm64-fixes/for-next/fixes
Already up to date.
Merging m68k-current/for-linus (ecd685580c8f m68k/mac: Remove bogus "FIXME" comment)
$ git merge m68k-current/for-linus
Already up to date.
Merging powerpc-fixes/fixes (b2d7ecbe3556 powerpc/kvm/booke: Fix altivec related build break)
$ git merge powerpc-fixes/fixes
Already up to date.
Merging sparc/master (17dec0a94915 Merge branch 'userns-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace)
$ git merge sparc/master
Already up to date.
Merging fscrypt-current/for-stable (ae64f9bd1d36 Linux 4.15-rc2)
$ git merge fscrypt-current/for-stable
Already up to date.
Merging net/master (1d39fd1bedbd Merge branch 'sfc-more-ARFS-fixes')
$ git merge net/master
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/bpf/bpf_devel_QA.txt                 |  10 +-
 MAINTAINERS                                        |   1 +
 arch/x86/net/bpf_jit_comp.c                        |  12 ++-
 drivers/infiniband/hw/mlx5/main.c                  |   2 +-
 drivers/net/ethernet/broadcom/bcmsysport.c         |  16 ++-
 drivers/net/ethernet/marvell/mvpp2.c               |  30 ++++--
 drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c |   8 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.c   |   5 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c    |   3 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_tx.c    |  20 ++--
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  |  26 +++--
 .../ethernet/mellanox/mlxsw/spectrum_switchdev.c   |  12 +--
 drivers/net/ethernet/netronome/nfp/flower/main.c   |   2 +-
 drivers/net/ethernet/netronome/nfp/nfp_app_nic.c   |   2 +-
 drivers/net/ethernet/netronome/nfp/nfp_main.h      |   4 +-
 drivers/net/ethernet/netronome/nfp/nfp_net_main.c  |  31 +++---
 drivers/net/ethernet/sfc/ef10.c                    |   5 +-
 drivers/net/ethernet/sfc/rx.c                      |   2 +
 drivers/net/phy/phy_device.c                       |  11 +-
 drivers/net/usb/qmi_wwan.c                         |   1 +
 .../broadcom/brcm80211/brcmfmac/firmware.c         |  36 ++++---
 drivers/net/wireless/intel/iwlwifi/fw/api/scan.h   |  13 +--
 drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c | 111 ++++++++++++++++++---
 drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.h |   6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c  |   3 +-
 .../realtek/rtlwifi/btcoexist/halbtcoutsrc.c       |  15 ---
 .../net/wireless/realtek/rtlwifi/rtl8723be/hw.c    |  11 +-
 drivers/net/wireless/realtek/rtlwifi/wifi.h        |   5 +
 include/linux/bpf.h                                |   4 +-
 include/linux/mlx5/driver.h                        |  12 +--
 kernel/bpf/arraymap.c                              |   3 +-
 kernel/bpf/sockmap.c                               |  51 +++++++++-
 kernel/bpf/syscall.c                               |   4 +-
 net/compat.c                                       |   6 +-
 net/core/filter.c                                  |   1 +
 net/ipv4/tcp.c                                     |   3 +-
 net/rds/ib_cm.c                                    |   3 +-
 net/sctp/ipv6.c                                    |   3 +
 net/sctp/stream.c                                  |   2 +
 net/smc/af_smc.c                                   |   4 -
 net/tipc/node.c                                    |   2 +-
 samples/sockmap/Makefile                           |   7 +-
 tools/bpf/Makefile                                 |   2 +
 tools/testing/selftests/net/Makefile               |   3 +-
 44 files changed, 356 insertions(+), 157 deletions(-)
Merging bpf/master (815425567dea bpf: fix uninitialized variable in bpf tools)
$ git merge bpf/master
Merge made by the 'recursive' strategy.
 tools/bpf/bpf_dbg.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
Merging ipsec/master (b48c05ab5d32 xfrm: Fix warning in xfrm6_tunnel_net_exit.)
$ git merge ipsec/master
Merge made by the 'recursive' strategy.
 include/net/xfrm.h      |  1 +
 net/ipv6/xfrm6_tunnel.c |  3 +++
 net/key/af_key.c        | 45 +++++++++++++++++++++++++++++++++++----------
 net/xfrm/xfrm_state.c   |  6 ++++++
 4 files changed, 45 insertions(+), 10 deletions(-)
Merging netfilter/master (2f99aa31cd7a netfilter: nf_tables: skip synchronize_rcu if transaction log is empty)
$ git merge netfilter/master
Merge made by the 'recursive' strategy.
 include/uapi/linux/netfilter/nf_conntrack_tcp.h |  3 +++
 net/netfilter/nf_conntrack_proto_tcp.c          | 11 +++++++++++
 net/netfilter/nf_tables_api.c                   | 25 +++++++++++++++++--------
 net/netfilter/x_tables.c                        |  6 ++++++
 4 files changed, 37 insertions(+), 8 deletions(-)
Merging ipvs/master (765cca91b895 netfilter: conntrack: include kmemleak.h for kmemleak_not_leak())
$ git merge ipvs/master
Already up to date.
Merging wireless-drivers/master (af8a41cccf8f rtlwifi: cleanup 8723be ant_sel definition)
$ git merge wireless-drivers/master
Already up to date.
Merging mac80211/master (2f0605a697f4 nl80211: Free connkeys on external authentication failure)
$ git merge mac80211/master
Merge made by the 'recursive' strategy.
 include/uapi/linux/nl80211.h | 2 ++
 net/mac80211/mlme.c          | 2 +-
 net/wireless/core.c          | 3 +++
 net/wireless/nl80211.c       | 1 +
 net/wireless/reg.c           | 1 +
 5 files changed, 8 insertions(+), 1 deletion(-)
Merging rdma-fixes/for-rc (dc5640f294e4 IB/core: Fix deleting default GIDs when changing mac adddress)
$ git merge rdma-fixes/for-rc
Auto-merging drivers/infiniband/hw/mlx5/main.c
Merge made by the 'recursive' strategy.
 drivers/infiniband/core/cache.c                    | 55 ++++++++++++++--------
 drivers/infiniband/core/roce_gid_mgmt.c            | 26 +++++-----
 drivers/infiniband/core/ucma.c                     | 44 ++++++++++-------
 .../infiniband/core/uverbs_std_types_flow_action.c | 12 ++---
 drivers/infiniband/hw/mlx5/Kconfig                 |  1 +
 drivers/infiniband/hw/mlx5/main.c                  |  1 -
 include/uapi/linux/if_infiniband.h                 |  2 +-
 include/uapi/linux/rds.h                           |  2 +-
 include/uapi/linux/tls.h                           |  2 +-
 include/uapi/rdma/cxgb3-abi.h                      |  2 +-
 include/uapi/rdma/cxgb4-abi.h                      |  2 +-
 include/uapi/rdma/hns-abi.h                        |  2 +-
 include/uapi/rdma/ib_user_cm.h                     |  2 +-
 include/uapi/rdma/ib_user_ioctl_verbs.h            |  2 +-
 include/uapi/rdma/ib_user_mad.h                    |  2 +-
 include/uapi/rdma/ib_user_sa.h                     |  2 +-
 include/uapi/rdma/ib_user_verbs.h                  |  2 +-
 include/uapi/rdma/mlx4-abi.h                       |  2 +-
 include/uapi/rdma/mlx5-abi.h                       |  2 +-
 include/uapi/rdma/mthca-abi.h                      |  2 +-
 include/uapi/rdma/nes-abi.h                        |  2 +-
 include/uapi/rdma/qedr-abi.h                       |  2 +-
 include/uapi/rdma/rdma_user_cm.h                   |  2 +-
 include/uapi/rdma/rdma_user_ioctl.h                |  2 +-
 include/uapi/rdma/rdma_user_rxe.h                  |  2 +-
 25 files changed, 103 insertions(+), 74 deletions(-)
Merging sound-current/for-linus (52759c096351 ALSA: dice: fix kernel NULL pointer dereference due to invalid calculation for array index)
$ git merge sound-current/for-linus
Merge made by the 'recursive' strategy.
 sound/core/seq/seq_virmidi.c  | 4 ++--
 sound/firewire/amdtp-stream.c | 5 +++--
 sound/pci/hda/patch_realtek.c | 2 +-
 3 files changed, 6 insertions(+), 5 deletions(-)
Merging pci-current/for-linus (0cf22d6b317c PCI: Add "PCIe" to pcie_print_link_status() messages)
$ git merge pci-current/for-linus
Already up to date.
Merging driver-core.current/driver-core-linus (b93815d0f37e firmware: some documentation fixes)
$ git merge driver-core.current/driver-core-linus
Already up to date.
Merging tty.current/tty-linus (bcdd0ca8cb87 tty: Use __GFP_NOFAIL for tty_ldisc_get())
$ git merge tty.current/tty-linus
Already up to date.
Merging usb.current/usb-linus (573a09487375 Merge tag 'usb-serial-4.17-rc3' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus)
$ git merge usb.current/usb-linus
Already up to date.
Merging usb-gadget-fixes/fixes (ed769520727e usb: gadget: composite Allow for larger configuration descriptors)
$ git merge usb-gadget-fixes/fixes
Merge made by the 'recursive' strategy.
 drivers/usb/dwc2/core.h                |  2 ++
 drivers/usb/dwc2/gadget.c              | 21 +++++++++++++++++++++
 drivers/usb/dwc2/hcd.c                 | 13 ++++++++-----
 drivers/usb/dwc2/pci.c                 |  4 +++-
 drivers/usb/dwc3/gadget.c              |  4 ++--
 drivers/usb/gadget/function/f_phonet.c |  2 +-
 include/linux/usb/composite.h          |  2 +-
 7 files changed, 38 insertions(+), 10 deletions(-)
Merging usb-serial-fixes/usb-linus (470b5d6f0cf4 USB: serial: ftdi_sio: use jtag quirk for Arrow USB Blaster)
$ git merge usb-serial-fixes/usb-linus
Already up to date.
Merging usb-chipidea-fixes/ci-for-usb-stable (964728f9f407 USB: chipidea: msm: fix ulpi-node lookup)
$ git merge usb-chipidea-fixes/ci-for-usb-stable
Already up to date.
Merging phy/fixes (60cc43fc8884 Linux 4.17-rc1)
$ git merge phy/fixes
Already up to date.
Merging staging.current/staging-linus (b00e2fd10429 staging: wilc1000: fix NULL pointer exception in host_int_parse_assoc_resp_info())
$ git merge staging.current/staging-linus
Already up to date.
Merging char-misc.current/char-misc-linus (6a7228d90d42 ARM: amba: Fix race condition with driver_override)
$ git merge char-misc.current/char-misc-linus
Already up to date.
Merging input-current/for-linus (596ea7aad431 MAINTAINERS: Rakesh Iyer can't be reached anymore)
$ git merge input-current/for-linus
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                       | 1 -
 drivers/input/input-leds.c        | 8 ++++----
 drivers/input/mouse/alps.c        | 2 +-
 drivers/input/rmi4/rmi_spi.c      | 7 +++++--
 drivers/input/touchscreen/Kconfig | 2 +-
 5 files changed, 11 insertions(+), 9 deletions(-)
Merging crypto-current/master (eea0d3ea7546 crypto: drbg - set freed buffers to NULL)
$ git merge crypto-current/master
Already up to date.
Merging ide/master (8e44e6600caa Merge branch 'KASAN-read_word_at_a_time')
$ git merge ide/master
Already up to date.
Merging vfio-fixes/for-linus (834814e80268 Revert: "vfio-pci: Mask INTx if a device is not capabable of enabling it")
$ git merge vfio-fixes/for-linus
Already up to date.
Merging kselftest-fixes/fixes (a33554401e47 selftests: Fix lib.mk run_tests target shell script)
$ git merge kselftest-fixes/fixes
Merge made by the 'recursive' strategy.
 tools/testing/selftests/lib.mk | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
Merging modules-fixes/modules-linus (be71eda5383f module: Fix display of wrong module .text address)
$ git merge modules-fixes/modules-linus
Already up to date.
Merging backlight-fixes/for-backlight-fixes (8ff5cbc6e3c5 backlight: as3711_bl: fix device-tree node leaks)
$ git merge backlight-fixes/for-backlight-fixes
Merge made by the 'recursive' strategy.
 drivers/video/backlight/as3711_bl.c   | 45 ++++++++++++++++++++++-------------
 drivers/video/backlight/max8925_bl.c  |  4 +++-
 drivers/video/backlight/tps65217_bl.c |  4 ++--
 include/linux/mfd/as3711.h            |  4 ++--
 4 files changed, 36 insertions(+), 21 deletions(-)
Merging nand-fixes/nand/fixes (ee02f73e04c0 mtd: nand: atmel: Fix EDO mode check)
$ git merge nand-fixes/nand/fixes
Already up to date.
Merging spi-nor-fixes/spi-nor/fixes (7928b2cbe55b Linux 4.16-rc1)
$ git merge spi-nor-fixes/spi-nor/fixes
Already up to date.
Merging mfd-fixes/for-mfd-fixes (107b7d9fa94c mfd: rtsx: Release IRQ during shutdown)
$ git merge mfd-fixes/for-mfd-fixes
Already up to date.
Merging v4l-dvb-fixes/fixes (f017ca642e8a media: imx-media-csi: Fix inconsistent IS_ERR and PTR_ERR)
$ git merge v4l-dvb-fixes/fixes
Removing drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/mmu_private.h
Merge made by the 'recursive' strategy.
 drivers/media/cec/cec-pin-error-inj.c              |  10 +-
 drivers/media/cec/cec-pin.c                        |   2 +-
 drivers/media/dvb-core/dvb_frontend.c              |  23 +-
 drivers/media/pci/ddbridge/ddbridge-core.c         |  85 +--
 drivers/media/pci/mantis/mantis_uart.c             |   7 +
 drivers/media/platform/Kconfig                     |   4 +-
 drivers/media/platform/davinci/Kconfig             |   6 +-
 drivers/media/platform/davinci/isif.c              |   4 +-
 drivers/media/platform/davinci/vpbe.c              |  38 +-
 drivers/media/platform/davinci/vpbe_display.c      |  33 +-
 drivers/media/platform/davinci/vpbe_osd.c          |  21 +-
 drivers/media/platform/davinci/vpbe_venc.c         |   9 +-
 drivers/media/platform/exynos4-is/Kconfig          |   4 +-
 drivers/media/platform/fsl-viu.c                   |  63 +-
 drivers/media/platform/marvell-ccic/Kconfig        |   5 +-
 drivers/media/platform/marvell-ccic/mmp-driver.c   |   6 +-
 drivers/media/platform/omap/Kconfig                |   8 +-
 drivers/media/platform/omap/omap_vout.c            |  17 +-
 drivers/media/platform/omap/omap_vout_vrfb.c       |   4 +-
 drivers/media/platform/omap3isp/isp.c              |  14 +-
 drivers/media/platform/omap3isp/ispccdc.c          |   2 +-
 drivers/media/platform/omap3isp/isppreview.c       |   2 +-
 drivers/media/platform/omap3isp/ispstat.c          |   6 +-
 drivers/media/platform/rcar-vin/rcar-v4l2.c        |   4 +-
 drivers/media/radio/Kconfig                        |   4 -
 drivers/media/radio/si470x/Kconfig                 |  16 +-
 drivers/media/radio/si470x/Makefile                |   8 +-
 drivers/media/radio/si470x/radio-si470x-common.c   |  70 +-
 drivers/media/radio/si470x/radio-si470x-i2c.c      |  24 +-
 drivers/media/radio/si470x/radio-si470x-usb.c      |  18 +-
 drivers/media/radio/si470x/radio-si470x.h          |  15 +-
 drivers/media/rc/st_rc.c                           |  16 +-
 drivers/media/usb/cx231xx/cx231xx-cards.c          |   3 +
 drivers/media/v4l2-core/v4l2-compat-ioctl32.c      | 807 +++++++++++++--------
 drivers/media/v4l2-core/v4l2-fwnode.c              |  28 +-
 .../media/atomisp/pci/atomisp2/atomisp_acc.c       |   8 +-
 .../media/atomisp/pci/atomisp2/atomisp_cmd.c       |   9 +-
 .../media/atomisp/pci/atomisp2/atomisp_compat.h    |   2 +-
 .../atomisp/pci/atomisp2/atomisp_compat_css20.c    |   2 +-
 .../atomisp/pci/atomisp2/atomisp_compat_ioctl32.c  |  92 +--
 .../media/atomisp/pci/atomisp2/atomisp_fops.c      |   6 +-
 .../media/atomisp/pci/atomisp2/atomisp_ioctl.c     |   5 +-
 .../css2400/hive_isp_css_common/host/mmu.c         |   4 -
 .../css2400/hive_isp_css_common/host/mmu_private.h |  44 --
 .../css2400/hive_isp_css_include/host/mmu_public.h |  22 +-
 .../memory_access/memory_access.h                  |   2 +-
 .../css2400/hive_isp_css_include/mmu_device.h      |   8 -
 .../pci/atomisp2/css2400/ia_css_frame_public.h     |   2 +-
 .../pci/atomisp2/css2400/ia_css_memory_access.c    |   4 +-
 .../isp/kernels/eed1_8/ia_css_eed1_8.host.c        |  16 +-
 .../pci/atomisp2/css2400/runtime/frame/src/frame.c |   2 +-
 .../atomisp/pci/atomisp2/css2400/sh_css_frac.h     |   2 +-
 .../staging/media/atomisp/pci/atomisp2/hmm/hmm.c   |   2 +-
 .../media/atomisp/pci/atomisp2/hmm/hmm_bo.c        |   6 +-
 .../atomisp/pci/atomisp2/hrt/hive_isp_css_mm_hrt.c |  22 +-
 .../atomisp/pci/atomisp2/hrt/hive_isp_css_mm_hrt.h |  11 +-
 .../media/atomisp/pci/atomisp2/include/hmm/hmm.h   |   2 +-
 .../atomisp/pci/atomisp2/include/hmm/hmm_bo.h      |   2 +-
 .../platform/intel-mid/atomisp_gmin_platform.c     |   6 -
 drivers/staging/media/davinci_vpfe/Kconfig         |   3 +-
 drivers/staging/media/davinci_vpfe/Makefile        |   5 +
 drivers/staging/media/davinci_vpfe/TODO            |   1 +
 drivers/staging/media/davinci_vpfe/dm365_ipipe.c   | 143 ++--
 .../staging/media/davinci_vpfe/dm365_ipipe_hw.c    |  19 +-
 drivers/staging/media/davinci_vpfe/dm365_ipipeif.c |  14 +-
 drivers/staging/media/davinci_vpfe/dm365_isif.c    |   9 +-
 drivers/staging/media/davinci_vpfe/dm365_resizer.c |  13 +-
 .../staging/media/davinci_vpfe/vpfe_mc_capture.c   |   2 +-
 drivers/staging/media/davinci_vpfe/vpfe_video.c    |   4 +-
 drivers/staging/media/imx/imx-media-csi.c          |   2 +-
 drivers/staging/media/omap4iss/Kconfig             |   3 +-
 drivers/video/fbdev/omap2/Kconfig                  |   2 +-
 include/linux/platform_data/media/mmp-camera.h     |  19 +
 73 files changed, 1041 insertions(+), 865 deletions(-)
 delete mode 100644 drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/mmu_private.h
Merging reset-fixes/reset/fixes (e6914365fd28 reset: uniphier: fix USB clock line for LD20)
$ git merge reset-fixes/reset/fixes
Merge made by the 'recursive' strategy.
 drivers/reset/reset-uniphier.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
Merging mips-fixes/mips-fixes (b3d7e55c3f88 MIPS: uaccess: Add micromips clobbers to bzero invocation)
$ git merge mips-fixes/mips-fixes
Already up to date.
Merging kvm-fixes/master (5e62493f1a70 x86/headers/UAPI: Move DISABLE_EXITS KVM capability bits to the UAPI)
$ git merge kvm-fixes/master
Already up to date.
Merging kvms390-fixes/master (f07afa0462b7 KVM: s390: fix memory overwrites when not using SCA entries)
$ git merge kvms390-fixes/master
Already up to date.
Merging drm-intel-fixes/for-linux-next-fixes (0b551f1e0fc5 drm/i915/fbdev: Enable late fbdev initial configuration)
$ git merge drm-intel-fixes/for-linux-next-fixes
Already up to date.
Merging drm-misc-fixes/for-linux-next-fixes (1f6b8eef11c3 drm/edid: Reset more of the display info)
$ git merge drm-misc-fixes/for-linux-next-fixes
Already up to date.
Merging syscalls/syscalls-next (c9a211951c7c bpf: whitelist all syscalls for error injection)
$ git merge syscalls/syscalls-next
Already up to date.
Merging kbuild/for-next (6d08b06e67cd Linux 4.17-rc2)
$ git merge kbuild/for-next
Already up to date.
Merging leaks/leaks-next (9f84a0f7f1a6 leaking_addresses: check if file name contains address)
$ git merge leaks/leaks-next
Merge made by the 'recursive' strategy.
Merging uuid/for-next (c0020756315e efi: switch to use new generic UUID API)
$ git merge uuid/for-next
Already up to date.
Merging dma-mapping/for-next (60695be2bb6b dma-mapping: postpone cpu addr translation on mmap)
$ git merge dma-mapping/for-next
Already up to date.
Merging asm-generic/master (a71e7c44ffb7 io: change writeX_relaxed() to remove barriers)
$ git merge asm-generic/master
Already up to date.
Merging arc/for-next (4fbd8d194f06 Linux 4.15-rc1)
$ git merge arc/for-next
Already up to date.
Merging arm/for-next (6dc8c9d147dd Merge branches 'fixes' and 'sa1100-for-next' into for-next)
$ git merge arm/for-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging arm-perf/for-next/perf (44300aed5d28 perf: arm_spe: include linux/vmalloc.h for vmap())
$ git merge arm-perf/for-next/perf
Merge made by the 'recursive' strategy.
Merging arm-soc/for-next (c12d7e9fe9af ARM: defconfig: Update Gemini defconfig)
$ git merge arm-soc/for-next
Already up to date.
Merging actions/for-next (61862a89e6ac Merge branch 'v4.16/drivers' into next)
$ git merge actions/for-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging alpine/alpine/for-next (7928b2cbe55b Linux 4.16-rc1)
$ git merge alpine/alpine/for-next
Already up to date.
Merging amlogic/for-next (8d7604c70869 Merge branch 'v4.18/defconfig' into tmp/aml-rebuild)
$ git merge amlogic/for-next
Merge made by the 'recursive' strategy.
 .../bindings/clock/amlogic,gxbb-clkc.txt           |  16 +-
 arch/arm/boot/dts/meson8.dtsi                      |  17 +-
 arch/arm/boot/dts/meson8b.dtsi                     |  17 +-
 arch/arm/configs/multi_v7_defconfig                |   2 +
 arch/arm64/boot/dts/amlogic/meson-axg-s400.dts     |  58 ++++
 arch/arm64/boot/dts/amlogic/meson-axg.dtsi         | 358 ++++++++++++++++++++-
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        |   8 +-
 .../dts/amlogic/meson-gxl-s905x-libretech-cc.dts   |   3 -
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi         |  12 +-
 9 files changed, 463 insertions(+), 28 deletions(-)
Merging aspeed/for-next (6534b2d0de36 Merge branch 'dt-for-v4.17' into for-next)
$ git merge aspeed/for-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging at91/at91-next (20d3f36b0fea Merge tag 'at91-ab-4.17-dt2' into at91-next)
$ git merge at91/at91-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging bcm2835/for-next (5c483a0c319c Merge branch anholt/bcm2835-defconfig-64-next into for-next)
$ git merge bcm2835/for-next
Auto-merging arch/arm/configs/multi_v7_defconfig
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/arm/bcm/brcm,bcm2835.txt   |   4 +
 arch/arm/boot/dts/Makefile                         |   1 +
 arch/arm/boot/dts/bcm2835-rpi-a-plus.dts           |   6 ++
 arch/arm/boot/dts/bcm2835-rpi-a.dts                |   6 ++
 arch/arm/boot/dts/bcm2835-rpi-b-plus.dts           |   6 ++
 arch/arm/boot/dts/bcm2835-rpi-b-rev2.dts           |   6 ++
 arch/arm/boot/dts/bcm2835-rpi-b.dts                |   6 ++
 arch/arm/boot/dts/bcm2835-rpi.dtsi                 |   6 --
 arch/arm/boot/dts/bcm2836-rpi-2-b.dts              |   6 ++
 arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts         | 108 +++++++++++++++++++++
 arch/arm/boot/dts/bcm2837-rpi-3-b.dts              |  26 ++++-
 arch/arm/boot/dts/bcm283x-rpi-lan7515.dtsi         |  27 ++++++
 arch/arm/configs/bcm2835_defconfig                 |   2 +
 arch/arm/configs/multi_v7_defconfig                |   4 +
 arch/arm64/boot/dts/broadcom/Makefile              |   3 +-
 .../boot/dts/broadcom/bcm2837-rpi-3-b-plus.dts     |   2 +
 arch/arm64/configs/defconfig                       |   2 +
 17 files changed, 213 insertions(+), 8 deletions(-)
 create mode 100644 arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts
 create mode 100644 arch/arm/boot/dts/bcm283x-rpi-lan7515.dtsi
 create mode 100644 arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b-plus.dts
Merging imx-mxs/for-next (7a3adfb6a804 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.
 .../devicetree/bindings/vendor-prefixes.txt        |   1 +
 arch/arm/boot/dts/Makefile                         |   4 +
 arch/arm/boot/dts/imx25-pdk.dts                    |   1 -
 arch/arm/boot/dts/imx53-tx53.dtsi                  |   1 -
 arch/arm/boot/dts/imx6dl-mamoj.dts                 | 224 ++++++++++
 arch/arm/boot/dts/imx6q-dhcom-pdk2.dts             | 151 +++++++
 arch/arm/boot/dts/imx6q-dhcom-som.dtsi             | 476 +++++++++++++++++++++
 arch/arm/boot/dts/imx6q-icore-mipi.dts             |  25 ++
 arch/arm/boot/dts/imx6q-icore-ofcap12.dts          |  31 +-
 arch/arm/boot/dts/imx6q-kp-tpc.dts                 |  22 +
 arch/arm/boot/dts/imx6q-kp.dtsi                    | 432 +++++++++++++++++++
 arch/arm/boot/dts/imx6qdl-hummingboard.dtsi        |  52 ++-
 arch/arm/boot/dts/imx6qdl-hummingboard2.dtsi       |  47 +-
 arch/arm/boot/dts/imx6qdl-icore.dtsi               |  25 +-
 arch/arm/boot/dts/imx6qdl-tx6-lcd.dtsi             |   1 -
 arch/arm/boot/dts/imx6qdl-tx6-mb7.dtsi             |   3 -
 arch/arm/boot/dts/imx6qdl-wandboard-revb1.dtsi     |   1 -
 arch/arm/boot/dts/imx6qdl-wandboard-revc1.dtsi     |   1 -
 arch/arm/boot/dts/imx6qdl-wandboard-revd1.dtsi     |   1 -
 arch/arm/boot/dts/imx6qdl-wandboard.dtsi           |   8 +
 arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi            |  22 +
 arch/arm/boot/dts/imx6qp-zii-rdu2.dts              |   5 +
 arch/arm/boot/dts/imx6ull-pinfunc.h                |   4 +
 arch/arm/boot/dts/imx7d-pinfunc.h                  |   6 +-
 arch/arm/boot/dts/imx7d-sdb.dts                    |  24 ++
 arch/arm/boot/dts/imx7s.dtsi                       |  36 +-
 arch/arm/configs/imx_v6_v7_defconfig               |   7 +
 arch/arm/mach-imx/mach-mx31_3ds.c                  |  18 +-
 arch/arm/mach-imx/mach-mx31lilly.c                 |  12 +-
 arch/arm/mach-imx/mach-mx31lite.c                  |  16 +-
 arch/arm/mach-imx/mach-mx31moboard.c               |  17 +-
 arch/arm/mach-imx/mach-pca100.c                    |  13 +-
 arch/arm/mach-imx/mach-pcm037.c                    |  13 +-
 arch/arm/mach-imx/mach-pcm037_eet.c                |   5 +-
 arch/arm/mach-imx/mach-pcm043.c                    |  13 +-
 arch/arm/mach-imx/mach-vpr200.c                    |   9 +-
 drivers/soc/imx/gpc.c                              |  18 +-
 drivers/soc/imx/gpcv2.c                            |  22 +-
 include/linux/platform_data/spi-imx.h              |  29 +-
 39 files changed, 1630 insertions(+), 166 deletions(-)
 create mode 100644 arch/arm/boot/dts/imx6dl-mamoj.dts
 create mode 100644 arch/arm/boot/dts/imx6q-dhcom-pdk2.dts
 create mode 100644 arch/arm/boot/dts/imx6q-dhcom-som.dtsi
 create mode 100644 arch/arm/boot/dts/imx6q-icore-mipi.dts
 create mode 100644 arch/arm/boot/dts/imx6q-kp-tpc.dts
 create mode 100644 arch/arm/boot/dts/imx6q-kp.dtsi
Merging keystone/next (dacf37850167 Merge branch 'for_4.17/soc-drivers' into next)
$ git merge keystone/next
Already up to date!
Merge made by the 'recursive' strategy.
Merging mvebu/for-next (736957008942 Merge branch 'mvebu/dt64' into mvebu/for-next)
$ git merge mvebu/for-next
Auto-merging arch/arm64/configs/defconfig
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/net/marvell-pp2.txt        |   9 +-
 .../boot/dts/marvell/armada-3720-espressobin.dts   |  27 ++
 arch/arm64/boot/dts/marvell/armada-37xx.dtsi       |  13 +
 arch/arm64/boot/dts/marvell/armada-cp110.dtsi      |   8 +-
 arch/arm64/configs/defconfig                       |   1 +
 drivers/watchdog/Kconfig                           |  11 +
 drivers/watchdog/Makefile                          |   1 +
 drivers/watchdog/armada_37xx_wdt.c                 | 356 +++++++++++++++++++++
 8 files changed, 420 insertions(+), 6 deletions(-)
 create mode 100644 drivers/watchdog/armada_37xx_wdt.c
Merging omap/for-next (fb289e3ab10c Merge branch 'omap-for-v4.17/fixes-ti-sysc' into omap-for-v4.17/fixes)
$ git merge omap/for-next
Already up to date.
Merging reset/reset/next (d7bab65b1f57 reset: uniphier: add LD11/LD20 stream demux system reset control)
$ git merge reset/reset/next
Merge made by the 'recursive' strategy.
 drivers/reset/reset-uniphier.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)
Merging qcom/for-next (c9fe09a79371 soc: Unconditionally include qcom Makefile)
$ git merge qcom/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/firmware/qcom,scm.txt      |   3 +-
 .../devicetree/bindings/net/qualcomm-bluetooth.txt |  30 +
 .../bindings/reserved-memory/qcom,cmd-db.txt       |  37 +
 .../devicetree/bindings/soc/qcom/qcom,geni-se.txt  | 119 ++++
 .../devicetree/bindings/soc/qcom/qcom,smd-rpm.txt  |   1 +
 arch/arm64/boot/dts/qcom/Makefile                  |   1 +
 arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi          |  17 +-
 arch/arm64/boot/dts/qcom/apq8096-db820c-pins.dtsi  |  26 +
 .../boot/dts/qcom/apq8096-db820c-pmic-pins.dtsi    |  32 +
 arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi       |  69 +-
 arch/arm64/boot/dts/qcom/msm8916.dtsi              |  18 +-
 .../boot/dts/qcom/msm8992-bullhead-rev-101.dts     |  17 +
 arch/arm64/boot/dts/qcom/msm8992-pins.dtsi         |  60 ++
 arch/arm64/boot/dts/qcom/msm8992.dtsi              |  87 ++-
 arch/arm64/boot/dts/qcom/msm8994-smd-rpm.dtsi      | 276 ++++++++
 arch/arm64/boot/dts/qcom/msm8996.dtsi              |  16 +-
 arch/arm64/boot/dts/qcom/sdm845-mtp.dts            |  75 +++
 arch/arm64/boot/dts/qcom/sdm845.dtsi               | 342 ++++++++++
 drivers/firmware/qcom_scm-32.c                     |   8 +-
 drivers/firmware/qcom_scm.c                        |   3 +
 drivers/of/platform.c                              |   1 +
 drivers/soc/Makefile                               |   2 +-
 drivers/soc/qcom/Kconfig                           |  18 +
 drivers/soc/qcom/Makefile                          |   2 +
 drivers/soc/qcom/cmd-db.c                          | 317 +++++++++
 drivers/soc/qcom/qcom-geni-se.c                    | 748 +++++++++++++++++++++
 drivers/soc/qcom/smd-rpm.c                         |   1 +
 drivers/soc/qcom/smem.c                            |  50 +-
 include/linux/qcom-geni-se.h                       | 425 ++++++++++++
 include/soc/qcom/cmd-db.h                          |  45 ++
 30 files changed, 2797 insertions(+), 49 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/qualcomm-bluetooth.txt
 create mode 100644 Documentation/devicetree/bindings/reserved-memory/qcom,cmd-db.txt
 create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,geni-se.txt
 create mode 100644 arch/arm64/boot/dts/qcom/msm8994-smd-rpm.dtsi
 create mode 100644 arch/arm64/boot/dts/qcom/sdm845-mtp.dts
 create mode 100644 arch/arm64/boot/dts/qcom/sdm845.dtsi
 create mode 100644 drivers/soc/qcom/cmd-db.c
 create mode 100644 drivers/soc/qcom/qcom-geni-se.c
 create mode 100644 include/linux/qcom-geni-se.h
 create mode 100644 include/soc/qcom/cmd-db.h
Merging realtek/for-next (2b6286eb7ab8 Merge branch 'v4.15/dt64' into next)
$ git merge realtek/for-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging renesas/next (532d77dd78ea Merge branch 'arm64-dt-for-v4.18' into next)
$ git merge renesas/next
Auto-merging arch/arm64/configs/defconfig
Auto-merging arch/arm/configs/multi_v7_defconfig
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/shmobile.txt |    8 +
 .../bindings/power/renesas,rcar-sysc.txt           |    1 +
 .../devicetree/bindings/reset/renesas,rst.txt      |    2 +
 arch/arm/Kconfig                                   |    2 +-
 arch/arm/Kconfig.debug                             |   13 +-
 arch/arm/Makefile                                  |    2 +-
 arch/arm/boot/dts/Makefile                         |    1 +
 arch/arm/boot/dts/r7s72100.dtsi                    | 1033 +++++-----
 arch/arm/boot/dts/r8a73a4-ape6evm.dts              |    4 +-
 arch/arm/boot/dts/r8a7743-iwg20m.dtsi              |    5 +
 arch/arm/boot/dts/r8a7743.dtsi                     |   12 +-
 arch/arm/boot/dts/r8a7745-iwg22m.dtsi              |    5 +
 arch/arm/boot/dts/r8a7745.dtsi                     |   12 +-
 arch/arm/boot/dts/r8a77470-iwg23s-sbc.dts          |   35 +
 arch/arm/boot/dts/r8a77470.dtsi                    |  323 +++
 arch/arm/boot/dts/r8a7790-lager.dts                |   27 +-
 arch/arm/boot/dts/r8a7790.dtsi                     |  104 +-
 arch/arm/boot/dts/r8a7791-koelsch.dts              |   17 +-
 arch/arm/boot/dts/r8a7791-porter.dts               |   21 +-
 arch/arm/boot/dts/r8a7791.dtsi                     |   66 +-
 arch/arm/boot/dts/r8a7792-blanche.dts              |    5 +
 arch/arm/boot/dts/r8a7792-wheat.dts                |   16 +-
 arch/arm/boot/dts/r8a7792.dtsi                     |   12 +-
 arch/arm/boot/dts/r8a7793-gose.dts                 |   15 +-
 arch/arm/boot/dts/r8a7793.dtsi                     |   67 +-
 arch/arm/boot/dts/r8a7794-alt.dts                  |    5 +
 arch/arm/boot/dts/r8a7794-silk.dts                 |    5 +
 arch/arm/boot/dts/r8a7794.dtsi                     |   21 +-
 arch/arm/boot/dts/sh73a0.dtsi                      |    4 +-
 arch/arm/configs/multi_v7_defconfig                |    2 +-
 arch/arm/configs/shmobile_defconfig                |    2 +-
 arch/arm/mach-shmobile/Kconfig                     |   13 +
 arch/arm/mach-shmobile/setup-rcar-gen2.c           |    2 +
 arch/arm64/Kconfig.platforms                       |    6 +
 arch/arm64/boot/dts/renesas/Makefile               |    1 +
 .../boot/dts/renesas/r8a7795-es1-salvator-x.dts    |   46 +
 arch/arm64/boot/dts/renesas/r8a7795-es1.dtsi       |    1 -
 arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts |   46 +
 .../arm64/boot/dts/renesas/r8a7795-salvator-xs.dts |   46 +
 arch/arm64/boot/dts/renesas/r8a7795.dtsi           | 2020 ++++++++++---------
 arch/arm64/boot/dts/renesas/r8a7796-salvator-x.dts |   28 +
 .../arm64/boot/dts/renesas/r8a7796-salvator-xs.dts |   28 +
 arch/arm64/boot/dts/renesas/r8a7796.dtsi           | 2103 ++++++++++----------
 arch/arm64/boot/dts/renesas/r8a77965.dtsi          |  834 +++++---
 arch/arm64/boot/dts/renesas/r8a77970-eagle.dts     |  101 +
 arch/arm64/boot/dts/renesas/r8a77970-v3msk.dts     |    8 +
 arch/arm64/boot/dts/renesas/r8a77970.dtsi          |  451 +++--
 arch/arm64/boot/dts/renesas/r8a77980-condor.dts    |   23 +
 arch/arm64/boot/dts/renesas/r8a77980.dtsi          |   17 +
 arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts     |   37 +
 arch/arm64/boot/dts/renesas/r8a77990.dtsi          |  126 ++
 arch/arm64/boot/dts/renesas/r8a77995-draak.dts     |    2 +-
 arch/arm64/boot/dts/renesas/r8a77995.dtsi          |  721 ++++---
 arch/arm64/boot/dts/renesas/salvator-common.dtsi   |   44 +-
 arch/arm64/boot/dts/renesas/ulcb.dtsi              |    6 +-
 arch/arm64/configs/defconfig                       |    1 +
 drivers/soc/renesas/Kconfig                        |    8 +-
 drivers/soc/renesas/Makefile                       |    1 +
 drivers/soc/renesas/r8a77470-sysc.c                |   29 +
 drivers/soc/renesas/r8a77995-sysc.c                |    3 +-
 drivers/soc/renesas/rcar-rst.c                     |    2 +
 drivers/soc/renesas/rcar-sysc.c                    |    3 +
 drivers/soc/renesas/rcar-sysc.h                    |    1 +
 drivers/soc/renesas/renesas-soc.c                  |   16 +
 include/dt-bindings/power/r8a77470-sysc.h          |   22 +
 include/dt-bindings/power/r8a77990-sysc.h          |   26 +
 66 files changed, 5148 insertions(+), 3521 deletions(-)
 create mode 100644 arch/arm/boot/dts/r8a77470-iwg23s-sbc.dts
 create mode 100644 arch/arm/boot/dts/r8a77470.dtsi
 create mode 100644 arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
 create mode 100644 arch/arm64/boot/dts/renesas/r8a77990.dtsi
 create mode 100644 drivers/soc/renesas/r8a77470-sysc.c
 create mode 100644 include/dt-bindings/power/r8a77470-sysc.h
 create mode 100644 include/dt-bindings/power/r8a77990-sysc.h
Merging rockchip/for-next (18effb31d2ab Merge branch 'v4.18-armsoc/dts32' into for-next)
$ git merge rockchip/for-next
Auto-merging arch/arm64/configs/defconfig
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/rk3036.dtsi                      |  2 ++
 arch/arm/boot/dts/rk322x.dtsi                      |  8 +++++
 arch/arm/boot/dts/rk3288-phycore-som.dtsi          |  1 +
 arch/arm/boot/dts/rk3288-tinker.dts                |  4 +++
 arch/arm/boot/dts/rk3288-veyron-chromebook.dtsi    |  3 +-
 arch/arm/boot/dts/rk3288-veyron-minnie.dts         |  2 ++
 arch/arm/boot/dts/rk3288.dtsi                      | 20 +++++++++---
 arch/arm64/boot/dts/rockchip/rk3328.dtsi           | 10 ++++++
 arch/arm64/boot/dts/rockchip/rk3368.dtsi           | 10 ++++++
 arch/arm64/boot/dts/rockchip/rk3399-firefly.dts    |  8 +++++
 arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi       |  8 +++--
 .../arm64/boot/dts/rockchip/rk3399-puma-haikou.dts |  4 +++
 arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi      |  4 +++
 .../dts/rockchip/rk3399-sapphire-excavator.dts     | 12 ++++++++
 arch/arm64/boot/dts/rockchip/rk3399-sapphire.dtsi  | 23 +++++---------
 arch/arm64/boot/dts/rockchip/rk3399.dtsi           | 36 ++++++++++++++++------
 arch/arm64/configs/defconfig                       | 16 ++++++++++
 17 files changed, 139 insertions(+), 32 deletions(-)
Merging samsung/for-next (bebc6082da0a Linux 4.14)
$ git merge samsung/for-next
Already up to date.
Merging samsung-krzk/for-next (9d0b5d37e912 Merge branch 'next/dt64' into for-next)
$ git merge samsung-krzk/for-next
Auto-merging arch/arm/configs/multi_v7_defconfig
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/power/pd-samsung.txt       | 20 +----
 arch/arm/boot/dts/exynos-syscon-restart.dtsi       | 28 +++----
 arch/arm/boot/dts/exynos3250-rinato.dts            |  4 +
 arch/arm/boot/dts/exynos3250.dtsi                  |  2 +-
 arch/arm/boot/dts/exynos4.dtsi                     |  3 +-
 arch/arm/boot/dts/exynos4210-origen.dts            | 34 ++++----
 arch/arm/boot/dts/exynos4412-galaxy-s3.dtsi        | 32 ++++----
 arch/arm/boot/dts/exynos4412-midas.dtsi            | 86 ++++++++++-----------
 arch/arm/boot/dts/exynos4412-n710x.dts             | 16 ++--
 arch/arm/boot/dts/exynos5.dtsi                     |  3 -
 arch/arm/boot/dts/exynos5250.dtsi                  |  5 +-
 arch/arm/boot/dts/exynos5410.dtsi                  |  1 +
 arch/arm/boot/dts/exynos5420-peach-pit.dts         |  4 +-
 arch/arm/boot/dts/exynos5420.dtsi                  | 15 +---
 arch/arm/boot/dts/exynos5800-peach-pi.dts          |  4 +-
 arch/arm/configs/exynos_defconfig                  |  1 +
 arch/arm/configs/multi_v7_defconfig                |  1 +
 arch/arm/mach-s3c24xx/h1940-bluetooth.c            |  2 +-
 arch/arm/mach-s3c24xx/mach-mini2440.c              | 10 +--
 arch/arm/plat-samsung/adc.c                        |  3 +-
 arch/arm64/boot/dts/exynos/exynos5433.dtsi         | 22 +++---
 arch/arm64/boot/dts/exynos/exynos7.dtsi            | 18 ++---
 drivers/soc/samsung/pm_domains.c                   | 90 +---------------------
 23 files changed, 140 insertions(+), 264 deletions(-)
Merging sunxi/sunxi/for-next (62960b11f7d9 Merge branches 'sunxi/dt-for-4.18' and 'sunxi/h3-h5-for-4.18' into sunxi/for-next)
$ git merge sunxi/sunxi/for-next
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 .../bindings/nvmem/allwinner,sunxi-sid.txt         |   1 +
 arch/arm/boot/dts/Makefile                         |   5 +-
 arch/arm/boot/dts/sun4i-a10.dtsi                   |   6 +-
 arch/arm/boot/dts/sun7i-a20-olimex-som204-evb.dts  |   3 +-
 arch/arm/boot/dts/sun8i-a23-a33.dtsi               |  33 ++++
 arch/arm/boot/dts/sun8i-a33.dtsi                   |  44 +++++
 arch/arm/boot/dts/sun8i-a83t.dtsi                  |   5 +
 .../boot/dts/sun8i-h2-plus-libretech-all-h3-cc.dts |  13 ++
 arch/arm/boot/dts/sun8i-h2-plus-orangepi-zero.dts  |  21 ++
 arch/arm/boot/dts/sun8i-h3-libretech-all-h3-cc.dts | 206 +-------------------
 arch/arm/boot/dts/sun8i-h3-orangepi-one.dts        |  22 +++
 arch/arm/boot/dts/sun8i-h3.dtsi                    |  32 ++-
 .../boot/dts/sun8i-r16-nintendo-nes-classic.dts    |  56 ++++++
 .../dts/sun8i-r16-nintendo-super-nes-classic.dts   |  11 ++
 arch/arm/boot/dts/sun8i-v40-bananapi-m2-berry.dts  |  10 +
 arch/arm/boot/dts/sunxi-h3-h5.dtsi                 |  18 ++
 arch/arm/boot/dts/sunxi-libretech-all-h3-cc.dtsi   | 215 +++++++++++++++++++++
 arch/arm64/boot/dts/allwinner/Makefile             |   5 +-
 arch/arm64/boot/dts/allwinner/axp803.dtsi          |   5 +
 .../boot/dts/allwinner/sun50i-a64-bananapi-m64.dts |  21 ++
 .../allwinner/sun50i-h5-libretech-all-h3-cc.dts    |  14 ++
 arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi       |   2 +-
 arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi       |  20 +-
 drivers/clk/Makefile                               |   2 +-
 drivers/clk/sunxi-ng/Makefile                      |  39 ++--
 25 files changed, 560 insertions(+), 249 deletions(-)
 create mode 100644 arch/arm/boot/dts/sun8i-h2-plus-libretech-all-h3-cc.dts
 create mode 100644 arch/arm/boot/dts/sun8i-r16-nintendo-nes-classic.dts
 create mode 100644 arch/arm/boot/dts/sun8i-r16-nintendo-super-nes-classic.dts
 create mode 100644 arch/arm/boot/dts/sunxi-libretech-all-h3-cc.dtsi
 create mode 100644 arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dts
Merging tegra/for-next (6b9b5116227d Merge branch for-4.17/clk into for-next)
$ git merge tegra/for-next
Merge made by the 'recursive' strategy.
 drivers/soc/tegra/pmc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging arm64/for-next/core (24534b351182 arm64: assembler: add macros to conditionally yield the NEON under PREEMPT)
$ git merge arm64/for-next/core
Already up to date.
Merging clk/clk-next (3baba436e3a6 Merge branch 'clk-core' into clk-next)
$ git merge clk/clk-next
Auto-merging drivers/clk/Makefile
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/clock/actions,s900-cmu.txt |   47 +
 .../bindings/clock/nuvoton,npcm750-clk.txt         |  100 +
 .../devicetree/bindings/clock/qcom,gcc.txt         |    1 +
 drivers/clk/Kconfig                                |    1 +
 drivers/clk/Makefile                               |    2 +
 drivers/clk/actions/Kconfig                        |   14 +
 drivers/clk/actions/Makefile                       |   12 +
 drivers/clk/actions/owl-common.c                   |   89 +
 drivers/clk/actions/owl-common.h                   |   41 +
 drivers/clk/actions/owl-composite.c                |  199 ++
 drivers/clk/actions/owl-composite.h                |  124 +
 drivers/clk/actions/owl-divider.c                  |   94 +
 drivers/clk/actions/owl-divider.h                  |   75 +
 drivers/clk/actions/owl-factor.c                   |  222 ++
 drivers/clk/actions/owl-factor.h                   |   83 +
 drivers/clk/actions/owl-fixed-factor.h             |   28 +
 drivers/clk/actions/owl-gate.c                     |   77 +
 drivers/clk/actions/owl-gate.h                     |   73 +
 drivers/clk/actions/owl-mux.c                      |   60 +
 drivers/clk/actions/owl-mux.h                      |   61 +
 drivers/clk/actions/owl-pll.c                      |  194 ++
 drivers/clk/actions/owl-pll.h                      |   92 +
 drivers/clk/actions/owl-s900.c                     |  721 +++++
 drivers/clk/clk-cs2000-cp.c                        |    2 +-
 drivers/clk/clk-mux.c                              |   10 +-
 drivers/clk/clk-npcm7xx.c                          |  656 +++++
 drivers/clk/clk-stm32mp1.c                         |   54 +-
 drivers/clk/clk.c                                  |   28 +-
 drivers/clk/meson/clk-regmap.c                     |   11 +-
 drivers/clk/qcom/Kconfig                           |    8 +
 drivers/clk/qcom/Makefile                          |    1 +
 drivers/clk/qcom/clk-alpha-pll.c                   |  301 ++-
 drivers/clk/qcom/clk-alpha-pll.h                   |   18 +-
 drivers/clk/qcom/clk-rcg2.c                        |    5 +-
 drivers/clk/qcom/gcc-msm8998.c                     | 2834 ++++++++++++++++++++
 drivers/clk/qcom/gdsc.c                            |   24 +-
 drivers/clk/qcom/gdsc.h                            |    4 +-
 drivers/clk/spear/spear6xx_clock.c                 |    2 +-
 include/dt-bindings/clock/actions,s900-cmu.h       |  129 +
 include/dt-bindings/clock/nuvoton,npcm7xx-clock.h  |   44 +
 include/dt-bindings/clock/qcom,gcc-msm8998.h       |  208 ++
 include/dt-bindings/clock/stm32mp1-clks.h          |    4 +-
 include/linux/clk-provider.h                       |    5 +-
 43 files changed, 6694 insertions(+), 64 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/actions,s900-cmu.txt
 create mode 100644 Documentation/devicetree/bindings/clock/nuvoton,npcm750-clk.txt
 create mode 100644 drivers/clk/actions/Kconfig
 create mode 100644 drivers/clk/actions/Makefile
 create mode 100644 drivers/clk/actions/owl-common.c
 create mode 100644 drivers/clk/actions/owl-common.h
 create mode 100644 drivers/clk/actions/owl-composite.c
 create mode 100644 drivers/clk/actions/owl-composite.h
 create mode 100644 drivers/clk/actions/owl-divider.c
 create mode 100644 drivers/clk/actions/owl-divider.h
 create mode 100644 drivers/clk/actions/owl-factor.c
 create mode 100644 drivers/clk/actions/owl-factor.h
 create mode 100644 drivers/clk/actions/owl-fixed-factor.h
 create mode 100644 drivers/clk/actions/owl-gate.c
 create mode 100644 drivers/clk/actions/owl-gate.h
 create mode 100644 drivers/clk/actions/owl-mux.c
 create mode 100644 drivers/clk/actions/owl-mux.h
 create mode 100644 drivers/clk/actions/owl-pll.c
 create mode 100644 drivers/clk/actions/owl-pll.h
 create mode 100644 drivers/clk/actions/owl-s900.c
 create mode 100644 drivers/clk/clk-npcm7xx.c
 create mode 100644 drivers/clk/qcom/gcc-msm8998.c
 create mode 100644 include/dt-bindings/clock/actions,s900-cmu.h
 create mode 100644 include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
 create mode 100644 include/dt-bindings/clock/qcom,gcc-msm8998.h
Merging clk-samsung/for-next (e8cf870f253b clk: samsung: simplify getting .drvdata)
$ git merge clk-samsung/for-next
Merge made by the 'recursive' strategy.
 drivers/clk/samsung/clk-s3c2410-dclk.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
Merging c6x/for-linux-next (85fa2cc51104 c6x: pass endianness info to sparse)
$ git merge c6x/for-linux-next
Already up to date.
Merging m68k/for-next (f245ff73dbe9 m68k: Use read_persistent_clock64() consistently)
$ git merge m68k/for-next
Merge made by the 'recursive' strategy.
 arch/m68k/68000/timers.c             |  4 +++-
 arch/m68k/apollo/config.c            |  8 +++++---
 arch/m68k/configs/amiga_defconfig    | 14 +++++++++-----
 arch/m68k/configs/apollo_defconfig   | 14 +++++++++-----
 arch/m68k/configs/atari_defconfig    | 14 +++++++++-----
 arch/m68k/configs/bvme6000_defconfig | 14 +++++++++-----
 arch/m68k/configs/hp300_defconfig    | 14 +++++++++-----
 arch/m68k/configs/mac_defconfig      | 14 +++++++++-----
 arch/m68k/configs/multi_defconfig    | 14 +++++++++-----
 arch/m68k/configs/mvme147_defconfig  | 14 +++++++++-----
 arch/m68k/configs/mvme16x_defconfig  | 14 +++++++++-----
 arch/m68k/configs/q40_defconfig      | 14 +++++++++-----
 arch/m68k/configs/sun3_defconfig     | 14 +++++++++-----
 arch/m68k/configs/sun3x_defconfig    | 14 +++++++++-----
 arch/m68k/kernel/signal.c            | 23 ++++++++++++-----------
 arch/m68k/kernel/time.c              | 25 ++++++++++++++-----------
 arch/m68k/mac/config.c               |  2 +-
 arch/m68k/mvme147/config.c           |  4 +++-
 arch/m68k/mvme16x/config.c           |  4 +++-
 arch/m68k/sun3/intersil.c            |  8 +++++---
 arch/m68k/sun3x/time.c               |  8 +++++---
 21 files changed, 159 insertions(+), 95 deletions(-)
Merging m68knommu/for-next (6d08b06e67cd Linux 4.17-rc2)
$ git merge m68knommu/for-next
Already up to date.
Merging microblaze/next (a7a9e2f0410d microblaze: dts: replace 'linux,stdout-path' with 'stdout-path')
$ git merge microblaze/next
Removing arch/microblaze/kernel/early_printk.c
Removing arch/microblaze/include/asm/prom.h
Merge made by the 'recursive' strategy.
 arch/microblaze/Kconfig.debug         |   8 --
 arch/microblaze/boot/Makefile         |  10 +-
 arch/microblaze/boot/dts/system.dts   |   2 +-
 arch/microblaze/include/asm/cpuinfo.h |   2 +-
 arch/microblaze/include/asm/pci.h     |   1 -
 arch/microblaze/include/asm/prom.h    |  27 -----
 arch/microblaze/include/asm/setup.h   |   5 -
 arch/microblaze/kernel/Makefile       |   1 -
 arch/microblaze/kernel/early_printk.c | 184 ----------------------------------
 arch/microblaze/kernel/misc.S         |  35 -------
 arch/microblaze/kernel/platform.c     |   1 -
 arch/microblaze/kernel/prom.c         |  82 ---------------
 arch/microblaze/kernel/setup.c        |  17 +---
 arch/microblaze/pci/indirect_pci.c    |   1 -
 14 files changed, 12 insertions(+), 364 deletions(-)
 delete mode 100644 arch/microblaze/include/asm/prom.h
 delete mode 100644 arch/microblaze/kernel/early_printk.c
Merging mips/mips-next (ea4d340cbea4 Merge branches '4.15-fixes', '4.16-features' and 'octeon-3-net-mips-bits' into mips-next)
$ git merge mips/mips-next
Auto-merging drivers/staging/octeon/ethernet-tx.c
Auto-merging drivers/staging/octeon/ethernet-rx.c
Auto-merging drivers/staging/octeon/ethernet-defines.h
Auto-merging arch/mips/include/asm/mipsregs.h
Auto-merging arch/mips/cavium-octeon/Kconfig
Merge made by the 'recursive' strategy.
 arch/mips/cavium-octeon/Kconfig                    |  27 +-
 arch/mips/cavium-octeon/Makefile                   |   1 +
 arch/mips/cavium-octeon/resource-mgr.c             | 351 +++++++++++++++++++++
 arch/mips/cavium-octeon/setup.c                    |  22 +-
 arch/mips/include/asm/barrier.h                    |   2 +-
 .../asm/mach-cavium-octeon/kernel-entry-init.h     |  20 +-
 arch/mips/include/asm/mipsregs.h                   |   2 +
 arch/mips/include/asm/octeon/octeon.h              |  32 +-
 arch/mips/include/asm/processor.h                  |   2 +-
 arch/mips/kernel/octeon_switch.S                   |   2 -
 arch/mips/mm/tlbex.c                               |  29 +-
 drivers/staging/octeon/ethernet-defines.h          |   6 -
 drivers/staging/octeon/ethernet-rx.c               |  25 +-
 drivers/staging/octeon/ethernet-tx.c               |  85 ++---
 14 files changed, 473 insertions(+), 133 deletions(-)
 create mode 100644 arch/mips/cavium-octeon/resource-mgr.c
Merging mips-james/mips-next (23f8adc497b7 MIPS: BCM47XX: Use __initdata for the bcm47xx_leds_pdata)
$ git merge mips-james/mips-next
Auto-merging arch/riscv/Kconfig
Removing arch/mips/lib/ucmpdi2.c
Removing arch/mips/lib/lshrdi3.c
Removing arch/mips/lib/cmpdi2.c
Removing arch/mips/lib/ashrdi3.c
Removing arch/mips/lib/ashldi3.c
Merge made by the 'recursive' strategy.
 arch/mips/Kconfig                                  |  5 ++++
 arch/mips/bcm47xx/board.c                          |  2 ++
 arch/mips/bcm47xx/buttons.c                        |  9 ++++++
 arch/mips/bcm47xx/leds.c                           | 11 +++++++-
 arch/mips/boot/compressed/Makefile                 | 11 +++++---
 arch/mips/boot/dts/brcm/Makefile                   |  2 +-
 arch/mips/boot/dts/cavium-octeon/Makefile          |  2 +-
 arch/mips/boot/dts/ingenic/Makefile                |  2 +-
 arch/mips/boot/dts/lantiq/Makefile                 |  2 +-
 arch/mips/boot/dts/mscc/Makefile                   |  2 +-
 arch/mips/boot/dts/mti/Makefile                    |  2 +-
 arch/mips/boot/dts/netlogic/Makefile               |  2 +-
 arch/mips/boot/dts/pic32/Makefile                  |  2 +-
 arch/mips/boot/dts/ralink/Makefile                 |  2 +-
 arch/mips/boot/dts/xilfpga/Makefile                |  2 +-
 arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h |  1 +
 arch/mips/lib/Makefile                             |  3 +-
 arch/mips/lib/ashldi3.c                            | 30 --------------------
 arch/mips/lib/ashrdi3.c                            | 32 ----------------------
 arch/mips/lib/cmpdi2.c                             | 28 -------------------
 arch/mips/lib/lshrdi3.c                            | 30 --------------------
 arch/mips/lib/ucmpdi2.c                            | 22 ---------------
 arch/riscv/Kconfig                                 |  6 ++--
 drivers/firmware/broadcom/bcm47xx_nvram.c          |  2 +-
 lib/Kconfig                                        | 12 ++++----
 lib/Makefile                                       | 12 ++++----
 lib/ucmpdi2.c                                      |  2 +-
 27 files changed, 62 insertions(+), 176 deletions(-)
 delete mode 100644 arch/mips/lib/ashldi3.c
 delete mode 100644 arch/mips/lib/ashrdi3.c
 delete mode 100644 arch/mips/lib/cmpdi2.c
 delete mode 100644 arch/mips/lib/lshrdi3.c
 delete mode 100644 arch/mips/lib/ucmpdi2.c
Merging nds32/next (99c7c4f57c4f nds32: Fix the allmodconfig build. To make sure CONFIG_CPU_LITTLE_ENDIAN is default y)
$ git merge nds32/next
Merge made by the 'recursive' strategy.
 arch/nds32/Kconfig                  |  7 +++++++
 arch/nds32/Kconfig.cpu              |  5 +++--
 arch/nds32/Makefile                 |  7 ++++---
 arch/nds32/include/asm/Kbuild       |  2 ++
 arch/nds32/include/asm/cacheflush.h |  2 ++
 arch/nds32/include/asm/io.h         |  2 ++
 arch/nds32/include/asm/page.h       |  3 +++
 arch/nds32/include/asm/pgtable.h    |  1 +
 arch/nds32/kernel/ex-entry.S        |  2 +-
 arch/nds32/kernel/stacktrace.c      |  2 ++
 arch/nds32/lib/copy_page.S          |  3 +++
 arch/nds32/mm/cacheflush.c          | 40 +++++++++++++++++++++++++++++++++++++
 arch/nds32/mm/init.c                |  1 +
 13 files changed, 71 insertions(+), 6 deletions(-)
Merging nios2/for-next (3d9644ef9a0f nios2: Use read_persistent_clock64() instead of read_persistent_clock())
$ git merge nios2/for-next
Already up to date.
Merging openrisc/for-next (d56f3af9e801 openrisc: remove unused __ARCH_HAVE_MMU define)
$ git merge openrisc/for-next
Already up to date.
Merging parisc-hd/for-next (c04d31f98cf5 parisc: Fix section mismatches)
$ git merge parisc-hd/for-next
Merge made by the 'recursive' strategy.
 arch/parisc/Makefile         |  7 +++----
 arch/parisc/kernel/drivers.c |  7 ++++---
 arch/parisc/kernel/pci.c     |  2 +-
 arch/parisc/kernel/time.c    |  2 +-
 arch/parisc/kernel/traps.c   | 11 +++++++++++
 arch/parisc/mm/init.c        |  2 +-
 drivers/parisc/ccio-dma.c    |  2 +-
 7 files changed, 22 insertions(+), 11 deletions(-)
Merging powerpc/next (60cc43fc8884 Linux 4.17-rc1)
$ git merge powerpc/next
Already up to date.
Merging fsl/next (c095ff93f901 powerpc/sysdev: change CPM GPIO to platform_device)
$ git merge fsl/next
Already up to date.
Merging risc-v/for-next (6d08b06e67cd Linux 4.17-rc2)
$ git merge risc-v/for-next
Already up to date.
Merging s390/features (598d76562cc2 s390/kexec_file: add declaration of purgatory related globals)
$ git merge s390/features
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                             | 2 +-
 arch/s390/configs/debug_defconfig       | 9 ++++-----
 arch/s390/configs/performance_defconfig | 8 ++++----
 arch/s390/include/asm/purgatory.h       | 6 ++++++
 4 files changed, 15 insertions(+), 10 deletions(-)
Merging sparc-next/master (17dec0a94915 Merge branch 'userns-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace)
$ git merge sparc-next/master
Already up to date.
Merging sh/for-next (bf9c7e3d7924 arch/sh: pcie-sh7786: handle non-zero DMA offset)
$ git merge sh/for-next
Already up to date.
Merging uml/linux-next (e40238dedb48 Fix vector raw inintialization logic)
$ git merge uml/linux-next
Already up to date.
Merging xtensa/xtensa-for-next (ae6063c83634 Merge branch 'xtensa-fixes' into xtensa-for-next)
$ git merge xtensa/xtensa-for-next
Merge made by the 'recursive' strategy.
 arch/xtensa/kernel/pci-dma.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
Merging fscrypt/master (0b1dfa4cc6c6 fscrypt: fix build with pre-4.6 gcc versions)
$ git merge fscrypt/master
Already up to date.
Merging befs/for-next (55d945e2e4aa fs: befs: btree: Fixed some coding standard issues)
$ git merge befs/for-next
Merge made by the 'recursive' strategy.
 fs/befs/btree.c | 97 ++++++++++++++++++++++++++++++---------------------------
 1 file changed, 51 insertions(+), 46 deletions(-)
Merging btrfs/next (7c9a09f56a91 btrfs: don't use async helpers for crcs when under IO limits)
$ git merge btrfs/next
Auto-merging kernel/cgroup/cgroup.c
Auto-merging include/linux/fs.h
Auto-merging include/linux/buffer_head.h
Auto-merging include/linux/backing-dev.h
Auto-merging fs/ext4/super.c
Auto-merging fs/ext4/inode.c
Auto-merging fs/ext2/super.c
Auto-merging fs/ext2/inode.c
Auto-merging fs/buffer.c
Auto-merging fs/btrfs/super.c
Auto-merging fs/btrfs/ioctl.c
Auto-merging fs/btrfs/inode.c
Auto-merging fs/btrfs/disk-io.c
Auto-merging fs/btrfs/check-integrity.c
Auto-merging fs/block_dev.c
Auto-merging block/blk-cgroup.c
Merge made by the 'recursive' strategy.
 block/blk-cgroup.c          |  1 +
 fs/block_dev.c              |  3 +--
 fs/btrfs/check-integrity.c  |  2 +-
 fs/btrfs/disk-io.c          |  4 ++++
 fs/btrfs/inode.c            | 15 ++++++++++++---
 fs/btrfs/ioctl.c            |  8 +++++++-
 fs/btrfs/super.c            |  1 -
 fs/buffer.c                 | 42 ++++++++++++++++++++++++++++++++++--------
 fs/ext2/inode.c             |  3 ++-
 fs/ext2/super.c             |  1 -
 fs/ext4/inode.c             |  4 +++-
 fs/ext4/super.c             |  2 --
 include/linux/backing-dev.h |  2 +-
 include/linux/buffer_head.h |  3 +++
 include/linux/fs.h          |  3 ++-
 kernel/cgroup/cgroup.c      |  1 +
 16 files changed, 72 insertions(+), 23 deletions(-)
$ git am -3 ../patches/0001-f2fs-fixup-for-cgroup-writeback-change.patch
Applying: f2fs: fixup for cgroup/writeback change
$ git reset HEAD^
Unstaged changes after reset:
M	fs/f2fs/inode.c
M	fs/f2fs/super.c
$ git add -A .
$ git commit -v -a --amend
[master 644206b41ea9] Merge remote-tracking branch 'btrfs/next'
 Date: Mon Apr 30 08:45:45 2018 +1000
Merging btrfs-kdave/for-next (5a855db86693 Merge branch 'for-next-next-v4.18-20180428' into for-next-20180428)
$ 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/disk-io.c
Merge made by the 'recursive' strategy.
 fs/btrfs/async-thread.c           |   1 +
 fs/btrfs/compression.c            |  21 +-
 fs/btrfs/ctree.h                  |  45 ++-
 fs/btrfs/delayed-ref.c            | 264 +++++++++--------
 fs/btrfs/delayed-ref.h            |   5 +-
 fs/btrfs/dev-replace.c            | 140 +++++++--
 fs/btrfs/disk-io.c                |   4 +-
 fs/btrfs/extent-tree.c            | 195 +++++++++----
 fs/btrfs/extent_io.c              | 130 +++------
 fs/btrfs/extent_io.h              |  25 +-
 fs/btrfs/extent_map.c             |   6 +-
 fs/btrfs/extent_map.h             |   3 +-
 fs/btrfs/file.c                   |  41 +--
 fs/btrfs/free-space-cache.c       |  22 +-
 fs/btrfs/free-space-cache.h       |   3 +-
 fs/btrfs/free-space-tree.c        |  77 ++---
 fs/btrfs/inode.c                  | 322 ++++++++++++++++-----
 fs/btrfs/ioctl.c                  | 578 ++++++++++++++++++++------------------
 fs/btrfs/print-tree.c             |  21 ++
 fs/btrfs/props.c                  |   2 +-
 fs/btrfs/qgroup.c                 |  49 ++--
 fs/btrfs/relocation.c             |   8 +-
 fs/btrfs/super.c                  |   3 +-
 fs/btrfs/sysfs.c                  |   2 +-
 fs/btrfs/tests/extent-map-tests.c |  60 ++--
 fs/btrfs/transaction.c            |  35 +--
 fs/btrfs/volumes.c                | 460 +++++++++++++-----------------
 fs/btrfs/volumes.h                |  14 +-
 fs/btrfs/zstd.c                   |  19 +-
 include/trace/events/btrfs.h      | 225 ++++++++-------
 include/uapi/linux/btrfs.h        |  26 ++
 31 files changed, 1569 insertions(+), 1237 deletions(-)
Merging ceph/master (9c55ad1c214d libceph: validate con->state at the top of try_write())
$ git merge ceph/master
Already up to date.
Merging cifs/for-next (41840cdbed77 smb3: fix redundant opens on root)
$ git merge cifs/for-next
Merge made by the 'recursive' strategy.
 fs/cifs/Kconfig      |  2 +-
 fs/cifs/cifs_fs_sb.h |  1 +
 fs/cifs/cifsfs.c     |  2 ++
 fs/cifs/cifsglob.h   |  5 ++++
 fs/cifs/cifssmb.c    |  6 +++++
 fs/cifs/connect.c    | 21 +++++++++------
 fs/cifs/misc.c       |  3 +++
 fs/cifs/smb2inode.c  | 43 ++++++++++++++++++++-----------
 fs/cifs/smb2ops.c    | 47 +++++++++++++++++++++++++++++++--
 fs/cifs/smb2pdu.c    | 73 +++++++++++++++++++++++++++-------------------------
 fs/cifs/smb2proto.h  |  2 ++
 11 files changed, 144 insertions(+), 61 deletions(-)
Merging configfs/for-next (6ace4f6bbcfd RDMA/cma: make config_item_type const)
$ git merge configfs/for-next
Already up to date.
Merging ecryptfs/next (e86281e700cc eCryptfs: don't pass up plaintext names when using filename encryption)
$ git merge ecryptfs/next
Already up to date.
Merging ext3/for_next (b1255ee6a289 Pull UDF UTF-16 handling improvements.)
$ git merge ext3/for_next
Merge made by the 'recursive' strategy.
 fs/udf/Kconfig   |   6 +-
 fs/udf/super.c   |  12 +--
 fs/udf/udfdecl.h |   3 +-
 fs/udf/unicode.c | 260 +++++++++++++++++++++++++++----------------------------
 4 files changed, 131 insertions(+), 150 deletions(-)
Merging ext4/dev (7ef79ad52136 ext4: add MODULE_SOFTDEP to ensure crc32c is included in the initramfs)
$ git merge ext4/dev
Already up to date.
Merging f2fs/dev (b549e322861b f2fs: check cap_resource only for data blocks)
$ git merge f2fs/dev
Auto-merging fs/f2fs/super.c
Merge made by the 'recursive' strategy.
 fs/crypto/bio.c                 |  35 ++++---
 fs/crypto/crypto.c              |   8 +-
 fs/crypto/fscrypt_private.h     |   1 -
 fs/ext4/readpage.c              |   2 +-
 fs/f2fs/checkpoint.c            |   2 +-
 fs/f2fs/data.c                  | 201 ++++++++++++++++++++++++++--------------
 fs/f2fs/f2fs.h                  |  21 +++--
 fs/f2fs/file.c                  |   4 +-
 fs/f2fs/gc.c                    |   6 +-
 fs/f2fs/inline.c                |   2 +-
 fs/f2fs/namei.c                 |   8 +-
 fs/f2fs/node.c                  |   2 +-
 fs/f2fs/super.c                 |   6 ++
 include/linux/fscrypt_notsupp.h |  13 ++-
 include/linux/fscrypt_supp.h    |   5 +-
 15 files changed, 204 insertions(+), 112 deletions(-)
Merging fuse/for-next (5ba24197b94d fuse: add writeback documentation)
$ git merge fuse/for-next
Auto-merging fs/fuse/inode.c
Merge made by the 'recursive' strategy.
 Documentation/filesystems/fuse-io.txt | 38 +++++++++++++++++++++++++++++
 fs/fuse/acl.c                         |  4 ++--
 fs/fuse/control.c                     |  2 +-
 fs/fuse/cuse.c                        | 11 ++++++---
 fs/fuse/dev.c                         | 40 +++++++++++++++----------------
 fs/fuse/dir.c                         | 45 +++++++++++++++++++++++++----------
 fs/fuse/fuse_i.h                      | 14 +++++++++--
 fs/fuse/inode.c                       | 40 +++++++++++++++++++------------
 include/uapi/linux/fuse.h             |  7 +++++-
 kernel/user_namespace.c               |  1 +
 10 files changed, 145 insertions(+), 57 deletions(-)
 create mode 100644 Documentation/filesystems/fuse-io.txt
Merging jfs/jfs-next (86313903430d MAINTAINERS: fix jfs tree location)
$ git merge jfs/jfs-next
Already up to date.
Merging nfs/linux-next (60cc43fc8884 Linux 4.17-rc1)
$ git merge nfs/linux-next
Already up to date.
Merging nfs-anna/linux-next (98de9ce6f666 NFS: advance nfs_entry cookie only after decoding completes successfully)
$ git merge nfs-anna/linux-next
Already up to date.
Merging nfsd/nfsd-next (36e000768550 nfsd: update obselete comment referencing the BKL)
$ git merge nfsd/nfsd-next
Merge made by the 'recursive' strategy.
 fs/nfsd/cache.h     |  5 -----
 fs/nfsd/nfs4state.c | 20 ++++++++++----------
 fs/nfsd/nfscache.c  |  6 ++----
 3 files changed, 12 insertions(+), 19 deletions(-)
Merging orangefs/for-next (8e9ba5c48ea6 Orangefs: documentation updates)
$ git merge orangefs/for-next
Already up to date.
Merging overlayfs/overlayfs-next (16149013f839 ovl: update documentation w.r.t "xino" feature)
$ git merge overlayfs/overlayfs-next
Already up to date.
Merging ubifs/linux-next (b5094b7f135b ubi: Reject MLC NAND)
$ git merge ubifs/linux-next
Already up to date.
Merging xfs/for-next (7b38460dc8e4 xfs: don't fail when converting shortform attr to long form during ATTR_REPLACE)
$ git merge xfs/for-next
Merge made by the 'recursive' strategy.
 fs/xfs/libxfs/xfs_attr.c      |  9 ++++++++-
 fs/xfs/libxfs/xfs_bmap.c      |  4 ++++
 fs/xfs/libxfs/xfs_inode_buf.c | 21 +++++++++++++++++++++
 fs/xfs/xfs_file.c             | 14 +++++++++-----
 4 files changed, 42 insertions(+), 6 deletions(-)
Merging file-locks/locks-next (8f0f5b62c65a errseq: Always report a writeback error once)
$ git merge file-locks/locks-next
Auto-merging include/linux/fs.h
Merge made by the 'recursive' strategy.
 fs/fcntl.c         | 15 +++++++--------
 include/linux/fs.h |  2 +-
 lib/errseq.c       | 23 +++++++++--------------
 3 files changed, 17 insertions(+), 23 deletions(-)
Merging vfs/for-next (d944db1fd238 Merge branches 'work.dcache' and 'work.misc' into for-next)
$ git merge vfs/for-next
Merge made by the 'recursive' strategy.
 fs/dcache.c                        | 122 +++++++++++++------------------------
 fs/fat/namei_msdos.c               |   4 --
 fs/read_write.c                    |   6 +-
 include/linux/sunrpc/rpc_pipe_fs.h |   2 -
 net/sunrpc/rpc_pipe.c              |  16 -----
 5 files changed, 46 insertions(+), 104 deletions(-)
Merging vfs-miklos/next (0eb8af4916a5 vfs: use helper for calling f_op->fsync())
$ git merge vfs-miklos/next
Already up to date.
Merging printk/for-next (f8521c77fcd4 Merge branch 'for-4.18-vsprintf-cleanup' into for-4.18)
$ git merge printk/for-next
Auto-merging lib/vsprintf.c
Auto-merging kernel/printk/printk.c
Merge made by the 'recursive' strategy.
 kernel/printk/printk.c |  14 +-----
 lib/test_printf.c      |   2 +-
 lib/vsprintf.c         | 130 ++++++++++++++++++++-----------------------------
 3 files changed, 56 insertions(+), 90 deletions(-)
Merging pci/next (276a20f7e4a6 Merge branch 'pci/virtualization')
$ git merge pci/next
Auto-merging arch/microblaze/include/asm/pci.h
Merge made by the 'recursive' strategy.
 arch/microblaze/include/asm/pci.h            |  4 --
 arch/microblaze/pci/pci-common.c             | 61 ----------------------------
 drivers/acpi/pci_root.c                      |  7 ++++
 drivers/net/ethernet/amazon/ena/ena_netdev.c | 28 +------------
 drivers/nvme/host/pci.c                      | 20 +--------
 drivers/pci/Kconfig                          | 12 ++++++
 drivers/pci/Makefile                         |  1 +
 drivers/pci/hotplug/ibmphp_core.c            |  2 +-
 drivers/pci/iov.c                            | 36 ++++++++++++++++
 drivers/pci/pci-pf-stub.c                    | 54 ++++++++++++++++++++++++
 drivers/pci/pcie/aspm.c                      |  9 ++++
 drivers/pci/probe.c                          |  5 +++
 include/linux/acpi.h                         |  3 +-
 include/linux/pci.h                          |  3 ++
 include/linux/pci_ids.h                      |  2 +
 15 files changed, 134 insertions(+), 113 deletions(-)
 create mode 100644 drivers/pci/pci-pf-stub.c
Merging pstore/for-next/pstore (e698aaf37f9f pstore: fix crypto dependencies without compression)
$ git merge pstore/for-next/pstore
Already up to date.
Merging hid/for-next (4936066ffbe9 Merge branch 'for-4.17/upstream-fixes' into for-next)
$ git merge hid/for-next
Merge made by the 'recursive' strategy.
 drivers/hid/Kconfig                          |  14 +-
 drivers/hid/Makefile                         |   1 +
 drivers/hid/hid-alps.c                       |  30 +++-
 drivers/hid/hid-core.c                       |  19 ++-
 drivers/hid/hid-generic.c                    |  15 ++
 drivers/hid/hid-gfrm.c                       |   2 +-
 drivers/hid/hid-ids.h                        |   9 ++
 drivers/hid/hid-input.c                      | 123 +++++++++++++--
 drivers/hid/hid-lenovo.c                     |  36 +++++
 drivers/hid/hid-magicmouse.c                 |   6 +-
 drivers/hid/hid-multitouch.c                 | 227 ++++++++++++++-------------
 drivers/hid/hid-redragon.c                   |  86 ++++++++++
 drivers/hid/i2c-hid/i2c-hid.c                |  23 ++-
 drivers/hid/intel-ish-hid/ishtp-hid-client.c |  36 ++---
 drivers/hid/intel-ish-hid/ishtp/bus.c        |   2 +-
 drivers/hid/wacom_sys.c                      |   4 +-
 include/linux/hid.h                          |  18 ++-
 17 files changed, 482 insertions(+), 169 deletions(-)
 create mode 100644 drivers/hid/hid-redragon.c
Merging i2c/i2c/for-next (2a010461207c i2c: sprd: Fix the i2c count issue)
$ git merge i2c/i2c/for-next
Already up to date.
Merging dmi/master (5cb06cfce4a8 firmware: dmi: Add access to the SKU ID string)
$ git merge dmi/master
Merge made by the 'recursive' strategy.
 drivers/firmware/dmi-id.c       | 2 ++
 drivers/firmware/dmi_scan.c     | 1 +
 include/linux/mod_devicetable.h | 1 +
 3 files changed, 4 insertions(+)
Merging hwmon-staging/hwmon-next (03af583b1f65 Merge tag 'ib-mfd-hwmon-v4.18' into hwmon-next)
$ git merge hwmon-staging/hwmon-next
Merge made by the 'recursive' strategy.
 drivers/hwmon/mc13783-adc.c | 60 +++++++++++++++++++++++++++++++++++++++++++++
 drivers/mfd/mc13xxx-core.c  | 15 +++++++++++-
 include/linux/mfd/mc13xxx.h |  2 ++
 3 files changed, 76 insertions(+), 1 deletion(-)
Merging jc_docs/docs-next (c9161088e54b docs/vm: ksm: split userspace interface to admin-guide/mm/ksm.rst)
$ git merge jc_docs/docs-next
Auto-merging mm/mmap.c
Auto-merging arch/mips/Kconfig
Auto-merging MAINTAINERS
Auto-merging Documentation/vm/zswap.rst
Auto-merging Documentation/vm/zsmalloc.rst
Auto-merging Documentation/vm/z3fold.rst
Auto-merging Documentation/vm/unevictable-lru.rst
Auto-merging Documentation/vm/transhuge.rst
Auto-merging Documentation/vm/swap_numa.rst
Auto-merging Documentation/vm/split_page_table_lock.rst
Removing Documentation/vm/slub.txt
Auto-merging Documentation/vm/remap_file_pages.rst
Auto-merging Documentation/vm/page_owner.rst
Auto-merging Documentation/vm/page_migration.rst
Auto-merging Documentation/vm/page_frags.rst
Removing Documentation/vm/overcommit-accounting
Removing Documentation/vm/numa_memory_policy.txt
Auto-merging Documentation/vm/numa.rst
Removing Documentation/vm/mmu_notifier.txt
Removing Documentation/vm/ksm.txt
Auto-merging Documentation/vm/hwpoison.rst
Auto-merging Documentation/vm/hugetlbfs_reserv.rst
Auto-merging Documentation/vm/hmm.rst
Auto-merging Documentation/vm/highmem.rst
Auto-merging Documentation/vm/frontswap.rst
Auto-merging Documentation/vm/cleancache.rst
Auto-merging Documentation/vm/balance.rst
Removing Documentation/vm/active_mm.txt
Auto-merging Documentation/trace/ftrace.rst
Auto-merging Documentation/admin-guide/mm/userfaultfd.rst
Auto-merging Documentation/admin-guide/mm/soft-dirty.rst
Auto-merging Documentation/admin-guide/mm/pagemap.rst
Auto-merging Documentation/admin-guide/mm/idle_page_tracking.rst
Auto-merging Documentation/admin-guide/mm/hugetlbpage.rst
Merge made by the 'recursive' strategy.
 Documentation/ABI/stable/sysfs-devices-node        |   2 +-
 .../ABI/testing/sysfs-kernel-mm-hugepages          |   2 +-
 Documentation/ABI/testing/sysfs-kernel-mm-ksm      |   2 +-
 Documentation/ABI/testing/sysfs-kernel-slab        |   4 +-
 Documentation/admin-guide/index.rst                |   1 +
 Documentation/admin-guide/kernel-parameters.txt    | 148 +++----
 .../mm/hugetlbpage.rst}                            | 263 ++++++-----
 .../mm/idle_page_tracking.rst}                     |  56 ++-
 Documentation/admin-guide/mm/index.rst             |  29 ++
 Documentation/admin-guide/mm/ksm.rst               | 189 ++++++++
 .../{vm/pagemap.txt => admin-guide/mm/pagemap.rst} | 184 ++++----
 .../mm/soft-dirty.rst}                             |  20 +-
 .../mm/userfaultfd.rst}                            |  66 +--
 Documentation/core-api/kernel-api.rst              |  60 +--
 Documentation/dev-tools/kasan.rst                  |   2 +-
 Documentation/dev-tools/kselftest.rst              |   5 +
 Documentation/driver-api/device_connection.rst     |   2 +-
 Documentation/filesystems/proc.txt                 |   6 +-
 Documentation/filesystems/tmpfs.txt                |   2 +-
 Documentation/index.rst                            |   3 +-
 Documentation/process/maintainer-pgp-guide.rst     |  39 +-
 Documentation/process/submitting-patches.rst       |   2 +-
 Documentation/sound/alsa-configuration.rst         |   4 +-
 Documentation/sound/soc/codec.rst                  |   2 +-
 Documentation/sound/soc/platform.rst               |   2 +-
 Documentation/sysctl/vm.txt                        |   6 +-
 Documentation/trace/coresight.txt                  | 103 +++--
 Documentation/trace/ftrace-uses.rst                |   4 +-
 Documentation/trace/ftrace.rst                     |   7 +-
 Documentation/vm/00-INDEX                          |  58 +--
 Documentation/vm/active_mm.rst                     |  91 ++++
 Documentation/vm/active_mm.txt                     |  83 ----
 Documentation/vm/{balance => balance.rst}          |  15 +-
 .../vm/{cleancache.txt => cleancache.rst}          | 105 +++--
 Documentation/vm/conf.py                           |  10 +
 Documentation/vm/{frontswap.txt => frontswap.rst}  |  59 ++-
 Documentation/vm/{highmem.txt => highmem.rst}      |  87 ++--
 Documentation/vm/{hmm.txt => hmm.rst}              |  78 ++--
 .../{hugetlbfs_reserv.txt => hugetlbfs_reserv.rst} | 220 ++++++----
 Documentation/vm/{hwpoison.txt => hwpoison.rst}    | 141 +++---
 Documentation/vm/index.rst                         |  51 +++
 Documentation/vm/ksm.rst                           |  87 ++++
 Documentation/vm/ksm.txt                           | 178 --------
 Documentation/vm/mmu_notifier.rst                  |  99 +++++
 Documentation/vm/mmu_notifier.txt                  |  93 ----
 Documentation/vm/{numa => numa.rst}                |   6 +-
 Documentation/vm/numa_memory_policy.rst            | 485 +++++++++++++++++++++
 Documentation/vm/numa_memory_policy.txt            | 452 -------------------
 Documentation/vm/overcommit-accounting             |  80 ----
 Documentation/vm/overcommit-accounting.rst         |  87 ++++
 Documentation/vm/{page_frags => page_frags.rst}    |   5 +-
 .../vm/{page_migration => page_migration.rst}      | 149 ++++---
 .../vm/{page_owner.txt => page_owner.rst}          |  34 +-
 .../{remap_file_pages.txt => remap_file_pages.rst} |   6 +
 Documentation/vm/slub.rst                          | 361 +++++++++++++++
 Documentation/vm/slub.txt                          | 342 ---------------
 ...t_page_table_lock => split_page_table_lock.rst} |  12 +-
 Documentation/vm/{swap_numa.txt => swap_numa.rst}  |  55 ++-
 Documentation/vm/{transhuge.txt => transhuge.rst}  | 286 +++++++-----
 .../{unevictable-lru.txt => unevictable-lru.rst}   | 117 +++--
 Documentation/vm/{z3fold.txt => z3fold.rst}        |   6 +-
 Documentation/vm/{zsmalloc.txt => zsmalloc.rst}    |  60 ++-
 Documentation/vm/{zswap.txt => zswap.rst}          |  71 +--
 LICENSES/exceptions/Linux-syscall-note             |   2 +-
 LICENSES/other/Apache-2.0                          | 183 ++++++++
 LICENSES/other/CC-BY-SA-4.0                        | 397 +++++++++++++++++
 LICENSES/other/CDDL-1.0                            | 364 ++++++++++++++++
 LICENSES/other/Linux-OpenIB                        |  26 ++
 LICENSES/other/X11                                 |  37 ++
 LICENSES/preferred/GPL-2.0                         |   6 +
 MAINTAINERS                                        |   2 +-
 arch/alpha/Kconfig                                 |   2 +-
 arch/ia64/Kconfig                                  |   2 +-
 arch/mips/Kconfig                                  |   2 +-
 arch/powerpc/Kconfig                               |   2 +-
 fs/Kconfig                                         |   2 +-
 fs/dax.c                                           |   2 +-
 fs/proc/task_mmu.c                                 |   4 +-
 include/linux/hmm.h                                |   2 +-
 include/linux/memremap.h                           |   4 +-
 include/linux/mmu_notifier.h                       |   2 +-
 include/linux/sched/mm.h                           |   4 +-
 include/linux/swap.h                               |   2 +-
 mm/Kconfig                                         |   7 +-
 mm/cleancache.c                                    |   2 +-
 mm/frontswap.c                                     |   2 +-
 mm/hmm.c                                           |   2 +-
 mm/huge_memory.c                                   |   4 +-
 mm/hugetlb.c                                       |   4 +-
 mm/ksm.c                                           |  23 +-
 mm/mmap.c                                          |   2 +-
 mm/rmap.c                                          |   6 +-
 mm/util.c                                          |   2 +-
 scripts/spdxcheck.py                               | 284 ++++++++++++
 94 files changed, 4297 insertions(+), 2372 deletions(-)
 rename Documentation/{vm/hugetlbpage.txt => admin-guide/mm/hugetlbpage.rst} (61%)
 rename Documentation/{vm/idle_page_tracking.txt => admin-guide/mm/idle_page_tracking.rst} (72%)
 create mode 100644 Documentation/admin-guide/mm/index.rst
 create mode 100644 Documentation/admin-guide/mm/ksm.rst
 rename Documentation/{vm/pagemap.txt => admin-guide/mm/pagemap.rst} (53%)
 rename Documentation/{vm/soft-dirty.txt => admin-guide/mm/soft-dirty.rst} (67%)
 rename Documentation/{vm/userfaultfd.txt => admin-guide/mm/userfaultfd.rst} (89%)
 create mode 100644 Documentation/vm/active_mm.rst
 delete mode 100644 Documentation/vm/active_mm.txt
 rename Documentation/vm/{balance => balance.rst} (96%)
 rename Documentation/vm/{cleancache.txt => cleancache.rst} (83%)
 create mode 100644 Documentation/vm/conf.py
 rename Documentation/vm/{frontswap.txt => frontswap.rst} (91%)
 rename Documentation/vm/{highmem.txt => highmem.rst} (64%)
 rename Documentation/vm/{hmm.txt => hmm.rst} (91%)
 rename Documentation/vm/{hugetlbfs_reserv.txt => hugetlbfs_reserv.rst} (86%)
 rename Documentation/vm/{hwpoison.txt => hwpoison.rst} (60%)
 create mode 100644 Documentation/vm/index.rst
 create mode 100644 Documentation/vm/ksm.rst
 delete mode 100644 Documentation/vm/ksm.txt
 create mode 100644 Documentation/vm/mmu_notifier.rst
 delete mode 100644 Documentation/vm/mmu_notifier.txt
 rename Documentation/vm/{numa => numa.rst} (99%)
 create mode 100644 Documentation/vm/numa_memory_policy.rst
 delete mode 100644 Documentation/vm/numa_memory_policy.txt
 delete mode 100644 Documentation/vm/overcommit-accounting
 create mode 100644 Documentation/vm/overcommit-accounting.rst
 rename Documentation/vm/{page_frags => page_frags.rst} (97%)
 rename Documentation/vm/{page_migration => page_migration.rst} (63%)
 rename Documentation/vm/{page_owner.txt => page_owner.rst} (86%)
 rename Documentation/vm/{remap_file_pages.txt => remap_file_pages.rst} (92%)
 create mode 100644 Documentation/vm/slub.rst
 delete mode 100644 Documentation/vm/slub.txt
 rename Documentation/vm/{split_page_table_lock => split_page_table_lock.rst} (95%)
 rename Documentation/vm/{swap_numa.txt => swap_numa.rst} (74%)
 rename Documentation/vm/{transhuge.txt => transhuge.rst} (74%)
 rename Documentation/vm/{unevictable-lru.txt => unevictable-lru.rst} (92%)
 rename Documentation/vm/{z3fold.txt => z3fold.rst} (97%)
 rename Documentation/vm/{zsmalloc.txt => zsmalloc.rst} (71%)
 rename Documentation/vm/{zswap.txt => zswap.rst} (74%)
 create mode 100644 LICENSES/other/Apache-2.0
 create mode 100644 LICENSES/other/CC-BY-SA-4.0
 create mode 100644 LICENSES/other/CDDL-1.0
 create mode 100644 LICENSES/other/Linux-OpenIB
 create mode 100644 LICENSES/other/X11
 create mode 100755 scripts/spdxcheck.py
Merging v4l-dvb/master (a2b2eff6ac27 media: v4l: fwnode: Fix comment incorrectly mentioning v4l2_fwnode_parse_endpoint)
$ git merge v4l-dvb/master
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/media/rcar_vin.txt         | 137 ++-
 Documentation/media/uapi/rc/lirc-dev-intro.rst     |   2 +-
 Documentation/media/uapi/rc/lirc-func.rst          |   1 +
 .../media/uapi/rc/lirc-set-rec-timeout.rst         |  14 +-
 drivers/media/cec/cec-core.c                       |   2 +-
 drivers/media/i2c/ov7740.c                         |  22 +-
 drivers/media/i2c/tda1997x.c                       |   2 +-
 drivers/media/pci/cx88/cx88-input.c                |   5 +-
 drivers/media/platform/Kconfig                     |   7 +-
 drivers/media/platform/omap3isp/isp.c              |   8 +
 drivers/media/platform/omap3isp/isppreview.c       |   4 +-
 drivers/media/platform/omap3isp/ispvideo.c         |   2 +-
 drivers/media/platform/rcar-vin/Kconfig            |   2 +-
 drivers/media/platform/rcar-vin/rcar-core.c        | 956 +++++++++++++++++++--
 drivers/media/platform/rcar-vin/rcar-dma.c         | 907 +++++++++++--------
 drivers/media/platform/rcar-vin/rcar-v4l2.c        | 480 ++++++-----
 drivers/media/platform/rcar-vin/rcar-vin.h         | 146 +++-
 drivers/media/radio/Kconfig                        |   3 +-
 drivers/media/rc/ir-imon-decoder.c                 |   1 +
 drivers/media/rc/ir-jvc-decoder.c                  |   1 +
 drivers/media/rc/ir-mce_kbd-decoder.c              |  58 +-
 drivers/media/rc/ir-nec-decoder.c                  |   1 +
 drivers/media/rc/ir-rc5-decoder.c                  |   1 +
 drivers/media/rc/ir-rc6-decoder.c                  |   1 +
 drivers/media/rc/ir-sanyo-decoder.c                |   1 +
 drivers/media/rc/ir-sharp-decoder.c                |   1 +
 drivers/media/rc/ir-sony-decoder.c                 |   1 +
 drivers/media/rc/ir-spi.c                          |   4 +-
 drivers/media/rc/ir-xmp-decoder.c                  |   1 +
 drivers/media/rc/lirc_dev.c                        |  31 +-
 drivers/media/rc/mceusb.c                          |  29 +-
 drivers/media/rc/mtk-cir.c                         |   4 +-
 drivers/media/rc/rc-core-priv.h                    |   3 +
 drivers/media/rc/rc-ir-raw.c                       |  31 +-
 drivers/media/rc/rc-main.c                         |  68 +-
 drivers/pnp/isapnp/Kconfig                         |   2 +-
 include/linux/omap-iommu.h                         |   5 +
 include/media/v4l2-fwnode.h                        |   2 +-
 include/uapi/linux/lirc.h                          |   6 +
 sound/isa/Kconfig                                  |   3 +-
 40 files changed, 2202 insertions(+), 753 deletions(-)
Merging v4l-dvb-next/master (17dec0a94915 Merge branch 'userns-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace)
$ git merge v4l-dvb-next/master
Already up to date.
Merging fbdev/fbdev-for-next (85d108dee574 video: omap: Improve a size determination in omapfb_do_probe())
$ git merge fbdev/fbdev-for-next
Merge made by the 'recursive' strategy.
 drivers/video/fbdev/Kconfig                            |  2 +-
 drivers/video/fbdev/aty/aty128fb.c                     |  2 +-
 drivers/video/fbdev/aty/radeon_pm.c                    |  8 ++++----
 drivers/video/fbdev/auo_k190x.c                        | 13 ++++---------
 drivers/video/fbdev/core/fb_defio.c                    |  4 ++--
 drivers/video/fbdev/mmp/fb/mmpfb.c                     |  5 ++---
 drivers/video/fbdev/mmp/hw/mmp_ctrl.c                  |  8 +++-----
 drivers/video/fbdev/omap/omapfb_main.c                 |  2 +-
 .../video/fbdev/omap2/omapfb/displays/panel-dsi-cm.c   | 18 ++++++------------
 drivers/video/fbdev/savage/savagefb_driver.c           |  8 ++++----
 drivers/video/fbdev/sh_mobile_lcdcfb.c                 | 14 ++++----------
 drivers/video/fbdev/sh_mobile_meram.c                  | 10 +++-------
 drivers/video/fbdev/sm501fb.c                          |  3 +--
 13 files changed, 36 insertions(+), 61 deletions(-)
Merging pm/linux-next (fa3ee26bbaed Merge branches 'pm-cpufreq' and 'pm-core' into linux-next)
$ git merge pm/linux-next
Merge made by the 'recursive' strategy.
 Documentation/acpi/cppc_sysfs.txt |  69 ++++++++++++++++++++++++
 drivers/acpi/cppc_acpi.c          | 111 +++++++++++++++++++++++++++++---------
 drivers/base/base.h               |   3 ++
 drivers/base/core.c               |  20 +++++++
 drivers/base/dd.c                 |   4 +-
 drivers/cpufreq/cppc_cpufreq.c    |  80 ++++++++++++++++++++++-----
 include/acpi/cppc_acpi.h          |  14 +++--
 7 files changed, 257 insertions(+), 44 deletions(-)
 create mode 100644 Documentation/acpi/cppc_sysfs.txt
Merging cpupower/cpupower (7928b2cbe55b Linux 4.16-rc1)
$ git merge cpupower/cpupower
Already up to date.
Merging idle/next (8a5776a5f498 Linux 4.14-rc4)
$ git merge idle/next
Already up to date.
Merging opp/opp/linux-next (4a823c0be80f opp: cpu: Replace GFP_ATOMIC with GFP_KERNEL in dev_pm_opp_init_cpufreq_table)
$ git merge opp/opp/linux-next
Already up to date.
Merging thermal/next (16be45dad053 thermal: Use DEVICE_ATTR_{RO|RW|WO}() variants)
$ git merge thermal/next
Merge made by the 'recursive' strategy.
 drivers/thermal/int340x_thermal/int3403_thermal.c |  3 +-
 drivers/thermal/thermal_core.c                    |  6 +-
 drivers/thermal/thermal_core.h                    | 13 ++--
 drivers/thermal/thermal_sysfs.c                   | 76 +++++++++--------------
 4 files changed, 36 insertions(+), 62 deletions(-)
Merging thermal-soc/next (c8da6cdef57b thermal: exynos: Propagate error value from tmu_read())
$ git merge thermal-soc/next
Merge made by the 'recursive' strategy.
 drivers/thermal/samsung/exynos_tmu.c | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)
Merging ieee1394/for-next (188775181bc0 firewire-ohci: work around oversized DMA reads on JMicron controllers)
$ git merge ieee1394/for-next
Already up to date.
Merging dlm/next (9250e523592a dlm: remove dlm_send_rcom_lookup_dump)
$ git merge dlm/next
Already up to date.
Merging swiotlb/linux-next (69369f52d28a swiotlb-xen: implement xen_swiotlb_get_sgtable callback)
$ git merge swiotlb/linux-next
Already up to date.
Merging rdma/for-next (fe896ceb5772 IB/rxe: replace refcount_inc with skb_get)
$ git merge rdma/for-next
Merge made by the 'recursive' strategy.
 drivers/infiniband/core/addr.c           | 172 +++++++++++--------------------
 drivers/infiniband/core/cma.c            |   6 +-
 drivers/infiniband/hw/i40iw/i40iw_cm.c   |   4 +-
 drivers/infiniband/hw/i40iw/i40iw_main.c |   2 +-
 drivers/infiniband/sw/rxe/rxe.c          |   3 -
 drivers/infiniband/sw/rxe/rxe_net.c      |   4 +-
 drivers/infiniband/sw/rxe/rxe_net.h      |   3 -
 drivers/infiniband/sw/rxe/rxe_recv.c     |   2 +-
 drivers/infiniband/sw/rxe/rxe_resp.c     |  19 +---
 include/rdma/ib_addr.h                   |  20 +---
 10 files changed, 71 insertions(+), 164 deletions(-)
Merging net-next/master (9e8d438e8ba4 net: phy: Fix modular PHYLIB build)
$ git merge net-next/master
Auto-merging tools/testing/selftests/net/Makefile
CONFLICT (content): Merge conflict in tools/testing/selftests/net/Makefile
Auto-merging tools/testing/selftests/bpf/test_tunnel_kern.c
Auto-merging tools/testing/selftests/bpf/test_sockmap_kern.c
Auto-merging tools/testing/selftests/bpf/test_sockmap.c
Removing samples/sockmap/sockmap_test.sh
Removing samples/sockmap/Makefile
Removing samples/bpf/test_tunnel_bpf.sh
Auto-merging net/tipc/node.c
Auto-merging net/ipv4/tcp.c
Removing include/linux/platform_data/mdio-gpio.h
Auto-merging drivers/net/ethernet/broadcom/bcmsysport.c
Auto-merging MAINTAINERS
Auto-merging Documentation/networking/ip-sysctl.txt
Recorded preimage for 'tools/testing/selftests/net/Makefile'
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'tools/testing/selftests/net/Makefile'.
[master 16df1ff0da36] Merge remote-tracking branch 'net-next/master'
$ git diff -M --stat --summary HEAD^..
 .../devicetree/bindings/net/microchip,lan78xx.txt  |   54 +
 .../bindings/net/socionext,uniphier-ave4.txt       |   19 +-
 .../bindings/soc/ti/keystone-navigator-qmss.txt    |    9 +-
 Documentation/filesystems/nfs/nfsroot.txt          |   70 +-
 Documentation/networking/ip-sysctl.txt             |   13 +
 Documentation/networking/netdev-features.txt       |    7 +
 MAINTAINERS                                        |    3 +-
 drivers/dca/dca-core.c                             |    2 +-
 drivers/net/Kconfig                                |    1 +
 drivers/net/dsa/b53/b53_common.c                   |   81 +-
 drivers/net/dsa/b53/b53_priv.h                     |    6 +-
 drivers/net/dsa/bcm_sf2.c                          |    1 +
 drivers/net/dsa/dsa_loop.c                         |   12 +-
 drivers/net/dsa/lan9303-core.c                     |   11 +-
 drivers/net/dsa/microchip/ksz_common.c             |   11 +-
 drivers/net/dsa/mt7530.c                           |   11 +-
 drivers/net/dsa/mv88e6xxx/chip.c                   |   16 +-
 drivers/net/dsa/mv88e6xxx/chip.h                   |    4 -
 drivers/net/dsa/qca8k.c                            |   10 +-
 drivers/net/ethernet/8390/Kconfig                  |   17 +-
 drivers/net/ethernet/8390/Makefile                 |    1 +
 drivers/net/ethernet/8390/ax88796.c                |  228 ++-
 drivers/net/ethernet/8390/xsurf100.c               |  382 ++++
 drivers/net/ethernet/amd/amd8111e.c                |   16 +-
 drivers/net/ethernet/broadcom/bcmsysport.c         |    6 +-
 drivers/net/ethernet/broadcom/bnxt/Makefile        |    1 +
 drivers/net/ethernet/broadcom/bnxt/bnxt.c          |  147 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt.h          |    9 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.c      |  166 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_debugfs.c  |  124 ++
 drivers/net/ethernet/broadcom/bnxt/bnxt_debugfs.h  |   23 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_dim.c      |    8 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c  |   40 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c    |   19 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.h    |   17 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c      |    2 +-
 drivers/net/ethernet/broadcom/genet/bcmgenet.c     |    6 +-
 .../ethernet/cavium/liquidio/cn23xx_pf_device.c    |   54 +
 .../ethernet/cavium/liquidio/cn23xx_pf_device.h    |   12 +
 drivers/net/ethernet/cavium/liquidio/lio_core.c    |  156 ++
 drivers/net/ethernet/cavium/liquidio/lio_ethtool.c |  267 +--
 drivers/net/ethernet/cavium/liquidio/lio_main.c    |   80 +-
 drivers/net/ethernet/cavium/liquidio/lio_vf_main.c |   47 +-
 drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c  |   15 +-
 .../net/ethernet/cavium/liquidio/liquidio_common.h |   80 +-
 drivers/net/ethernet/cavium/liquidio/octeon_iq.h   |    4 +-
 .../net/ethernet/cavium/liquidio/octeon_mailbox.c  |   52 +
 .../net/ethernet/cavium/liquidio/octeon_mailbox.h  |    7 +
 .../net/ethernet/cavium/liquidio/octeon_network.h  |    2 +
 drivers/net/ethernet/cavium/thunder/nicvf_main.c   |    2 +-
 .../net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c    |   16 +
 drivers/net/ethernet/freescale/fman/fman_port.c    |    8 +-
 drivers/net/ethernet/huawei/hinic/Kconfig          |    2 +-
 drivers/net/ethernet/intel/e100.c                  |   28 +-
 drivers/net/ethernet/intel/e1000/Makefile          |   26 -
 drivers/net/ethernet/intel/e1000/e1000.h           |   29 +-
 drivers/net/ethernet/intel/e1000/e1000_ethtool.c   |   23 +-
 drivers/net/ethernet/intel/e1000/e1000_hw.c        |   28 +-
 drivers/net/ethernet/intel/e1000/e1000_hw.h        |   28 +-
 drivers/net/ethernet/intel/e1000/e1000_main.c      |   28 +-
 drivers/net/ethernet/intel/e1000/e1000_osdep.h     |   29 +-
 drivers/net/ethernet/intel/e1000/e1000_param.c     |   28 +-
 drivers/net/ethernet/intel/e1000e/80003es2lan.c    |   21 +-
 drivers/net/ethernet/intel/e1000e/80003es2lan.h    |   21 +-
 drivers/net/ethernet/intel/e1000e/82571.c          |   21 +-
 drivers/net/ethernet/intel/e1000e/82571.h          |   21 +-
 drivers/net/ethernet/intel/e1000e/Makefile         |   27 +-
 drivers/net/ethernet/intel/e1000e/defines.h        |   21 +-
 drivers/net/ethernet/intel/e1000e/e1000.h          |   21 +-
 drivers/net/ethernet/intel/e1000e/ethtool.c        |   21 +-
 drivers/net/ethernet/intel/e1000e/hw.h             |   21 +-
 drivers/net/ethernet/intel/e1000e/ich8lan.c        |   21 +-
 drivers/net/ethernet/intel/e1000e/ich8lan.h        |   21 +-
 drivers/net/ethernet/intel/e1000e/mac.c            |   21 +-
 drivers/net/ethernet/intel/e1000e/mac.h            |   21 +-
 drivers/net/ethernet/intel/e1000e/manage.c         |   21 +-
 drivers/net/ethernet/intel/e1000e/manage.h         |   21 +-
 drivers/net/ethernet/intel/e1000e/netdev.c         |   21 +-
 drivers/net/ethernet/intel/e1000e/nvm.c            |   21 +-
 drivers/net/ethernet/intel/e1000e/nvm.h            |   21 +-
 drivers/net/ethernet/intel/e1000e/param.c          |   21 +-
 drivers/net/ethernet/intel/e1000e/phy.c            |   21 +-
 drivers/net/ethernet/intel/e1000e/phy.h            |   21 +-
 drivers/net/ethernet/intel/e1000e/ptp.c            |   21 +-
 drivers/net/ethernet/intel/e1000e/regs.h           |   21 +-
 drivers/net/ethernet/intel/fm10k/Makefile          |   23 +-
 drivers/net/ethernet/intel/fm10k/fm10k.h           |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_common.c    |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_common.h    |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_dcbnl.c     |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_debugfs.c   |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_ethtool.c   |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_iov.c       |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_main.c      |   27 +-
 drivers/net/ethernet/intel/fm10k/fm10k_mbx.c       |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_mbx.h       |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_netdev.c    |   32 +-
 drivers/net/ethernet/intel/fm10k/fm10k_pci.c       |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_pf.c        |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_pf.h        |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_tlv.c       |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_tlv.h       |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_type.h      |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_vf.c        |   20 +-
 drivers/net/ethernet/intel/fm10k/fm10k_vf.h        |   20 +-
 drivers/net/ethernet/intel/i40e/Makefile           |   26 +-
 drivers/net/ethernet/intel/i40e/i40e.h             |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_adminq.c      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_adminq.h      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_adminq_cmd.h  |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_alloc.h       |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_client.c      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_client.h      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_common.c      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_dcb.c         |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_dcb.h         |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_dcb_nl.c      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_debugfs.c     |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_devids.h      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_diag.c        |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_diag.h        |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c     |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_hmc.c         |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_hmc.h         |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c     |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_lan_hmc.h     |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_main.c        |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_nvm.c         |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_osdep.h       |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_prototype.h   |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_ptp.c         |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_register.h    |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_status.h      |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_trace.h       |   23 +-
 drivers/net/ethernet/intel/i40e/i40e_txrx.c        |   59 +-
 drivers/net/ethernet/intel/i40e/i40e_txrx.h        |   29 +-
 drivers/net/ethernet/intel/i40e/i40e_type.h        |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c |   26 +-
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h |   26 +-
 drivers/net/ethernet/intel/i40evf/Makefile         |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_adminq.c    |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_adminq.h    |   26 +-
 .../net/ethernet/intel/i40evf/i40e_adminq_cmd.h    |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_alloc.h     |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_common.c    |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_devids.h    |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_hmc.h       |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_lan_hmc.h   |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_osdep.h     |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_prototype.h |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_register.h  |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_status.h    |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_trace.h     |   23 +-
 drivers/net/ethernet/intel/i40evf/i40e_txrx.c      |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_txrx.h      |   26 +-
 drivers/net/ethernet/intel/i40evf/i40e_type.h      |   26 +-
 drivers/net/ethernet/intel/i40evf/i40evf.h         |   26 +-
 drivers/net/ethernet/intel/i40evf/i40evf_client.c  |    2 +
 drivers/net/ethernet/intel/i40evf/i40evf_client.h  |    2 +
 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c |   26 +-
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |   26 +-
 .../net/ethernet/intel/i40evf/i40evf_virtchnl.c    |   26 +-
 drivers/net/ethernet/intel/igb/Makefile            |   28 +-
 drivers/net/ethernet/intel/igb/e1000_82575.c       |   23 +-
 drivers/net/ethernet/intel/igb/e1000_82575.h       |   23 +-
 drivers/net/ethernet/intel/igb/e1000_defines.h     |   25 +-
 drivers/net/ethernet/intel/igb/e1000_hw.h          |   22 +-
 drivers/net/ethernet/intel/igb/e1000_i210.c        |   23 +-
 drivers/net/ethernet/intel/igb/e1000_i210.h        |   23 +-
 drivers/net/ethernet/intel/igb/e1000_mac.c         |   23 +-
 drivers/net/ethernet/intel/igb/e1000_mac.h         |   23 +-
 drivers/net/ethernet/intel/igb/e1000_mbx.c         |   23 +-
 drivers/net/ethernet/intel/igb/e1000_mbx.h         |   23 +-
 drivers/net/ethernet/intel/igb/e1000_nvm.c         |   22 +-
 drivers/net/ethernet/intel/igb/e1000_nvm.h         |   23 +-
 drivers/net/ethernet/intel/igb/e1000_phy.c         |   23 +-
 drivers/net/ethernet/intel/igb/e1000_phy.h         |   23 +-
 drivers/net/ethernet/intel/igb/e1000_regs.h        |   23 +-
 drivers/net/ethernet/intel/igb/igb.h               |   36 +-
 drivers/net/ethernet/intel/igb/igb_ethtool.c       |   96 +-
 drivers/net/ethernet/intel/igb/igb_hwmon.c         |   23 +-
 drivers/net/ethernet/intel/igb/igb_main.c          |  389 +++-
 drivers/net/ethernet/intel/igb/igb_ptp.c           |   19 +-
 drivers/net/ethernet/intel/igbvf/Makefile          |   28 +-
 drivers/net/ethernet/intel/igbvf/defines.h         |   26 +-
 drivers/net/ethernet/intel/igbvf/ethtool.c         |   26 +-
 drivers/net/ethernet/intel/igbvf/igbvf.h           |   26 +-
 drivers/net/ethernet/intel/igbvf/mbx.c             |   26 +-
 drivers/net/ethernet/intel/igbvf/mbx.h             |   26 +-
 drivers/net/ethernet/intel/igbvf/netdev.c          |   26 +-
 drivers/net/ethernet/intel/igbvf/regs.h            |   26 +-
 drivers/net/ethernet/intel/igbvf/vf.c              |   26 +-
 drivers/net/ethernet/intel/igbvf/vf.h              |   26 +-
 drivers/net/ethernet/intel/ixgb/Makefile           |   27 -
 drivers/net/ethernet/intel/ixgb/ixgb.h             |   28 +-
 drivers/net/ethernet/intel/ixgb/ixgb_ee.c          |   29 +-
 drivers/net/ethernet/intel/ixgb/ixgb_ee.h          |   28 +-
 drivers/net/ethernet/intel/ixgb/ixgb_ethtool.c     |   29 +-
 drivers/net/ethernet/intel/ixgb/ixgb_hw.c          |   29 +-
 drivers/net/ethernet/intel/ixgb/ixgb_hw.h          |   28 +-
 drivers/net/ethernet/intel/ixgb/ixgb_ids.h         |   28 +-
 drivers/net/ethernet/intel/ixgb/ixgb_main.c        |   29 +-
 drivers/net/ethernet/intel/ixgb/ixgb_osdep.h       |   28 +-
 drivers/net/ethernet/intel/ixgb/ixgb_param.c       |   29 +-
 drivers/net/ethernet/intel/ixgbe/Makefile          |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe.h           |   32 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c     |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c     |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c    |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.h    |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c       |   30 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.h       |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82598.c |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82598.h |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82599.c |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82599.h |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_nl.c    |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_debugfs.c   |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c   |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c      |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.h      |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c     |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.h     |   27 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c       |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c      |  373 ++--
 drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c       |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h       |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_model.h     |   26 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c       |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h       |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c       |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c     |   34 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.h     |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sysfs.c     |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h      |   28 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c      |   29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.h      |   24 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c      |   26 +-
 drivers/net/ethernet/intel/ixgbevf/Makefile        |   28 +-
 drivers/net/ethernet/intel/ixgbevf/defines.h       |   26 +-
 drivers/net/ethernet/intel/ixgbevf/ethtool.c       |   27 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf.h       |   26 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c  |   27 +-
 drivers/net/ethernet/intel/ixgbevf/mbx.c           |   27 +-
 drivers/net/ethernet/intel/ixgbevf/mbx.h           |   26 +-
 drivers/net/ethernet/intel/ixgbevf/regs.h          |   26 +-
 drivers/net/ethernet/intel/ixgbevf/vf.c            |   27 +-
 drivers/net/ethernet/intel/ixgbevf/vf.h            |   26 +-
 drivers/net/ethernet/mediatek/mtk_eth_soc.c        |    4 +-
 drivers/net/ethernet/mellanox/mlx4/en_rx.c         |    2 +-
 drivers/net/ethernet/mellanox/mlx5/core/Kconfig    |    1 +
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |    8 +
 drivers/net/ethernet/mellanox/mlx5/core/en_dim.c   |   28 +-
 .../net/ethernet/mellanox/mlx5/core/en_ethtool.c   |   35 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |  116 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_rx.c    |   42 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c  |   37 +-
 .../net/ethernet/mellanox/mlxsw/spectrum_router.c  |  152 +-
 drivers/net/ethernet/netronome/nfp/bpf/jit.c       |  231 +--
 drivers/net/ethernet/netronome/nfp/bpf/main.h      |    6 +-
 drivers/net/ethernet/netronome/nfp/flower/main.h   |    9 +-
 .../net/ethernet/netronome/nfp/flower/metadata.c   |   20 +-
 .../net/ethernet/netronome/nfp/flower/offload.c    |   50 +-
 drivers/net/ethernet/netronome/nfp/nfp_main.c      |    5 +
 .../net/ethernet/netronome/nfp/nfp_net_common.c    |    2 +-
 drivers/net/ethernet/netronome/nfp/nfpcore/nfp.h   |    2 +
 .../ethernet/netronome/nfp/nfpcore/nfp6000_pcie.c  |    1 +
 .../net/ethernet/netronome/nfp/nfpcore/nfp_cpp.h   |    2 +
 .../net/ethernet/netronome/nfp/nfpcore/nfp_mutex.c |   45 +
 .../ethernet/netronome/nfp/nfpcore/nfp_resource.c  |   59 +
 drivers/net/ethernet/qlogic/qed/qed_debug.c        |  118 +-
 drivers/net/ethernet/qlogic/qed/qed_l2.c           |   19 +
 drivers/net/ethernet/qlogic/qed/qed_main.c         |    9 +-
 drivers/net/ethernet/qlogic/qed/qed_mcp.c          |   18 +-
 drivers/net/ethernet/qlogic/qed/qed_mcp.h          |   16 +-
 drivers/net/ethernet/qlogic/qed/qed_sriov.c        |  247 ++-
 drivers/net/ethernet/qlogic/qed/qed_vf.c           |   29 +
 drivers/net/ethernet/qlogic/qed/qed_vf.h           |   21 +
 drivers/net/ethernet/qlogic/qede/qede_filter.c     |    7 +-
 drivers/net/ethernet/realtek/r8169.c               |  406 ++--
 drivers/net/ethernet/sfc/efx.c                     |   36 +
 drivers/net/ethernet/socionext/Kconfig             |    2 +
 drivers/net/ethernet/socionext/netsec.c            |   27 +-
 drivers/net/ethernet/socionext/sni_ave.c           |  252 ++-
 drivers/net/ethernet/stmicro/stmmac/Makefile       |    3 +-
 drivers/net/ethernet/stmicro/stmmac/chain_mode.c   |   34 +-
 drivers/net/ethernet/stmicro/stmmac/common.h       |  229 +--
 drivers/net/ethernet/stmicro/stmmac/dwmac1000.h    |    1 -
 .../net/ethernet/stmicro/stmmac/dwmac1000_core.c   |   29 +-
 .../net/ethernet/stmicro/stmmac/dwmac100_core.c    |   23 +-
 drivers/net/ethernet/stmicro/stmmac/dwmac4.h       |    1 -
 drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c  |   41 +-
 drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.c |    4 +-
 drivers/net/ethernet/stmicro/stmmac/dwmac5.c       |   19 +-
 drivers/net/ethernet/stmicro/stmmac/dwmac5.h       |    6 +-
 drivers/net/ethernet/stmicro/stmmac/enh_desc.c     |    4 +-
 drivers/net/ethernet/stmicro/stmmac/hwif.c         |  220 +++
 drivers/net/ethernet/stmicro/stmmac/hwif.h         |  438 +++++
 drivers/net/ethernet/stmicro/stmmac/norm_desc.c    |    4 +-
 drivers/net/ethernet/stmicro/stmmac/ring_mode.c    |   39 +-
 drivers/net/ethernet/stmicro/stmmac/stmmac.h       |    1 +
 .../net/ethernet/stmicro/stmmac/stmmac_ethtool.c   |   82 +-
 .../net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c  |   34 +-
 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c  |  516 ++---
 drivers/net/ethernet/stmicro/stmmac/stmmac_ptp.c   |   18 +-
 drivers/net/ethernet/ti/netcp.h                    |    3 +
 drivers/net/ethernet/ti/netcp_core.c               |   32 +
 drivers/net/ethernet/ti/netcp_ethss.c              |  181 +-
 drivers/net/geneve.c                               |   72 +-
 drivers/net/hamradio/mkiss.c                       |    2 +-
 drivers/net/hyperv/Kconfig                         |    1 +
 drivers/net/hyperv/hyperv_net.h                    |  164 ++
 drivers/net/hyperv/netvsc.c                        |   61 +-
 drivers/net/hyperv/rndis_filter.c                  |   28 +
 drivers/net/macvlan.c                              |   68 +-
 drivers/net/phy/Kconfig                            |    6 +
 drivers/net/phy/Makefile                           |    1 +
 drivers/net/phy/asix.c                             |   63 +
 drivers/net/phy/bcm-phy-lib.c                      |    6 +-
 drivers/net/phy/marvell.c                          |    5 +-
 drivers/net/phy/mdio-bitbang.c                     |    9 -
 drivers/net/phy/mdio-boardinfo.c                   |    5 +-
 drivers/net/phy/mdio-gpio.c                        |  122 +-
 drivers/net/phy/micrel.c                           |    5 +-
 drivers/net/phy/microchip.c                        |   25 +
 drivers/net/phy/smsc.c                             |    5 +-
 drivers/net/team/team.c                            |    2 +-
 drivers/net/tun.c                                  |   78 +-
 drivers/net/usb/lan78xx.c                          |  128 +-
 drivers/net/virtio_net.c                           |   74 +-
 drivers/net/vrf.c                                  |   25 +-
 drivers/net/vxlan.c                                |   17 +-
 drivers/ptp/ptp_pch.c                              |    7 +-
 drivers/s390/net/lcs.c                             |    3 +
 drivers/s390/net/qeth_core.h                       |   61 +-
 drivers/s390/net/qeth_core_main.c                  |  148 +-
 drivers/s390/net/qeth_core_mpc.h                   |    2 +
 drivers/s390/net/qeth_core_sys.c                   |    2 +
 drivers/s390/net/qeth_l2_main.c                    |   98 +-
 drivers/s390/net/qeth_l3_main.c                    |  207 +-
 drivers/soc/ti/knav_dma.c                          |    8 +
 drivers/soc/ti/knav_qmss.h                         |    6 +
 drivers/soc/ti/knav_qmss_queue.c                   |   98 +-
 drivers/vhost/net.c                                |   19 +-
 include/dt-bindings/net/microchip-lan78xx.h        |   21 +
 include/linux/bpf.h                                |   20 +-
 include/linux/btf.h                                |   48 +
 include/linux/ethtool.h                            |    5 +
 include/linux/filter.h                             |   24 +-
 include/linux/if_macvlan.h                         |   29 +-
 include/linux/if_tun.h                             |    4 +-
 include/linux/mdio-bitbang.h                       |    2 -
 include/linux/mdio-gpio.h                          |    9 +
 include/linux/microchipphy.h                       |    3 +
 include/linux/net.h                                |    1 +
 include/linux/net_dim.h                            |   69 +-
 include/linux/netdev_features.h                    |    5 +-
 include/linux/netdevice.h                          |    5 +-
 include/linux/phy.h                                |   46 +
 include/linux/platform_data/mdio-gpio.h            |   33 -
 include/linux/qed/qed_eth_if.h                     |    1 +
 include/linux/qed/qed_if.h                         |    3 +
 include/linux/rhashtable.h                         |   38 +-
 include/linux/skbuff.h                             |    7 +-
 include/linux/soc/ti/knav_dma.h                    |   12 +
 include/linux/soc/ti/knav_qmss.h                   |    1 +
 include/linux/tcp.h                                |    1 +
 include/linux/udp.h                                |    3 +
 include/net/addrconf.h                             |   14 +
 include/net/ax88796.h                              |   14 +
 include/net/dsa.h                                  |   12 +-
 include/net/fib_rules.h                            |    3 +-
 include/net/if_inet6.h                             |    5 +-
 include/net/inet_sock.h                            |    1 +
 include/net/ip.h                                   |    6 +-
 include/net/ip6_fib.h                              |  180 +-
 include/net/ip6_route.h                            |   59 +-
 include/net/ip_tunnels.h                           |   11 +
 include/net/ipv6.h                                 |    4 +-
 include/net/neighbour.h                            |   19 +-
 include/net/netns/ipv6.h                           |    4 +-
 include/net/page_pool.h                            |  143 ++
 include/net/sctp/constants.h                       |    5 +-
 include/net/sctp/sctp.h                            |   52 +-
 include/net/sctp/sm.h                              |    2 +-
 include/net/sctp/structs.h                         |    6 +-
 include/net/tcp.h                                  |    4 +
 include/net/udp.h                                  |    5 +
 include/net/vxlan.h                                |    1 +
 include/net/xdp.h                                  |   83 +
 include/trace/events/tcp.h                         |   69 +-
 include/uapi/linux/bpf.h                           | 1790 +++++++++++++----
 include/uapi/linux/btf.h                           |  128 ++
 include/uapi/linux/if_link.h                       |    1 +
 include/uapi/linux/pci_regs.h                      |    2 +
 include/uapi/linux/snmp.h                          |    2 +
 include/uapi/linux/tcp.h                           |    5 +
 include/uapi/linux/tipc.h                          |   12 +-
 include/uapi/linux/tipc_config.h                   |    5 +
 include/uapi/linux/tipc_netlink.h                  |    1 +
 include/uapi/linux/udp.h                           |    1 +
 kernel/bpf/Makefile                                |    1 +
 kernel/bpf/arraymap.c                              |   50 +
 kernel/bpf/btf.c                                   | 2064 ++++++++++++++++++++
 kernel/bpf/cpumap.c                                |  132 +-
 kernel/bpf/inode.c                                 |  156 +-
 kernel/bpf/syscall.c                               |   52 +-
 kernel/bpf/verifier.c                              |   24 +-
 lib/rhashtable.c                                   |   51 +-
 net/Kconfig                                        |    3 +
 net/bpf/test_run.c                                 |    3 +-
 net/bridge/br_forward.c                            |    3 +-
 net/core/Makefile                                  |    1 +
 net/core/dev.c                                     |   15 +-
 net/core/dst.c                                     |    1 +
 net/core/ethtool.c                                 |   62 +-
 net/core/fib_rules.c                               |  495 +++--
 net/core/filter.c                                  |  100 +-
 net/core/neighbour.c                               |    8 +-
 net/core/page_pool.c                               |  317 +++
 net/core/rtnetlink.c                               |    8 +-
 net/core/skbuff.c                                  |   16 +
 net/core/sock.c                                    |    5 +-
 net/core/xdp.c                                     |  269 +++
 net/decnet/dn_rules.c                              |    7 +-
 net/dsa/master.c                                   |   62 +-
 net/dsa/port.c                                     |   90 +-
 net/dsa/slave.c                                    |    5 +-
 net/ipv4/Makefile                                  |    3 +-
 net/ipv4/af_inet.c                                 |    3 +-
 net/ipv4/fib_rules.c                               |    7 +-
 net/ipv4/fib_semantics.c                           |   43 +-
 net/ipv4/ip_output.c                               |   41 +-
 net/ipv4/ipconfig.c                                |  151 +-
 net/ipv4/ipmr.c                                    |    3 +-
 net/ipv4/metrics.c                                 |   53 +
 net/ipv4/proc.c                                    |    2 +
 net/ipv4/tcp.c                                     |  146 +-
 net/ipv4/tcp_input.c                               |   57 +-
 net/ipv4/tcp_output.c                              |   34 +-
 net/ipv4/udp.c                                     |   81 +-
 net/ipv4/udp_offload.c                             |   66 +-
 net/ipv6/addrconf.c                                |  190 +-
 net/ipv6/af_inet6.c                                |   56 +-
 net/ipv6/anycast.c                                 |   33 +-
 net/ipv6/exthdrs.c                                 |   55 +-
 net/ipv6/fib6_rules.c                              |    7 +-
 net/ipv6/ip6_fib.c                                 |  491 ++---
 net/ipv6/ip6_input.c                               |    2 +-
 net/ipv6/ip6_offload.c                             |    6 +-
 net/ipv6/ip6_output.c                              |   71 +-
 net/ipv6/ip6mr.c                                   |    3 +-
 net/ipv6/ndisc.c                                   |   42 +-
 net/ipv6/reassembly.c                              |   25 +-
 net/ipv6/route.c                                   | 1736 ++++++++--------
 net/ipv6/seg6_iptunnel.c                           |   24 +-
 net/ipv6/sysctl_net_ipv6.c                         |    8 +
 net/ipv6/udp.c                                     |   31 +-
 net/ipv6/udp_offload.c                             |   19 +-
 net/ipv6/xfrm6_policy.c                            |    2 -
 net/l2tp/l2tp_debugfs.c                            |   20 +-
 net/l2tp/l2tp_ppp.c                                |   21 +-
 net/ncsi/internal.h                                |   34 +-
 net/ncsi/ncsi-manage.c                             |  226 +--
 net/ncsi/ncsi-netlink.c                            |   20 +-
 net/ncsi/ncsi-rsp.c                                |  178 +-
 net/netfilter/ipvs/ip_vs_xmit.c                    |    5 +-
 net/qrtr/Kconfig                                   |    7 +
 net/qrtr/Makefile                                  |    2 +
 net/qrtr/tun.c                                     |  161 ++
 net/sctp/associola.c                               |   85 +-
 net/sctp/chunk.c                                   |   12 +-
 net/sctp/output.c                                  |   28 +-
 net/sctp/outqueue.c                                |   48 +-
 net/sctp/sm_make_chunk.c                           |    9 +-
 net/sctp/socket.c                                  |   43 +-
 net/sctp/transport.c                               |   37 +-
 net/smc/af_smc.c                                   |   98 +-
 net/smc/smc.h                                      |    4 +
 net/smc/smc_cdc.c                                  |    2 +-
 net/smc/smc_cdc.h                                  |    2 +-
 net/smc/smc_rx.c                                   |    2 +-
 net/smc/smc_rx.h                                   |    1 +
 net/smc/smc_tx.c                                   |   24 +-
 net/tipc/bearer.c                                  |   29 +-
 net/tipc/bearer.h                                  |    3 +
 net/tipc/node.c                                    |   33 +-
 net/tipc/node.h                                    |    3 +-
 net/tipc/socket.c                                  |   13 +-
 net/tipc/udp_media.c                               |    4 +-
 net/tipc/udp_media.h                               |   14 +
 net/tls/tls_sw.c                                   |    3 +-
 samples/bpf/Makefile                               |    5 +-
 samples/bpf/bpf_load.c                             |    2 -
 samples/bpf/sock_example.c                         |    4 +-
 samples/bpf/test_tunnel_bpf.sh                     |  319 ---
 samples/bpf/xdp_adjust_tail_kern.c                 |  152 ++
 samples/bpf/xdp_adjust_tail_user.c                 |  142 ++
 samples/bpf/xdp_monitor_user.c                     |    2 +-
 samples/sockmap/Makefile                           |   78 -
 samples/sockmap/sockmap_test.sh                    |  488 -----
 scripts/bpf_helpers_doc.py                         |  421 ++++
 tools/bpf/bpftool/Documentation/bpftool-cgroup.rst |   11 +-
 tools/bpf/bpftool/Documentation/bpftool-map.rst    |   29 +-
 tools/bpf/bpftool/Documentation/bpftool-prog.rst   |    3 +-
 tools/bpf/bpftool/bash-completion/bpftool          |   14 +-
 tools/bpf/bpftool/cgroup.c                         |   15 +-
 tools/bpf/bpftool/map.c                            |   17 +-
 tools/bpf/bpftool/prog.c                           |    6 +
 tools/include/uapi/linux/bpf.h                     | 1790 +++++++++++++----
 tools/include/uapi/linux/btf.h                     |  128 ++
 tools/lib/bpf/Build                                |    2 +-
 tools/lib/bpf/bpf.c                                |   92 +-
 tools/lib/bpf/bpf.h                                |   17 +
 tools/lib/bpf/btf.c                                |  374 ++++
 tools/lib/bpf/btf.h                                |   22 +
 tools/lib/bpf/libbpf.c                             |  160 +-
 tools/lib/bpf/libbpf.h                             |    7 +
 tools/testing/selftests/bpf/.gitignore             |    1 +
 tools/testing/selftests/bpf/Makefile               |   32 +-
 tools/testing/selftests/bpf/bpf_helpers.h          |    7 +
 tools/testing/selftests/bpf/test_adjust_tail.c     |   30 +
 tools/testing/selftests/bpf/test_btf.c             | 1669 ++++++++++++++++
 tools/testing/selftests/bpf/test_btf_haskv.c       |   48 +
 tools/testing/selftests/bpf/test_btf_nokv.c        |   43 +
 tools/testing/selftests/bpf/test_progs.c           |   32 +
 .../testing/selftests/bpf/test_sockmap.c           |  880 +++++++--
 .../testing/selftests/bpf/test_sockmap_kern.c      |   35 +-
 tools/testing/selftests/bpf/test_tunnel.sh         |  729 +++++++
 .../testing/selftests/bpf/test_tunnel_kern.c       |  263 ++-
 tools/testing/selftests/bpf/test_verifier.c        |  266 +++
 tools/testing/selftests/net/.gitignore             |    4 +
 tools/testing/selftests/net/Makefile               |    6 +-
 tools/testing/selftests/net/forwarding/lib.sh      |   96 +
 .../testing/selftests/net/forwarding/mirror_gre.sh |  139 ++
 .../selftests/net/forwarding/mirror_gre_bound.sh   |  213 ++
 .../selftests/net/forwarding/mirror_gre_changes.sh |  194 ++
 .../selftests/net/forwarding/mirror_gre_flower.sh  |  116 ++
 .../selftests/net/forwarding/mirror_gre_lib.sh     |   85 +
 .../selftests/net/forwarding/mirror_gre_neigh.sh   |  101 +
 .../selftests/net/forwarding/mirror_gre_nh.sh      |  117 ++
 .../net/forwarding/mirror_gre_topo_lib.sh          |  129 ++
 .../testing/selftests/net/forwarding/mirror_lib.sh |   40 +
 .../testing/selftests/net/forwarding/tc_flower.sh  |   70 +
 tools/testing/selftests/net/pmtu.sh                |    4 +-
 tools/testing/selftests/net/tcp_mmap.c             |  437 +++++
 tools/testing/selftests/net/udpgso.c               |  620 ++++++
 tools/testing/selftests/net/udpgso.sh              |   29 +
 tools/testing/selftests/net/udpgso_bench.sh        |   74 +
 tools/testing/selftests/net/udpgso_bench_rx.c      |  265 +++
 tools/testing/selftests/net/udpgso_bench_tx.c      |  420 ++++
 .../selftests/tc-testing/tc-tests/actions/ife.json | 1036 +++++++++-
 .../tc-testing/tc-tests/actions/sample.json        |  588 ++++++
 553 files changed, 26517 insertions(+), 12024 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/microchip,lan78xx.txt
 create mode 100644 drivers/net/ethernet/8390/xsurf100.c
 create mode 100644 drivers/net/ethernet/broadcom/bnxt/bnxt_debugfs.c
 create mode 100644 drivers/net/ethernet/broadcom/bnxt/bnxt_debugfs.h
 create mode 100644 drivers/net/ethernet/stmicro/stmmac/hwif.c
 create mode 100644 drivers/net/ethernet/stmicro/stmmac/hwif.h
 create mode 100644 drivers/net/phy/asix.c
 create mode 100644 include/dt-bindings/net/microchip-lan78xx.h
 create mode 100644 include/linux/btf.h
 create mode 100644 include/linux/mdio-gpio.h
 delete mode 100644 include/linux/platform_data/mdio-gpio.h
 create mode 100644 include/net/page_pool.h
 create mode 100644 include/uapi/linux/btf.h
 create mode 100644 kernel/bpf/btf.c
 create mode 100644 net/core/page_pool.c
 create mode 100644 net/ipv4/metrics.c
 create mode 100644 net/qrtr/tun.c
 delete mode 100755 samples/bpf/test_tunnel_bpf.sh
 create mode 100644 samples/bpf/xdp_adjust_tail_kern.c
 create mode 100644 samples/bpf/xdp_adjust_tail_user.c
 delete mode 100644 samples/sockmap/Makefile
 delete mode 100755 samples/sockmap/sockmap_test.sh
 create mode 100755 scripts/bpf_helpers_doc.py
 create mode 100644 tools/include/uapi/linux/btf.h
 create mode 100644 tools/lib/bpf/btf.c
 create mode 100644 tools/lib/bpf/btf.h
 create mode 100644 tools/testing/selftests/bpf/test_adjust_tail.c
 create mode 100644 tools/testing/selftests/bpf/test_btf.c
 create mode 100644 tools/testing/selftests/bpf/test_btf_haskv.c
 create mode 100644 tools/testing/selftests/bpf/test_btf_nokv.c
 rename samples/sockmap/sockmap_user.c => tools/testing/selftests/bpf/test_sockmap.c (57%)
 rename samples/sockmap/sockmap_kern.c => tools/testing/selftests/bpf/test_sockmap_kern.c (91%)
 create mode 100755 tools/testing/selftests/bpf/test_tunnel.sh
 rename samples/bpf/tcbpf2_kern.c => tools/testing/selftests/bpf/test_tunnel_kern.c (68%)
 create mode 100755 tools/testing/selftests/net/forwarding/mirror_gre.sh
 create mode 100755 tools/testing/selftests/net/forwarding/mirror_gre_bound.sh
 create mode 100755 tools/testing/selftests/net/forwarding/mirror_gre_changes.sh
 create mode 100755 tools/testing/selftests/net/forwarding/mirror_gre_flower.sh
 create mode 100644 tools/testing/selftests/net/forwarding/mirror_gre_lib.sh
 create mode 100755 tools/testing/selftests/net/forwarding/mirror_gre_neigh.sh
 create mode 100755 tools/testing/selftests/net/forwarding/mirror_gre_nh.sh
 create mode 100644 tools/testing/selftests/net/forwarding/mirror_gre_topo_lib.sh
 create mode 100644 tools/testing/selftests/net/forwarding/mirror_lib.sh
 create mode 100644 tools/testing/selftests/net/tcp_mmap.c
 create mode 100644 tools/testing/selftests/net/udpgso.c
 create mode 100755 tools/testing/selftests/net/udpgso.sh
 create mode 100755 tools/testing/selftests/net/udpgso_bench.sh
 create mode 100644 tools/testing/selftests/net/udpgso_bench_rx.c
 create mode 100644 tools/testing/selftests/net/udpgso_bench_tx.c
 create mode 100644 tools/testing/selftests/tc-testing/tc-tests/actions/sample.json
Merging bpf-next/master (7ef377120530 bpf: Allow bpf_current_task_under_cgroup in interrupt)
$ git merge bpf-next/master
Merge made by the 'recursive' strategy.
 Documentation/networking/filter.txt                |   6 +
 include/linux/bpf.h                                |   1 +
 include/linux/filter.h                             |   3 +-
 include/linux/tnum.h                               |   4 +-
 include/uapi/linux/bpf.h                           |  54 ++++-
 kernel/bpf/core.c                                  |   5 +
 kernel/bpf/stackmap.c                              |  80 ++++++-
 kernel/bpf/tnum.c                                  |  10 +
 kernel/bpf/verifier.c                              |  80 ++++++-
 kernel/trace/bpf_trace.c                           |  52 ++++-
 samples/bpf/Makefile                               |  11 +-
 samples/bpf/bpf_load.c                             |  63 ------
 samples/bpf/bpf_load.h                             |   7 -
 samples/bpf/offwaketime_user.c                     |   1 +
 samples/bpf/sampleip_user.c                        |   1 +
 samples/bpf/spintest_user.c                        |   1 +
 samples/bpf/trace_event_user.c                     |   1 +
 samples/bpf/trace_output_user.c                    | 110 +---------
 tools/include/uapi/linux/bpf.h                     |  54 ++++-
 tools/testing/selftests/bpf/Makefile               |   4 +-
 tools/testing/selftests/bpf/bpf_helpers.h          |   2 +
 tools/testing/selftests/bpf/test_get_stack_rawtp.c | 102 +++++++++
 tools/testing/selftests/bpf/test_progs.c           | 242 +++++++++++++++++++--
 .../selftests/bpf/test_stacktrace_build_id.c       |  20 +-
 tools/testing/selftests/bpf/test_stacktrace_map.c  |  19 +-
 tools/testing/selftests/bpf/test_verifier.c        |  45 ++++
 tools/testing/selftests/bpf/trace_helpers.c        | 180 +++++++++++++++
 tools/testing/selftests/bpf/trace_helpers.h        |  23 ++
 28 files changed, 945 insertions(+), 236 deletions(-)
 create mode 100644 tools/testing/selftests/bpf/test_get_stack_rawtp.c
 create mode 100644 tools/testing/selftests/bpf/trace_helpers.c
 create mode 100644 tools/testing/selftests/bpf/trace_helpers.h
Merging ipsec-next/master (c926ca160506 xfrm: remove VLA usage in __xfrm6_sort())
$ git merge ipsec-next/master
Auto-merging net/ipv4/ip_output.c
CONFLICT (content): Merge conflict in net/ipv4/ip_output.c
Recorded preimage for 'net/ipv4/ip_output.c'
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'net/ipv4/ip_output.c'.
[master 38538dfab015] Merge remote-tracking branch 'ipsec-next/master'
$ git diff -M --stat --summary HEAD^..
 net/ipv4/ip_output.c                     |   2 +-
 net/ipv6/xfrm6_state.c                   |   6 +-
 tools/testing/selftests/net/rtnetlink.sh | 103 +++++++++++++++++++++++++++++++
 3 files changed, 106 insertions(+), 5 deletions(-)
Merging netfilter-next/master (8b2ebb6cf064 ipvs: initialize tbl->entries in ip_vs_lblc_init_svc())
$ git merge netfilter-next/master
Auto-merging net/netfilter/nf_tables_api.c
Auto-merging net/netfilter/nf_flow_table_core.c
Auto-merging net/netfilter/nf_conntrack_sip.c
Auto-merging net/netfilter/ipvs/ip_vs_ctl.c
Auto-merging net/netfilter/Kconfig
Auto-merging net/ipv6/ip6_output.c
Removing net/bridge/netfilter/nft_meta_bridge.c
Auto-merging net/bridge/netfilter/ebtables.c
Removing include/net/netfilter/nft_meta.h
Auto-merging include/net/ipv6.h
Auto-merging include/net/ip6_route.h
Merge made by the 'recursive' strategy.
 include/linux/netfilter_bridge/ebtables.h          |   4 -
 include/net/ip6_route.h                            |  21 +
 include/net/ip_vs.h                                |   1 +
 include/net/ipv6.h                                 |   2 -
 include/net/netfilter/ipv4/nf_nat_masquerade.h     |   2 +-
 include/net/netfilter/ipv6/nf_nat_masquerade.h     |   2 +-
 include/net/netfilter/nf_flow_table.h              |  24 +-
 include/net/netfilter/nf_nat.h                     |   2 +-
 include/net/netfilter/nf_nat_l3proto.h             |   4 +-
 include/net/netfilter/nf_nat_l4proto.h             |   8 +-
 include/net/netfilter/nf_nat_redirect.h            |   2 +-
 include/net/netfilter/nf_tables.h                  |  53 +-
 include/net/netfilter/nf_tables_core.h             |   3 +
 include/net/netfilter/nfnetlink_log.h              |  17 -
 include/net/netfilter/nft_meta.h                   |  44 --
 include/uapi/linux/netfilter/nf_nat.h              |  12 +-
 include/uapi/linux/netfilter_bridge/ebtables.h     |   6 +
 net/bridge/netfilter/Kconfig                       |   7 -
 net/bridge/netfilter/Makefile                      |   1 -
 net/bridge/netfilter/ebtables.c                    |  63 +--
 net/bridge/netfilter/nft_meta_bridge.c             | 135 -----
 net/ipv4/netfilter/ip_tables.c                     |   2 +-
 net/ipv4/netfilter/ipt_MASQUERADE.c                |   2 +-
 net/ipv4/netfilter/nf_flow_table_ipv4.c            | 255 +--------
 net/ipv4/netfilter/nf_nat_h323.c                   |   4 +-
 net/ipv4/netfilter/nf_nat_l3proto_ipv4.c           |   4 +-
 net/ipv4/netfilter/nf_nat_masquerade_ipv4.c        |   4 +-
 net/ipv4/netfilter/nf_nat_pptp.c                   |   2 +-
 net/ipv4/netfilter/nf_nat_proto_gre.c              |   2 +-
 net/ipv4/netfilter/nf_nat_proto_icmp.c             |   2 +-
 net/ipv4/netfilter/nft_masq_ipv4.c                 |   2 +-
 net/ipv6/ip6_output.c                              |  22 -
 net/ipv6/netfilter/ip6_tables.c                    |   1 -
 net/ipv6/netfilter/ip6t_MASQUERADE.c               |   2 +-
 net/ipv6/netfilter/nf_flow_table_ipv6.c            | 246 +-------
 net/ipv6/netfilter/nf_nat_l3proto_ipv6.c           |   4 +-
 net/ipv6/netfilter/nf_nat_masquerade_ipv6.c        |   4 +-
 net/ipv6/netfilter/nf_nat_proto_icmpv6.c           |   2 +-
 net/ipv6/netfilter/nft_masq_ipv6.c                 |   2 +-
 net/ipv6/netfilter/nft_redir_ipv6.c                |   2 +-
 net/netfilter/Kconfig                              |  21 +-
 net/netfilter/Makefile                             |   7 +-
 net/netfilter/ipvs/Kconfig                         |  37 ++
 net/netfilter/ipvs/Makefile                        |   1 +
 net/netfilter/ipvs/ip_vs_ctl.c                     |   4 +
 net/netfilter/ipvs/ip_vs_dh.c                      |   3 +-
 net/netfilter/ipvs/ip_vs_lblc.c                    |   4 +-
 net/netfilter/ipvs/ip_vs_lblcr.c                   |   4 +-
 net/netfilter/ipvs/ip_vs_mh.c                      | 540 ++++++++++++++++++
 net/netfilter/ipvs/ip_vs_proto_tcp.c               |   4 +-
 net/netfilter/ipvs/ip_vs_sh.c                      |   3 +-
 net/netfilter/nf_conntrack_ftp.c                   |   3 +-
 net/netfilter/nf_conntrack_irc.c                   |   6 +-
 net/netfilter/nf_conntrack_sane.c                  |   3 +-
 net/netfilter/nf_conntrack_sip.c                   |   2 +-
 net/netfilter/nf_conntrack_tftp.c                  |   2 +-
 .../{nf_flow_table.c => nf_flow_table_core.c}      | 309 ++++++----
 net/netfilter/nf_flow_table_inet.c                 |   3 +-
 net/netfilter/nf_flow_table_ip.c                   | 487 ++++++++++++++++
 net/netfilter/nf_nat_core.c                        |  27 +-
 net/netfilter/nf_nat_helper.c                      |   2 +-
 net/netfilter/nf_nat_proto_common.c                |   9 +-
 net/netfilter/nf_nat_proto_dccp.c                  |   2 +-
 net/netfilter/nf_nat_proto_sctp.c                  |   2 +-
 net/netfilter/nf_nat_proto_tcp.c                   |   2 +-
 net/netfilter/nf_nat_proto_udp.c                   |   4 +-
 net/netfilter/nf_nat_proto_unknown.c               |   2 +-
 net/netfilter/nf_nat_redirect.c                    |   6 +-
 net/netfilter/nf_nat_sip.c                         |   2 +-
 net/netfilter/nf_tables_api.c                      | 624 +++++++++++----------
 net/netfilter/nf_tables_core.c                     |   3 +
 net/netfilter/nfnetlink_log.c                      |   8 +-
 net/netfilter/nft_dynset.c                         |   5 +-
 net/netfilter/nft_exthdr.c                         |  23 +-
 net/netfilter/nft_flow_offload.c                   |   5 +-
 net/netfilter/nft_meta.c                           | 112 ++--
 net/netfilter/nft_nat.c                            |   2 +-
 net/netfilter/nft_objref.c                         |   4 +-
 net/netfilter/nft_rt.c                             |  22 +-
 net/netfilter/nft_set_bitmap.c                     |  34 +-
 net/netfilter/nft_set_hash.c                       | 153 ++---
 net/netfilter/nft_set_rbtree.c                     |  36 +-
 net/netfilter/xt_NETMAP.c                          |   8 +-
 net/netfilter/xt_NFLOG.c                           |  15 +-
 net/netfilter/xt_REDIRECT.c                        |   2 +-
 net/netfilter/xt_nat.c                             |  72 ++-
 net/openvswitch/conntrack.c                        |   4 +-
 87 files changed, 2072 insertions(+), 1538 deletions(-)
 delete mode 100644 include/net/netfilter/nft_meta.h
 delete mode 100644 net/bridge/netfilter/nft_meta_bridge.c
 create mode 100644 net/netfilter/ipvs/ip_vs_mh.c
 rename net/netfilter/{nf_flow_table.c => nf_flow_table_core.c} (67%)
 create mode 100644 net/netfilter/nf_flow_table_ip.c
Merging nfc-next/master (4d63adfe12dd NFC: Add NFC_CMD_DEACTIVATE_TARGET support)
$ git merge nfc-next/master
Already up to date.
Merging ipvs-next/master (9a17740e0ea1 ipvs: fix multiplicative hashing in sh/dh/lblc/lblcr algorithms)
$ git merge ipvs-next/master
Already up to date.
Merging wireless-drivers-next/master (0ddcf3e76ae4 Merge git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git)
$ git merge wireless-drivers-next/master
Removing drivers/net/wireless/intel/iwlwifi/fw/nvm.c
Merge made by the 'recursive' strategy.
 .../bindings/net/wireless/qcom,ath10k.txt          |   31 +
 drivers/net/wireless/ath/ath10k/Kconfig            |   12 +
 drivers/net/wireless/ath/ath10k/Makefile           |    7 +-
 drivers/net/wireless/ath/ath10k/ce.c               |  269 +++-
 drivers/net/wireless/ath/ath10k/ce.h               |   24 +-
 drivers/net/wireless/ath/ath10k/core.c             |  183 ++-
 drivers/net/wireless/ath/ath10k/core.h             |    2 +
 drivers/net/wireless/ath/ath10k/hif.h              |   15 +-
 drivers/net/wireless/ath/ath10k/htc.c              |    6 +
 drivers/net/wireless/ath/ath10k/htc.h              |    4 +
 drivers/net/wireless/ath/ath10k/htt.c              |    4 +-
 drivers/net/wireless/ath/ath10k/htt.h              |  111 +-
 drivers/net/wireless/ath/ath10k/htt_rx.c           |   24 +-
 drivers/net/wireless/ath/ath10k/htt_tx.c           |   19 +-
 drivers/net/wireless/ath/ath10k/hw.c               |    9 +-
 drivers/net/wireless/ath/ath10k/hw.h               |   22 +-
 drivers/net/wireless/ath/ath10k/mac.c              |   26 +-
 drivers/net/wireless/ath/ath10k/pci.c              |    8 +-
 drivers/net/wireless/ath/ath10k/sdio.c             |   24 +-
 drivers/net/wireless/ath/ath10k/snoc.c             | 1414 ++++++++++++++++++++
 drivers/net/wireless/ath/ath10k/snoc.h             |   95 ++
 drivers/net/wireless/ath/ath10k/txrx.c             |    8 +
 drivers/net/wireless/ath/ath10k/wmi-ops.h          |   46 +
 drivers/net/wireless/ath/ath10k/wmi-tlv.c          |   63 +
 drivers/net/wireless/ath/ath10k/wmi-tlv.h          |  357 ++++-
 drivers/net/wireless/ath/ath10k/wmi.c              |   34 +-
 drivers/net/wireless/ath/ath10k/wmi.h              |   28 +
 drivers/net/wireless/ath/ath10k/wow.c              |  138 +-
 drivers/net/wireless/ath/ath6kl/debug.c            |    2 +-
 drivers/net/wireless/ath/ath9k/dfs.c               |    6 +-
 drivers/net/wireless/ath/wcn36xx/dxe.c             |   36 +-
 drivers/net/wireless/ath/wcn36xx/dxe.h             |    1 -
 drivers/net/wireless/ath/wcn36xx/hal.h             |    8 +-
 drivers/net/wireless/ath/wcn36xx/main.c            |   40 +-
 drivers/net/wireless/ath/wcn36xx/smd.c             |   33 +-
 drivers/net/wireless/ath/wcn36xx/smd.h             |    2 +
 drivers/net/wireless/ath/wcn36xx/txrx.c            |   15 +-
 drivers/net/wireless/ath/wcn36xx/wcn36xx.h         |    7 +-
 drivers/net/wireless/ath/wil6210/main.c            |    3 +-
 .../wireless/broadcom/brcm80211/brcmfmac/chip.c    |    1 +
 .../wireless/broadcom/brcm80211/brcmfmac/pcie.c    |    1 +
 .../broadcom/brcm80211/brcmsmac/phy/phy_lcn.c      |    9 +-
 .../broadcom/brcm80211/include/brcm_hw_ids.h       |    1 +
 drivers/net/wireless/intel/iwlwifi/Makefile        |    2 +-
 drivers/net/wireless/intel/iwlwifi/cfg/22000.c     |    1 -
 drivers/net/wireless/intel/iwlwifi/dvm/main.c      |    8 +-
 .../net/wireless/intel/iwlwifi/fw/api/datapath.h   |    5 -
 .../net/wireless/intel/iwlwifi/fw/api/nvm-reg.h    |   42 +-
 drivers/net/wireless/intel/iwlwifi/fw/api/rs.h     |  156 +--
 drivers/net/wireless/intel/iwlwifi/fw/api/txq.h    |    2 +
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h        |   36 +
 drivers/net/wireless/intel/iwlwifi/fw/debugfs.c    |    1 +
 drivers/net/wireless/intel/iwlwifi/fw/debugfs.h    |   31 -
 drivers/net/wireless/intel/iwlwifi/fw/nvm.c        |  162 ---
 drivers/net/wireless/intel/iwlwifi/fw/runtime.h    |    1 -
 drivers/net/wireless/intel/iwlwifi/iwl-config.h    |    5 +-
 .../net/wireless/intel/iwlwifi/iwl-eeprom-parse.c  |    4 +-
 .../net/wireless/intel/iwlwifi/iwl-eeprom-parse.h  |    5 +-
 drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c |  339 ++++-
 drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.h |   56 +-
 drivers/net/wireless/intel/iwlwifi/iwl-trans.h     |    8 +-
 drivers/net/wireless/intel/iwlwifi/mvm/coex.c      |   37 +
 drivers/net/wireless/intel/iwlwifi/mvm/constants.h |    7 +
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c        |    7 +
 .../net/wireless/intel/iwlwifi/mvm/debugfs-vif.c   |    2 +
 drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c   |   25 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c        |   10 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c  |   33 +
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h       |  101 +-
 drivers/net/wireless/intel/iwlwifi/mvm/nvm.c       |  208 +--
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c       |   15 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rs-fw.c     |  117 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c        |   15 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rs.h        |    3 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c        |  103 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c      |   13 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c      |  194 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c       |   28 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.h       |    7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c        |   57 +-
 drivers/net/wireless/intel/iwlwifi/mvm/utils.c     |  430 +++++-
 .../net/wireless/intel/iwlwifi/pcie/ctxt-info.c    |    2 +-
 drivers/net/wireless/intel/iwlwifi/pcie/internal.h |    5 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c  |   55 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c       |   28 +-
 drivers/net/wireless/marvell/mwifiex/cfg80211.c    |    3 +-
 drivers/net/wireless/marvell/mwifiex/ie.c          |    1 +
 drivers/net/wireless/marvell/mwifiex/pcie.c        |    3 +-
 drivers/net/wireless/mediatek/mt76/agg-rx.c        |   12 +-
 drivers/net/wireless/mediatek/mt76/mac80211.c      |   11 +-
 drivers/net/wireless/mediatek/mt76/mt76x2_dma.h    |    7 +-
 drivers/net/wireless/mediatek/mt76/mt76x2_eeprom.c |    6 +-
 drivers/net/wireless/mediatek/mt76/mt76x2_eeprom.h |    6 +
 drivers/net/wireless/mediatek/mt76/mt76x2_init.c   |    2 +-
 drivers/net/wireless/mediatek/mt76/mt76x2_mac.h    |    1 -
 drivers/net/wireless/mediatek/mt76/mt76x2_main.c   |    1 +
 drivers/net/wireless/mediatek/mt76/mt76x2_phy.c    |   78 +-
 drivers/net/wireless/mediatek/mt7601u/mac.c        |    4 +-
 drivers/net/wireless/mediatek/mt7601u/main.c       |    6 +
 drivers/net/wireless/mediatek/mt7601u/mt7601u.h    |    5 +-
 drivers/net/wireless/mediatek/mt7601u/phy.c        |   11 +-
 drivers/net/wireless/quantenna/qtnfmac/cfg80211.c  |    9 +
 drivers/net/wireless/quantenna/qtnfmac/event.c     |   11 +
 .../net/wireless/quantenna/qtnfmac/pearl/pcie.c    |    4 +
 drivers/net/wireless/quantenna/qtnfmac/qlink.h     |    7 +-
 drivers/net/wireless/ralink/rt2x00/rt2800.h        |    1 +
 drivers/net/wireless/ralink/rt2x00/rt2800lib.c     |    9 +-
 .../realtek/rtlwifi/btcoexist/halbtc8821a1ant.c    |   19 +-
 drivers/net/wireless/rsi/rsi_91x_core.c            |   31 +-
 drivers/net/wireless/rsi/rsi_91x_hal.c             |  108 +-
 drivers/net/wireless/rsi/rsi_91x_mac80211.c        |   47 +-
 drivers/net/wireless/rsi/rsi_91x_mgmt.c            |   34 +-
 drivers/net/wireless/rsi/rsi_91x_sdio.c            |   27 +-
 drivers/net/wireless/rsi/rsi_91x_usb.c             |    7 +
 drivers/net/wireless/rsi/rsi_boot_params.h         |    3 +-
 drivers/net/wireless/rsi/rsi_hal.h                 |    3 +
 drivers/net/wireless/rsi/rsi_main.h                |    7 +-
 drivers/net/wireless/rsi/rsi_mgmt.h                |   19 +-
 drivers/net/wireless/rsi/rsi_sdio.h                |    2 +-
 drivers/net/wireless/rsi/rsi_usb.h                 |    1 +
 drivers/net/wireless/st/cw1200/txrx.c              |    2 +-
 121 files changed, 4903 insertions(+), 1119 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath10k/snoc.c
 create mode 100644 drivers/net/wireless/ath/ath10k/snoc.h
 delete mode 100644 drivers/net/wireless/intel/iwlwifi/fw/nvm.c
Merging bluetooth/master (131212d21028 Revert "Bluetooth: btusb: Fix quirk for Atheros 1525/QCA6174")
$ git merge bluetooth/master
Auto-merging arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi
CONFLICT (content): Merge conflict in arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi
Recorded preimage for 'arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi'
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi'.
[master 027aa6055058] Merge remote-tracking branch 'bluetooth/master'
$ git diff -M --stat --summary HEAD^..
 drivers/bluetooth/Kconfig        |   1 +
 drivers/bluetooth/btbcm.c        | 201 ++++++++++++---------------------------
 drivers/bluetooth/btbcm.h        |   5 +-
 drivers/bluetooth/btqca.c        | 104 ++++++++++----------
 drivers/bluetooth/btqca.h        |  11 ++-
 drivers/bluetooth/btqcomsmd.c    |  10 ++
 drivers/bluetooth/btusb.c        |   3 +-
 drivers/bluetooth/hci_bcm.c      |  35 +++----
 drivers/bluetooth/hci_ldisc.c    |   2 +
 drivers/bluetooth/hci_qca.c      | 116 +++++++++++++++++++++-
 include/net/bluetooth/hci_core.h |   2 +
 net/bluetooth/hci_core.c         |  31 ++++++
 net/bluetooth/hci_event.c        |  12 ++-
 net/bluetooth/hci_request.c      |  30 ++----
 14 files changed, 321 insertions(+), 242 deletions(-)
Merging mac80211-next/master (8db0c433692e regulatory: Rename confusing 'country IE' in log output)
$ git merge mac80211-next/master
Auto-merging net/wireless/reg.c
Merge made by the 'recursive' strategy.
 drivers/net/wireless/mac80211_hwsim.c | 1 +
 net/wireless/reg.c                    | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
Merging gfs2/for-next (9a38662ba4e2 gfs2: Remove sdp->sd_jheightsize)
$ git merge gfs2/for-next
Merge made by the 'recursive' strategy.
 fs/gfs2/bmap.c       | 14 +-------------
 fs/gfs2/incore.h     |  2 --
 fs/gfs2/ops_fstype.c | 19 -------------------
 3 files changed, 1 insertion(+), 34 deletions(-)
Merging mtd/master (f6997bec6af4 mtd: rawnand: marvell: fix the chip-select DT parsing logic)
$ git merge mtd/master
Already up to date.
Merging l2-mtd/mtd/next (7cc9aa669a51 mtd: Add sysfs attribute for mtd OOB available size)
$ git merge l2-mtd/mtd/next
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-class-mtd |  8 ++++++++
 drivers/mtd/devices/docg3.c               |  3 +--
 drivers/mtd/devices/mtd_dataflash.c       |  2 +-
 drivers/mtd/mtdcore.c                     | 10 ++++++++++
 drivers/mtd/nand/raw/Kconfig              |  8 ++------
 drivers/mtd/spi-nor/Kconfig               |  2 +-
 6 files changed, 23 insertions(+), 10 deletions(-)
Merging nand/nand/next (bb415dff3ab7 dt-bindings: mtd: mtk-nand: Update properties description)
$ git merge nand/nand/next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/mtd/gpmi-nand.txt          |   5 +
 Documentation/devicetree/bindings/mtd/mtk-nand.txt |  24 ++-
 .../devicetree/bindings/mtd/sunxi-nand.txt         |   2 -
 MAINTAINERS                                        |   8 +
 drivers/mtd/nand/onenand/samsung.c                 |   6 +-
 drivers/mtd/nand/raw/davinci_nand.c                |  25 +--
 drivers/mtd/nand/raw/diskonchip.c                  |   4 +-
 drivers/mtd/nand/raw/fsl_elbc_nand.c               |  13 +-
 drivers/mtd/nand/raw/fsl_ifc_nand.c                |  12 +-
 drivers/mtd/nand/raw/fsmc_nand.c                   |  27 +--
 drivers/mtd/nand/raw/gpmi-nand/gpmi-lib.c          |  54 +++---
 drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c         | 188 +++++++--------------
 drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.h         |  25 +--
 drivers/mtd/nand/raw/hisi504_nand.c                |  35 ++--
 drivers/mtd/nand/raw/lpc32xx_mlc.c                 |  38 +++--
 drivers/mtd/nand/raw/lpc32xx_slc.c                 |  26 +--
 drivers/mtd/nand/raw/mtk_ecc.c                     |   7 +-
 drivers/mtd/nand/raw/mtk_nand.c                    |  10 +-
 drivers/mtd/nand/raw/nand_base.c                   |  10 +-
 drivers/mtd/nand/raw/sunxi_nand.c                  |  91 ++--------
 include/linux/mtd/rawnand.h                        |   9 +-
 21 files changed, 241 insertions(+), 378 deletions(-)
Merging spi-nor/spi-nor/next (f134fbbb4ff8 mtd: spi-nor: clear Winbond Extended Address Reg on switch to 3-byte addressing.)
$ git merge spi-nor/spi-nor/next
Auto-merging drivers/mtd/spi-nor/cadence-quadspi.c
Merge made by the 'recursive' strategy.
 drivers/mtd/spi-nor/cadence-quadspi.c | 96 ++++++++++++++++++++++++++++++++++-
 drivers/mtd/spi-nor/hisi-sfc.c        | 12 ++---
 drivers/mtd/spi-nor/spi-nor.c         | 21 ++++++++
 include/linux/mtd/spi-nor.h           |  2 +
 4 files changed, 123 insertions(+), 8 deletions(-)
Merging crypto/master (658c9d2b9f37 crypto: crypto4xx - put temporary dst sg into request ctx)
$ git merge crypto/master
Merge made by the 'recursive' strategy.
 crypto/Kconfig                            |   9 +
 crypto/Makefile                           |   1 +
 crypto/algapi.c                           |  10 +
 crypto/authenc.c                          |   1 +
 crypto/authencesn.c                       |   1 +
 crypto/cfb.c                              |   7 +-
 crypto/cipher.c                           |   3 +-
 crypto/ctr.c                              |   4 +-
 crypto/cts.c                              |   5 +-
 crypto/ecc.c                              |  66 +++----
 crypto/ecc.h                              |   4 +-
 crypto/ecdh.c                             |   4 +-
 crypto/pcbc.c                             |   5 +-
 crypto/rsa.c                              |   1 -
 crypto/testmgr.c                          |  60 ++++--
 crypto/testmgr.h                          |  71 +++++++
 crypto/zstd.c                             | 265 +++++++++++++++++++++++++
 drivers/char/hw_random/via-rng.c          |   2 +-
 drivers/crypto/Kconfig                    |  15 +-
 drivers/crypto/amcc/crypto4xx_alg.c       | 231 +++++++++++++++-------
 drivers/crypto/amcc/crypto4xx_core.c      | 317 ++++++++++++++++--------------
 drivers/crypto/amcc/crypto4xx_core.h      |  35 ++--
 drivers/crypto/caam/caamalg.c             | 231 ++++++++++------------
 drivers/crypto/caam/caamalg_qi.c          | 227 ++++++++++-----------
 drivers/crypto/caam/caampkc.c             |  63 +++++-
 drivers/crypto/caam/caampkc.h             |   8 +
 drivers/crypto/caam/ctrl.c                |  57 +++++-
 drivers/crypto/caam/ctrl.h                |   2 -
 drivers/crypto/caam/regs.h                |   6 +
 drivers/crypto/cavium/zip/common.h        |  21 ++
 drivers/crypto/cavium/zip/zip_crypto.c    |  22 ++-
 drivers/crypto/cavium/zip/zip_deflate.c   |   4 +-
 drivers/crypto/cavium/zip/zip_device.c    |   4 +-
 drivers/crypto/cavium/zip/zip_inflate.c   |   4 +-
 drivers/crypto/cavium/zip/zip_main.c      |  24 ++-
 drivers/crypto/cavium/zip/zip_main.h      |   1 -
 drivers/crypto/cavium/zip/zip_regs.h      |  42 ++--
 drivers/crypto/chelsio/chtls/chtls_cm.c   |  16 ++
 drivers/crypto/chelsio/chtls/chtls_main.c |   3 +-
 drivers/crypto/exynos-rng.c               |   6 +-
 drivers/crypto/omap-sham.c                |   2 +-
 drivers/crypto/picoxcell_crypto.c         |   6 +-
 include/crypto/algapi.h                   |   8 +
 43 files changed, 1255 insertions(+), 619 deletions(-)
 create mode 100644 crypto/zstd.c
Merging drm/drm-next (6d08b06e67cd Linux 4.17-rc2)
$ git merge drm/drm-next
Already up to date.
Merging drm-panel/drm/panel/for-next (e4bac408b084 drm/panel: simple: Add support for Winstar WF35LTIACD)
$ git merge drm-panel/drm/panel/for-next
Already up to date.
Merging drm-intel/for-linux-next (78b60ce7b96c drm/i915/icl: add definitions for the ICL PLL registers)
$ git merge drm-intel/for-linux-next
Auto-merging drivers/gpu/drm/i915/intel_runtime_pm.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/intel_runtime_pm.c
Auto-merging drivers/gpu/drm/i915/intel_lrc.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/intel_lrc.c
Auto-merging drivers/gpu/drm/i915/intel_fbdev.c
Auto-merging drivers/gpu/drm/i915/intel_drv.h
Auto-merging drivers/gpu/drm/i915/intel_bios.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/intel_bios.c
Auto-merging drivers/gpu/drm/i915/i915_pmu.c
Auto-merging drivers/gpu/drm/i915/i915_gem_execbuffer.c
Auto-merging drivers/gpu/drm/i915/i915_drv.c
Auto-merging drivers/gpu/drm/i915/gvt/cmd_parser.c
Resolved 'drivers/gpu/drm/i915/intel_bios.c' using previous resolution.
Resolved 'drivers/gpu/drm/i915/intel_lrc.c' using previous resolution.
Resolved 'drivers/gpu/drm/i915/intel_runtime_pm.c' using previous resolution.
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master cc2bc77cc823] Merge remote-tracking branch 'drm-intel/for-linux-next'
$ git diff -M --stat --summary HEAD^..
 Documentation/gpu/i915.rst                         | 141 +++-
 drivers/gpu/drm/drm_atomic.c                       |  10 +-
 drivers/gpu/drm/i915/Kconfig.debug                 |  13 +
 drivers/gpu/drm/i915/Makefile                      |  11 +-
 drivers/gpu/drm/i915/gvt/cmd_parser.c              |  55 +-
 drivers/gpu/drm/i915/gvt/debugfs.c                 |  72 +-
 drivers/gpu/drm/i915/gvt/gvt.h                     |   1 +
 drivers/gpu/drm/i915/gvt/sched_policy.c            |  31 +-
 drivers/gpu/drm/i915/gvt/scheduler.c               |  68 +-
 drivers/gpu/drm/i915/gvt/scheduler.h               |   1 +
 drivers/gpu/drm/i915/gvt/trace.h                   |  24 +-
 drivers/gpu/drm/i915/i915_debugfs.c                | 519 ++++++------
 drivers/gpu/drm/i915/i915_drv.c                    |  66 +-
 drivers/gpu/drm/i915/i915_drv.h                    | 397 ++-------
 drivers/gpu/drm/i915/i915_gem.c                    | 257 ++++--
 drivers/gpu/drm/i915/i915_gem.h                    |  13 +
 drivers/gpu/drm/i915/i915_gem_batch_pool.c         |  30 +-
 drivers/gpu/drm/i915/i915_gem_batch_pool.h         |  29 +-
 drivers/gpu/drm/i915/i915_gem_context.c            |  19 +-
 drivers/gpu/drm/i915/i915_gem_context.h            |  13 +-
 drivers/gpu/drm/i915/i915_gem_execbuffer.c         |  29 +
 drivers/gpu/drm/i915/i915_gem_stolen.c             | 178 +++--
 drivers/gpu/drm/i915/i915_gpu_error.c              |   9 +-
 drivers/gpu/drm/i915/i915_gpu_error.h              | 363 +++++++++
 drivers/gpu/drm/i915/i915_irq.c                    | 410 ++++++----
 drivers/gpu/drm/i915/i915_oa_icl.c                 | 118 +++
 drivers/gpu/drm/i915/i915_oa_icl.h                 |  34 +
 drivers/gpu/drm/i915/i915_params.h                 |   2 +-
 drivers/gpu/drm/i915/i915_pci.c                    |   1 +
 drivers/gpu/drm/i915/i915_perf.c                   |  69 +-
 drivers/gpu/drm/i915/i915_pmu.c                    |  27 +-
 drivers/gpu/drm/i915/i915_pmu.h                    |  30 +-
 drivers/gpu/drm/i915/i915_reg.h                    | 832 ++++++++++---------
 drivers/gpu/drm/i915/i915_request.c                | 193 ++---
 drivers/gpu/drm/i915/i915_request.h                |  46 +-
 drivers/gpu/drm/i915/i915_scheduler.h              |  72 ++
 drivers/gpu/drm/i915/i915_utils.h                  |   4 +-
 drivers/gpu/drm/i915/intel_atomic.c                |  19 +-
 drivers/gpu/drm/i915/intel_bios.c                  |  17 +-
 drivers/gpu/drm/i915/intel_breadcrumbs.c           |  52 +-
 drivers/gpu/drm/i915/intel_csr.c                   |   1 +
 drivers/gpu/drm/i915/intel_ddi.c                   | 154 +++-
 drivers/gpu/drm/i915/intel_device_info.c           | 169 +++-
 drivers/gpu/drm/i915/intel_device_info.h           |   4 +-
 drivers/gpu/drm/i915/intel_display.c               | 330 +++++---
 drivers/gpu/drm/i915/intel_display.h               |   4 +
 drivers/gpu/drm/i915/intel_dp.c                    | 298 ++++---
 drivers/gpu/drm/i915/intel_dp_link_training.c      |   5 +
 drivers/gpu/drm/i915/intel_dp_mst.c                |   8 +-
 drivers/gpu/drm/i915/intel_dpio_phy.c              |  11 +-
 drivers/gpu/drm/i915/intel_dpll_mgr.c              | 253 +++---
 drivers/gpu/drm/i915/intel_dpll_mgr.h              |  56 +-
 drivers/gpu/drm/i915/intel_drv.h                   |  75 +-
 drivers/gpu/drm/i915/intel_dsi_vbt.c               |  34 +-
 drivers/gpu/drm/i915/intel_engine_cs.c             | 885 ++++-----------------
 drivers/gpu/drm/i915/intel_fbc.c                   |  28 +
 drivers/gpu/drm/i915/intel_fbdev.c                 |   5 +-
 drivers/gpu/drm/i915/intel_frontbuffer.c           |   2 +-
 drivers/gpu/drm/i915/intel_gpu_commands.h          | 274 +++++++
 drivers/gpu/drm/i915/intel_guc.c                   | 231 ++++--
 drivers/gpu/drm/i915/intel_guc.h                   |  82 +-
 drivers/gpu/drm/i915/intel_guc_ads.c               |   8 +-
 drivers/gpu/drm/i915/intel_guc_ct.c                | 545 +++++++++++--
 drivers/gpu/drm/i915/intel_guc_ct.h                |  18 +-
 drivers/gpu/drm/i915/intel_guc_fw.c                |   7 +-
 drivers/gpu/drm/i915/intel_guc_fwif.h              | 162 +++-
 drivers/gpu/drm/i915/intel_guc_log.c               | 544 +++++--------
 drivers/gpu/drm/i915/intel_guc_log.h               |  59 +-
 drivers/gpu/drm/i915/intel_guc_reg.h               |  14 +-
 drivers/gpu/drm/i915/intel_guc_submission.c        |  53 +-
 drivers/gpu/drm/i915/intel_hangcheck.c             |  15 +-
 drivers/gpu/drm/i915/intel_hdcp.c                  | 185 +++--
 drivers/gpu/drm/i915/intel_hdmi.c                  |  40 +-
 drivers/gpu/drm/i915/intel_hotplug.c               |   3 +
 drivers/gpu/drm/i915/intel_huc.c                   |  30 +-
 drivers/gpu/drm/i915/intel_huc.h                   |   7 +
 drivers/gpu/drm/i915/intel_huc_fw.c                |   8 +-
 drivers/gpu/drm/i915/intel_lrc.c                   | 355 ++++++---
 drivers/gpu/drm/i915/intel_overlay.c               |   1 +
 drivers/gpu/drm/i915/intel_pipe_crc.c              |  53 +-
 drivers/gpu/drm/i915/intel_pm.c                    | 567 ++++++++-----
 drivers/gpu/drm/i915/intel_psr.c                   | 437 ++++++----
 drivers/gpu/drm/i915/intel_ringbuffer.c            |  34 +-
 drivers/gpu/drm/i915/intel_ringbuffer.h            |  58 +-
 drivers/gpu/drm/i915/intel_runtime_pm.c            |  78 +-
 drivers/gpu/drm/i915/intel_sprite.c                |   7 +-
 drivers/gpu/drm/i915/intel_uc.c                    | 132 +--
 drivers/gpu/drm/i915/intel_uc.h                    |   5 +-
 drivers/gpu/drm/i915/intel_uc_fw.c                 |  13 +-
 drivers/gpu/drm/i915/intel_uc_fw.h                 |  22 +
 drivers/gpu/drm/i915/intel_uncore.c                | 168 +++-
 drivers/gpu/drm/i915/intel_uncore.h                |   1 +
 drivers/gpu/drm/i915/intel_wopcm.c                 | 275 +++++++
 drivers/gpu/drm/i915/intel_wopcm.h                 |  31 +
 drivers/gpu/drm/i915/intel_workarounds.c           | 830 +++++++++++++++++++
 drivers/gpu/drm/i915/intel_workarounds.h           |  17 +
 .../gpu/drm/i915/selftests/i915_live_selftests.h   |   2 +
 .../gpu/drm/i915/selftests/i915_mock_selftests.h   |   1 +
 drivers/gpu/drm/i915/selftests/intel_engine_cs.c   |  58 ++
 drivers/gpu/drm/i915/selftests/intel_hangcheck.c   | 360 ++++++---
 drivers/gpu/drm/i915/selftests/intel_lrc.c         | 509 ++++++++++++
 drivers/gpu/drm/i915/selftests/intel_workarounds.c | 291 +++++++
 include/drm/drm_dp_helper.h                        |  10 +
 include/drm/i915_pciids.h                          |   1 +
 104 files changed, 8886 insertions(+), 4312 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_gpu_error.h
 create mode 100644 drivers/gpu/drm/i915/i915_oa_icl.c
 create mode 100644 drivers/gpu/drm/i915/i915_oa_icl.h
 create mode 100644 drivers/gpu/drm/i915/i915_scheduler.h
 create mode 100644 drivers/gpu/drm/i915/intel_gpu_commands.h
 create mode 100644 drivers/gpu/drm/i915/intel_wopcm.c
 create mode 100644 drivers/gpu/drm/i915/intel_wopcm.h
 create mode 100644 drivers/gpu/drm/i915/intel_workarounds.c
 create mode 100644 drivers/gpu/drm/i915/intel_workarounds.h
 create mode 100644 drivers/gpu/drm/i915/selftests/intel_engine_cs.c
 create mode 100644 drivers/gpu/drm/i915/selftests/intel_lrc.c
 create mode 100644 drivers/gpu/drm/i915/selftests/intel_workarounds.c
Merging drm-tegra/drm/tegra/for-next (27e92f1f1600 drm/tegra: prime: Implement ->{begin,end}_cpu_access())
$ git merge drm-tegra/drm/tegra/for-next
Already up to date.
Merging drm-misc/for-linux-next (3131f209468d drm/vc4: Fix leak of the file_priv that stored the perfmon.)
$ git merge drm-misc/for-linux-next
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/vc4/vc4_drv.c | 1 +
 1 file changed, 1 insertion(+)
Merging drm-msm/msm-next (789d4c300e10 drm/msm: don't deref error pointer in the msm_fbdev_create error path)
$ git merge drm-msm/msm-next
Already up to date.
Merging hdlcd/for-upstream/hdlcd (f73e8b825315 drm/arm: Replace instances of drm_dev_unref with drm_dev_put.)
$ git merge hdlcd/for-upstream/hdlcd
Already up to date.
Merging mali-dp/for-upstream/mali-dp (6e810eb508f4 drm: mali-dp: Add YUV->RGB conversion support for video layers)
$ git merge mali-dp/for-upstream/mali-dp
Already up to date.
Merging sunxi-drm/sunxi-drm/for-next (7dafb83edd32 Merge branches 'sunxi/drm-fixes-for-4.13' and 'sunxi/drm-for-4.14' into sunxi-drm/for-next)
$ git merge sunxi-drm/sunxi-drm/for-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging imx-drm/imx-drm/next (22cd2b2b3151 drm/imx: Remove last traces of struct imx_drm_crtc)
$ git merge imx-drm/imx-drm/next
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/imx/imx-drm.h    | 1 -
 drivers/gpu/drm/imx/ipuv3-crtc.c | 1 -
 2 files changed, 2 deletions(-)
Merging etnaviv/etnaviv/next (4ed75c3e5255 drm/etnaviv: bump HW job limit to 4)
$ git merge etnaviv/etnaviv/next
Already up to date.
Merging kconfig/for-next (bebc6082da0a Linux 4.14)
$ git merge kconfig/for-next
Already up to date.
Merging regmap/for-next (9e12b358300f Merge branch 'regmap-4.18' into regmap-next)
$ git merge regmap/for-next
Merge made by the 'recursive' strategy.
 include/linux/regmap.h | 1 +
 1 file changed, 1 insertion(+)
Merging sound/for-next (dfd9944f7cf8 ALSA: cs46xx: fix spelling mistake: "amplifer" -> "amplifier")
$ git merge sound/for-next
Auto-merging sound/pci/hda/patch_realtek.c
Merge made by the 'recursive' strategy.
 include/sound/emu10k1.h                |   4 +-
 include/sound/hdaudio.h                |   5 +
 sound/core/pcm_compat.c                |  10 +-
 sound/core/pcm_lib.c                   |  15 +--
 sound/core/pcm_local.h                 |  18 ++++
 sound/core/pcm_native.c                | 176 +++++++++------------------------
 sound/firewire/dice/dice-interface.h   |   9 +-
 sound/firewire/dice/dice-proc.c        |  10 +-
 sound/firewire/dice/dice-transaction.c |  49 +++++----
 sound/hda/hdac_regmap.c                |   4 +-
 sound/isa/cmi8328.c                    |   4 +-
 sound/pci/ad1889.c                     |   4 +-
 sound/pci/cmipci.c                     |   2 +-
 sound/pci/cs46xx/cs46xx.c              |   2 +-
 sound/pci/emu10k1/emufx.c              |   9 +-
 sound/pci/emu10k1/emupcm.c             |   2 +-
 sound/pci/hda/hda_auto_parser.c        |  10 +-
 sound/pci/hda/hda_codec.c              |  48 +++++----
 sound/pci/hda/hda_generic.c            |  27 +++--
 sound/pci/hda/hda_sysfs.c              |  20 ++--
 sound/pci/hda/patch_conexant.c         |   5 +-
 sound/pci/hda/patch_realtek.c          |   4 +-
 sound/usb/pcm.c                        |  56 +++++------
 sound/usb/quirks.c                     |  27 +++++
 24 files changed, 238 insertions(+), 282 deletions(-)
Merging sound-asoc/for-next (fd4535dc2855 Merge branch 'asoc-4.18' into asoc-next)
$ git merge sound-asoc/for-next
Auto-merging MAINTAINERS
Auto-merging Documentation/sound/soc/codec.rst
Merge made by the 'recursive' strategy.
 .mailmap                                           |    3 +
 .../devicetree/bindings/sound/mt2701-afe-pcm.txt   |    4 +-
 Documentation/devicetree/bindings/sound/mt6351.txt |   16 +
 .../devicetree/bindings/sound/mt6797-afe-pcm.txt   |   42 +
 .../devicetree/bindings/sound/mt6797-mt6351.txt    |   14 +
 Documentation/devicetree/bindings/sound/rt5668.txt |   50 +
 .../devicetree/bindings/sound/ti,tas6424.txt       |    2 +
 .../devicetree/bindings/sound/tscs42xx.txt         |    6 +
 Documentation/sound/soc/codec.rst                  |    8 +-
 MAINTAINERS                                        |    2 +-
 include/linux/mfd/wm8350/audio.h                   |    3 -
 include/sound/rt5668.h                             |   40 +
 include/sound/soc.h                                |  103 +-
 include/trace/events/asoc.h                        |    1 -
 include/uapi/sound/asoc.h                          |   29 +-
 sound/soc/amd/acp-da7219-max98357a.c               |    6 +
 sound/soc/amd/acp-pcm-dma.c                        |  271 +-
 sound/soc/amd/acp.h                                |   22 +-
 sound/soc/atmel/atmel_ssc_dai.c                    |    8 +-
 sound/soc/bcm/Kconfig                              |    3 +-
 sound/soc/codecs/Kconfig                           |   16 +
 sound/soc/codecs/Makefile                          |    6 +
 sound/soc/codecs/adau17x1.c                        |    9 +
 sound/soc/codecs/max9860.c                         |   44 +-
 sound/soc/codecs/max9860.h                         |   10 +-
 sound/soc/codecs/mt6351.c                          | 1505 +++++++++++
 sound/soc/codecs/mt6351.h                          |  105 +
 sound/soc/codecs/nau8824.c                         |    9 +
 sound/soc/codecs/rt1305.c                          | 1191 +++++++++
 sound/soc/codecs/rt1305.h                          |  276 ++
 sound/soc/codecs/rt5668.c                          | 2639 ++++++++++++++++++++
 sound/soc/codecs/rt5668.h                          | 1318 ++++++++++
 sound/soc/codecs/sgtl5000.c                        |   18 +-
 sound/soc/codecs/sgtl5000.h                        |    5 +-
 sound/soc/codecs/tas6424.c                         |   59 +-
 sound/soc/codecs/tfa9879.c                         |   48 +-
 sound/soc/codecs/tfa9879.h                         |    7 +-
 sound/soc/codecs/tscs42xx.c                        |  203 +-
 sound/soc/codecs/tscs42xx.h                        |    2 +-
 sound/soc/codecs/wm_adsp.c                         |    8 +-
 sound/soc/fsl/fsl_esai.c                           |    6 +
 sound/soc/fsl/fsl_ssi.c                            |    3 +-
 sound/soc/intel/Kconfig                            |    2 +-
 sound/soc/intel/boards/bxt_da7219_max98357a.c      |    2 +-
 sound/soc/intel/boards/bxt_rt298.c                 |    2 +-
 sound/soc/intel/boards/byt-max98090.c              |    2 +-
 sound/soc/intel/boards/bytcht_es8316.c             |    2 +-
 sound/soc/intel/boards/bytcr_rt5640.c              |    2 +-
 sound/soc/intel/boards/bytcr_rt5651.c              |    2 +-
 sound/soc/intel/boards/cht_bsw_max98090_ti.c       |    2 +-
 sound/soc/intel/boards/cht_bsw_nau8824.c           |    2 +-
 sound/soc/intel/boards/cht_bsw_rt5645.c            |    2 +-
 sound/soc/intel/boards/kbl_da7219_max98357a.c      |    2 +-
 sound/soc/intel/boards/kbl_rt5663_max98927.c       |    2 +-
 .../soc/intel/boards/kbl_rt5663_rt5514_max98927.c  |    2 +-
 sound/soc/intel/boards/skl_nau88l25_max98357a.c    |    2 +-
 sound/soc/intel/boards/skl_nau88l25_ssm4567.c      |    2 +-
 sound/soc/intel/boards/skl_rt286.c                 |    2 +-
 sound/soc/intel/skylake/skl-messages.c             |    2 +-
 sound/soc/intel/skylake/skl-pcm.c                  |   36 +-
 sound/soc/intel/skylake/skl-sst-dsp.h              |    3 -
 sound/soc/intel/skylake/skl-sst.c                  |   34 +-
 sound/soc/intel/skylake/skl.c                      |    7 +
 sound/soc/kirkwood/Kconfig                         |    1 -
 sound/soc/mediatek/Kconfig                         |   20 +
 sound/soc/mediatek/Makefile                        |    2 +
 sound/soc/mediatek/common/Makefile                 |   14 +-
 sound/soc/mediatek/common/mtk-afe-fe-dai.c         |   30 +-
 sound/soc/mediatek/common/mtk-afe-fe-dai.h         |   10 +-
 .../soc/mediatek/common/mtk-afe-platform-driver.c  |   14 +-
 .../soc/mediatek/common/mtk-afe-platform-driver.h  |   10 +-
 sound/soc/mediatek/common/mtk-base-afe.h           |   12 +-
 sound/soc/mediatek/mt2701/Makefile                 |   14 +-
 sound/soc/mediatek/mt2701/mt2701-afe-clock-ctrl.c  |   66 +-
 sound/soc/mediatek/mt2701/mt2701-afe-clock-ctrl.h  |   23 +-
 sound/soc/mediatek/mt2701/mt2701-afe-common.h      |   38 +-
 sound/soc/mediatek/mt2701/mt2701-afe-pcm.c         |  318 +--
 sound/soc/mediatek/mt2701/mt2701-cs42448.c         |   13 +-
 sound/soc/mediatek/mt2701/mt2701-reg.h             |   11 +-
 sound/soc/mediatek/mt2701/mt2701-wm8960.c          |   10 +-
 sound/soc/mediatek/mt6797/Makefile                 |    8 +
 sound/soc/mediatek/mt6797/mt6797-afe-clk.c         |  123 +
 sound/soc/mediatek/mt6797/mt6797-afe-clk.h         |   17 +
 sound/soc/mediatek/mt6797/mt6797-afe-common.h      |   49 +
 sound/soc/mediatek/mt6797/mt6797-afe-pcm.c         | 1232 +++++++++
 sound/soc/mediatek/mt6797/mt6797-interconnection.h |   33 +
 sound/soc/mediatek/mt6797/mt6797-mt6351.c          |  177 ++
 sound/soc/mediatek/mt6797/mt6797-reg.h             |  838 +++++++
 sound/soc/mediatek/mt8173/mt8173-afe-common.h      |   10 +-
 sound/soc/mediatek/mt8173/mt8173-afe-pcm.c         |   38 +-
 sound/soc/mediatek/mt8173/mt8173-max98090.c        |   10 +-
 sound/soc/mediatek/mt8173/mt8173-rt5650-rt5514.c   |   10 +-
 sound/soc/mediatek/mt8173/mt8173-rt5650-rt5676.c   |   10 +-
 sound/soc/mediatek/mt8173/mt8173-rt5650.c          |   10 +-
 sound/soc/omap/Kconfig                             |    1 -
 sound/soc/omap/n810.c                              |   21 +-
 sound/soc/pxa/Kconfig                              |    1 -
 sound/soc/qcom/Kconfig                             |    7 +-
 sound/soc/sh/Kconfig                               |    6 +-
 sound/soc/sh/rcar/cmd.c                            |   15 +-
 sound/soc/sh/rcar/core.c                           |   49 +-
 sound/soc/sh/rcar/dma.c                            |   11 +-
 sound/soc/sh/rcar/gen.c                            |    3 +-
 sound/soc/sh/rcar/rsnd.h                           |    4 +-
 sound/soc/sh/rcar/ssi.c                            |   13 +-
 sound/soc/soc-compress.c                           |  356 +--
 sound/soc/soc-core.c                               |  221 +-
 sound/soc/soc-devres.c                             |   35 -
 sound/soc/soc-io.c                                 |   21 -
 sound/soc/soc-pcm.c                                |  119 +-
 sound/soc/soc-topology.c                           |   30 +-
 sound/soc/uniphier/aio-compress.c                  |   13 -
 sound/soc/uniphier/aio-core.c                      |   13 -
 sound/soc/uniphier/aio-cpu.c                       |   13 -
 sound/soc/uniphier/aio-dma.c                       |   13 -
 sound/soc/uniphier/aio-ld11.c                      |   13 -
 sound/soc/uniphier/aio-reg.h                       |   13 -
 sound/soc/uniphier/aio.h                           |   13 -
 118 files changed, 10655 insertions(+), 1754 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/mt6351.txt
 create mode 100644 Documentation/devicetree/bindings/sound/mt6797-afe-pcm.txt
 create mode 100644 Documentation/devicetree/bindings/sound/mt6797-mt6351.txt
 create mode 100644 Documentation/devicetree/bindings/sound/rt5668.txt
 create mode 100644 include/sound/rt5668.h
 create mode 100644 sound/soc/codecs/mt6351.c
 create mode 100644 sound/soc/codecs/mt6351.h
 create mode 100644 sound/soc/codecs/rt1305.c
 create mode 100644 sound/soc/codecs/rt1305.h
 create mode 100644 sound/soc/codecs/rt5668.c
 create mode 100644 sound/soc/codecs/rt5668.h
 create mode 100644 sound/soc/mediatek/mt6797/Makefile
 create mode 100644 sound/soc/mediatek/mt6797/mt6797-afe-clk.c
 create mode 100644 sound/soc/mediatek/mt6797/mt6797-afe-clk.h
 create mode 100644 sound/soc/mediatek/mt6797/mt6797-afe-common.h
 create mode 100644 sound/soc/mediatek/mt6797/mt6797-afe-pcm.c
 create mode 100644 sound/soc/mediatek/mt6797/mt6797-interconnection.h
 create mode 100644 sound/soc/mediatek/mt6797/mt6797-mt6351.c
 create mode 100644 sound/soc/mediatek/mt6797/mt6797-reg.h
Merging modules/modules-next (c554b8986801 module: Allow to always show the status of modsign)
$ git merge modules/modules-next
Auto-merging kernel/module.c
Merge made by the 'recursive' strategy.
 kernel/module.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
Merging input/next (d91abc21e1e6 Input: alps - demystify trackstick initialization for v3 and v6 protocols)
$ git merge input/next
Auto-merging drivers/input/mouse/alps.c
Merge made by the 'recursive' strategy.
 drivers/input/mouse/alps.c | 80 ++++++++++++++++++++++++++++------------------
 1 file changed, 49 insertions(+), 31 deletions(-)
Merging block/for-next (667eea5d591b Merge branch 'for-4.17/block' into for-next)
$ git merge block/for-next
Merge made by the 'recursive' strategy.
Merging lightnvm/for-next (1c6286f26301 lightnvm: fix some error code in pblk-init.c)
$ git merge lightnvm/for-next
Already up to date.
Merging device-mapper/for-next (a1c0a8e35b88 dm bufio: fix buffer alignment)
$ git merge device-mapper/for-next
Merge made by the 'recursive' strategy.
 drivers/md/dm-bufio.c     | 5 +++--
 drivers/md/dm-integrity.c | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)
Merging mmc/next (5bec8e5878e2 mmc: mediatek: add 64G DRAM DMA support)
$ git merge mmc/next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/mmc/amlogic,meson-gx.txt   |   1 +
 Documentation/devicetree/bindings/mmc/jz4740.txt   |  38 ++++
 Documentation/devicetree/bindings/mmc/tmio_mmc.txt |   1 +
 arch/mips/boot/dts/ingenic/ci20.dts                |  34 ++++
 arch/mips/boot/dts/ingenic/jz4780.dtsi             |  52 ++++++
 arch/mips/configs/ci20_defconfig                   |   4 +
 drivers/mmc/core/block.c                           |   3 +-
 drivers/mmc/core/card.h                            |   6 +
 drivers/mmc/core/mmc.c                             |   8 +
 drivers/mmc/core/pwrseq_simple.c                   |  14 +-
 drivers/mmc/core/quirks.h                          |   3 +
 drivers/mmc/core/sd.c                              |   8 +
 drivers/mmc/core/sdio.c                            |  14 +-
 drivers/mmc/host/Kconfig                           |  23 +--
 drivers/mmc/host/davinci_mmc.c                     |   6 +-
 drivers/mmc/host/dw_mmc-rockchip.c                 |   5 +-
 drivers/mmc/host/dw_mmc.c                          |   4 +
 drivers/mmc/host/jz4740_mmc.c                      | 203 ++++++++++++++-------
 drivers/mmc/host/meson-gx-mmc.c                    |  63 +++++--
 drivers/mmc/host/mmci.c                            |   5 -
 drivers/mmc/host/mtk-sd.c                          |  63 +++++--
 drivers/mmc/host/renesas_sdhi_internal_dmac.c      |  30 +--
 drivers/mmc/host/sdhci-cadence.c                   |  22 ++-
 drivers/mmc/host/sdhci-esdhc-imx.c                 |  22 +++
 drivers/mmc/host/sdhci-msm.c                       |  84 ++++++++-
 drivers/mmc/host/sdhci-of-arasan.c                 |   9 +-
 drivers/mmc/host/sdhci-pci-core.c                  |  38 +++-
 drivers/mmc/host/sdhci-pci.h                       |   1 +
 drivers/mmc/host/sunxi-mmc.c                       | 185 ++++++++++++-------
 drivers/mmc/host/wmt-sdmmc.c                       |   6 +-
 include/dt-bindings/dma/jz4780-dma.h               |  49 +++++
 include/linux/mmc/card.h                           |   1 +
 include/linux/mmc/host.h                           |   1 +
 include/linux/mmc/sdio_ids.h                       |   1 +
 34 files changed, 786 insertions(+), 221 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mmc/jz4740.txt
 create mode 100644 include/dt-bindings/dma/jz4780-dma.h
Merging kgdb/kgdb-next (2cf2f0d5b91f kdb: use memmove instead of overlapping memcpy)
$ git merge kgdb/kgdb-next
Already up to date.
Merging md/for-next (fd823089ffac raid5: copy write hint from origin bio to stripe)
$ git merge md/for-next
Merge made by the 'recursive' strategy.
 drivers/md/md.c    | 188 +++++++++++++++++++++++++++++++++++++----------------
 drivers/md/md.h    |  23 +++++--
 drivers/md/raid5.c |   6 ++
 drivers/md/raid5.h |   1 +
 4 files changed, 156 insertions(+), 62 deletions(-)
Merging mfd/for-mfd-next (ae0280fe1689 mfd: tps65911-comparator: Fix a build error)
$ git merge mfd/for-mfd-next
Removing include/linux/mfd/syscon/exynos5-pmu.h
Removing include/linux/mfd/syscon/exynos4-pmu.h
Removing drivers/mfd/cros_ec_acpi_gpe.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/mfd/motorola-cpcap.txt     |  42 ++
 drivers/mfd/Makefile                               |   1 -
 drivers/mfd/ab8500-debugfs.c                       |   3 +-
 drivers/mfd/abx500-core.c                          |  25 +-
 drivers/mfd/arizona-core.c                         |  53 ++-
 drivers/mfd/axp20x.c                               | 252 +++--------
 drivers/mfd/cros_ec.c                              |  15 +-
 drivers/mfd/cros_ec_acpi_gpe.c                     | 103 -----
 drivers/mfd/da9062-core.c                          | 462 +++++----------------
 drivers/mfd/htc-i2cpld.c                           |   4 +-
 drivers/mfd/janz-cmodio.c                          |   4 +-
 drivers/mfd/jz4740-adc.c                           |   4 +-
 drivers/mfd/max8997.c                              |   4 +-
 drivers/mfd/omap-usb-tll.c                         |  60 ++-
 drivers/mfd/pcf50633-core.c                        |   7 +-
 drivers/mfd/rave-sp.c                              | 107 ++++-
 drivers/mfd/rc5t583.c                              |   6 +-
 drivers/mfd/si476x-i2c.c                           |   6 +-
 drivers/mfd/sm501.c                                |  32 +-
 drivers/mfd/smsc-ece1099.c                         |   7 +-
 drivers/mfd/sprd-sc27xx-spi.c                      |   3 +
 drivers/mfd/syscon.c                               |   2 +
 drivers/mfd/ti_am335x_tscadc.c                     |   5 +-
 drivers/mfd/tps65090.c                             |   4 +-
 drivers/mfd/tps6586x.c                             |   4 +-
 drivers/mfd/tps65910.c                             |  18 +-
 drivers/mfd/tps65911-comparator.c                  |   6 +-
 drivers/mfd/tps68470.c                             |  10 +-
 drivers/mfd/tps80031.c                             |   4 +-
 drivers/mfd/twl-core.c                             |   2 +-
 drivers/mfd/twl6030-irq.c                          |   4 +-
 drivers/mfd/viperboard.c                           |   4 +-
 include/linux/mfd/arizona/pdata.h                  |   3 +-
 include/linux/mfd/axp20x.h                         |  10 +-
 include/linux/mfd/cros_ec.h                        |  18 -
 include/linux/mfd/syscon/exynos4-pmu.h             |  21 -
 include/linux/mfd/syscon/exynos5-pmu.h             |  19 -
 include/linux/mfd/tps65218.h                       |   4 +-
 include/linux/mfd/tps68470.h                       |  17 +-
 39 files changed, 464 insertions(+), 891 deletions(-)
 delete mode 100644 drivers/mfd/cros_ec_acpi_gpe.c
 delete mode 100644 include/linux/mfd/syscon/exynos4-pmu.h
 delete mode 100644 include/linux/mfd/syscon/exynos5-pmu.h
Merging backlight/for-backlight-next (ea388d6cffd4 pwm-backlight: Add support for PWM delays proprieties.)
$ git merge backlight/for-backlight-next
Merge made by the 'recursive' strategy.
 .../bindings/leds/backlight/pwm-backlight.txt      |  6 ++
 .../leds/backlight/zii,rave-sp-backlight.txt       | 23 ++++++
 drivers/video/backlight/Kconfig                    |  6 ++
 drivers/video/backlight/Makefile                   |  1 +
 drivers/video/backlight/pwm_bl.c                   | 28 ++++++--
 drivers/video/backlight/rave-sp-backlight.c        | 82 ++++++++++++++++++++++
 include/linux/mfd/rave-sp.h                        |  1 +
 include/linux/pwm_backlight.h                      |  2 +
 8 files changed, 145 insertions(+), 4 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/leds/backlight/zii,rave-sp-backlight.txt
 create mode 100644 drivers/video/backlight/rave-sp-backlight.c
Merging battery/for-next (1f140ff46708 Merge tag 'tags/tcpm-pps-4.18' into psy-next)
$ git merge battery/for-next
Auto-merging drivers/usb/core/hub.c
Auto-merging drivers/usb/core/hcd.c
CONFLICT (content): Merge conflict in drivers/usb/core/hcd.c
Auto-merging MAINTAINERS
Resolved 'drivers/usb/core/hcd.c' using previous resolution.
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master ef0aaabbe1fd] Merge remote-tracking branch 'battery/for-next'
$ git diff -M --stat --summary HEAD^..
 Documentation/ABI/testing/sysfs-bus-usb            |   18 +
 Documentation/ABI/testing/sysfs-class-power        |  455 +++++++++
 .../devicetree/bindings/power/supply/bq27xxx.txt   |    1 +
 .../devicetree/bindings/usb/ci-hdrc-usb2.txt       |    6 +
 .../devicetree/bindings/usb/fcs,fusb302.txt        |    6 -
 .../devicetree/bindings/usb/richtek,rt1711h.txt    |   17 +
 MAINTAINERS                                        |    1 +
 drivers/power/reset/gpio-poweroff.c                |    4 +-
 drivers/power/supply/ab8500_bmdata.c               |   63 --
 drivers/power/supply/ab8500_btemp.c                |   93 +-
 drivers/power/supply/ab8500_charger.c              |  131 +--
 drivers/power/supply/ab8500_fg.c                   |   14 +-
 drivers/power/supply/abx500_chargalg.c             |   62 --
 drivers/power/supply/axp288_charger.c              |   26 +-
 drivers/power/supply/axp288_fuel_gauge.c           |   27 +-
 drivers/power/supply/bq27xxx_battery.c             |    9 +
 drivers/power/supply/bq27xxx_battery_i2c.c         |    2 +
 drivers/power/supply/charger-manager.c             |    5 +-
 drivers/power/supply/gpio-charger.c                |    3 +-
 drivers/power/supply/power_supply_core.c           |   11 +-
 drivers/power/supply/power_supply_sysfs.c          |  123 ++-
 drivers/power/supply/s3c_adc_battery.c             |    8 +-
 drivers/staging/typec/Kconfig                      |    8 +
 drivers/staging/typec/Makefile                     |    1 +
 drivers/staging/typec/tcpci.h                      |    1 +
 drivers/staging/typec/tcpci_rt1711h.c              |  312 ++++++
 drivers/usb/core/hcd.c                             |   49 +-
 drivers/usb/core/hub.c                             |   23 +-
 drivers/usb/core/sysfs.c                           |   22 +
 drivers/usb/gadget/udc/Kconfig                     |    4 +-
 drivers/usb/host/Kconfig                           |    4 +-
 drivers/usb/host/ehci-omap.c                       |    5 +-
 drivers/usb/host/ehci-tegra.c                      |   87 +-
 drivers/usb/isp1760/isp1760-core.c                 |    2 +-
 drivers/usb/isp1760/isp1760-hcd.c                  |    2 +-
 drivers/usb/mon/mon_bin.c                          |    2 +-
 drivers/usb/mtu3/Kconfig                           |    2 +-
 drivers/usb/mtu3/mtu3_plat.c                       |    6 +-
 drivers/usb/musb/omap2430.c                        |   95 +-
 drivers/usb/phy/Kconfig                            |    9 +
 drivers/usb/phy/Makefile                           |    2 +-
 drivers/usb/phy/phy-am335x.c                       |    6 +-
 drivers/usb/phy/phy-tegra-usb.c                    |  140 ++-
 drivers/usb/phy/phy.c                              |  133 +--
 drivers/usb/renesas_usbhs/common.h                 |    1 -
 drivers/usb/renesas_usbhs/rcar2.c                  |   29 -
 drivers/usb/roles/intel-xhci-usb-role-switch.c     |    2 +
 drivers/usb/storage/freecom.c                      |    4 +-
 drivers/usb/typec/Kconfig                          |    1 +
 drivers/usb/typec/fusb302/Kconfig                  |    2 +-
 drivers/usb/typec/fusb302/fusb302.c                |  105 +-
 drivers/usb/typec/tcpm.c                           | 1059 ++++++++++++++++++--
 drivers/usb/typec/typec_wcove.c                    |    4 +-
 drivers/usb/usbip/stub_dev.c                       |    4 +-
 include/linux/mfd/abx500.h                         |    1 -
 include/linux/mfd/abx500/ab8500-bm.h               |    2 -
 include/linux/mfd/abx500/ux500_chargalg.h          |    4 -
 include/linux/power/bq27xxx_battery.h              |    3 +-
 include/linux/power_supply.h                       |   16 +
 include/linux/usb.h                                |    4 +
 include/linux/usb/audio-v2.h                       |    2 +-
 include/linux/usb/hcd.h                            |    2 +-
 include/linux/usb/pd.h                             |    4 +-
 include/linux/usb/phy.h                            |   36 -
 include/linux/usb/tcpm.h                           |   10 +-
 include/linux/usb/tegra_usb_phy.h                  |    2 +
 include/uapi/linux/usb/ch11.h                      |    5 +
 67 files changed, 2347 insertions(+), 955 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/usb/richtek,rt1711h.txt
 create mode 100644 drivers/staging/typec/tcpci_rt1711h.c
Merging regulator/for-next (49b07c0d58da Merge remote-tracking branch 'regulator/topic/bd9571mwv' into regulator-next)
$ git merge regulator/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mfd/axp20x.txt   |    3 +-
 .../devicetree/bindings/mfd/bd9571mwv.txt          |   21 +
 drivers/mfd/bd9571mwv.c                            |    2 +
 drivers/regulator/ab8500.c                         | 1779 ++------------------
 drivers/regulator/axp20x-regulator.c               |    2 +
 drivers/regulator/bd9571mwv-regulator.c            |  127 +-
 drivers/regulator/cpcap-regulator.c                |    2 +-
 drivers/regulator/lp87565-regulator.c              |   17 +-
 drivers/regulator/of_regulator.c                   |   13 +-
 drivers/regulator/pfuze100-regulator.c             |    9 +-
 drivers/regulator/tps6586x-regulator.c             |    1 +
 drivers/regulator/twl-regulator.c                  |    2 +-
 drivers/regulator/wm8350-regulator.c               |    1 +
 include/linux/mfd/bd9571mwv.h                      |    5 +
 include/linux/mfd/tps6586x.h                       |    1 +
 include/linux/regulator/ab8500.h                   |  157 +-
 include/linux/regulator/consumer.h                 |    1 +
 17 files changed, 378 insertions(+), 1765 deletions(-)
Merging security/next-testing (b393a707c84b Merge tag 'v4.17-rc2' into next-general)
$ git merge security/next-testing
Merge made by the 'recursive' strategy.
 include/linux/security.h | 14 --------------
 1 file changed, 14 deletions(-)
Merging apparmor/apparmor-next (588558eb6d0e apparmor: fix memory leak on buffer on error exit path)
$ git merge apparmor/apparmor-next
Already up to date.
Merging integrity/next-integrity (ab60368ab6a4 ima: Fallback to the builtin hash algorithm)
$ git merge integrity/next-integrity
Already up to date.
Merging keys/keys-next (1e684d3820d8 pkcs7: Set the module licence to prevent tainting)
$ git merge keys/keys-next
Already up to date.
Merging selinux/next (d141136f523a audit: normalize MAC_POLICY_LOAD record)
$ git merge selinux/next
Merge made by the 'recursive' strategy.
 security/selinux/selinuxfs.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)
Merging tpmdd/next (33bfe29814bd tpm/st33zp24: Fix spelling mistake in macro ST33ZP24_TISREGISTER_UKNOWN)
$ git merge tpmdd/next
Auto-merging drivers/char/tpm/eventlog/tpm2.c
Auto-merging drivers/char/tpm/eventlog/tpm1.c
Auto-merging drivers/char/tpm/eventlog/of.c
Auto-merging drivers/char/tpm/eventlog/efi.c
Auto-merging drivers/char/tpm/eventlog/acpi.c
Merge made by the 'recursive' strategy.
 drivers/char/tpm/Makefile                          |  10 +-
 .../tpm/{tpm_eventlog_acpi.c => eventlog/acpi.c}   |   3 +-
 drivers/char/tpm/eventlog/common.c                 | 195 ++++++++++++++++++++
 drivers/char/tpm/eventlog/common.h                 |  35 ++++
 .../tpm/{tpm_eventlog_efi.c => eventlog/efi.c}     |   3 +-
 .../char/tpm/{tpm_eventlog_of.c => eventlog/of.c}  |   7 +-
 .../char/tpm/{tpm1_eventlog.c => eventlog/tpm1.c}  | 200 ++-------------------
 .../char/tpm/{tpm2_eventlog.c => eventlog/tpm2.c}  |   3 +-
 drivers/char/tpm/st33zp24/spi.c                    |   4 +-
 drivers/char/tpm/st33zp24/st33zp24.c               |   2 -
 drivers/char/tpm/tpm-interface.c                   |   3 +-
 drivers/char/tpm/tpm.h                             |  27 ---
 12 files changed, 266 insertions(+), 226 deletions(-)
 rename drivers/char/tpm/{tpm_eventlog_acpi.c => eventlog/acpi.c} (98%)
 create mode 100644 drivers/char/tpm/eventlog/common.c
 create mode 100644 drivers/char/tpm/eventlog/common.h
 rename drivers/char/tpm/{tpm_eventlog_efi.c => eventlog/efi.c} (97%)
 rename drivers/char/tpm/{tpm_eventlog_of.c => eventlog/of.c} (94%)
 rename drivers/char/tpm/{tpm1_eventlog.c => eventlog/tpm1.c} (58%)
 rename drivers/char/tpm/{tpm2_eventlog.c => eventlog/tpm2.c} (99%)
Merging watchdog/master (6d08b06e67cd Linux 4.17-rc2)
$ git merge watchdog/master
Already up to date.
Merging iommu/next (d4f96fd5c249 Merge branches 'x86/amd', 'x86/vt-d', 'arm/rockchip', 'arm/omap', 'arm/mediatek', 'arm/exynos', 'arm/renesas', 'arm/smmu' and 'core' into next)
$ git merge iommu/next
Already up to date.
Merging dwmw2-iommu/master (d8a5b80568a9 Linux 4.15)
$ git merge dwmw2-iommu/master
Already up to date.
Merging vfio/next (da9147140fe3 MAINTAINERS: vfio/platform: Update sub-maintainer)
$ git merge vfio/next
Already up to date.
Merging trivial/for-next (75a24b822d38 kfifo: fix inaccurate comment)
$ git merge trivial/for-next
Already up to date.
Merging audit/next (23bcc480dac2 audit: allow not equal op for audit by executable)
$ git merge audit/next
Merge made by the 'recursive' strategy.
 kernel/audit.c       | 4 ++--
 kernel/auditfilter.c | 2 +-
 kernel/auditsc.c     | 2 ++
 3 files changed, 5 insertions(+), 3 deletions(-)
Merging devicetree/for-next (08c418a6ed82 Merge branch 'dt/next' into for-next)
$ git merge devicetree/for-next
Auto-merging drivers/of/platform.c
Auto-merging Documentation/devicetree/bindings/vendor-prefixes.txt
Auto-merging Documentation/devicetree/bindings/serial/renesas,sci-serial.txt
Auto-merging Documentation/devicetree/bindings/mtd/mtk-nand.txt
Auto-merging Documentation/devicetree/bindings/mmc/tmio_mmc.txt
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/arm/ux500/boards.txt       |  2 +-
 Documentation/devicetree/bindings/dma/k3dma.txt    |  1 -
 .../devicetree/bindings/dma/renesas,rcar-dmac.txt  |  1 +
 Documentation/devicetree/bindings/dma/ti-edma.txt  |  1 -
 .../adc/samsung,exynos-adc.txt}                    |  0
 .../devicetree/bindings/mips/lantiq/rcu.txt        |  2 --
 Documentation/devicetree/bindings/mmc/tmio_mmc.txt |  4 ---
 .../{powerpc/4xx/ndfc.txt => mtd/ibm,ndfc.txt}     |  0
 Documentation/devicetree/bindings/mtd/mtk-nand.txt |  4 ---
 .../{powerpc/4xx/emac.txt => net/ibm,emac.txt}     |  0
 .../devicetree/bindings/net/renesas,ravb.txt       |  1 +
 .../devicetree/bindings/pci/xgene-pci.txt          |  7 -----
 .../bindings/pinctrl/allwinner,sunxi-pinctrl.txt   |  6 ++---
 Documentation/devicetree/bindings/pps/pps-gpio.txt |  1 -
 .../devicetree/bindings/pwm/pwm-omap-dmtimer.txt   |  2 +-
 .../samsung,exynos4-rng.txt}                       |  0
 .../bindings/{ => rng}/sparc_sun_oracle_rng.txt    |  0
 .../bindings/serial/renesas,sci-serial.txt         |  2 ++
 .../bindings/thermal/rcar-gen3-thermal.txt         |  6 ++---
 .../{nios2/timer.txt => timer/altr,timer-1.0.txt}  |  0
 .../arch_timer.txt => timer/arm,arch_timer.txt}    |  0
 .../arm,armv7m-systick.txt}                        |  0
 .../arm,global_timer.txt}                          |  0
 .../bindings/{arm/twd.txt => timer/arm,twd.txt}    |  0
 .../{powerpc/fsl/gtm.txt => timer/fsl,gtm.txt}     |  0
 .../mrvl/timer.txt => timer/mrvl,mmp-timer.txt}    |  0
 .../msm/timer.txt => timer/qcom,msm-timer.txt}     |  0
 .../spear-timer.txt => timer/st,spear-timer.txt}   |  0
 .../{c6x/timer64.txt => timer/ti,c64x+timer64.txt} |  0
 .../{arm/omap/timer.txt => timer/ti,timer.txt}     |  0
 .../{arm/vt8500 => timer}/via,vt8500-timer.txt     |  0
 .../devicetree/bindings/vendor-prefixes.txt        |  2 ++
 Documentation/devicetree/overlay-notes.txt         |  8 ++++++
 drivers/of/of_numa.c                               |  1 -
 drivers/of/overlay.c                               | 30 +++++++++++++++-------
 drivers/of/platform.c                              | 11 ++++++++
 scripts/dtc/checks.c                               |  5 ++--
 37 files changed, 56 insertions(+), 41 deletions(-)
 rename Documentation/devicetree/bindings/{arm/samsung/exynos-adc.txt => iio/adc/samsung,exynos-adc.txt} (100%)
 rename Documentation/devicetree/bindings/{powerpc/4xx/ndfc.txt => mtd/ibm,ndfc.txt} (100%)
 rename Documentation/devicetree/bindings/{powerpc/4xx/emac.txt => net/ibm,emac.txt} (100%)
 rename Documentation/devicetree/bindings/{crypto/samsung,exynos-rng4.txt => rng/samsung,exynos4-rng.txt} (100%)
 rename Documentation/devicetree/bindings/{ => rng}/sparc_sun_oracle_rng.txt (100%)
 rename Documentation/devicetree/bindings/{nios2/timer.txt => timer/altr,timer-1.0.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/arch_timer.txt => timer/arm,arch_timer.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/armv7m_systick.txt => timer/arm,armv7m-systick.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/global_timer.txt => timer/arm,global_timer.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/twd.txt => timer/arm,twd.txt} (100%)
 rename Documentation/devicetree/bindings/{powerpc/fsl/gtm.txt => timer/fsl,gtm.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/mrvl/timer.txt => timer/mrvl,mmp-timer.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/msm/timer.txt => timer/qcom,msm-timer.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/spear-timer.txt => timer/st,spear-timer.txt} (100%)
 rename Documentation/devicetree/bindings/{c6x/timer64.txt => timer/ti,c64x+timer64.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/omap/timer.txt => timer/ti,timer.txt} (100%)
 rename Documentation/devicetree/bindings/{arm/vt8500 => timer}/via,vt8500-timer.txt (100%)
Merging mailbox/mailbox-for-next (dfbc9c5841fc mailbox: Remove depends on HAS_DMA in case of platform dependency)
$ git merge mailbox/mailbox-for-next
Merge made by the 'recursive' strategy.
 drivers/mailbox/Kconfig | 2 --
 1 file changed, 2 deletions(-)
Merging spi/for-next (7c1ed982b357 Merge branch 'spi-4.18' into spi-next)
$ git merge spi/for-next
Merge made by the 'recursive' strategy.
 drivers/spi/Kconfig             |  12 +-
 drivers/spi/internals.h         |  43 ++++++++
 drivers/spi/spi-bcm63xx-hsspi.c |  25 +++--
 drivers/spi/spi-cadence.c       |  14 ++-
 drivers/spi/spi-imx.c           |   2 +-
 drivers/spi/spi-mpc52xx.c       |   2 +-
 drivers/spi/spi-pxa2xx-dma.c    |  28 +++--
 drivers/spi/spi-pxa2xx.c        | 239 ++++++++++++----------------------------
 drivers/spi/spi-pxa2xx.h        |  19 +---
 drivers/spi/spi-s3c64xx.c       | 158 ++++++++++++++------------
 drivers/spi/spi-sh-msiof.c      |  66 +++++------
 drivers/spi/spi-stm32.c         |   2 +-
 drivers/spi/spi-zynqmp-gqspi.c  |  92 ++++++++++++----
 drivers/spi/spi.c               |  62 ++++++++---
 14 files changed, 410 insertions(+), 354 deletions(-)
 create mode 100644 drivers/spi/internals.h
Merging tip/auto-latest (6ca67ff55bb3 Merge branch 'linus')
$ git merge tip/auto-latest
Auto-merging drivers/s390/net/qeth_core_main.c
Auto-merging arch/x86/net/bpf_jit_comp.c
Auto-merging arch/nds32/include/asm/Kbuild
Auto-merging MAINTAINERS
Auto-merging Documentation/admin-guide/kernel-parameters.txt
Merge made by the 'recursive' strategy.
 Documentation/admin-guide/kernel-parameters.txt |   5 -
 MAINTAINERS                                     |   1 +
 arch/Kconfig                                    |  15 ++
 arch/alpha/include/asm/Kbuild                   |   1 +
 arch/arc/include/asm/Kbuild                     |   1 +
 arch/arm/include/asm/Kbuild                     |   1 +
 arch/arm64/include/asm/compat.h                 |  11 --
 arch/arm64/include/asm/stat.h                   |   1 +
 arch/arm64/kernel/hw_breakpoint.c               |   1 -
 arch/arm64/kernel/perf_regs.c                   |   2 +-
 arch/c6x/include/asm/Kbuild                     |   1 +
 arch/h8300/include/asm/Kbuild                   |   1 +
 arch/hexagon/include/asm/Kbuild                 |   1 +
 arch/ia64/include/asm/Kbuild                    |   1 +
 arch/m68k/include/asm/Kbuild                    |   1 +
 arch/microblaze/include/asm/Kbuild              |   1 +
 arch/mips/include/asm/compat.h                  |  11 --
 arch/mips/kernel/signal32.c                     |   2 +-
 arch/nds32/include/asm/Kbuild                   |   1 +
 arch/nios2/include/asm/Kbuild                   |   1 +
 arch/openrisc/include/asm/Kbuild                |   1 +
 arch/parisc/include/asm/compat.h                |  11 --
 arch/powerpc/include/asm/compat.h               |  11 --
 arch/powerpc/kernel/asm-offsets.c               |   2 +-
 arch/powerpc/oprofile/backtrace.c               |   1 +
 arch/s390/hypfs/hypfs_sprp.c                    |   1 -
 arch/s390/include/asm/compat.h                  |  11 --
 arch/s390/include/asm/elf.h                     |   4 +-
 arch/s390/kvm/priv.c                            |   1 -
 arch/s390/pci/pci_clp.c                         |   1 -
 arch/sh/include/asm/Kbuild                      |   1 +
 arch/sparc/include/asm/compat.h                 |  15 +-
 arch/um/include/asm/Kbuild                      |   1 +
 arch/unicore32/include/asm/Kbuild               |   1 +
 arch/x86/events/core.c                          |   2 +-
 arch/x86/include/asm/compat.h                   |  11 --
 arch/x86/include/asm/ftrace.h                   |   2 +-
 arch/x86/include/asm/qspinlock.h                |  21 +-
 arch/x86/include/asm/qspinlock_paravirt.h       |   3 +-
 arch/x86/include/asm/stacktrace.h               |   2 +
 arch/x86/include/asm/x86_init.h                 |   1 +
 arch/x86/kernel/cpu/centaur.c                   |  48 +++++
 arch/x86/kernel/dumpstack.c                     | 144 +++++++-------
 arch/x86/kernel/i8237.c                         |  25 +++
 arch/x86/kernel/platform-quirks.c               |   7 +-
 arch/x86/kernel/process_32.c                    |   8 +-
 arch/x86/kernel/sys_x86_64.c                    |   2 +-
 arch/x86/mm/fault.c                             |   7 +-
 arch/x86/net/bpf_jit_comp.c                     | 233 ++++++++++++----------
 arch/xtensa/include/asm/Kbuild                  |   1 +
 drivers/s390/block/dasd_ioctl.c                 |   1 -
 drivers/s390/char/fs3270.c                      |   1 -
 drivers/s390/char/sclp_ctl.c                    |   1 -
 drivers/s390/char/vmcp.c                        |   1 -
 drivers/s390/cio/chsc_sch.c                     |   1 -
 drivers/s390/net/qeth_core_main.c               |   2 +-
 include/asm-generic/atomic-long.h               |   2 +
 include/asm-generic/barrier.h                   |  27 ++-
 include/asm-generic/compat.h                    |   3 +
 include/asm-generic/qspinlock.h                 |   2 +-
 include/asm-generic/qspinlock_types.h           |  32 ++-
 include/linux/atomic.h                          |   2 +
 include/linux/compat.h                          |  12 +-
 include/linux/compat_time.h                     |  23 +++
 include/linux/delayacct.h                       |   2 +-
 include/linux/irq_sim.h                         |  13 +-
 include/linux/restart_block.h                   |   7 +-
 include/linux/syscalls.h                        |  13 +-
 include/linux/time.h                            |   4 +-
 include/linux/time64.h                          |  10 +-
 include/uapi/asm-generic/posix_types.h          |   1 +
 include/uapi/linux/time.h                       |   7 +
 kernel/compat.c                                 |  52 +----
 kernel/delayacct.c                              |  17 +-
 kernel/irq/irq_sim.c                            |   7 +-
 kernel/locking/mcs_spinlock.h                   |  10 +-
 kernel/locking/qspinlock.c                      | 247 ++++++++++++------------
 kernel/locking/qspinlock_paravirt.h             |  49 ++---
 kernel/locking/qspinlock_stat.h                 |   9 +-
 kernel/stop_machine.c                           |  24 +--
 kernel/time/hrtimer.c                           |  10 +-
 kernel/time/posix-stubs.c                       |  12 +-
 kernel/time/posix-timers.c                      |  24 ++-
 kernel/time/time.c                              |  58 +++++-
 84 files changed, 731 insertions(+), 594 deletions(-)
 create mode 100644 include/asm-generic/compat.h
 create mode 100644 include/linux/compat_time.h
Merging clockevents/clockevents/next (0136c741ff40 clocksource/drivers/imx-tpm: Add different counter width support)
$ git merge clockevents/clockevents/next
Already up to date.
Merging edac/linux_next (345fb0a9a634 Merge tag 'edac_for_4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp)
$ git merge edac/linux_next
Already up to date.
Merging edac-amd/for-next (6fd052665274 EDAC, sb_edac: Remove variable length array usage)
$ git merge edac-amd/for-next
Already up to date.
Merging irqchip/irq/irqchip-next (aa08192a254d irqchip/gic: Take lock when updating irq type)
$ git merge irqchip/irq/irqchip-next
Already up to date.
Merging ftrace/for-next (0b3dec05dbbc tracing: Enforce passing in filter=NULL to create_filter())
$ git merge ftrace/for-next
Already up to date.
Merging rcu/rcu/next (248d0f34b437 Merge branches 'exp.2018.04.20a', 'fixes.2018.04.23b', 'lock.2018.04.22a' and 'torture.2018.04.20a' into HEAD)
$ git merge rcu/rcu/next
Removing tools/testing/selftests/rcutorture/bin/parse-torture.sh
Merge made by the 'recursive' strategy.
 Documentation/RCU/whatisRCU.txt                    |   2 +
 drivers/nvme/host/core.c                           |   2 +-
 include/linux/rcupdate.h                           |   4 +-
 include/linux/rcutree.h                            |   1 +
 include/linux/sched.h                              |   8 -
 include/linux/srcu.h                               |  36 +-
 include/trace/events/rcu.h                         |  13 +-
 kernel/rcu/rcu.h                                   |  12 +-
 kernel/rcu/rcu_segcblist.c                         |  18 -
 kernel/rcu/rcu_segcblist.h                         |   2 -
 kernel/rcu/rcuperf.c                               |   2 +-
 kernel/rcu/rcutorture.c                            |  15 +-
 kernel/rcu/srcutiny.c                              |   9 +-
 kernel/rcu/srcutree.c                              |  30 +-
 kernel/rcu/tree.c                                  | 375 ++++++++-------------
 kernel/rcu/tree.h                                  |  38 ++-
 kernel/rcu/tree_exp.h                              | 235 +++++++------
 kernel/rcu/tree_plugin.h                           | 136 +++++---
 kernel/rcu/update.c                                |  50 +--
 kernel/sched/core.c                                |  14 -
 kernel/softirq.c                                   |   3 +-
 kernel/torture.c                                   |   2 +-
 kernel/trace/trace_benchmark.c                     |   4 +-
 .../selftests/rcutorture/bin/kvm-find-errors.sh    |  56 +++
 .../selftests/rcutorture/bin/kvm-recheck-rcu.sh    |  12 +-
 .../selftests/rcutorture/bin/kvm-recheck.sh        |   4 -
 .../selftests/rcutorture/bin/kvm-test-1-run.sh     |   1 -
 .../selftests/rcutorture/bin/parse-console.sh      | 115 ++++++-
 .../selftests/rcutorture/bin/parse-torture.sh      | 105 ------
 29 files changed, 669 insertions(+), 635 deletions(-)
 create mode 100755 tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh
 delete mode 100755 tools/testing/selftests/rcutorture/bin/parse-torture.sh
Merging kvm/linux-next (c18bb396d3d2 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge kvm/linux-next
Already up to date.
Merging kvm-arm/next (dc6ed61d2f82 arm64: Add temporary ERRATA_MIDR_ALL_VERSIONS compatibility macro)
$ git merge kvm-arm/next
Already up to date.
Merging kvm-mips/next (dc44abd6aad2 KVM: MIPS/Emulate: Properly implement TLBR for T&E)
$ git merge kvm-mips/next
Already up to date.
Merging kvm-ppc/kvm-ppc-next (31c8b0d0694a KVM: PPC: Book3S HV: Use __gfn_to_pfn_memslot() in page fault handler)
$ git merge kvm-ppc/kvm-ppc-next
Already up to date.
Merging kvms390/next (ccc40c53c07b KVM: s390: provide counters for all interrupt injects/delivery)
$ git merge kvms390/next
Already up to date.
Merging xen-tip/linux-next (eb0b4aa89cf2 x86/xen: Remove use of VLAs)
$ git merge xen-tip/linux-next
Merge made by the 'recursive' strategy.
 arch/x86/xen/enlighten_pv.c | 86 ++++++++++++++++-----------------------------
 1 file changed, 31 insertions(+), 55 deletions(-)
Merging percpu/for-next (b3a5d1119944 percpu_ref: Update doc to dissuade users from depending on internal RCU grace periods)
$ git merge percpu/for-next
Already up to date.
Merging workqueues/for-next (1aa3798360db Merge branch 'for-4.17' into for-next)
$ git merge workqueues/for-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging drivers-x86/for-next (de15b94f87d1 platform/x86: fujitsu-laptop: Simplify soft key handling)
$ git merge drivers-x86/for-next
Merge made by the 'recursive' strategy.
 drivers/platform/x86/fujitsu-laptop.c | 47 ++++++++++++++++++-----------------
 1 file changed, 24 insertions(+), 23 deletions(-)
Merging chrome-platform/for-next (60cc43fc8884 Linux 4.17-rc1)
$ git merge chrome-platform/for-next
Already up to date.
Merging hsi/for-next (70d52ba9e57e hsi: clients: Change return type to vm_fault_t)
$ git merge hsi/for-next
Merge made by the 'recursive' strategy.
 drivers/hsi/clients/cmt_speech.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging leds/for-next (9e50d5fb0d18 leds: add LED driver for CR0014114 board)
$ git merge leds/for-next
Auto-merging Documentation/devicetree/bindings/vendor-prefixes.txt
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/leds/leds-cr0014114.txt    |  54 ++++
 .../devicetree/bindings/vendor-prefixes.txt        |   1 +
 drivers/leds/Kconfig                               |  13 +
 drivers/leds/Makefile                              |   1 +
 drivers/leds/leds-cr0014114.c                      | 315 +++++++++++++++++++++
 5 files changed, 384 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/leds/leds-cr0014114.txt
 create mode 100644 drivers/leds/leds-cr0014114.c
Merging ipmi/for-next (1211229399b3 ipmi_ssif: Fix uninitialized variable issue)
$ git merge ipmi/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/ipmi/npcm7xx-kcs-bmc.txt   |   39 +
 drivers/char/ipmi/Kconfig                          |   15 +
 drivers/char/ipmi/Makefile                         |    1 +
 drivers/char/ipmi/ipmi_devintf.c                   |  129 +-
 drivers/char/ipmi/ipmi_msghandler.c                | 1842 +++++++++++---------
 drivers/char/ipmi/ipmi_poweroff.c                  |   32 +-
 drivers/char/ipmi/ipmi_si_intf.c                   |   73 +-
 drivers/char/ipmi/ipmi_ssif.c                      |   94 +-
 drivers/char/ipmi/ipmi_watchdog.c                  |  407 ++---
 drivers/char/ipmi/kcs_bmc_npcm7xx.c                |  204 +++
 include/linux/ipmi.h                               |  153 +-
 include/linux/ipmi_smi.h                           |  130 +-
 12 files changed, 1733 insertions(+), 1386 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/ipmi/npcm7xx-kcs-bmc.txt
 create mode 100644 drivers/char/ipmi/kcs_bmc_npcm7xx.c
Merging driver-core/driver-core-next (9ee84466b713 fs: kernfs: Adding new return type vm_fault_t)
$ git merge driver-core/driver-core-next
Merge made by the 'recursive' strategy.
 fs/kernfs/file.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
Merging usb/usb-next (0c718676ab3f typec: tcpm: fix compiler warning about stupid things)
$ git merge usb/usb-next
Already up to date.
Merging usb-gadget/next (60cc43fc8884 Linux 4.17-rc1)
$ git merge usb-gadget/next
Already up to date.
Merging usb-serial/usb-next (86c225c1b2e0 USB: serial: option: blacklist unused dwm-158 interfaces)
$ git merge usb-serial/usb-next
Merge made by the 'recursive' strategy.
 drivers/usb/serial/option.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
Merging usb-chipidea-next/ci-for-usb-next (ce4c1b820c52 usb: chipidea: imx: Fix ULPI on imx53)
$ git merge usb-chipidea-next/ci-for-usb-next
Merge made by the 'recursive' strategy.
Merging phy-next/next (cd3bf368aa7a phy: Add a driver for the ATH79 USB phy)
$ git merge phy-next/next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                 |   8 +++
 drivers/phy/phy-core.c                      |  18 +++++
 drivers/phy/qualcomm/Kconfig                |  11 ++-
 drivers/phy/qualcomm/Makefile               |   1 +
 drivers/phy/qualcomm/phy-ath79-usb.c        | 108 ++++++++++++++++++++++++++++
 drivers/phy/samsung/phy-exynos-mipi-video.c |  34 ++++-----
 6 files changed, 159 insertions(+), 21 deletions(-)
 create mode 100644 drivers/phy/qualcomm/phy-ath79-usb.c
Merging tty/tty-next (0a84bae7edfb serial: uartps: Remove static port array)
$ git merge tty/tty-next
Auto-merging include/linux/serial_core.h
Auto-merging drivers/tty/serial/xilinx_uartps.c
Auto-merging drivers/tty/serial/qcom_geni_serial.c
Auto-merging drivers/tty/serial/mvebu-uart.c
Auto-merging drivers/tty/serial/imx.c
Auto-merging drivers/tty/serial/earlycon.c
Auto-merging drivers/tty/n_gsm.c
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/armada-38x.dtsi           |   4 +-
 drivers/tty/ipwireless/network.c            |   2 +-
 drivers/tty/n_gsm.c                         |   2 +-
 drivers/tty/nozomi.c                        | 104 +++++++++++------------
 drivers/tty/serial/8250/8250_aspeed_vuart.c | 124 ++++++++++++++++++++++++++++
 drivers/tty/serial/8250/8250_dw.c           |  31 ++++++-
 drivers/tty/serial/8250/8250_early.c        |   2 +-
 drivers/tty/serial/8250/8250_of.c           |   1 +
 drivers/tty/serial/8250/8250_omap.c         |  11 +++
 drivers/tty/serial/8250/8250_port.c         |   3 +-
 drivers/tty/serial/Kconfig                  |   6 +-
 drivers/tty/serial/earlycon.c               |   4 +
 drivers/tty/serial/imx.c                    |  18 ++--
 drivers/tty/serial/msm_serial.c             |  25 ++++++
 drivers/tty/serial/mvebu-uart.c             |  64 ++++++++++++++
 drivers/tty/serial/qcom_geni_serial.c       |   6 +-
 drivers/tty/serial/sc16is7xx.c              |   5 +-
 drivers/tty/serial/serial_core.c            |   4 +-
 drivers/tty/serial/sh-sci.c                 |  73 ++++++++++------
 drivers/tty/serial/sh-sci.h                 |   4 +
 drivers/tty/serial/st-asc.c                 |   6 +-
 drivers/tty/serial/xilinx_uartps.c          | 108 ++++++++++--------------
 include/linux/serial_8250.h                 |   1 +
 include/linux/serial_core.h                 |   4 +-
 24 files changed, 433 insertions(+), 179 deletions(-)
Merging char-misc/char-misc-next (72b6500c1cc6 sgi-xp: fix xpnet_dev_hard_start_xmit()'s return type)
$ git merge char-misc/char-misc-next
Auto-merging drivers/android/binder.c
Merge made by the 'recursive' strategy.
 .../bindings/fpga/lattice-machxo2-spi.txt          |  29 ++
 drivers/android/binder.c                           |   4 +-
 drivers/char/mspec.c                               |  11 +-
 drivers/firmware/google/Kconfig                    |   8 +
 drivers/firmware/google/Makefile                   |   1 +
 drivers/firmware/google/coreboot_table-acpi.c      |   2 +-
 drivers/firmware/google/coreboot_table-of.c        |   2 +-
 drivers/firmware/google/coreboot_table.c           | 130 +++++--
 drivers/firmware/google/coreboot_table.h           |  72 +++-
 drivers/firmware/google/framebuffer-coreboot.c     | 115 ++++++
 drivers/firmware/google/memconsole-coreboot.c      |  49 +--
 drivers/firmware/google/vpd.c                      |  43 +--
 drivers/fpga/Kconfig                               |   8 +-
 drivers/fpga/Makefile                              |   1 +
 drivers/fpga/fpga-region.c                         |   5 +
 drivers/fpga/machxo2-spi.c                         | 403 +++++++++++++++++++++
 drivers/misc/cxl/context.c                         |   7 +-
 drivers/misc/sgi-xp/xpnet.c                        |   2 +-
 drivers/misc/ti-st/st_kim.c                        |   2 +-
 drivers/misc/tifm_7xx1.c                           |   6 +-
 drivers/mux/adg792a.c                              |   5 +-
 drivers/uio/uio.c                                  |   2 +-
 drivers/uio/uio_fsl_elbc_gpcm.c                    |   1 -
 23 files changed, 776 insertions(+), 132 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/fpga/lattice-machxo2-spi.txt
 create mode 100644 drivers/firmware/google/framebuffer-coreboot.c
 create mode 100644 drivers/fpga/machxo2-spi.c
Merging extcon/extcon-next (60cc43fc8884 Linux 4.17-rc1)
$ git merge extcon/extcon-next
Already up to date.
Merging staging/staging-next (fec2dbfeba09 staging: wilc1000: reorder functions to avoid forward declaration in linux_wlan)
$ git merge staging/staging-next
Auto-merging drivers/staging/wilc1000/host_interface.c
Removing drivers/staging/lustre/lnet/libcfs/linux/linux-cpu.c
Removing drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h
Removing drivers/staging/lustre/include/linux/libcfs/linux/linux-cpu.h
Removing drivers/staging/lustre/include/linux/libcfs/linux/libcfs.h
Removing drivers/staging/lustre/include/linux/libcfs/libcfs_time.h
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                        |    6 +
 drivers/staging/android/Kconfig                    |    9 +
 drivers/staging/android/Makefile                   |    1 +
 drivers/staging/android/TODO                       |   10 +
 drivers/staging/android/ion/ion.c                  |    6 +-
 drivers/staging/android/uapi/vsoc_shm.h            |  303 ++
 drivers/staging/android/vsoc.c                     | 1169 +++++
 drivers/staging/comedi/drivers/cb_pcidas64.c       |    6 +-
 drivers/staging/emxx_udc/Kconfig                   |    2 +-
 drivers/staging/emxx_udc/TODO                      |    2 +
 drivers/staging/fbtft/TODO                         |    4 +
 drivers/staging/fbtft/fbtft-bus.c                  |   13 +-
 drivers/staging/fsl-dpaa2/Kconfig                  |    8 +
 drivers/staging/fsl-dpaa2/Makefile                 |    5 +-
 drivers/staging/fsl-dpaa2/ethsw/dpsw-cmd.h         |   13 +
 drivers/staging/fsl-dpaa2/ethsw/dpsw.c             |   42 +
 drivers/staging/fsl-dpaa2/ethsw/dpsw.h             |    6 +
 drivers/staging/fsl-dpaa2/ethsw/ethsw.c            |   39 +-
 drivers/staging/fsl-dpaa2/rtc/Makefile             |    7 +
 drivers/staging/fsl-dpaa2/rtc/dprtc-cmd.h          |  137 +
 drivers/staging/fsl-dpaa2/rtc/dprtc.c              |  701 +++
 drivers/staging/fsl-dpaa2/rtc/dprtc.h              |  164 +
 drivers/staging/fsl-dpaa2/rtc/rtc.c                |  231 +
 drivers/staging/fsl-mc/bus/dpio/dpio-driver.c      |   25 +-
 drivers/staging/fsl-mc/bus/dpio/qbman-portal.h     |    4 +-
 drivers/staging/fsl-mc/include/dpaa2-io.h          |    2 +-
 drivers/staging/gdm724x/gdm_endian.c               |   14 +-
 drivers/staging/gdm724x/gdm_endian.h               |   14 +-
 drivers/staging/gdm724x/gdm_lte.c                  |   16 +-
 drivers/staging/gdm724x/gdm_lte.h                  |   14 +-
 drivers/staging/gdm724x/gdm_mux.c                  |   14 +-
 drivers/staging/gdm724x/gdm_mux.h                  |   14 +-
 drivers/staging/gdm724x/gdm_tty.c                  |   14 +-
 drivers/staging/gdm724x/gdm_tty.h                  |   14 +-
 drivers/staging/gdm724x/gdm_usb.c                  |   14 +-
 drivers/staging/gdm724x/gdm_usb.h                  |   14 +-
 drivers/staging/gdm724x/hci.h                      |   14 +-
 drivers/staging/gdm724x/hci_packet.h               |   14 +-
 drivers/staging/gdm724x/netlink_k.c                |   14 +-
 drivers/staging/gdm724x/netlink_k.h                |   14 +-
 drivers/staging/greybus/TODO                       |    5 +
 drivers/staging/greybus/arche-platform.c           |    3 +-
 drivers/staging/greybus/audio_codec.h              |    5 +-
 drivers/staging/iio/TODO                           |    9 +-
 drivers/staging/ks7010/eap_packet.h                |   74 +-
 drivers/staging/ks7010/ks7010_sdio.c               |  560 ++-
 drivers/staging/ks7010/ks7010_sdio.h               |   76 -
 drivers/staging/ks7010/ks_hostif.c                 |  319 +-
 drivers/staging/ks7010/ks_hostif.h                 |  277 +-
 drivers/staging/ks7010/ks_wlan.h                   |  112 +-
 drivers/staging/ks7010/ks_wlan_ioctl.h             |    2 -
 drivers/staging/ks7010/ks_wlan_net.c               | 1034 ++---
 drivers/staging/ks7010/michael_mic.c               |   23 +-
 drivers/staging/ks7010/michael_mic.h               |    6 +-
 .../staging/lustre/include/linux/libcfs/curproc.h  |    2 -
 .../staging/lustre/include/linux/libcfs/libcfs.h   |   59 +-
 .../lustre/include/linux/libcfs/libcfs_cpu.h       |  206 +-
 .../lustre/include/linux/libcfs/libcfs_debug.h     |   32 +
 .../lustre/include/linux/libcfs/libcfs_time.h      |   79 -
 .../lustre/include/linux/libcfs/linux/libcfs.h     |  133 -
 .../lustre/include/linux/libcfs/linux/linux-cpu.h  |   78 -
 .../lustre/include/linux/libcfs/linux/linux-time.h |  103 -
 .../lustre/include/uapi/linux/lnet/lnetctl.h       |   11 -
 .../include/uapi/linux/lustre/lustre_ioctl.h       |    2 -
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c    |   32 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h    |    6 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c |   17 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd.c    |   15 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c |   87 +-
 drivers/staging/lustre/lnet/libcfs/Makefile        |    1 -
 drivers/staging/lustre/lnet/libcfs/debug.c         |    2 +-
 drivers/staging/lustre/lnet/libcfs/libcfs_cpu.c    |  961 +++-
 .../staging/lustre/lnet/libcfs/linux/linux-cpu.c   | 1079 -----
 .../staging/lustre/lnet/libcfs/linux/linux-debug.c |    1 -
 .../lustre/lnet/libcfs/linux/linux-module.c        |    5 +-
 drivers/staging/lustre/lnet/libcfs/module.c        |    1 +
 drivers/staging/lustre/lnet/libcfs/tracefile.c     |   12 +-
 drivers/staging/lustre/lnet/lnet/lib-move.c        |   14 +-
 drivers/staging/lustre/lnet/lnet/net_fault.c       |   40 +-
 drivers/staging/lustre/lnet/lnet/peer.c            |    2 +-
 drivers/staging/lustre/lnet/lnet/router.c          |   17 +-
 drivers/staging/lustre/lnet/lnet/router_proc.c     |   13 +-
 drivers/staging/lustre/lnet/selftest/conrpc.c      |   14 +-
 drivers/staging/lustre/lnet/selftest/console.c     |    4 +-
 drivers/staging/lustre/lnet/selftest/framework.c   |    2 +-
 drivers/staging/lustre/lnet/selftest/timer.c       |    4 +-
 drivers/staging/lustre/lustre/include/cl_object.h  |   10 +-
 drivers/staging/lustre/lustre/include/lu_object.h  |    6 +-
 drivers/staging/lustre/lustre/include/lustre_dlm.h |   13 +-
 .../staging/lustre/lustre/include/lustre_export.h  |    9 +-
 drivers/staging/lustre/lustre/include/lustre_net.h |   11 +-
 drivers/staging/lustre/lustre/include/obd.h        |   24 +-
 drivers/staging/lustre/lustre/include/obd_class.h  |   13 +-
 .../staging/lustre/lustre/include/obd_support.h    |   27 -
 drivers/staging/lustre/lustre/ldlm/ldlm_flock.c    |   11 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lock.c     |   22 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c    |    5 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_request.c  |   66 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_resource.c |   25 +-
 drivers/staging/lustre/lustre/llite/file.c         |   16 +-
 .../staging/lustre/lustre/llite/llite_internal.h   |    2 +-
 drivers/staging/lustre/lustre/llite/llite_lib.c    |    4 +-
 drivers/staging/lustre/lustre/llite/llite_nfs.c    |    2 +-
 drivers/staging/lustre/lustre/llite/lproc_llite.c  |   12 +-
 drivers/staging/lustre/lustre/llite/statahead.c    |    4 +-
 drivers/staging/lustre/lustre/llite/vvp_internal.h |    8 +-
 drivers/staging/lustre/lustre/llite/xattr.c        |  227 +-
 drivers/staging/lustre/lustre/llite/xattr_cache.c  |   83 +-
 drivers/staging/lustre/lustre/lmv/lmv_intent.c     |   12 +-
 drivers/staging/lustre/lustre/lmv/lmv_internal.h   |    2 +-
 drivers/staging/lustre/lustre/lmv/lmv_obd.c        |   16 +-
 .../staging/lustre/lustre/lov/lov_cl_internal.h    |   18 +-
 drivers/staging/lustre/lustre/lov/lov_internal.h   |   13 +-
 drivers/staging/lustre/lustre/lov/lov_obd.c        |   14 +-
 drivers/staging/lustre/lustre/lov/lov_pool.c       |  159 +-
 drivers/staging/lustre/lustre/lov/lov_request.c    |    4 +-
 drivers/staging/lustre/lustre/mdc/mdc_internal.h   |    4 +-
 drivers/staging/lustre/lustre/mdc/mdc_locks.c      |   68 +-
 drivers/staging/lustre/lustre/mdc/mdc_request.c    |    2 +-
 drivers/staging/lustre/lustre/obdclass/cl_io.c     |    1 -
 drivers/staging/lustre/lustre/obdclass/cl_object.c |    1 -
 drivers/staging/lustre/lustre/obdclass/class_obd.c |    6 +-
 drivers/staging/lustre/lustre/obdclass/genops.c    |   36 +-
 .../lustre/lustre/obdclass/linux/linux-module.c    |    3 +-
 .../lustre/lustre/obdclass/lprocfs_status.c        |   12 +-
 drivers/staging/lustre/lustre/obdclass/lu_object.c |    8 +-
 .../staging/lustre/lustre/obdclass/obd_config.c    |  163 +-
 .../staging/lustre/lustre/obdecho/echo_client.c    |    2 +-
 drivers/staging/lustre/lustre/osc/osc_cache.c      |    2 +-
 .../staging/lustre/lustre/osc/osc_cl_internal.h    |   10 +-
 drivers/staging/lustre/lustre/osc/osc_internal.h   |    7 +-
 drivers/staging/lustre/lustre/osc/osc_io.c         |    2 +-
 drivers/staging/lustre/lustre/osc/osc_object.c     |   11 +-
 drivers/staging/lustre/lustre/osc/osc_page.c       |    4 +-
 drivers/staging/lustre/lustre/osc/osc_quota.c      |  136 +-
 drivers/staging/lustre/lustre/osc/osc_request.c    |    6 +-
 drivers/staging/lustre/lustre/ptlrpc/client.c      |    4 +-
 drivers/staging/lustre/lustre/ptlrpc/connection.c  |  164 +-
 drivers/staging/lustre/lustre/ptlrpc/import.c      |   10 +-
 drivers/staging/lustre/lustre/ptlrpc/pinger.c      |   23 +-
 drivers/staging/lustre/lustre/ptlrpc/service.c     |    6 +-
 drivers/staging/media/atomisp/TODO                 |    5 +
 drivers/staging/most/dim2/reg.h                    |   84 +-
 drivers/staging/mt7621-eth/ethtool.c               |    1 +
 drivers/staging/mt7621-gpio/gpio-mt7621.c          |   14 +-
 drivers/staging/mt7621-mmc/board.h                 |   87 +-
 drivers/staging/mt7621-mmc/dbg.c                   |  397 +-
 drivers/staging/mt7621-mmc/dbg.h                   |   98 +-
 drivers/staging/mt7621-mmc/mt6575_sd.h             | 1113 ++---
 drivers/staging/mt7621-mmc/sd.c                    | 4595 +++++++++-----------
 drivers/staging/mt7621-pci/pci-mt7621.c            |   12 +-
 drivers/staging/mt7621-pinctrl/pinctrl-rt2880.c    |    1 -
 drivers/staging/mt7621-spi/spi-mt7621.c            |    1 -
 drivers/staging/nvec/nvec.c                        |   81 +-
 drivers/staging/nvec/nvec.h                        |    2 +-
 drivers/staging/olpc_dcon/TODO                     |    4 +
 .../pi433/Documentation/devicetree/pi433.txt       |    6 +-
 drivers/staging/pi433/Documentation/pi433.txt      |   10 +-
 drivers/staging/pi433/Kconfig                      |    2 +-
 drivers/staging/pi433/pi433_if.c                   |   39 +-
 drivers/staging/pi433/rf69.c                       |  182 +-
 drivers/staging/pi433/rf69.h                       |   28 +-
 drivers/staging/rtl8192e/dot11d.c                  |    2 +-
 .../rtl8192u/ieee80211/ieee80211_crypt_ccmp.c      |    2 +-
 .../rtl8192u/ieee80211/ieee80211_crypt_tkip.c      |    2 +-
 .../rtl8192u/ieee80211/ieee80211_crypt_wep.c       |    2 +-
 .../staging/rtl8192u/ieee80211/ieee80211_softmac.c |    2 +-
 drivers/staging/rtl8192u/r8192U_core.c             |    2 +-
 drivers/staging/rtl8192u/r8192U_dm.c               |    4 +-
 drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c  |    2 +-
 drivers/staging/unisys/visornic/visornic_main.c    |    2 +-
 drivers/staging/vboxvideo/vbox_main.c              |    3 +-
 drivers/staging/vboxvideo/vbox_mode.c              |    2 +-
 drivers/staging/vc04_services/Kconfig              |    1 -
 .../interface/vchiq_arm/vchiq_2835_arm.c           |    4 +-
 .../vc04_services/interface/vchiq_arm/vchiq_arm.c  |   35 +-
 .../vc04_services/interface/vchiq_arm/vchiq_core.c |   55 +-
 .../vc04_services/interface/vchiq_arm/vchiq_core.h |    1 -
 drivers/staging/vt6655/card.c                      |    5 +-
 drivers/staging/vt6655/device_main.c               |  150 +-
 drivers/staging/wilc1000/TODO                      |   12 +-
 drivers/staging/wilc1000/coreconfigurator.c        |   84 +-
 drivers/staging/wilc1000/coreconfigurator.h        |   17 -
 drivers/staging/wilc1000/host_interface.c          |   89 +-
 drivers/staging/wilc1000/host_interface.h          |    3 +-
 drivers/staging/wilc1000/linux_wlan.c              |  307 +-
 drivers/staging/wilc1000/wilc_sdio.c               |   96 +-
 drivers/staging/wilc1000/wilc_spi.c                |   84 +-
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c  |  829 ++--
 drivers/staging/wilc1000/wilc_wfi_netdevice.h      |   31 +-
 drivers/staging/wilc1000/wilc_wlan.c               |   16 +-
 drivers/staging/wilc1000/wilc_wlan.h               |   37 +-
 drivers/staging/wilc1000/wilc_wlan_if.h            |   15 +-
 drivers/staging/wlan-ng/p80211netdev.c             |    4 +-
 include/linux/kernel.h                             |   16 +
 195 files changed, 10088 insertions(+), 8771 deletions(-)
 create mode 100644 drivers/staging/android/uapi/vsoc_shm.h
 create mode 100644 drivers/staging/android/vsoc.c
 create mode 100644 drivers/staging/fbtft/TODO
 create mode 100644 drivers/staging/fsl-dpaa2/rtc/Makefile
 create mode 100644 drivers/staging/fsl-dpaa2/rtc/dprtc-cmd.h
 create mode 100644 drivers/staging/fsl-dpaa2/rtc/dprtc.c
 create mode 100644 drivers/staging/fsl-dpaa2/rtc/dprtc.h
 create mode 100644 drivers/staging/fsl-dpaa2/rtc/rtc.c
 create mode 100644 drivers/staging/greybus/TODO
 delete mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_time.h
 delete mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/libcfs.h
 delete mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-cpu.h
 delete mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h
 delete mode 100644 drivers/staging/lustre/lnet/libcfs/linux/linux-cpu.c
Merging mux/for-next (fa934c06c0f4 mux: add mux_control_get_optional() API)
$ git merge mux/for-next
Merge made by the 'recursive' strategy.
 Documentation/driver-model/devres.txt |   1 +
 drivers/mux/core.c                    | 104 +++++++++++++++++++++++++++-------
 include/linux/mux/consumer.h          |   4 ++
 3 files changed, 89 insertions(+), 20 deletions(-)
Merging slave-dma/next (94dc4a7f6d02 Merge branch 'for-linus' into next)
$ git merge slave-dma/next
Auto-merging drivers/dma/ti/omap-dma.c
Auto-merging drivers/dma/ti/edma.c
Auto-merging drivers/dma/ti/cppi41.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                                        |  10 +-
 drivers/dma/Kconfig                                |  31 +--
 drivers/dma/Makefile                               |   5 +-
 drivers/dma/at_hdmac.c                             |   9 +-
 drivers/dma/at_xdmac.c                             |   9 +-
 drivers/dma/dmatest.c                              |  16 +-
 drivers/dma/dw/platform.c                          |   6 +-
 drivers/dma/fsldma.c                               |   6 +-
 drivers/dma/idma64.c                               |   6 +-
 drivers/dma/pl330.c                                | 209 ++++++++++++++++-----
 drivers/dma/qcom/hidma.c                           |   3 +-
 drivers/dma/qcom/hidma_mgmt_sys.c                  |   6 +-
 drivers/dma/sh/shdmac.c                            |  50 +++--
 drivers/dma/sprd-dma.c                             |  81 +++-----
 drivers/dma/ste_dma40.c                            |  12 +-
 drivers/dma/stm32-mdma.c                           |  98 ++++++----
 drivers/dma/ti/Kconfig                             |  37 ++++
 drivers/dma/ti/Makefile                            |   5 +
 drivers/dma/{ => ti}/cppi41.c                      |   2 +-
 .../dma/{ti-dma-crossbar.c => ti/dma-crossbar.c}   |   0
 drivers/dma/{ => ti}/edma.c                        |   4 +-
 drivers/dma/{ => ti}/omap-dma.c                    |   2 +-
 drivers/dma/txx9dmac.c                             |   8 +-
 include/linux/dma/sprd-dma.h                       |  57 ++++++
 24 files changed, 411 insertions(+), 261 deletions(-)
 create mode 100644 drivers/dma/ti/Kconfig
 create mode 100644 drivers/dma/ti/Makefile
 rename drivers/dma/{ => ti}/cppi41.c (99%)
 rename drivers/dma/{ti-dma-crossbar.c => ti/dma-crossbar.c} (100%)
 rename drivers/dma/{ => ti}/edma.c (99%)
 rename drivers/dma/{ => ti}/omap-dma.c (99%)
 create mode 100644 include/linux/dma/sprd-dma.h
Merging cgroup/for-next (c43c5ea75fd5 cgroup: Make cgroup_rstat_updated() ready for root cgroup usage)
$ git merge cgroup/for-next
Removing kernel/cgroup/stat.c
Auto-merging kernel/cgroup/cgroup.c
Merge made by the 'recursive' strategy.
 include/linux/cgroup-defs.h     |  52 +++--
 include/linux/cgroup.h          |  12 +-
 kernel/cgroup/Makefile          |   2 +-
 kernel/cgroup/cgroup-internal.h |  11 +-
 kernel/cgroup/cgroup.c          |  89 ++++++---
 kernel/cgroup/rstat.c           | 416 ++++++++++++++++++++++++++++++++++++++++
 kernel/cgroup/stat.c            | 338 --------------------------------
 7 files changed, 530 insertions(+), 390 deletions(-)
 create mode 100644 kernel/cgroup/rstat.c
 delete mode 100644 kernel/cgroup/stat.c
Merging scsi/for-next (6980151fba2a Merge branch 'misc' into for-next)
$ git merge scsi/for-next
Auto-merging drivers/net/hyperv/netvsc.c
Auto-merging drivers/net/hyperv/hyperv_net.h
Merge made by the 'recursive' strategy.
 Documentation/driver-api/index.rst          |    1 +
 Documentation/driver-api/scsi.rst           |    2 +-
 Documentation/driver-api/target.rst         |   64 ++
 drivers/ata/libata-scsi.c                   |   12 +
 drivers/hv/ring_buffer.c                    |    2 +
 drivers/message/fusion/lsi/mpi_cnfg.h       |    4 +-
 drivers/message/fusion/mptfc.c              |    2 +-
 drivers/net/hyperv/hyperv_net.h             |    1 -
 drivers/net/hyperv/netvsc.c                 |   18 +-
 drivers/net/hyperv/netvsc_drv.c             |    3 -
 drivers/scsi/Kconfig                        |   14 +
 drivers/scsi/Makefile                       |    3 +-
 drivers/scsi/cxlflash/Kconfig               |    2 +-
 drivers/scsi/cxlflash/Makefile              |    2 +-
 drivers/scsi/cxlflash/backend.h             |   50 +-
 drivers/scsi/cxlflash/common.h              |   11 +-
 drivers/scsi/cxlflash/cxl_hw.c              |   13 +
 drivers/scsi/cxlflash/main.c                |   86 +-
 drivers/scsi/cxlflash/main.h                |    1 +
 drivers/scsi/cxlflash/ocxl_hw.c             | 1436 +++++++++++++++++++++++++++
 drivers/scsi/cxlflash/ocxl_hw.h             |   77 ++
 drivers/scsi/cxlflash/sislite.h             |   41 +-
 drivers/scsi/cxlflash/superpipe.c           |   14 +
 drivers/scsi/esas2r/esas2r_init.c           |    5 +-
 drivers/scsi/hisi_sas/hisi_sas.h            |    3 -
 drivers/scsi/hisi_sas/hisi_sas_main.c       |   53 +-
 drivers/scsi/hisi_sas/hisi_sas_v2_hw.c      |    8 +-
 drivers/scsi/hisi_sas/hisi_sas_v3_hw.c      |   81 +-
 drivers/scsi/ips.c                          |   78 +-
 drivers/scsi/ips.h                          |   11 +-
 drivers/scsi/isci/port_config.c             |    3 +-
 drivers/scsi/iscsi_tcp.c                    |    1 -
 drivers/scsi/libsas/sas_ata.c               |    5 +
 drivers/scsi/libsas/sas_discover.c          |    1 +
 drivers/scsi/lpfc/lpfc.h                    |    9 +-
 drivers/scsi/lpfc/lpfc_attr.c               |  112 ++-
 drivers/scsi/lpfc/lpfc_ct.c                 |   10 +
 drivers/scsi/lpfc/lpfc_debugfs.c            |   93 +-
 drivers/scsi/lpfc/lpfc_els.c                |    1 -
 drivers/scsi/lpfc/lpfc_hbadisc.c            |    4 -
 drivers/scsi/lpfc/lpfc_hw4.h                |   12 +
 drivers/scsi/lpfc/lpfc_init.c               |   62 +-
 drivers/scsi/lpfc/lpfc_nportdisc.c          |   29 +-
 drivers/scsi/lpfc/lpfc_nvme.c               |  146 ++-
 drivers/scsi/lpfc/lpfc_nvme.h               |   14 +
 drivers/scsi/lpfc/lpfc_nvmet.h              |    6 +-
 drivers/scsi/lpfc/lpfc_scsi.c               |   31 +-
 drivers/scsi/lpfc/lpfc_sli.c                |   16 +-
 drivers/scsi/lpfc/lpfc_sli4.h               |    1 +
 drivers/scsi/lpfc/lpfc_version.h            |    2 +-
 drivers/scsi/megaraid/megaraid_sas.h        |    4 +-
 drivers/scsi/megaraid/megaraid_sas_base.c   |   25 +-
 drivers/scsi/megaraid/megaraid_sas_fusion.c |    8 +-
 drivers/scsi/mvumi.c                        |   20 +-
 drivers/scsi/scsi_debugfs.c                 |    2 +-
 drivers/scsi/scsi_devinfo.c                 |   31 +-
 drivers/scsi/scsi_dh.c                      |    5 +-
 drivers/scsi/scsi_error.c                   |    7 +
 drivers/scsi/scsi_sysfs.c                   |    2 +-
 drivers/scsi/sd.h                           |   12 +-
 drivers/scsi/sd_zbc.c                       |   10 -
 drivers/scsi/sg.c                           |    2 +-
 drivers/scsi/st.c                           |    6 +-
 drivers/scsi/storvsc_drv.c                  |  100 +-
 drivers/scsi/zorro_esp.c                    | 1172 ++++++++++++++++++++++
 drivers/target/target_core_configfs.c       |   25 +
 drivers/target/target_core_iblock.c         |    8 +-
 drivers/target/target_core_internal.h       |    1 +
 drivers/target/target_core_transport.c      |   19 +-
 drivers/target/target_core_user.c           |   10 +-
 include/linux/hyperv.h                      |   12 +
 include/linux/libata.h                      |    2 +
 include/linux/log2.h                        |   35 +-
 include/scsi/scsi_device.h                  |    2 +-
 include/scsi/scsi_devinfo.h                 |   75 +-
 include/uapi/linux/target_core_user.h       |   11 +-
 76 files changed, 3738 insertions(+), 524 deletions(-)
 create mode 100644 Documentation/driver-api/target.rst
 create mode 100644 drivers/scsi/cxlflash/ocxl_hw.c
 create mode 100644 drivers/scsi/cxlflash/ocxl_hw.h
 create mode 100644 drivers/scsi/zorro_esp.c
Merging scsi-mkp/for-next (f990bee3f187 scsi: ips: fix firmware timestamps for 32-bit)
$ git merge scsi-mkp/for-next
Already up to date.
Merging target-updates/for-next (1c130ae00b76 iscsi-target: make sure to wake up sleeping login worker)
$ git merge target-updates/for-next
Already up to date.
Merging target-bva/for-next (60cc43fc8884 Linux 4.17-rc1)
$ git merge target-bva/for-next
Already up to date.
Merging libata/for-next (184add2ca23c libata: Apply NOLPM quirk for SanDisk SD7UB3Q*G1001 SSDs)
$ git merge libata/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/ata/ahci-platform.txt      |  1 -
 drivers/ata/ahci.c                                 |  6 +--
 drivers/ata/ahci.h                                 |  8 +++-
 drivers/ata/ahci_mvebu.c                           | 56 ++++++++++++++++++++++
 drivers/ata/ahci_qoriq.c                           |  2 +-
 drivers/ata/ahci_xgene.c                           |  4 +-
 drivers/ata/libahci.c                              | 20 ++++----
 drivers/ata/libahci_platform.c                     | 24 ++--------
 drivers/ata/libata-core.c                          |  6 +++
 drivers/ata/sata_highbank.c                        |  2 +-
 10 files changed, 91 insertions(+), 38 deletions(-)
Merging vhost/linux-next (cfcde40e8ce3 ACPI: disable extra P_LVLx access on KVM)
$ git merge vhost/linux-next
Merge made by the 'recursive' strategy.
 drivers/acpi/processor_idle.c       |   7 +-
 drivers/virtio/virtio_balloon.c     | 298 +++++++++++++++++++++++++++++++-----
 include/linux/mm.h                  |   6 +
 include/linux/ptr_ring.h            |  79 +++++++++-
 include/linux/virtio_ring.h         |   4 +-
 include/uapi/linux/virtio_balloon.h |   7 +
 mm/page_alloc.c                     |  97 ++++++++++++
 mm/page_poison.c                    |   6 +
 8 files changed, 460 insertions(+), 44 deletions(-)
Merging rpmsg/for-next (c8b62c8851ba Merge branches 'hwspinlock-next', 'rpmsg-next' and 'rproc-next' into for-next)
$ git merge rpmsg/for-next
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-bus-rpmsg          | 20 +++++++
 .../devicetree/bindings/soc/qcom/qcom,smd.txt      |  8 ++-
 drivers/hwspinlock/hwspinlock_core.c               | 67 ++++++++++++++++-----
 drivers/remoteproc/Kconfig                         |  1 -
 drivers/remoteproc/qcom_q6v5_pil.c                 | 12 ++--
 drivers/remoteproc/remoteproc_core.c               |  4 +-
 drivers/rpmsg/Kconfig                              |  1 +
 drivers/rpmsg/qcom_smd.c                           | 68 ++++++++++++++++------
 drivers/rpmsg/rpmsg_char.c                         |  2 +
 drivers/rpmsg/rpmsg_core.c                         | 39 +++++++++++++
 include/linux/hwspinlock.h                         | 58 ++++++++++++++++++
 include/linux/remoteproc.h                         |  2 +-
 12 files changed, 236 insertions(+), 46 deletions(-)
Merging gpio/for-next (44ba9876435b Merge branch 'devel' into for-next)
$ git merge gpio/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/gpio/actions,owl-gpio.txt  |  87 ++++++++++
 .../devicetree/bindings/gpio/renesas,gpio-rcar.txt |   2 +
 Documentation/driver-api/gpio/board.rst            |  16 ++
 Documentation/driver-api/gpio/drivers-on-gpio.rst  |   4 +
 drivers/gpio/Kconfig                               |   8 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/gpio-104-dio-48e.c                    |   2 +-
 drivers/gpio/gpio-104-idi-48.c                     |   2 +-
 drivers/gpio/gpio-aspeed.c                         |   2 +-
 drivers/gpio/gpio-eic-sprd.c                       |  73 ++++++++
 drivers/gpio/gpio-gpio-mm.c                        |   2 +-
 drivers/gpio/gpio-loongson.c                       | 116 +++++++------
 drivers/gpio/gpio-lp3943.c                         |   2 +-
 drivers/gpio/gpio-lp873x.c                         |   2 +-
 drivers/gpio/gpio-lpc32xx.c                        |   3 +-
 drivers/gpio/gpio-lynxpoint.c                      |   2 +-
 drivers/gpio/gpio-max730x.c                        |   2 +-
 drivers/gpio/gpio-mc33880.c                        |   2 +-
 drivers/gpio/gpio-mc9s08dz60.c                     |   2 +-
 drivers/gpio/gpio-ml-ioh.c                         |   2 +-
 drivers/gpio/gpio-mm-lantiq.c                      |   2 +-
 drivers/gpio/gpio-msic.c                           |   2 +-
 drivers/gpio/gpio-mvebu.c                          |  20 +--
 drivers/gpio/gpio-mxc.c                            |   9 +-
 drivers/gpio/gpio-owl.c                            | 184 +++++++++++++++++++++
 drivers/gpio/gpio-pci-idio-16.c                    |   8 +-
 drivers/gpio/gpio-pcie-idio-24.c                   |  20 +--
 drivers/gpio/gpio-pmic-eic-sprd.c                  |  58 ++++++-
 drivers/gpio/gpio-xra1403.c                        |  15 +-
 drivers/gpio/gpiolib.c                             |  74 ++++++++-
 include/linux/gpio/machine.h                       |  31 ++++
 31 files changed, 647 insertions(+), 108 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/gpio/actions,owl-gpio.txt
 create mode 100644 drivers/gpio/gpio-owl.c
Merging pinctrl/for-next (fda94b2d2bff pinctrl: mediatek: update pinmux defintions for MT7623)
$ git merge pinctrl/for-next
Merge made by the 'recursive' strategy.
 .../bindings/pinctrl/brcm,bcm2835-gpio.txt         |   18 +
 .../bindings/pinctrl/pinctrl-mcp23s08.txt          |    4 +-
 drivers/pinctrl/Kconfig                            |    1 +
 drivers/pinctrl/Makefile                           |    1 +
 drivers/pinctrl/actions/Kconfig                    |   12 +
 drivers/pinctrl/actions/Makefile                   |    2 +
 drivers/pinctrl/actions/pinctrl-owl.c              |  585 ++++++
 drivers/pinctrl/actions/pinctrl-owl.h              |  142 ++
 drivers/pinctrl/actions/pinctrl-s900.c             | 1861 ++++++++++++++++++++
 drivers/pinctrl/qcom/pinctrl-msm.c                 |   44 +-
 drivers/pinctrl/qcom/pinctrl-qdf2xxx.c             |  114 +-
 drivers/pinctrl/samsung/pinctrl-samsung.c          |   29 +
 include/dt-bindings/pinctrl/mt7623-pinfunc.h       |   90 +-
 13 files changed, 2835 insertions(+), 68 deletions(-)
 create mode 100644 drivers/pinctrl/actions/Kconfig
 create mode 100644 drivers/pinctrl/actions/Makefile
 create mode 100644 drivers/pinctrl/actions/pinctrl-owl.c
 create mode 100644 drivers/pinctrl/actions/pinctrl-owl.h
 create mode 100644 drivers/pinctrl/actions/pinctrl-s900.c
Merging pinctrl-samsung/for-next (938a10bb4913 pinctrl: samsung: Document required order of banks)
$ git merge pinctrl-samsung/for-next
Merge made by the 'recursive' strategy.
 drivers/pinctrl/samsung/pinctrl-exynos-arm.c   | 30 ++++++++++++++++++++++++--
 drivers/pinctrl/samsung/pinctrl-exynos-arm64.c | 20 +++++++++++++++++
 2 files changed, 48 insertions(+), 2 deletions(-)
Merging pwm/for-next (6873842235d6 pwm: rcar: Add suspend/resume support)
$ git merge pwm/for-next
Already up to date.
Merging userns/for-next (918101056590 signal/xtensa: Use force_sig_fault where appropriate)
$ git merge userns/for-next
Auto-merging arch/x86/mm/fault.c
Auto-merging arch/parisc/kernel/traps.c
Auto-merging arch/arm64/kernel/traps.c
Merge made by the 'recursive' strategy.
 arch/alpha/include/uapi/asm/siginfo.h     |  14 ----
 arch/alpha/kernel/osf_sys.c               |  11 +--
 arch/alpha/kernel/signal.c                |  20 +----
 arch/alpha/kernel/traps.c                 |  79 +++++-------------
 arch/alpha/mm/fault.c                     |  13 +--
 arch/arc/mm/fault.c                       |   2 +
 arch/arm/kernel/ptrace.c                  |   1 +
 arch/arm/kernel/swp_emulate.c             |   1 +
 arch/arm/kernel/traps.c                   |   5 ++
 arch/arm/mm/alignment.c                   |   1 +
 arch/arm/mm/fault.c                       |   4 +
 arch/arm/vfp/vfpmodule.c                  |   3 +-
 arch/arm64/kernel/fpsimd.c                |   2 +-
 arch/arm64/kernel/sys_compat.c            |   1 +
 arch/arm64/kernel/traps.c                 |   1 +
 arch/arm64/mm/fault.c                     |  18 ++--
 arch/c6x/kernel/traps.c                   |   9 +-
 arch/hexagon/kernel/traps.c               |   9 +-
 arch/hexagon/mm/vm_fault.c                |  20 ++---
 arch/ia64/include/uapi/asm/siginfo.h      |   7 --
 arch/ia64/kernel/brl_emu.c                |   1 +
 arch/ia64/kernel/signal.c                 |   2 +
 arch/ia64/kernel/traps.c                  |  31 +++++--
 arch/ia64/kernel/unaligned.c              |   1 +
 arch/ia64/mm/fault.c                      |   4 +-
 arch/m68k/kernel/traps.c                  |  58 ++++++-------
 arch/m68k/mm/fault.c                      |  25 +++---
 arch/microblaze/kernel/exceptions.c       |   8 +-
 arch/microblaze/mm/fault.c                |  12 +--
 arch/mips/kernel/traps.c                  |  65 ++++-----------
 arch/mips/mm/fault.c                      |  18 ++--
 arch/nds32/kernel/traps.c                 |  35 ++------
 arch/nds32/mm/fault.c                     |  18 ++--
 arch/nios2/kernel/traps.c                 |   8 +-
 arch/openrisc/kernel/traps.c              |  30 +------
 arch/openrisc/mm/fault.c                  |  18 ++--
 arch/parisc/kernel/ptrace.c               |  10 +--
 arch/parisc/kernel/traps.c                |  61 +++++---------
 arch/parisc/kernel/unaligned.c            |  15 +---
 arch/parisc/math-emu/driver.c             |   8 +-
 arch/parisc/mm/fault.c                    |  54 ++++++------
 arch/powerpc/include/uapi/asm/siginfo.h   |  15 ----
 arch/powerpc/kernel/process.c             |   1 +
 arch/powerpc/kernel/traps.c               |  13 ++-
 arch/powerpc/mm/fault.c                   |   1 +
 arch/powerpc/platforms/cell/spufs/fault.c |   2 +-
 arch/riscv/kernel/traps.c                 |  16 +---
 arch/s390/kernel/traps.c                  |  29 ++-----
 arch/s390/mm/fault.c                      |  21 ++---
 arch/sh/kernel/hw_breakpoint.c            |   9 +-
 arch/sh/kernel/traps_32.c                 |  17 ++--
 arch/sh/math-emu/math.c                   |   8 +-
 arch/sh/mm/fault.c                        |   9 +-
 arch/sparc/include/uapi/asm/siginfo.h     |   7 --
 arch/sparc/kernel/process_64.c            |   9 +-
 arch/sparc/kernel/sys_sparc_32.c          |   8 +-
 arch/sparc/kernel/sys_sparc_64.c          |   8 +-
 arch/sparc/kernel/traps_32.c              | 104 +++++-------------------
 arch/sparc/kernel/traps_64.c              | 131 +++++++-----------------------
 arch/sparc/kernel/unaligned_32.c          |  11 +--
 arch/sparc/mm/fault_32.c                  |  12 +--
 arch/sparc/mm/fault_64.c                  |   8 +-
 arch/um/kernel/ptrace.c                   |  13 +--
 arch/um/kernel/trap.c                     |  24 ++----
 arch/unicore32/kernel/fpu-ucf64.c         |   8 +-
 arch/unicore32/mm/fault.c                 |   3 +
 arch/x86/entry/vsyscall/vsyscall_64.c     |   2 +-
 arch/x86/kernel/ptrace.c                  |   2 +-
 arch/x86/kernel/signal_compat.c           |   2 +-
 arch/x86/kernel/traps.c                   |   3 +
 arch/x86/kernel/umip.c                    |   1 +
 arch/x86/kvm/mmu.c                        |   1 +
 arch/x86/mm/fault.c                       |   1 +
 arch/xtensa/kernel/traps.c                |   9 +-
 arch/xtensa/mm/fault.c                    |  18 ++--
 fs/signalfd.c                             |  15 +---
 include/linux/ptrace.h                    |   1 -
 include/linux/tracehook.h                 |   1 +
 include/uapi/asm-generic/siginfo.h        |   3 +-
 kernel/signal.c                           | 123 +++-------------------------
 virt/kvm/arm/mmu.c                        |   1 +
 81 files changed, 380 insertions(+), 993 deletions(-)
Merging ktest/for-next (6cd110a91f52 ktest: Take submenu into account for grub2 menus)
$ git merge ktest/for-next
Already up to date.
Merging random/dev (9e66317d3c92 Linux 4.14-rc3)
$ git merge random/dev
Already up to date.
Merging aio/master (2a8a98673c13 fs: aio: fix the increment of aio-nr and counting against aio-max-nr)
$ git merge aio/master
Already up to date.
Merging kselftest/next (60cc43fc8884 Linux 4.17-rc1)
$ git merge kselftest/next
Already up to date.
Merging y2038/y2038 (5dc0b1529d21 y2038: ipc: Redirect ipc(SEMTIMEDOP, ...) to compat_ksys_semtimedop)
$ git merge y2038/y2038
Removing arch/s390/include/uapi/asm/shmbuf.h
Removing arch/s390/include/uapi/asm/sembuf.h
Removing arch/s390/include/uapi/asm/msgbuf.h
Removing arch/ia64/include/uapi/asm/shmbuf.h
Removing arch/ia64/include/uapi/asm/sembuf.h
Removing arch/ia64/include/uapi/asm/msgbuf.h
Removing arch/ia64/include/uapi/asm/ipcbuf.h
Removing arch/alpha/include/uapi/asm/shmbuf.h
Removing arch/alpha/include/uapi/asm/sembuf.h
Removing arch/alpha/include/uapi/asm/msgbuf.h
Removing arch/alpha/include/uapi/asm/ipcbuf.h
Merge made by the 'recursive' strategy.
 arch/alpha/include/uapi/asm/Kbuild     |  4 ++
 arch/alpha/include/uapi/asm/ipcbuf.h   |  2 -
 arch/alpha/include/uapi/asm/msgbuf.h   | 28 -----------
 arch/alpha/include/uapi/asm/sembuf.h   | 23 ---------
 arch/alpha/include/uapi/asm/shmbuf.h   | 39 ---------------
 arch/arm64/include/asm/compat.h        | 32 ++++++-------
 arch/ia64/include/uapi/asm/Kbuild      |  4 ++
 arch/ia64/include/uapi/asm/ipcbuf.h    |  2 -
 arch/ia64/include/uapi/asm/msgbuf.h    | 28 -----------
 arch/ia64/include/uapi/asm/sembuf.h    | 23 ---------
 arch/ia64/include/uapi/asm/shmbuf.h    | 39 ---------------
 arch/mips/include/asm/compat.h         | 40 +++++++++-------
 arch/mips/include/uapi/asm/msgbuf.h    | 57 ++++++++++++++--------
 arch/mips/include/uapi/asm/sembuf.h    | 15 +++++-
 arch/mips/include/uapi/asm/shmbuf.h    | 23 ++++++++-
 arch/parisc/include/asm/compat.h       | 32 ++++++-------
 arch/parisc/include/uapi/asm/msgbuf.h  | 33 +++++++------
 arch/parisc/include/uapi/asm/sembuf.h  | 16 +++----
 arch/parisc/include/uapi/asm/shmbuf.h  | 19 ++++----
 arch/powerpc/include/asm/compat.h      | 32 ++++++-------
 arch/powerpc/include/uapi/asm/msgbuf.h | 18 +++----
 arch/powerpc/include/uapi/asm/sembuf.h | 14 +++---
 arch/powerpc/include/uapi/asm/shmbuf.h | 19 ++++----
 arch/s390/include/asm/compat.h         | 32 ++++++-------
 arch/s390/include/uapi/asm/Kbuild      |  3 ++
 arch/s390/include/uapi/asm/msgbuf.h    | 38 ---------------
 arch/s390/include/uapi/asm/sembuf.h    | 30 ------------
 arch/s390/include/uapi/asm/shmbuf.h    | 49 -------------------
 arch/sparc/include/asm/compat.h        | 32 ++++++-------
 arch/sparc/include/uapi/asm/msgbuf.h   | 22 ++++-----
 arch/sparc/include/uapi/asm/sembuf.h   | 16 +++----
 arch/sparc/include/uapi/asm/shmbuf.h   | 21 ++++-----
 arch/x86/include/asm/compat.h          | 32 ++++++-------
 arch/x86/include/uapi/asm/sembuf.h     | 11 ++++-
 arch/xtensa/include/uapi/asm/msgbuf.h  | 25 +++++-----
 arch/xtensa/include/uapi/asm/sembuf.h  | 17 ++++---
 arch/xtensa/include/uapi/asm/shmbuf.h  | 37 ++++-----------
 include/linux/syscalls.h               |  6 +--
 include/uapi/asm-generic/msgbuf.h      | 27 +++++------
 include/uapi/asm-generic/sembuf.h      | 26 ++++++----
 include/uapi/asm-generic/shmbuf.h      | 41 ++++++++--------
 ipc/mqueue.c                           | 86 +++++++++++++++++-----------------
 ipc/msg.c                              | 20 +++++---
 ipc/sem.c                              | 27 +++++++----
 ipc/shm.c                              | 14 ++++--
 ipc/syscall.c                          | 13 +++--
 ipc/util.h                             |  4 +-
 47 files changed, 471 insertions(+), 700 deletions(-)
 delete mode 100644 arch/alpha/include/uapi/asm/ipcbuf.h
 delete mode 100644 arch/alpha/include/uapi/asm/msgbuf.h
 delete mode 100644 arch/alpha/include/uapi/asm/sembuf.h
 delete mode 100644 arch/alpha/include/uapi/asm/shmbuf.h
 delete mode 100644 arch/ia64/include/uapi/asm/ipcbuf.h
 delete mode 100644 arch/ia64/include/uapi/asm/msgbuf.h
 delete mode 100644 arch/ia64/include/uapi/asm/sembuf.h
 delete mode 100644 arch/ia64/include/uapi/asm/shmbuf.h
 delete mode 100644 arch/s390/include/uapi/asm/msgbuf.h
 delete mode 100644 arch/s390/include/uapi/asm/sembuf.h
 delete mode 100644 arch/s390/include/uapi/asm/shmbuf.h
Merging livepatching/for-next (3beed9bf1e3d Merge branch 'for-4.17/upstream-fixes' into for-next)
$ git merge livepatching/for-next
Already up to date!
Merge made by the 'recursive' strategy.
Merging coresight/next (53531a9947ed coresight: Moving framework and drivers to SPDX identifier)
$ git merge coresight/next
Merge made by the 'recursive' strategy.
 drivers/hwtracing/coresight/coresight-cpu-debug.c   | 14 +-------------
 .../coresight/coresight-dynamic-replicator.c        | 10 +---------
 drivers/hwtracing/coresight/coresight-etb10.c       | 13 +++----------
 drivers/hwtracing/coresight/coresight-etm-cp14.c    | 13 +++----------
 drivers/hwtracing/coresight/coresight-etm-perf.c    | 13 +------------
 drivers/hwtracing/coresight/coresight-etm-perf.h    | 13 +------------
 drivers/hwtracing/coresight/coresight-etm.h         | 13 +++----------
 drivers/hwtracing/coresight/coresight-etm3x-sysfs.c | 13 +------------
 drivers/hwtracing/coresight/coresight-etm3x.c       | 13 +++----------
 drivers/hwtracing/coresight/coresight-etm4x-sysfs.c | 13 +------------
 drivers/hwtracing/coresight/coresight-etm4x.c       | 13 +++----------
 drivers/hwtracing/coresight/coresight-etm4x.h       | 13 +++----------
 drivers/hwtracing/coresight/coresight-funnel.c      | 13 +++----------
 drivers/hwtracing/coresight/coresight-priv.h        | 13 +++----------
 drivers/hwtracing/coresight/coresight-replicator.c  | 13 +++----------
 drivers/hwtracing/coresight/coresight-stm.c         | 13 +++----------
 drivers/hwtracing/coresight/coresight-tmc-etf.c     | 13 +------------
 drivers/hwtracing/coresight/coresight-tmc-etr.c     | 13 +------------
 drivers/hwtracing/coresight/coresight-tmc.c         | 10 +---------
 drivers/hwtracing/coresight/coresight-tmc.h         | 13 +------------
 drivers/hwtracing/coresight/coresight-tpiu.c        | 13 +++----------
 drivers/hwtracing/coresight/coresight.c             | 21 +++++++--------------
 drivers/hwtracing/coresight/of_coresight.c          | 13 +++----------
 drivers/hwtracing/stm/ftrace.c                      | 10 +---------
 include/linux/coresight.h                           | 13 +++----------
 25 files changed, 57 insertions(+), 268 deletions(-)
Merging rtc/rtc-next (36d91a4d401c rtc: cmos: introduce quirks to enable use_acpi_alarm mode)
$ git merge rtc/rtc-next
Merge made by the 'recursive' strategy.
 drivers/rtc/rtc-cmos.c | 155 +++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 124 insertions(+), 31 deletions(-)
Merging nvdimm/libnvdimm-for-next (c5794510d7b5 MAINTAINERS: Add backup maintainers for libnvdimm and DAX)
$ git merge nvdimm/libnvdimm-for-next
Already up to date.
Merging idr/idr-4.11 (f0f3f2d0a3e0 radix tree test suite: Specify -m32 in LDFLAGS too)
$ git merge idr/idr-4.11
Already up to date.
Merging at24/at24/for-next (22e06c32b936 eeprom: at24: provide a separate routine for creating dummy i2c clients)
$ git merge at24/at24/for-next
Merge made by the 'recursive' strategy.
 drivers/misc/eeprom/at24.c | 71 ++++++++++++++++++++++++++++++----------------
 1 file changed, 46 insertions(+), 25 deletions(-)
Merging ntb/ntb-next (53c3677c56c7 ntb: intel: change references of skx to gen3)
$ git merge ntb/ntb-next
Auto-merging drivers/ntb/hw/intel/ntb_hw_gen1.c
Merge made by the 'recursive' strategy.
 drivers/ntb/hw/intel/Makefile                      |   1 +
 .../ntb/hw/intel/{ntb_hw_intel.c => ntb_hw_gen1.c} | 713 ++-------------------
 drivers/ntb/hw/intel/ntb_hw_gen1.h                 | 182 ++++++
 drivers/ntb/hw/intel/ntb_hw_gen3.c                 | 597 +++++++++++++++++
 drivers/ntb/hw/intel/ntb_hw_gen3.h                 | 110 ++++
 drivers/ntb/hw/intel/ntb_hw_intel.h                | 203 ++----
 6 files changed, 997 insertions(+), 809 deletions(-)
 rename drivers/ntb/hw/intel/{ntb_hw_intel.c => ntb_hw_gen1.c} (74%)
 create mode 100644 drivers/ntb/hw/intel/ntb_hw_gen1.h
 create mode 100644 drivers/ntb/hw/intel/ntb_hw_gen3.c
 create mode 100644 drivers/ntb/hw/intel/ntb_hw_gen3.h
Merging kspp/for-next/kspp (45888b40d2a6 rslib: Allocate decoder buffers to avoid VLAs)
$ git merge kspp/for-next/kspp
Auto-merging drivers/mtd/nand/raw/diskonchip.c
Merge made by the 'recursive' strategy.
 drivers/md/dm-verity-fec.c        |   2 +-
 drivers/mtd/nand/raw/cafe_nand.c  |   7 +-
 drivers/mtd/nand/raw/diskonchip.c |  67 +++++------
 include/linux/rslib.h             |  74 +++++++-----
 lib/reed_solomon/decode_rs.c      |  34 +++---
 lib/reed_solomon/encode_rs.c      |  15 +--
 lib/reed_solomon/reed_solomon.c   | 240 ++++++++++++++++++++++----------------
 7 files changed, 243 insertions(+), 196 deletions(-)
Merging init_task/init_task (e1e871aff3de Expand INIT_STRUCT_PID and remove)
$ git merge init_task/init_task
Already up to date.
Merging akpm-current/current (e8ff6013dc39 exofs-avoid-vla-in-structures-v2)
$ git merge --no-ff akpm-current/current
Auto-merging mm/page_alloc.c
Auto-merging mm/mmap.c
Auto-merging mm/Kconfig
Auto-merging kernel/cgroup/cgroup.c
Auto-merging include/linux/swap.h
Auto-merging include/linux/sched/mm.h
Auto-merging include/linux/sched.h
Auto-merging include/linux/kernel.h
Auto-merging include/linux/fsnotify_backend.h
Auto-merging include/linux/fs.h
Auto-merging include/linux/cgroup-defs.h
Auto-merging fs/fcntl.c
Auto-merging fs/dcache.c
Auto-merging fs/Kconfig
Auto-merging arch/x86/Kconfig
Auto-merging arch/riscv/Kconfig
Auto-merging arch/powerpc/Kconfig
Auto-merging arch/arm64/include/asm/pgtable.h
Auto-merging arch/arm/Kconfig
Auto-merging arch/Kconfig
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-class-bdi          |   8 +
 Documentation/blockdev/zram.txt                    |  25 +
 Documentation/cgroup-v2.txt                        | 118 ++++-
 .../features/vm/pte_special/arch-support.txt       |   2 +-
 Documentation/sysctl/fs.txt                        |  36 ++
 arch/Kconfig                                       |   4 +
 arch/arc/Kconfig                                   |   1 +
 arch/arc/include/asm/pgtable.h                     |   2 -
 arch/arm/Kconfig                                   |   1 +
 arch/arm/include/asm/page.h                        |   2 +
 arch/arm/include/asm/pgtable-3level.h              |   1 -
 arch/arm64/Kconfig                                 |   1 +
 arch/arm64/include/asm/pgtable.h                   |   2 -
 arch/powerpc/Kconfig                               |   1 +
 arch/powerpc/include/asm/book3s/64/pgtable.h       |   3 -
 arch/powerpc/include/asm/pte-common.h              |   3 -
 arch/riscv/Kconfig                                 |   1 +
 arch/riscv/include/asm/pgtable-bits.h              |   3 -
 arch/s390/Kconfig                                  |   1 +
 arch/s390/include/asm/pgtable.h                    |   1 -
 arch/sh/Kconfig                                    |   1 +
 arch/sh/include/asm/pgtable.h                      |   2 -
 arch/sparc/Kconfig                                 |   1 +
 arch/sparc/include/asm/pgtable_64.h                |   3 -
 arch/x86/Kconfig                                   |   1 +
 arch/x86/include/asm/pgtable_types.h               |   1 -
 block/genhd.c                                      |   2 +-
 drivers/block/zram/Kconfig                         |  14 +-
 drivers/block/zram/zram_drv.c                      | 164 +++++-
 drivers/block/zram/zram_drv.h                      |  14 +-
 fs/Kconfig                                         |   3 +
 fs/binfmt_elf.c                                    |  16 +-
 fs/dcache.c                                        |   3 +-
 fs/exec.c                                          |   1 +
 fs/exofs/ore.c                                     |  84 ++--
 fs/exofs/ore_raid.c                                |  75 ++-
 fs/exofs/super.c                                   |  23 +-
 fs/fcntl.c                                         |   2 +-
 fs/namei.c                                         |  52 +-
 fs/notify/dnotify/dnotify.c                        |   5 +-
 fs/notify/fanotify/fanotify.c                      |   6 +-
 fs/notify/fanotify/fanotify_user.c                 |   5 +-
 fs/notify/group.c                                  |   4 +
 fs/notify/inotify/inotify_fsnotify.c               |   2 +-
 fs/notify/inotify/inotify_user.c                   |   5 +-
 fs/ocfs2/buffer_head_io.c                          |  77 ++-
 fs/ocfs2/cluster/heartbeat.c                       |   8 +-
 fs/ocfs2/dlmglue.c                                 |   2 +-
 fs/ocfs2/file.c                                    |   4 +-
 fs/ocfs2/journal.c                                 |  51 +-
 fs/ocfs2/stackglue.c                               |   6 -
 fs/ocfs2/stackglue.h                               |   3 -
 fs/proc/base.c                                     | 190 +++----
 fs/seq_file.c                                      |  10 -
 include/linux/cgroup-defs.h                        |   5 +
 include/linux/fs.h                                 |   2 +
 include/linux/fsnotify_backend.h                   |  12 +-
 include/linux/kernel.h                             |   1 +
 include/linux/memcontrol.h                         |  53 +-
 include/linux/memfd.h                              |  16 +
 include/linux/mm_types.h                           |   2 +
 include/linux/oom.h                                |  12 +-
 include/linux/page_counter.h                       |  19 +-
 include/linux/pfn_t.h                              |   4 +-
 include/linux/sched.h                              |   3 +
 include/linux/sched/mm.h                           |  24 +
 include/linux/sched/signal.h                       |   3 +
 include/linux/shmem_fs.h                           |  13 -
 include/linux/slab.h                               |  59 +++
 include/linux/swap.h                               |  13 +-
 include/uapi/linux/prctl.h                         |   4 +
 kernel/cgroup/cgroup.c                             |  13 +-
 kernel/cred.c                                      |   1 +
 kernel/exit.c                                      |   4 +
 kernel/fork.c                                      |  13 +
 kernel/hung_task.c                                 |  11 +-
 kernel/sys.c                                       | 298 ++++-------
 kernel/sysctl.c                                    |  18 +
 lib/bitmap.c                                       |   5 +-
 lib/find_bit_benchmark.c                           |   7 +-
 lib/idr.c                                          |  10 +-
 mm/Kconfig                                         |   3 +
 mm/Makefile                                        |   1 +
 mm/backing-dev.c                                   |  35 ++
 mm/gup.c                                           |  42 +-
 mm/hugetlb_cgroup.c                                |   6 +-
 mm/init-mm.c                                       |   1 +
 mm/kasan/kasan.c                                   |  57 ++-
 mm/list_lru.c                                      |   7 +
 mm/memblock.c                                      |  22 +-
 mm/memcontrol.c                                    | 550 +++++++++++++++++----
 mm/memfd.c                                         | 345 +++++++++++++
 mm/memory.c                                        |  19 +-
 mm/mincore.c                                       |  12 +-
 mm/mmap.c                                          |  38 +-
 mm/oom_kill.c                                      | 240 +++++----
 mm/page_alloc.c                                    |   9 +-
 mm/page_counter.c                                  |  71 ++-
 mm/page_owner.c                                    |   4 +-
 mm/shmem.c                                         | 342 +------------
 mm/slab.c                                          |   2 +
 mm/slob.c                                          |   4 +-
 mm/slub.c                                          |   2 +
 mm/sparse-vmemmap.c                                |   1 -
 mm/sparse.c                                        |  35 +-
 mm/swap_slots.c                                    |  10 +-
 mm/swap_state.c                                    |  19 +-
 mm/swapfile.c                                      | 156 ++++--
 scripts/checkpatch.pl                              |   7 +
 security/apparmor/lsm.c                            |   1 +
 security/selinux/hooks.c                           |   1 +
 111 files changed, 2498 insertions(+), 1225 deletions(-)
 create mode 100644 include/linux/memfd.h
 create mode 100644 mm/memfd.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: mm: use octal not symbolic permissions
Applying: treewide: use PHYS_ADDR_MAX to avoid type casting ULLONG_MAX
Applying: kernel/kexec_file.c: add walk_system_ram_res_rev()
Applying: kernel/kexec_file.c: load kernel at top of system RAM if required
Applying: drivers/media/platform/sti/delta/delta-ipc.c: fix read buffer overflow
Applying: sparc64: NG4 memset 32 bits overflow
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + 24dc823cc7e8...101376ba5a29 akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (101376ba5a29 sparc64: NG4 memset 32 bits overflow)
$ git merge --no-ff akpm/master
Merge made by the 'recursive' strategy.
 arch/arm64/mm/init.c                         |  6 +--
 arch/mips/kernel/setup.c                     |  4 +-
 arch/powerpc/mm/mem.c                        |  2 +-
 arch/sparc/lib/NG4memset.S                   | 26 ++++++------
 arch/sparc/mm/init_64.c                      |  2 +-
 arch/x86/mm/init_32.c                        |  2 +-
 arch/x86/mm/init_64.c                        |  2 +-
 drivers/firmware/efi/arm-init.c              |  2 +-
 drivers/media/platform/sti/delta/delta-ipc.c |  4 +-
 drivers/remoteproc/qcom_q6v5_pil.c           |  2 +-
 drivers/soc/qcom/mdt_loader.c                |  4 +-
 include/linux/ioport.h                       |  3 ++
 kernel/kexec_file.c                          |  2 +
 kernel/resource.c                            | 63 ++++++++++++++++++++++++++++
 mm/cleancache.c                              | 10 ++---
 mm/cma_debug.c                               | 25 +++++------
 mm/compaction.c                              |  2 +-
 mm/dmapool.c                                 |  2 +-
 mm/failslab.c                                |  2 +-
 mm/frontswap.c                               | 11 +++--
 mm/memblock.c                                |  9 ++--
 mm/page_alloc.c                              |  2 +-
 mm/page_idle.c                               |  2 +-
 mm/page_owner.c                              |  4 +-
 mm/shmem.c                                   |  9 ++--
 mm/slab_common.c                             |  4 +-
 mm/vmalloc.c                                 |  2 +-
 mm/zsmalloc.c                                |  5 ++-
 mm/zswap.c                                   | 38 ++++++++---------
 29 files changed, 158 insertions(+), 93 deletions(-)