summaryrefslogtreecommitdiffstats
path: root/Next/merge.log
blob: 17613a6990e473b61a143baf687f82f1b57a0b01 (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
$ date -R
Wed, 12 Jul 2017 09:27:44 +1000
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at 548aa0e3c516 Merge tag 'devprop-4.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Merging origin/master (130568d5eac5 Merge branch 'for-linus' of git://git.kernel.dk/linux-block)
$ git merge origin/master
Updating 548aa0e3c516..130568d5eac5
Fast-forward
 Documentation/block/data-integrity.txt             |   6 +-
 Documentation/cgroup-v1/memory.txt                 |  47 +-
 .../devicetree/bindings/watchdog/da9062-wdt.txt    |  23 +
 .../devicetree/bindings/watchdog/dw_wdt.txt        |   3 +
 .../devicetree/bindings/watchdog/renesas-wdt.txt   |   4 +-
 .../devicetree/bindings/watchdog/st,stm32-iwdg.txt |  19 +
 .../devicetree/bindings/watchdog/uniphier-wdt.txt  |  20 +
 Documentation/memory-hotplug.txt                   |  12 +-
 Documentation/sysctl/vm.txt                        |  20 +
 Documentation/watchdog/watchdog-parameters.txt     |   6 +
 MAINTAINERS                                        |  14 +-
 arch/arm/boot/compressed/decompress.c              |   1 +
 arch/arm/include/asm/elf.h                         |   8 +-
 arch/arm/kernel/atags_parse.c                      |   3 +-
 arch/arm64/include/asm/elf.h                       |  12 +-
 arch/arm64/mm/kasan_init.c                         |   8 +-
 arch/frv/include/asm/Kbuild                        |   2 +
 arch/frv/include/asm/cmpxchg.h                     |   1 +
 arch/frv/include/asm/device.h                      |   7 -
 arch/frv/include/asm/fb.h                          |  12 -
 arch/m68k/configs/m5208evb_defconfig               |   1 -
 arch/m68k/configs/m5249evb_defconfig               |   1 -
 arch/m68k/configs/m5272c3_defconfig                |   1 -
 arch/m68k/configs/m5275evb_defconfig               |   1 -
 arch/m68k/configs/m5307c3_defconfig                |   1 -
 arch/m68k/configs/m5407c3_defconfig                |   1 -
 arch/mips/kernel/module.c                          |   3 +-
 arch/mips/kernel/traps.c                           |   3 +-
 arch/powerpc/include/asm/elf.h                     |  13 +-
 arch/s390/include/asm/elf.h                        |  15 +-
 arch/sh/mm/extable_64.c                            |  34 +-
 arch/sparc/mm/extable.c                            |  28 +-
 arch/x86/include/asm/elf.h                         |  13 +-
 arch/x86/mm/kasan_init_64.c                        |   7 +-
 block/bfq-iosched.c                                |  14 +-
 block/bfq-iosched.h                                |   3 +-
 block/bfq-wf2q.c                                   |  39 +-
 block/bio-integrity.c                              | 165 ++--
 block/bio.c                                        |  13 +-
 block/blk-core.c                                   |   5 +-
 block/blk-lib.c                                    |  23 +-
 block/blk-mq-sched.c                               |   8 +-
 block/blk-mq.c                                     |   4 +-
 block/blk.h                                        |  11 +
 block/t10-pi.c                                     |   9 +-
 drivers/base/node.c                                |   9 +-
 drivers/block/brd.c                                |   1 +
 drivers/block/cciss.c                              |   8 +
 drivers/block/mtip32xx/mtip32xx.c                  |  23 +-
 drivers/block/mtip32xx/mtip32xx.h                  |   1 +
 drivers/block/nbd.c                                |   4 +-
 drivers/block/null_blk.c                           |  18 +-
 drivers/block/virtio_blk.c                         |   4 +-
 drivers/block/zram/zcomp.c                         |  10 +-
 drivers/block/zram/zram_drv.c                      |   2 +-
 drivers/lightnvm/pblk-core.c                       |  61 +-
 drivers/lightnvm/pblk-recovery.c                   |  31 +-
 drivers/lightnvm/pblk-write.c                      |  26 +-
 drivers/lightnvm/pblk.h                            |   2 +
 drivers/md/dm.c                                    |   2 +-
 drivers/mfd/cros_ec.c                              |  13 +-
 drivers/nvdimm/blk.c                               |  16 +-
 drivers/nvdimm/btt.c                               |  16 +-
 drivers/nvme/host/core.c                           |  40 +-
 drivers/nvme/host/fc.c                             |  83 +-
 drivers/nvme/host/nvme.h                           |   4 +
 drivers/nvme/host/pci.c                            |  96 ++-
 drivers/nvme/host/rdma.c                           | 108 ++-
 drivers/nvme/target/fc.c                           |  20 +-
 drivers/nvme/target/io-cmd.c                       |   2 +-
 drivers/nvme/target/loop.c                         |  47 +-
 drivers/platform/chrome/Kconfig                    |  14 +-
 drivers/platform/chrome/Makefile                   |   7 +-
 drivers/platform/chrome/cros_ec_debugfs.c          | 401 +++++++++
 drivers/platform/chrome/cros_ec_debugfs.h          |  27 +
 drivers/platform/chrome/cros_ec_dev.c              |  40 +
 drivers/platform/chrome/cros_ec_dev.h              |   6 +
 drivers/platform/chrome/cros_ec_lightbar.c         | 197 ++++-
 drivers/platform/chrome/cros_ec_lpc.c              | 168 ++--
 drivers/platform/chrome/cros_ec_lpc_mec.c          | 140 ++++
 drivers/platform/chrome/cros_ec_lpc_reg.c          | 133 +++
 drivers/platform/chrome/cros_ec_proto.c            | 116 ++-
 drivers/scsi/lpfc/lpfc_scsi.c                      |   5 +-
 drivers/scsi/qla2xxx/qla_isr.c                     |   8 +-
 drivers/target/target_core_sbc.c                   |   2 +-
 drivers/watchdog/Kconfig                           |  61 +-
 drivers/watchdog/Makefile                          |   3 +
 drivers/watchdog/bcm47xx_wdt.c                     |   4 +-
 drivers/watchdog/cadence_wdt.c                     |   2 +-
 drivers/watchdog/davinci_wdt.c                     |  10 +-
 drivers/watchdog/dw_wdt.c                          |  11 +
 drivers/watchdog/f71808e_wdt.c                     |  27 +-
 drivers/watchdog/gpio_wdt.c                        |  73 +-
 drivers/watchdog/intel-mid_wdt.c                   |  17 +-
 drivers/watchdog/it87_wdt.c                        | 588 ++-----------
 drivers/watchdog/meson_gxbb_wdt.c                  |   4 +-
 drivers/watchdog/orion_wdt.c                       |   2 +-
 drivers/watchdog/rza_wdt.c                         | 199 +++++
 drivers/watchdog/s3c2410_wdt.c                     |  58 +-
 drivers/watchdog/sama5d4_wdt.c                     |  19 +-
 drivers/watchdog/stm32_iwdg.c                      | 253 ++++++
 drivers/watchdog/uniphier_wdt.c                    | 268 ++++++
 drivers/watchdog/w83627hf_wdt.c                    |  15 +-
 drivers/watchdog/watchdog_dev.c                    |  32 +-
 drivers/watchdog/zx2967_wdt.c                      |   2 +-
 fs/binfmt_elf.c                                    |  79 +-
 fs/buffer.c                                        |  43 +-
 fs/ceph/addr.c                                     |  21 +-
 fs/ceph/cache.c                                    |  92 ++-
 fs/ceph/caps.c                                     |  40 +-
 fs/ceph/file.c                                     |   2 +-
 fs/ceph/inode.c                                    |  18 +-
 fs/ceph/locks.c                                    |  25 +-
 fs/ceph/mds_client.c                               |   4 +-
 fs/ceph/super.c                                    |  47 +-
 fs/ceph/super.h                                    |   4 +-
 fs/ceph/xattr.c                                    |   3 +
 fs/cifs/Kconfig                                    |  83 +-
 fs/cifs/Makefile                                   |   7 +-
 fs/cifs/cifs_unicode.c                             |   2 -
 fs/cifs/cifs_unicode.h                             |   2 -
 fs/cifs/cifsfs.c                                   |  13 +-
 fs/cifs/cifsglob.h                                 |  20 +-
 fs/cifs/cifssmb.c                                  |   7 +
 fs/cifs/connect.c                                  |  41 +-
 fs/cifs/ioctl.c                                    |   2 -
 fs/cifs/link.c                                     |   4 -
 fs/cifs/misc.c                                     |  11 +-
 fs/cifs/smb2maperror.c                             |   4 +-
 fs/cifs/smb2ops.c                                  |  86 +-
 fs/cifs/smb2pdu.c                                  |  74 +-
 fs/cifs/smb2proto.h                                |   3 +
 fs/dcache.c                                        |   5 +-
 fs/eventpoll.c                                     |  10 +
 fs/hugetlbfs/inode.c                               |  11 +
 fs/proc/generic.c                                  |  32 +-
 fs/proc/task_mmu.c                                 |   1 -
 include/asm-generic/bug.h                          |   1 +
 include/linux/backing-dev.h                        |  15 +-
 include/linux/bio.h                                |  47 +-
 include/linux/bitmap.h                             |  33 +-
 include/linux/bug.h                                |  72 +-
 include/linux/build_bug.h                          |  84 ++
 include/linux/bvec.h                               |  41 +-
 include/linux/ceph/ceph_features.h                 | 264 +++---
 include/linux/ceph/ceph_fs.h                       |   1 +
 include/linux/ceph/decode.h                        |  60 ++
 include/linux/ceph/libceph.h                       |  49 +-
 include/linux/ceph/messenger.h                     |   2 +
 include/linux/ceph/osd_client.h                    |  70 +-
 include/linux/ceph/osdmap.h                        |  41 +-
 include/linux/ceph/rados.h                         |   6 +
 include/linux/crush/crush.h                        |  66 ++
 include/linux/crush/mapper.h                       |   9 +-
 include/linux/dax.h                                |   5 -
 include/linux/extable.h                            |   5 +-
 include/linux/fs.h                                 |   6 +
 include/linux/huge_mm.h                            |  45 +-
 include/linux/hugetlb.h                            |  39 +-
 include/linux/initrd.h                             |   3 +
 include/linux/khugepaged.h                         |   3 +-
 include/linux/list_lru.h                           |   1 +
 include/linux/mfd/cros_ec.h                        |  19 +-
 include/linux/mfd/cros_ec_commands.h               |  42 +-
 include/linux/mfd/cros_ec_lpc_mec.h                |  90 ++
 include/linux/mfd/cros_ec_lpc_reg.h                |  61 ++
 include/linux/migrate.h                            |  16 +
 include/linux/mmzone.h                             |   8 +-
 include/linux/nvme-fc.h                            |  23 +-
 include/linux/page_ref.h                           |   1 +
 include/linux/sched/coredump.h                     |   5 +-
 include/linux/swap.h                               |   6 +-
 include/linux/swapops.h                            |   9 -
 include/linux/t10-pi.h                             |   2 +
 include/trace/events/mmflags.h                     |   2 +-
 include/trace/events/oom.h                         |  80 ++
 kernel/exit.c                                      |   4 +
 kernel/extable.c                                   |   3 +-
 kernel/groups.c                                    |  35 +-
 kernel/kallsyms.c                                  |  10 +-
 kernel/ksysfs.c                                    |   2 +-
 kernel/module.c                                    |   2 +-
 kernel/signal.c                                    |   4 +
 kernel/sys.c                                       |   6 +-
 lib/Kconfig.debug                                  |   2 +-
 lib/bitmap.c                                       |   8 +-
 lib/bsearch.c                                      |  22 +-
 lib/extable.c                                      |  41 +-
 lib/interval_tree_test.c                           |  93 ++-
 lib/kstrtox.c                                      |  12 +-
 lib/rhashtable.c                                   |   7 +-
 lib/test_bitmap.c                                  |  29 +
 mm/Kconfig                                         |   1 -
 mm/balloon_compaction.c                            |   2 +-
 mm/cma.c                                           |  20 +-
 mm/filemap.c                                       |   8 +-
 mm/hugetlb.c                                       | 292 +++----
 mm/kasan/kasan.c                                   | 152 ++--
 mm/kasan/kasan_init.c                              |  12 +
 mm/kasan/report.c                                  |   2 +-
 mm/khugepaged.c                                    |   3 +-
 mm/list_lru.c                                      |  14 +-
 mm/madvise.c                                       |  46 +-
 mm/memcontrol.c                                    |  52 +-
 mm/memory-failure.c                                | 332 ++++----
 mm/memory.c                                        |   4 +-
 mm/memory_hotplug.c                                | 138 +---
 mm/migrate.c                                       |  17 +-
 mm/mmap.c                                          |  19 +-
 mm/oom_kill.c                                      |   7 +
 mm/page_alloc.c                                    |  66 +-
 mm/page_io.c                                       |  23 +-
 mm/page_isolation.c                                |  18 +-
 mm/page_owner.c                                    |   6 +-
 mm/shmem.c                                         |   8 +-
 mm/swap.c                                          |  11 +-
 mm/swap_slots.c                                    |   5 +-
 mm/swap_state.c                                    |  10 +-
 mm/swapfile.c                                      |   2 +-
 mm/truncate.c                                      |  10 +-
 mm/vmalloc.c                                       |  10 +-
 mm/vmpressure.c                                    | 122 ++-
 mm/vmscan.c                                        |  13 +-
 mm/vmstat.c                                        |  24 +-
 mm/zsmalloc.c                                      |  54 +-
 net/ceph/ceph_common.c                             |   1 +
 net/ceph/crush/crush.c                             |   3 +
 net/ceph/crush/mapper.c                            |  81 +-
 net/ceph/debugfs.c                                 | 112 ++-
 net/ceph/messenger.c                               |  10 +-
 net/ceph/mon_client.c                              |   8 +-
 net/ceph/osd_client.c                              | 905 +++++++++++++++++++--
 net/ceph/osdmap.c                                  | 840 ++++++++++++++-----
 scripts/checkpatch.pl                              | 102 ++-
 234 files changed, 7096 insertions(+), 3080 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/watchdog/da9062-wdt.txt
 create mode 100644 Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt
 create mode 100644 Documentation/devicetree/bindings/watchdog/uniphier-wdt.txt
 delete mode 100644 arch/frv/include/asm/device.h
 delete mode 100644 arch/frv/include/asm/fb.h
 create mode 100644 drivers/platform/chrome/cros_ec_debugfs.c
 create mode 100644 drivers/platform/chrome/cros_ec_debugfs.h
 create mode 100644 drivers/platform/chrome/cros_ec_lpc_mec.c
 create mode 100644 drivers/platform/chrome/cros_ec_lpc_reg.c
 create mode 100644 drivers/watchdog/rza_wdt.c
 create mode 100644 drivers/watchdog/stm32_iwdg.c
 create mode 100644 drivers/watchdog/uniphier_wdt.c
 create mode 100644 include/linux/build_bug.h
 create mode 100644 include/linux/mfd/cros_ec_lpc_mec.h
 create mode 100644 include/linux/mfd/cros_ec_lpc_reg.h
Merging fixes/master (b4b8cbf679c4 Cavium CNN55XX: fix broken default Kconfig entry)
$ git merge fixes/master
Already up-to-date.
Merging kbuild-current/fixes (ad8181060788 kconfig: fix sparse warnings in nconfig)
$ git merge kbuild-current/fixes
Already up-to-date.
Merging arc-current/for-curr (11352460b8dc ARC: [plat-axs10x]: prepare dts files for enabling PAE40 on axs103)
$ git merge arc-current/for-curr
Merge made by the 'recursive' strategy.
 arch/arc/boot/dts/axc001.dtsi     | 20 +++++++++-----------
 arch/arc/boot/dts/axc003.dtsi     | 21 ++++++++++-----------
 arch/arc/boot/dts/axc003_idu.dtsi | 21 ++++++++++-----------
 arch/arc/boot/dts/axs10x_mb.dtsi  |  2 +-
 arch/arc/configs/nps_defconfig    |  1 -
 arch/arc/configs/tb10x_defconfig  |  1 -
 arch/arc/mm/cache.c               |  3 +++
 7 files changed, 33 insertions(+), 36 deletions(-)
Merging arm-current/fixes (9e25ebfe56ec ARM: 8685/1: ensure memblock-limit is pmd-aligned)
$ git merge arm-current/fixes
Already up-to-date.
Merging m68k-current/for-linus (204a2be30a7a m68k: Remove ptrace_signal_deliver)
$ git merge m68k-current/for-linus
Already up-to-date.
Merging metag-fixes/fixes (b884a190afce metag/usercopy: Add missing fixups)
$ git merge metag-fixes/fixes
Already up-to-date.
Merging powerpc-fixes/fixes (2400fd822f46 powerpc/asm: Mark cr0 as clobbered in mftb())
$ git merge powerpc-fixes/fixes
Merge made by the 'recursive' strategy.
 arch/powerpc/include/asm/opal-api.h    |  9 ++++++
 arch/powerpc/include/asm/reg.h         |  2 +-
 arch/powerpc/kernel/cpu_setup_power.S  | 13 ++++++--
 arch/powerpc/kernel/dt_cpu_ftrs.c      | 16 ++--------
 arch/powerpc/kernel/mce_power.c        | 56 +++++++++++++++++++++++++++++++++-
 arch/powerpc/kernel/misc_64.S          | 12 ++++++++
 arch/powerpc/mm/mmu_context_book3s64.c | 20 ++++++++++--
 arch/powerpc/platforms/powernv/opal.c  | 19 ++++++++++--
 arch/powerpc/platforms/powernv/setup.c | 11 ++++++-
 9 files changed, 133 insertions(+), 25 deletions(-)
Merging sparc/master (dbd2667a4fb9 sparc64: Fix gup_huge_pmd)
$ git merge sparc/master
Merge made by the 'recursive' strategy.
 arch/sparc/include/asm/asm-prototypes.h | 24 ++++++++++++++++++
 arch/sparc/lib/atomic_64.S              | 44 +++++++++++++++++++--------------
 arch/sparc/lib/checksum_64.S            |  1 +
 arch/sparc/lib/csum_copy.S              |  1 +
 arch/sparc/lib/memscan_64.S             |  2 ++
 arch/sparc/lib/memset.S                 |  1 +
 arch/sparc/mm/gup.c                     |  4 +--
 7 files changed, 57 insertions(+), 20 deletions(-)
 create mode 100644 arch/sparc/include/asm/asm-prototypes.h
Merging fscrypt-current/for-stable (42d97eb0ade3 fscrypt: fix renaming and linking special files)
$ git merge fscrypt-current/for-stable
Already up-to-date.
Merging net/master (ffa423fb3251 tap: convert a mutex to a spinlock)
$ git merge net/master
Merge made by the 'recursive' strategy.
 Documentation/networking/timestamping.txt          |  6 ++--
 drivers/net/ethernet/broadcom/bnxt/bnxt.c          | 42 +++++++++++++++-------
 drivers/net/ethernet/broadcom/bnxt/bnxt.h          |  4 ++-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c  |  3 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c      |  2 +-
 drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c    | 16 ++++++---
 drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c     | 42 +++++++++++++---------
 drivers/net/ethernet/cisco/enic/vnic_dev.c         |  9 ++---
 drivers/net/ethernet/mellanox/mlx5/core/Makefile   |  4 +--
 .../net/ethernet/mellanox/mlx5/core/accel/Makefile |  1 +
 .../ethernet/mellanox/mlx5/core/en_accel/Makefile  |  1 +
 .../mellanox/mlx5/core/en_accel/ipsec_rxtx.c       |  2 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c |  2 ++
 .../net/ethernet/mellanox/mlx5/core/fpga/Makefile  |  1 +
 .../net/ethernet/mellanox/mlx5/core/fpga/core.c    |  2 +-
 .../net/ethernet/mellanox/mlx5/core/fpga/ipsec.c   |  4 +--
 .../net/ethernet/mellanox/mlx5/core/ipoib/Makefile |  1 +
 .../net/ethernet/mellanox/mlx5/core/lib/Makefile   |  1 +
 drivers/net/ethernet/mellanox/mlx5/core/lib/gid.c  |  1 +
 drivers/net/ethernet/qlogic/qed/qed_iwarp.c        |  6 ++--
 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c  | 14 ++++----
 drivers/net/tap.c                                  | 18 +++++-----
 22 files changed, 111 insertions(+), 71 deletions(-)
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/accel/Makefile
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/Makefile
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/fpga/Makefile
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/ipoib/Makefile
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/lib/Makefile
Merging ipsec/master (ca3a1b856636 esp6_offload: Fix IP6CB(skb)->nhoff for ESP GRO)
$ git merge ipsec/master
Already up-to-date.
Merging netfilter/master (c644bd79c0a7 Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf)
$ git merge netfilter/master
Already up-to-date.
Merging ipvs/master (3c5ab3f395d6 ipvs: SNAT packet replies only for NATed connections)
$ git merge ipvs/master
Already up-to-date.
Merging wireless-drivers/master (35abcd4f9f30 brcmfmac: fix uninitialized warning in brcmf_usb_probe_phase2())
$ git merge wireless-drivers/master
Already up-to-date.
Merging mac80211/master (d7f13f745036 cfg80211: Validate frequencies nested in NL80211_ATTR_SCAN_FREQUENCIES)
$ git merge mac80211/master
Already up-to-date.
Merging sound-current/for-linus (65553b12e8fd ALSA: hda/realtek - New codec device ID for ALC1220)
$ git merge sound-current/for-linus
Auto-merging sound/core/pcm_native.c
Merge made by the 'recursive' strategy.
 sound/core/pcm_native.c        |  8 +++-----
 sound/drivers/opl4/opl4_lib.c  |  2 +-
 sound/isa/msnd/msnd_midi.c     | 30 +++++++++++++++---------------
 sound/isa/msnd/msnd_pinnacle.c | 23 ++++++++++++-----------
 sound/pci/hda/patch_realtek.c  | 16 ++++++++++++++++
 5 files changed, 47 insertions(+), 32 deletions(-)
Merging pci-current/for-linus (f01fc4177352 ARM/PCI: Fix pcibios_init_resource() struct pci_host_bridge leak)
$ git merge pci-current/for-linus
Merge made by the 'recursive' strategy.
 arch/arm/kernel/bios32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging driver-core.current/driver-core-linus (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge driver-core.current/driver-core-linus
Already up-to-date.
Merging tty.current/tty-linus (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge tty.current/tty-linus
Already up-to-date.
Merging usb.current/usb-linus (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge usb.current/usb-linus
Already up-to-date.
Merging usb-gadget-fixes/fixes (f50b878fed33 USB: gadget: fix GPF in gadgetfs)
$ git merge usb-gadget-fixes/fixes
Already up-to-date.
Merging usb-serial-fixes/usb-linus (996fab55d864 USB: serial: qcserial: new Sierra Wireless EM7305 device ID)
$ git merge usb-serial-fixes/usb-linus
Already up-to-date.
Merging usb-chipidea-fixes/ci-for-usb-stable (cbb22ebcfb99 usb: chipidea: core: check before accessing ci_role in ci_role_show)
$ git merge usb-chipidea-fixes/ci-for-usb-stable
Already up-to-date.
Merging phy/fixes (9605bc46433d phy: qualcomm: phy-qcom-qmp: fix application of sizeof to pointer)
$ git merge phy/fixes
Already up-to-date.
Merging staging.current/staging-linus (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge staging.current/staging-linus
Already up-to-date.
Merging char-misc.current/char-misc-linus (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge char-misc.current/char-misc-linus
Already up-to-date.
Merging input-current/for-linus (ede2e7cdc58e Merge branch 'next' into for-linus)
$ git merge input-current/for-linus
Already up-to-date.
Merging crypto-current/master (b82ce24426a4 crypto: sha1-ssse3 - Disable avx2)
$ git merge crypto-current/master
Merge made by the 'recursive' strategy.
 arch/x86/crypto/sha1_ssse3_glue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging ide/master (acfead32f3f9 ide: don't call memcpy with the same source and destination)
$ git merge ide/master
Already up-to-date.
Merging vfio-fixes/for-linus (39da7c509acf Linux 4.11-rc6)
$ git merge vfio-fixes/for-linus
Already up-to-date.
Merging kselftest-fixes/fixes (2ea659a9ef48 Linux 4.12-rc1)
$ git merge kselftest-fixes/fixes
Already up-to-date.
Merging backlight-fixes/for-backlight-fixes (68feaca0b13e backlight: pwm: Handle EPROBE_DEFER while requesting the PWM)
$ git merge backlight-fixes/for-backlight-fixes
Already up-to-date.
Merging ftrace-fixes/for-next-urgent (6224beb12e19 tracing: Have branch tracer use recursive field of task struct)
$ git merge ftrace-fixes/for-next-urgent
Already up-to-date.
Merging nand-fixes/nand/fixes (d4ed3b9015b5 mtd: nand: make nand_ooblayout_lp_hamming_ops static)
$ git merge nand-fixes/nand/fixes
Already up-to-date.
Merging spi-nor-fixes/spi-nor/fixes (2ea659a9ef48 Linux 4.12-rc1)
$ git merge spi-nor-fixes/spi-nor/fixes
Already up-to-date.
Merging mfd-fixes/for-mfd-fixes (9e69672e90cc dt-bindings: mfd: Update STM32 timers clock names)
$ git merge mfd-fixes/for-mfd-fixes
Already up-to-date.
Merging v4l-dvb-fixes/fixes (2a2599c66368 [media] media: entity: Catch unbalanced media_pipeline_stop calls)
$ git merge v4l-dvb-fixes/fixes
Already up-to-date.
Merging reset-fixes/reset/fixes (4497a224f759 reset: hi6220: Set module license so that it can be loaded)
$ git merge reset-fixes/reset/fixes
Already up-to-date.
Merging drm-intel-fixes/for-linux-next-fixes (611cdf3695a3 drm/i915: Disable EXEC_OBJECT_ASYNC when doing relocations)
$ git merge drm-intel-fixes/for-linux-next-fixes
Already up-to-date.
Merging drm-misc-fixes/for-linux-next-fixes (e94ac3510b6a drm: Fix GETCONNECTOR regression)
$ git merge drm-misc-fixes/for-linux-next-fixes
Already up-to-date.
Merging kbuild/for-next (d7f14c66c273 kbuild: Enable Large File Support for hostprogs)
$ git merge kbuild/for-next
Removing arch/nios2/include/asm/signal.h
Merge made by the 'recursive' strategy.
 Makefile                                | 26 +++++++++++++++++---------
 arch/arc/include/asm/Kbuild             | 24 ------------------------
 arch/arc/include/uapi/asm/Kbuild        | 24 ++++++++++++++++++++++++
 arch/arm/include/asm/Kbuild             | 16 ----------------
 arch/arm/include/uapi/asm/Kbuild        | 14 ++++++++++++++
 arch/arm64/include/asm/Kbuild           | 17 -----------------
 arch/arm64/include/uapi/asm/Kbuild      | 16 ++++++++++++++++
 arch/blackfin/include/asm/Kbuild        | 24 +-----------------------
 arch/blackfin/include/uapi/asm/Kbuild   | 22 ++++++++++++++++++++++
 arch/c6x/include/asm/Kbuild             | 28 +---------------------------
 arch/c6x/include/uapi/asm/Kbuild        | 25 +++++++++++++++++++++++++
 arch/cris/include/asm/Kbuild            | 21 ++-------------------
 arch/cris/include/uapi/asm/Kbuild       | 17 +++++++++++++++++
 arch/h8300/include/asm/Kbuild           | 30 ++----------------------------
 arch/h8300/include/uapi/asm/Kbuild      | 26 ++++++++++++++++++++++++++
 arch/hexagon/include/asm/Kbuild         | 24 +-----------------------
 arch/hexagon/include/uapi/asm/Kbuild    | 22 ++++++++++++++++++++++
 arch/ia64/include/asm/Kbuild            |  2 --
 arch/m32r/include/asm/Kbuild            |  4 +---
 arch/m32r/include/uapi/asm/Kbuild       |  3 ++-
 arch/m68k/include/asm/Kbuild            | 13 +------------
 arch/m68k/include/uapi/asm/Kbuild       | 10 ++++++++++
 arch/metag/include/asm/Kbuild           | 26 +-------------------------
 arch/metag/include/uapi/asm/Kbuild      | 24 ++++++++++++++++++++++++
 arch/microblaze/include/asm/Kbuild      | 25 -------------------------
 arch/microblaze/include/uapi/asm/Kbuild | 25 ++++++++++++++++++++++++-
 arch/nios2/include/asm/Kbuild           | 26 +-------------------------
 arch/nios2/include/asm/signal.h         | 22 ----------------------
 arch/nios2/include/uapi/asm/Kbuild      | 23 +++++++++++++++++++++++
 arch/openrisc/include/asm/Kbuild        | 29 +----------------------------
 arch/openrisc/include/uapi/asm/Kbuild   | 27 +++++++++++++++++++++++++++
 arch/parisc/include/asm/Kbuild          |  7 +------
 arch/parisc/include/uapi/asm/Kbuild     |  4 ++++
 arch/sh/include/asm/Kbuild              | 19 -------------------
 arch/sh/include/uapi/asm/Kbuild         | 18 ++++++++++++++++++
 arch/sparc/include/asm/Kbuild           |  1 -
 arch/sparc/include/uapi/asm/Kbuild      |  2 ++
 arch/tile/include/asm/Kbuild            | 19 -------------------
 arch/tile/include/uapi/asm/Kbuild       | 19 +++++++++++++++++++
 arch/unicore32/include/asm/Kbuild       | 30 +-----------------------------
 arch/unicore32/include/uapi/asm/Kbuild  | 27 +++++++++++++++++++++++++++
 arch/xtensa/include/asm/Kbuild          | 10 +---------
 arch/xtensa/include/uapi/asm/Kbuild     |  9 +++++++++
 scripts/Makefile.headersinst            | 29 ++++-------------------------
 44 files changed, 391 insertions(+), 438 deletions(-)
 delete mode 100644 arch/nios2/include/asm/signal.h
Merging uuid/for-next (b86a496a4206 ACPI: hns_dsaf_acpi_dsm_guid can be static)
$ git merge uuid/for-next
Already up-to-date.
Merging dma-mapping/for-next (1655cf8829d8 ARM: dma-mapping: Remove traces of NOMMU code)
$ git merge dma-mapping/for-next
Already up-to-date.
Merging asm-generic/master (a351e9b9fc24 Linux 4.11)
$ git merge asm-generic/master
Already up-to-date.
Merging arc/for-next (6f8119230ed0 ARC: set boot print log level to PR_INFO)
$ git merge arc/for-next
Auto-merging arch/arc/mm/cache.c
Auto-merging arch/arc/kernel/setup.c
Merge made by the 'recursive' strategy.
 arch/arc/include/asm/irqflags-arcv2.h   |  3 ---
 arch/arc/include/asm/irqflags-compact.h |  2 --
 arch/arc/include/asm/spinlock.h         | 12 ++++++++++++
 arch/arc/kernel/entry-compact.S         | 22 +++++++++++-----------
 arch/arc/kernel/process.c               | 29 +++++++++++++++++++++++++++--
 arch/arc/kernel/setup.c                 |  6 +++---
 arch/arc/kernel/traps.c                 |  2 +-
 arch/arc/mm/cache.c                     |  2 +-
 arch/arc/mm/fault.c                     |  2 +-
 arch/arc/mm/tlb.c                       |  2 +-
 arch/arc/mm/tlbex.S                     |  9 +++++++++
 arch/arc/plat-eznps/Kconfig             | 15 +++++++++++++--
 arch/arc/plat-eznps/include/plat/ctop.h |  1 +
 arch/arc/plat-eznps/mtm.c               | 11 +++++++++--
 14 files changed, 89 insertions(+), 29 deletions(-)
Merging arm/for-next (fc256ee00f0c Merge branches 'fixes' and 'misc' into for-next)
$ git merge arm/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging arm-perf/for-next/perf (c0f7f7acdecd perf: xgene: Add support for SoC PMU version 3)
$ git merge arm-perf/for-next/perf
Already up-to-date.
Merging arm-soc/for-next (ebc5ff9e87f6 Merge branch 'next/dt64' into for-next)
$ git merge arm-soc/for-next
Merge made by the 'recursive' strategy.
 arch/arm/arm-soc-for-next-contents.txt | 251 +++++++++++++++++++++++++++++++++
 1 file changed, 251 insertions(+)
 create mode 100644 arch/arm/arm-soc-for-next-contents.txt
Merging actions/for-next (8ba75fbb148a Merge branch 'v4.13/arm+sps' into next)
$ git merge actions/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging alpine/alpine/for-next (a1144b2b1ec4 ARM: dts: alpine: add valid clock-frequency values)
$ git merge alpine/alpine/for-next
Merge made by the 'recursive' strategy.
Merging amlogic/for-next (f99503e956ae Merge branch 'v4.13/defconfig' into tmp/aml-rebuild)
$ git merge amlogic/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging aspeed/for-next (4944e5dbb215 Merge branches 'dt-for-v4.12' and 'defconfig-for-v4.12' into for-next)
$ git merge aspeed/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging at91/at91-next (19964541c231 Merge tag 'armsoc-arm64' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc)
$ git merge at91/at91-next
Already up-to-date.
Merging bcm2835/for-next (652fb0c6435c Merge branch anholt/bcm2835-defconfig-next into for-next)
$ git merge bcm2835/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging berlin/berlin/for-next (5153351425c9 Merge branch 'berlin/dt' into berlin/for-next)
$ git merge berlin/berlin/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging cortex-m/for-next (f719a0d6a854 ARM: efm32: switch to vendor,device compatible strings)
$ git merge cortex-m/for-next
Already up-to-date.
Merging imx-mxs/for-next (bf6e15ed7f86 Merge branch 'zte/dt64' into for-next)
$ git merge imx-mxs/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging keystone/next (b45371147f9d Merge branch 'for_4.13/keystone_dts' into next)
$ git merge keystone/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging mvebu/for-next (cf79eb3aab84 Merge branch 'mvebu/dt64' into mvebu/for-next)
$ git merge mvebu/for-next
Merge made by the 'recursive' strategy.
Merging omap/for-next (05f2a5417cf1 Merge branch 'omap-for-v4.13/mmc-regulator' into for-next)
$ git merge omap/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/am57xx-beagle-x15-revb1.dts |  2 +-
 arch/arm/boot/dts/dm8168-evm.dts              | 34 ++++++++++++++++-
 arch/arm/boot/dts/dm816x.dtsi                 |  2 +-
 arch/arm/boot/dts/dra7-evm.dts                | 10 ++++-
 arch/arm/boot/dts/dra7.dtsi                   |  5 +++
 arch/arm/boot/dts/dra71-evm.dts               | 18 ++++++++-
 arch/arm/boot/dts/dra72-evm-common.dtsi       |  2 -
 arch/arm/boot/dts/dra72-evm-revc.dts          | 18 +++++++++
 arch/arm/boot/dts/dra72-evm.dts               | 18 +++++++++
 arch/arm/mach-omap2/pdata-quirks.c            | 31 +++++++++++++++
 arch/arm/mach-omap2/pm34xx.c                  |  1 -
 arch/arm/mach-omap2/prm3xxx.c                 |  7 +---
 arch/arm/mach-omap2/prm44xx.c                 | 55 +++++++++++++++++++++++++++
 include/linux/platform_data/hsmmc-omap.h      |  3 ++
 14 files changed, 191 insertions(+), 15 deletions(-)
Merging omap-pending/for-next (c20c8f750d9f ARM: OMAP2+: hwmod: fix _idle() hwmod state sanity check sequence)
$ git merge omap-pending/for-next
Already up-to-date.
Merging reset/reset/next (dfeac250c429 reset: zx2967: constify zx2967_reset_ops.)
$ git merge reset/reset/next
Merge made by the 'recursive' strategy.
 drivers/reset/reset-zx2967.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging qcom/for-next (6a3282b03fe6 Merge tag 'qcom-defconfig-for-4.13-2' into all-for-4.13-revised)
$ git merge qcom/for-next
Merge made by the 'recursive' strategy.
Merging realtek/for-next (007e6304223c Merge branch 'v4.13/dt64' into next)
$ git merge realtek/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging renesas/next (c2432fc935fd Merge branch 'fixes-for-v4.13' into next)
$ git merge renesas/next
Merge made by the 'recursive' strategy.
 arch/arm64/boot/dts/renesas/salvator-common.dtsi | 2 +-
 arch/arm64/boot/dts/renesas/ulcb.dtsi            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Merging rockchip/for-next (dd3f24b9ff88 Merge branch 'v4.13-clk/next' into for-next)
$ git merge rockchip/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging rpi/for-rpi-next (bc0195aad0da Linux 4.2-rc2)
$ git merge rpi/for-rpi-next
Already up-to-date.
Merging samsung/for-next (2ea659a9ef48 Linux 4.12-rc1)
$ git merge samsung/for-next
Already up-to-date.
Merging samsung-krzk/for-next (005537e095a6 Merge branch 'fixes' into for-next)
$ git merge samsung-krzk/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/exynos4.dtsi | 3 +++
 1 file changed, 3 insertions(+)
Merging sunxi/sunxi/for-next (efb85d294c2a Merge branches 'sunxi/h3-for-4.13', 'sunxi/dt-for-4.13' and 'sunxi/dt64-for-4.13' into sunxi/for-next)
$ git merge sunxi/sunxi/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging tegra/for-next (07bb9460b188 Merge branch for-4.13/arm64/dt into for-next)
$ git merge tegra/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging arm64/for-next/core (425e1ed73e65 arm64: fix endianness annotation for 'struct jit_ctx' and friends)
$ git merge arm64/for-next/core
Already up-to-date.
Merging clk/clk-next (3cf50f6b13a2 Merge branch 'binding-doc-cp110-ap806' of git://git.infradead.org/linux-mvebu into clk-next)
$ git merge clk/clk-next
Already up-to-date.
Merging c6x/for-linux-next (91ebcd1b97ae MAINTAINERS: update email address for C6x maintainer)
$ git merge c6x/for-linux-next
Already up-to-date.
Merging cris/for-next (8f50f2a1b46a cris: No need to append -O2 and $(LINUXINCLUDE))
$ git merge cris/for-next
Already up-to-date.
Merging h8300/h8300-next (58c57526711f h8300: Add missing include file to asm/io.h)
$ git merge h8300/h8300-next
Merge made by the 'recursive' strategy.
Merging hexagon/linux-next (02cc2ccfe771 Revert "Hexagon: fix signal.c compile error")
$ git merge hexagon/linux-next
Already up-to-date.
Merging ia64/next (fbb0e4da96f4 ia64: salinfo: use a waitqueue instead a sema down/up combo)
$ git merge ia64/next
Already up-to-date.
Merging m68k/for-next (204a2be30a7a m68k: Remove ptrace_signal_deliver)
$ git merge m68k/for-next
Already up-to-date.
Merging m68knommu/for-next (354b6382847d m68k: defconfig: Cleanup from old Kconfig options)
$ git merge m68knommu/for-next
Already up-to-date.
Merging metag/for-next (e3cd7f013bac metag/mm: Drop pointless increment)
$ git merge metag/for-next
Already up-to-date.
Merging microblaze/next (14ef905bb2ee microblaze: Fix MSR flags when returning from exception)
$ git merge microblaze/next
Already up-to-date.
Merging mips/mips-for-linux-next (d40e0d4fb561 locking/qspinlock: Include linux/prefetch.h)
$ git merge mips/mips-for-linux-next
Resolved 'drivers/clk/Kconfig' using previous resolution.
Auto-merging drivers/clk/Makefile
Auto-merging drivers/clk/Kconfig
CONFLICT (content): Merge conflict in drivers/clk/Kconfig
Auto-merging arch/mips/kernel/module.c
Removing arch/mips/kernel/module-rela.c
Auto-merging arch/mips/generic/init.c
Auto-merging arch/mips/Kconfig
Auto-merging MAINTAINERS
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 4b3b14ac0f26] Merge remote-tracking branch 'mips/mips-for-linux-next'
$ git diff -M --stat --summary HEAD^..
 .../devicetree/bindings/clock/img,boston-clock.txt |  31 ++
 MAINTAINERS                                        |  16 +
 arch/mips/Kconfig                                  | 114 +++---
 arch/mips/Makefile                                 |   2 +-
 arch/mips/boot/dts/img/Makefile                    |   5 +-
 arch/mips/boot/dts/img/boston.dts                  | 224 +++++++++++
 arch/mips/boot/dts/mti/sead3.dts                   |  24 +-
 arch/mips/configs/ar7_defconfig                    |   6 -
 arch/mips/configs/ath79_defconfig                  |   2 -
 arch/mips/configs/bcm63xx_defconfig                |   7 -
 arch/mips/configs/bigsur_defconfig                 |   4 -
 arch/mips/configs/bmips_be_defconfig               |   1 -
 arch/mips/configs/capcella_defconfig               |   4 -
 arch/mips/configs/cavium_octeon_defconfig          |   1 -
 arch/mips/configs/ci20_defconfig                   |   1 -
 arch/mips/configs/cobalt_defconfig                 |   8 -
 arch/mips/configs/decstation_defconfig             |   1 -
 arch/mips/configs/e55_defconfig                    |   2 -
 arch/mips/configs/fuloong2e_defconfig              |  11 -
 arch/mips/configs/generic/board-boston.config      |  48 +++
 arch/mips/configs/gpr_defconfig                    |   8 -
 arch/mips/configs/ip22_defconfig                   |  11 -
 arch/mips/configs/ip27_defconfig                   |   5 -
 arch/mips/configs/ip28_defconfig                   |   5 -
 arch/mips/configs/ip32_defconfig                   |   8 -
 arch/mips/configs/jazz_defconfig                   |   6 -
 arch/mips/configs/jmr3927_defconfig                |   7 -
 arch/mips/configs/lasat_defconfig                  |   5 -
 arch/mips/configs/lemote2f_defconfig               |  12 -
 arch/mips/configs/loongson3_defconfig              |   3 -
 arch/mips/configs/malta_kvm_defconfig              |   1 -
 arch/mips/configs/malta_kvm_guest_defconfig        |   1 -
 arch/mips/configs/malta_qemu_32r6_defconfig        |   1 -
 arch/mips/configs/maltaaprp_defconfig              |   2 -
 arch/mips/configs/maltasmvp_defconfig              |   1 -
 arch/mips/configs/maltasmvp_eva_defconfig          |   2 -
 arch/mips/configs/maltaup_defconfig                |   2 -
 arch/mips/configs/markeins_defconfig               |   4 -
 arch/mips/configs/mips_paravirt_defconfig          |   1 -
 arch/mips/configs/mpc30x_defconfig                 |   5 -
 arch/mips/configs/msp71xx_defconfig                |   2 -
 arch/mips/configs/mtx1_defconfig                   |  11 -
 arch/mips/configs/nlm_xlp_defconfig                |   5 -
 arch/mips/configs/nlm_xlr_defconfig                |   9 -
 arch/mips/configs/pnx8335_stb225_defconfig         |   7 -
 arch/mips/configs/qi_lb60_defconfig                |   3 -
 arch/mips/configs/rb532_defconfig                  |   6 -
 arch/mips/configs/rbtx49xx_defconfig               |   7 -
 arch/mips/configs/rm200_defconfig                  |   8 -
 arch/mips/configs/rt305x_defconfig                 |   2 -
 arch/mips/configs/sb1250_swarm_defconfig           |   1 -
 arch/mips/configs/tb0219_defconfig                 |   6 -
 arch/mips/configs/tb0226_defconfig                 |   7 -
 arch/mips/configs/tb0287_defconfig                 |   5 -
 arch/mips/configs/workpad_defconfig                |   4 -
 arch/mips/generic/Kconfig                          |  20 +
 arch/mips/generic/Makefile                         |   1 +
 arch/mips/generic/board-sead3.c                    | 234 ++---------
 arch/mips/generic/init.c                           |  27 ++
 arch/mips/generic/vmlinux.its.S                    |  25 ++
 arch/mips/generic/yamon-dt.c                       | 240 ++++++++++++
 arch/mips/include/asm/Kbuild                       |   2 +
 arch/mips/include/asm/branch.h                     |   5 +-
 arch/mips/include/asm/cmpxchg.h                    | 280 ++++++--------
 arch/mips/include/asm/cpu-features.h               |  44 +++
 arch/mips/include/asm/cpu-type.h                   |   1 +
 arch/mips/include/asm/cpu.h                        |   9 +-
 arch/mips/include/asm/irq.h                        |   2 +-
 .../include/asm/mach-ath25/cpu-feature-overrides.h |   1 +
 .../asm/mach-au1x00/cpu-feature-overrides.h        |   1 +
 .../asm/mach-bcm63xx/cpu-feature-overrides.h       |   1 +
 .../asm/mach-cobalt/cpu-feature-overrides.h        |   1 +
 .../include/asm/mach-dec/cpu-feature-overrides.h   |   1 +
 arch/mips/include/asm/mach-generic/mc146818rtc.h   |   2 +-
 .../include/asm/mach-ip22/cpu-feature-overrides.h  |   1 +
 .../include/asm/mach-ip27/cpu-feature-overrides.h  |   1 +
 .../include/asm/mach-ip28/cpu-feature-overrides.h  |   1 +
 .../include/asm/mach-ip32/cpu-feature-overrides.h  |   1 +
 .../asm/mach-jz4740/cpu-feature-overrides.h        |   1 +
 arch/mips/include/asm/mach-loongson64/boot_param.h |  22 +-
 .../asm/mach-loongson64/cpu-feature-overrides.h    |   1 +
 .../asm/mach-netlogic/cpu-feature-overrides.h      |   1 +
 .../asm/mach-rc32434/cpu-feature-overrides.h       |   1 +
 .../include/asm/mach-rm/cpu-feature-overrides.h    |   1 +
 .../asm/mach-sibyte/cpu-feature-overrides.h        |   1 +
 .../asm/mach-tx49xx/cpu-feature-overrides.h        |   1 +
 arch/mips/include/asm/machine.h                    |  31 ++
 arch/mips/include/asm/mipsregs.h                   |   1 +
 arch/mips/include/asm/module.h                     |   8 +-
 arch/mips/include/asm/spinlock.h                   | 426 +--------------------
 arch/mips/include/asm/spinlock_types.h             |  34 +-
 arch/mips/include/asm/syscall.h                    |   2 +-
 arch/mips/include/asm/uasm.h                       |  30 ++
 arch/mips/include/asm/vdso.h                       |   4 +-
 arch/mips/include/asm/yamon-dt.h                   |  64 ++++
 arch/mips/include/uapi/asm/inst.h                  |  20 +-
 arch/mips/kernel/Makefile                          |   3 +-
 arch/mips/kernel/branch.c                          |  73 ++--
 arch/mips/kernel/cmpxchg.c                         | 109 ++++++
 arch/mips/kernel/cps-vec.S                         |   7 +-
 arch/mips/kernel/cpu-probe.c                       |  24 ++
 arch/mips/kernel/mips-cm.c                         |  40 +-
 arch/mips/kernel/module-rela.c                     | 202 ----------
 arch/mips/kernel/module.c                          | 221 ++++++++---
 arch/mips/kernel/perf_event_mipsxx.c               |  14 +-
 arch/mips/kernel/proc.c                            |   3 +-
 arch/mips/kernel/ptrace.c                          |  31 +-
 arch/mips/kernel/scall32-o32.S                     |   2 +-
 arch/mips/kernel/scall64-64.S                      |   2 +-
 arch/mips/kernel/scall64-n32.S                     |   2 +-
 arch/mips/kernel/scall64-o32.S                     |   2 +-
 arch/mips/kernel/setup.c                           |  40 ++
 arch/mips/kernel/smp-cps.c                         |  35 +-
 arch/mips/kernel/smp.c                             |   3 +
 arch/mips/kernel/syscall.c                         |  19 +-
 arch/mips/kernel/unaligned.c                       | 213 +++++++----
 arch/mips/lib/memcpy.S                             |   3 +
 arch/mips/loongson64/common/env.c                  |  12 +-
 arch/mips/loongson64/common/init.c                 |  13 +
 arch/mips/loongson64/loongson-3/irq.c              |  58 ++-
 arch/mips/loongson64/loongson-3/smp.c              |  23 +-
 arch/mips/math-emu/cp1emu.c                        |  43 ++-
 arch/mips/mm/c-r4k.c                               |   2 +
 arch/mips/mm/tlbex.c                               |  41 +-
 arch/mips/mm/uasm-micromips.c                      | 188 +++++----
 arch/mips/mm/uasm-mips.c                           | 238 ++++++------
 arch/mips/mm/uasm.c                                |  61 ++-
 arch/mips/net/Makefile                             |   3 +-
 arch/mips/vdso/gettimeofday.c                      |  59 ++-
 drivers/clk/Kconfig                                |   1 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/imgtec/Kconfig                         |   9 +
 drivers/clk/imgtec/Makefile                        |   1 +
 drivers/clk/imgtec/clk-boston.c                    | 103 +++++
 drivers/platform/mips/cpu_hwmon.c                  | 136 +++----
 include/dt-bindings/clock/boston-clock.h           |  14 +
 136 files changed, 2453 insertions(+), 1836 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/img,boston-clock.txt
 create mode 100644 arch/mips/boot/dts/img/boston.dts
 create mode 100644 arch/mips/configs/generic/board-boston.config
 create mode 100644 arch/mips/generic/yamon-dt.c
 create mode 100644 arch/mips/include/asm/yamon-dt.h
 create mode 100644 arch/mips/kernel/cmpxchg.c
 delete mode 100644 arch/mips/kernel/module-rela.c
 create mode 100644 drivers/clk/imgtec/Kconfig
 create mode 100644 drivers/clk/imgtec/Makefile
 create mode 100644 drivers/clk/imgtec/clk-boston.c
 create mode 100644 include/dt-bindings/clock/boston-clock.h
Merging nios2/for-next (e118c3fec9c0 nios2: remove custom early console implementation)
$ git merge nios2/for-next
Already up-to-date.
Merging openrisc/for-next (9d15eb228b10 openrisc: defconfig: Cleanup from old Kconfig options)
$ git merge openrisc/for-next
Merge made by the 'recursive' strategy.
Merging parisc-hd/for-next (6f7da290413b Linux 4.12)
$ git merge parisc-hd/for-next
Already up-to-date.
Merging powerpc/next (1e0fc9d1eb2b powerpc/Kconfig: Enable STRICT_KERNEL_RWX for some configs)
$ git merge powerpc/next
Already up-to-date.
Merging fsl/next (61baf1555512 powerpc/64e: Don't place the stack beyond TASK_SIZE)
$ git merge fsl/next
Already up-to-date.
Merging mpc5xxx/next (39e69f55f857 powerpc: Introduce the use of the managed version of kzalloc)
$ git merge mpc5xxx/next
Already up-to-date.
Merging s390/features (0c6b2975a9a7 Update my email address)
$ git merge s390/features
Already up-to-date.
Merging sparc-next/master (f263fbb8d608 Merge tag 'pci-v4.13-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci)
$ git merge sparc-next/master
Already up-to-date.
Merging sh/for-next (6e2fbfdd585f sh: fix futex FUTEX_OP_SET op on userspace addresses)
$ git merge sh/for-next
Merge made by the 'recursive' strategy.
 arch/sh/include/asm/futex.h | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
Merging tile/master (0af0bc38175d mm, tile: drop arch_{add,remove}_memory)
$ git merge tile/master
Merge made by the 'recursive' strategy.
 arch/tile/include/uapi/arch/abi.h    | 49 +++----------------------
 arch/tile/include/uapi/arch/intreg.h | 70 ++++++++++++++++++++++++++++++++++++
 arch/tile/mm/init.c                  | 30 ----------------
 3 files changed, 74 insertions(+), 75 deletions(-)
 create mode 100644 arch/tile/include/uapi/arch/intreg.h
Merging uml/linux-next (61e8d462457f um: Correctly check for PTRACE_GETRESET/SETREGSET)
$ git merge uml/linux-next
Auto-merging arch/um/kernel/um_arch.c
Merge made by the 'recursive' strategy.
 arch/um/Makefile                        |  4 ++++
 arch/um/drivers/stdio_console.c         |  3 +++
 arch/um/include/asm/common.lds.S        |  2 +-
 arch/um/include/asm/io.h                | 17 ++++++++++++++
 arch/um/include/shared/os.h             |  4 ++++
 arch/um/include/shared/skas/stub-data.h |  2 --
 arch/um/kernel/physmem.c                | 10 ++++----
 arch/um/kernel/trap.c                   | 10 ++++++++
 arch/um/kernel/um_arch.c                | 16 +++++++------
 arch/um/kernel/umid.c                   |  4 ++--
 arch/um/os-Linux/execvp.c               |  2 +-
 arch/um/os-Linux/main.c                 |  9 ++++----
 arch/um/os-Linux/mem.c                  | 28 +++++++++++-----------
 arch/um/os-Linux/skas/process.c         | 41 ++++++++++++++++++++++++++++++---
 arch/um/os-Linux/start_up.c             | 28 +++++++++++-----------
 arch/um/os-Linux/umid.c                 | 19 ++++++++-------
 arch/um/os-Linux/util.c                 | 34 +++++++++++++++++++++++++++
 arch/x86/um/os-Linux/registers.c        | 12 ++++++----
 arch/x86/um/setjmp_32.S                 | 16 ++++++-------
 arch/x86/um/setjmp_64.S                 | 16 ++++++-------
 arch/x86/um/user-offsets.c              |  6 ++++-
 21 files changed, 201 insertions(+), 82 deletions(-)
 create mode 100644 arch/um/include/asm/io.h
Merging unicore32/unicore32 (bc27113620ca unicore32-oldabi: add oldabi syscall interface)
$ git merge unicore32/unicore32
Resolved 'arch/unicore32/include/asm/Kbuild' using previous resolution.
Auto-merging arch/unicore32/include/asm/Kbuild
CONFLICT (content): Merge conflict in arch/unicore32/include/asm/Kbuild
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 4836a40ae3f8] Merge remote-tracking branch 'unicore32/unicore32'
$ git diff -M --stat --summary HEAD^..
 arch/unicore32/Kconfig                          |  14 +
 arch/unicore32/include/asm/Kbuild               |   1 -
 arch/unicore32/include/asm/signal.h             |  21 +
 arch/unicore32/include/asm/syscalls.h           |  25 +
 arch/unicore32/include/uapi/asm/sigcontext.h    |  14 +
 arch/unicore32/include/uapi/asm/stat-oldabi.h   |  71 +++
 arch/unicore32/include/uapi/asm/stat.h          |  19 +
 arch/unicore32/include/uapi/asm/unistd-oldabi.h | 770 ++++++++++++++++++++++++
 arch/unicore32/include/uapi/asm/unistd.h        |   8 +
 arch/unicore32/kernel/entry.S                   |  17 +
 arch/unicore32/kernel/signal.c                  |  41 ++
 11 files changed, 1000 insertions(+), 1 deletion(-)
 create mode 100644 arch/unicore32/include/asm/signal.h
 create mode 100644 arch/unicore32/include/asm/syscalls.h
 create mode 100644 arch/unicore32/include/uapi/asm/stat-oldabi.h
 create mode 100644 arch/unicore32/include/uapi/asm/stat.h
 create mode 100644 arch/unicore32/include/uapi/asm/unistd-oldabi.h
Merging xtensa/xtensa-for-next (bdf3b55fde37 Merge branch 'xtensa-fixes' into xtensa-for-next)
$ git merge xtensa/xtensa-for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging fscrypt/master (c250b7dd8e73 fscrypt: make ->dummy_context() return bool)
$ git merge fscrypt/master
Already up-to-date.
Merging befs/for-next (799ce1dbb9bb befs: add kernel-doc formatting for befs_bt_read_super())
$ git merge befs/for-next
Merge made by the 'recursive' strategy.
 fs/befs/btree.c | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)
Merging btrfs/next (8b8b08cbfb90 Btrfs: fix delalloc accounting after copy_from_user faults)
$ git merge btrfs/next
Already up-to-date.
Merging btrfs-kdave/for-next (848c23b78faf btrfs: Remove false alert when fiemap range is smaller than on-disk extent)
$ git merge btrfs-kdave/for-next
Already up-to-date.
Merging ceph/master (33e9c8dbfbce libceph: advertise support for NEW_OSDOP_ENCODING and SERVER_LUMINOUS)
$ git merge ceph/master
Already up-to-date.
Merging cifs/for-next (68a6afa7fad2 cifs: Clean up unused variables in smb2pdu.c)
$ git merge cifs/for-next
Already up-to-date.
Merging configfs/for-next (19e72d3abb63 configfs: Introduce config_item_get_unless_zero())
$ git merge configfs/for-next
Already up-to-date.
Merging ecryptfs/next (be280b25c328 ecryptfs: remove private bin2hex implementation)
$ git merge ecryptfs/next
Auto-merging fs/ecryptfs/main.c
Auto-merging fs/ecryptfs/ecryptfs_kernel.h
Merge made by the 'recursive' strategy.
 fs/ecryptfs/crypto.c          | 15 ---------------
 fs/ecryptfs/ecryptfs_kernel.h |  9 ++++++++-
 fs/ecryptfs/keystore.c        |  2 +-
 fs/ecryptfs/main.c            |  2 +-
 fs/ecryptfs/miscdev.c         |  2 +-
 5 files changed, 11 insertions(+), 19 deletions(-)
Merging ext3/for_next (08db141b5313 reiserfs: fix race in prealloc discard)
$ git merge ext3/for_next
Merge made by the 'recursive' strategy.
 fs/reiserfs/bitmap.c | 14 ++++++--
 fs/udf/file.c        | 12 +++++--
 fs/udf/inode.c       |  4 +--
 fs/udf/super.c       |  2 --
 fs/udf/udftime.c     | 98 +++++++---------------------------------------------
 5 files changed, 35 insertions(+), 95 deletions(-)
Merging ext4/dev (ff95015648df ext4: fix spelling mistake: "prellocated" -> "preallocated")
$ git merge ext4/dev
Already up-to-date.
Merging f2fs/dev (07d306c838c5 Merge git://www.linux-watchdog.org/linux-watchdog)
$ git merge f2fs/dev
Already up-to-date.
Merging freevxfs/for-next (bf1bb4b460c8 freevxfs: update Kconfig information)
$ git merge freevxfs/for-next
Already up-to-date.
Merging fscache/fscache (d52bd54db8be Merge branch 'akpm' (patches from Andrew))
$ git merge fscache/fscache
Already up-to-date.
Merging fuse/for-next (68227c03cba8 fuse: initialize the flock flag in fuse_file on allocation)
$ git merge fuse/for-next
Merge made by the 'recursive' strategy.
 fs/fuse/file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging jfs/jfs-next (684666e51585 jfs: atomically read inode size)
$ git merge jfs/jfs-next
Auto-merging fs/jfs/super.c
Merge made by the 'recursive' strategy.
 fs/jfs/resize.c | 4 ++--
 fs/jfs/super.c  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
Merging nfs/linux-next (6f7da290413b Linux 4.12)
$ git merge nfs/linux-next
Already up-to-date.
Merging nfsd/nfsd-next (bb2a8b0cd116 nfsd4: const-ify nfsd4_ops)
$ git merge nfsd/nfsd-next
Auto-merging include/linux/sunrpc/svc.h
Auto-merging include/linux/sunrpc/sched.h
Auto-merging fs/nfsd/nfsxdr.c
Auto-merging fs/nfsd/nfs4proc.c
Auto-merging fs/nfsd/nfs3xdr.c
Auto-merging fs/nfs/internal.h
Auto-merging fs/nfs/callback_xdr.c
Merge made by the 'recursive' strategy.
 fs/lockd/clnt4xdr.c                  |  34 ++-
 fs/lockd/clntxdr.c                   |  58 +++--
 fs/lockd/mon.c                       |  38 ++--
 fs/lockd/svc.c                       |  38 ++--
 fs/lockd/svc4proc.c                  | 124 +++++++----
 fs/lockd/svcproc.c                   | 124 +++++++----
 fs/lockd/xdr.c                       |  43 ++--
 fs/lockd/xdr4.c                      |  43 ++--
 fs/nfs/callback.c                    |   2 +-
 fs/nfs/callback.h                    |  27 +--
 fs/nfs/callback_proc.c               |  33 ++-
 fs/nfs/callback_xdr.c                | 113 +++++-----
 fs/nfs/internal.h                    |  10 +-
 fs/nfs/mount_clnt.c                  |  29 ++-
 fs/nfs/nfs2xdr.c                     |  70 ++++--
 fs/nfs/nfs3xdr.c                     | 151 ++++++++-----
 fs/nfs/nfs42xdr.c                    |  52 +++--
 fs/nfs/nfs4_fs.h                     |   6 +-
 fs/nfs/nfs4xdr.c                     | 331 ++++++++++++++++++----------
 fs/nfsd/current_stateid.h            |  36 ++-
 fs/nfsd/nfs2acl.c                    | 116 +++++-----
 fs/nfsd/nfs3acl.c                    |  75 ++++---
 fs/nfsd/nfs3proc.c                   | 301 +++++++++++++------------
 fs/nfsd/nfs3xdr.c                    | 164 ++++++++------
 fs/nfsd/nfs4callback.c               |  32 ++-
 fs/nfsd/nfs4proc.c                   | 412 ++++++++++++++++++-----------------
 fs/nfsd/nfs4state.c                  | 142 +++++++-----
 fs/nfsd/nfs4xdr.c                    |  13 +-
 fs/nfsd/nfsd.h                       |   6 +-
 fs/nfsd/nfsproc.c                    | 206 +++++++++---------
 fs/nfsd/nfssvc.c                     |  24 +-
 fs/nfsd/nfsxdr.c                     |  92 ++++----
 fs/nfsd/xdr.h                        |  50 ++---
 fs/nfsd/xdr3.h                       | 100 +++------
 fs/nfsd/xdr4.h                       |  78 +++----
 include/linux/lockd/lockd.h          |   4 +-
 include/linux/lockd/xdr.h            |  26 +--
 include/linux/lockd/xdr4.h           |  26 +--
 include/linux/sunrpc/clnt.h          |   6 +-
 include/linux/sunrpc/sched.h         |   2 +-
 include/linux/sunrpc/svc.h           |  21 +-
 include/linux/sunrpc/xdr.h           |  15 +-
 net/sunrpc/auth_gss/gss_rpc_upcall.c |   9 +-
 net/sunrpc/auth_gss/gss_rpc_xdr.c    |  14 +-
 net/sunrpc/auth_gss/gss_rpc_xdr.h    |   4 +-
 net/sunrpc/clnt.c                    |  16 +-
 net/sunrpc/rpcb_clnt.c               |  82 ++++---
 net/sunrpc/stats.c                   |  16 +-
 net/sunrpc/svc.c                     |  33 +--
 49 files changed, 1956 insertions(+), 1491 deletions(-)
Merging orangefs/for-next (2f713b5c7d2a orangefs: count directory pieces correctly)
$ git merge orangefs/for-next
Already up-to-date.
Merging overlayfs/overlayfs-next (f4439de11828 ovl: mark parent impure and restore timestamp on ovl_link_up())
$ git merge overlayfs/overlayfs-next
Auto-merging include/linux/fs.h
Merge made by the 'recursive' strategy.
 Documentation/filesystems/overlayfs.txt |  34 +++
 fs/overlayfs/Kconfig                    |  20 ++
 fs/overlayfs/copy_up.c                  | 410 +++++++++++++++++++++-----------
 fs/overlayfs/dir.c                      |  52 +++-
 fs/overlayfs/inode.c                    | 215 +++++++++++++++--
 fs/overlayfs/namei.c                    | 368 +++++++++++++++++++++++-----
 fs/overlayfs/overlayfs.h                |  58 +++--
 fs/overlayfs/ovl_entry.h                |  36 ++-
 fs/overlayfs/readdir.c                  |  50 ++++
 fs/overlayfs/super.c                    | 247 ++++++++++++++++---
 fs/overlayfs/util.c                     | 345 ++++++++++++++++++++-------
 include/linux/fs.h                      |   4 +
 12 files changed, 1456 insertions(+), 383 deletions(-)
Merging v9fs/for-next (a333e4bf2556 fs/9p: use fscache mutex rather than spinlock)
$ git merge v9fs/for-next
Already up-to-date.
Merging ubifs/linux-next (af65936a7a5b ubifs: don't bother checking for encryption key in ->mmap())
$ git merge ubifs/linux-next
Merge made by the 'recursive' strategy.
 fs/ubifs/file.c | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)
Merging xfs/for-next (cd87d8679201 xfs: don't crash on unexpected holes in dir/attr btrees)
$ git merge xfs/for-next
Already up-to-date.
Merging file-locks/linux-next (cee37d83e6d9 Merge branch 'work.read_write' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge file-locks/linux-next
Already up-to-date.
Merging vfs/for-next (d025041e1ab4 Merge branches 'work.misc', 'misc.compat', 'work.uaccess-unaligned', 'work.mount' and 'work.__copy_to_user' into for-next)
$ git merge vfs/for-next
Resolved 'fs/hugetlbfs/inode.c' using previous resolution.
Auto-merging include/linux/hugetlb.h
Auto-merging include/linux/fs.h
Removing include/asm-generic/uaccess-unaligned.h
Auto-merging fs/hugetlbfs/inode.c
CONFLICT (content): Merge conflict in fs/hugetlbfs/inode.c
Auto-merging fs/dcache.c
Auto-merging fs/afs/super.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 545ae7d4c3f9] Merge remote-tracking branch 'vfs/for-next'
$ git diff -M --stat --summary HEAD^..
 Documentation/filesystems/vfs.txt         |   6 -
 arch/arm/include/asm/flat.h               |  25 ++-
 arch/arm/include/asm/uaccess.h            |   7 -
 arch/arm64/include/asm/uaccess.h          |   4 -
 arch/blackfin/include/asm/flat.h          |  25 +--
 arch/blackfin/kernel/flat.c               |  13 +-
 arch/c6x/include/asm/flat.h               |  15 +-
 arch/h8300/include/asm/flat.h             |  24 ++-
 arch/ia64/include/asm/uaccess.h           |  36 ----
 arch/m32r/include/asm/flat.h              |  19 +-
 arch/m68k/include/asm/flat.h              |  23 ++-
 arch/m68k/include/asm/uaccess.h           |   7 -
 arch/microblaze/include/asm/flat.h        |  34 ++--
 arch/mips/include/asm/uaccess.h           | 277 ------------------------------
 arch/parisc/include/asm/uaccess.h         |   1 -
 arch/powerpc/include/asm/uaccess.h        |   3 -
 arch/powerpc/platforms/cell/spufs/inode.c |  22 ++-
 arch/s390/include/asm/compat.h            |   5 +-
 arch/s390/include/asm/uaccess.h           |   3 -
 arch/sh/include/asm/flat.h                |  15 +-
 arch/sparc/include/asm/uaccess_64.h       |   1 -
 arch/tile/include/asm/uaccess.h           |   1 -
 arch/x86/include/asm/uaccess.h            |   3 -
 arch/xtensa/include/asm/flat.h            |  15 +-
 drivers/gpu/drm/drm_dp_aux_dev.c          | 109 +++++-------
 fs/9p/v9fs.c                              |  61 +++++++
 fs/9p/v9fs.h                              |   3 +
 fs/9p/vfs_super.c                         |   6 +-
 fs/affs/super.c                           |  42 ++++-
 fs/afs/super.c                            |  45 ++++-
 fs/befs/linuxvfs.c                        |  24 ++-
 fs/binfmt_flat.c                          |  39 +++--
 fs/btrfs/super.c                          |   1 -
 fs/dcache.c                               |   8 +-
 fs/debugfs/inode.c                        |   2 -
 fs/efivarfs/super.c                       |   1 -
 fs/filesystems.c                          |   3 +-
 fs/gfs2/dir.c                             |   3 +-
 fs/hugetlbfs/inode.c                      |  70 ++++++--
 fs/isofs/inode.c                          |  51 +++++-
 fs/isofs/isofs.h                          |   3 +
 fs/namei.c                                |   3 +-
 fs/namespace.c                            |  63 +------
 fs/nsfs.c                                 |   3 +-
 fs/omfs/inode.c                           |  33 +++-
 fs/orangefs/super.c                       |  15 +-
 fs/pipe.c                                 |   3 +-
 fs/pstore/inode.c                         |  14 +-
 fs/pstore/internal.h                      |   3 +
 fs/pstore/platform.c                      |   2 +-
 fs/ramfs/inode.c                          |  32 ++--
 fs/reiserfs/super.c                       |   4 -
 fs/super.c                                |   5 +-
 fs/tracefs/inode.c                        |   2 -
 include/asm-generic/uaccess-unaligned.h   |  26 ---
 include/linux/compat.h                    |   2 +-
 include/linux/dcache.h                    |   5 +
 include/linux/flat.h                      |   2 +-
 include/linux/fs.h                        |  11 +-
 include/linux/hugetlb.h                   |   3 +
 include/linux/string.h                    |   1 +
 include/linux/syscalls.h                  |   9 +-
 include/net/9p/client.h                   |  13 ++
 include/net/9p/transport.h                |   1 +
 kernel/bpf/inode.c                        |  16 +-
 mm/util.c                                 |  24 +++
 net/9p/client.c                           |  25 +++
 net/9p/trans_fd.c                         |  31 +++-
 net/9p/trans_rdma.c                       |  31 +++-
 net/compat.c                              |  49 +++---
 net/socket.c                              |  31 ++--
 71 files changed, 791 insertions(+), 726 deletions(-)
 delete mode 100644 include/asm-generic/uaccess-unaligned.h
Merging vfs-jk/vfs (030b533c4fd4 fs: Avoid premature clearing of capabilities)
$ git merge vfs-jk/vfs
Already up-to-date.
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 (f4e981cba2de printk: add __printf attributes to internal functions)
$ git merge printk/for-next
Already up-to-date.
Merging pci/next (af3c8d98508d Merge tag 'drm-for-v4.13' of git://people.freedesktop.org/~airlied/linux)
$ git merge pci/next
Already up-to-date.
Merging pstore/for-next/pstore (0752e4028c00 powerpc/nvram: use memdup_user)
$ git merge pstore/for-next/pstore
Already up-to-date.
Merging hid/for-next (8b454744e88d Merge branch 'for-4.13/ish' into for-next)
$ git merge hid/for-next
Resolved 'drivers/hid/hid-core.c' using previous resolution.
Auto-merging drivers/hid/hid-core.c
CONFLICT (content): Merge conflict in drivers/hid/hid-core.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 68608145c22a] Merge remote-tracking branch 'hid/for-next'
$ git diff -M --stat --summary HEAD^..
 drivers/hid/hid-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging i2c/i2c/for-next (edc638be476a Revert "i2c: core: Allow empty id_table in ACPI case as well")
$ git merge i2c/i2c/for-next
Removing include/linux/i2c/i2c-sh_mobile.h
Auto-merging drivers/i2c/i2c-core-base.c
Auto-merging drivers/i2c/busses/i2c-designware-master.c
Auto-merging MAINTAINERS
Auto-merging Documentation/driver-api/i2c.rst
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/i2c/i2c-aspeed.txt         |   48 +
 .../devicetree/bindings/i2c/i2c-designware.txt     |   16 +-
 .../devicetree/bindings/i2c/i2c-pca-platform.txt   |   29 +
 .../devicetree/bindings/i2c/i2c-zx2967.txt         |   22 +
 Documentation/driver-api/i2c.rst                   |    5 +-
 Documentation/i2c/busses/i2c-i801                  |    2 +
 Documentation/i2c/dev-interface                    |   14 +-
 MAINTAINERS                                        |   13 +
 drivers/i2c/Makefile                               |    7 +-
 drivers/i2c/algos/i2c-algo-bit.c                   |   13 +-
 drivers/i2c/busses/Kconfig                         |   34 +-
 drivers/i2c/busses/Makefile                        |    6 +
 drivers/i2c/busses/i2c-aspeed.c                    |  891 +++++++++++
 drivers/i2c/busses/i2c-at91.c                      |   16 +-
 drivers/i2c/busses/i2c-cadence.c                   |    6 +-
 drivers/i2c/busses/i2c-designware-common.c         |  281 ++++
 drivers/i2c/busses/i2c-designware-core.h           |  182 ++-
 ...c-designware-core.c => i2c-designware-master.c} |  474 +-----
 drivers/i2c/busses/i2c-designware-pcidrv.c         |    9 +-
 drivers/i2c/busses/i2c-designware-platdrv.c        |  117 +-
 drivers/i2c/busses/i2c-designware-slave.c          |  393 +++++
 drivers/i2c/busses/i2c-emev2.c                     |    4 +-
 drivers/i2c/busses/i2c-i801.c                      |    8 +
 drivers/i2c/busses/i2c-mxs.c                       |    6 +-
 drivers/i2c/busses/i2c-pca-platform.c              |  133 +-
 drivers/i2c/busses/i2c-rcar.c                      |    9 +-
 drivers/i2c/busses/i2c-sh_mobile.c                 |   27 +-
 drivers/i2c/busses/i2c-xgene-slimpro.c             |  242 ++-
 drivers/i2c/busses/i2c-xlp9xx.c                    |    1 +
 drivers/i2c/busses/i2c-zx2967.c                    |  609 +++++++
 drivers/i2c/i2c-core-acpi.c                        |  665 ++++++++
 drivers/i2c/{i2c-core.c => i2c-core-base.c}        | 1684 +-------------------
 drivers/i2c/i2c-core-of.c                          |  276 ++++
 drivers/i2c/i2c-core-slave.c                       |  115 ++
 drivers/i2c/i2c-core-smbus.c                       |  594 +++++++
 drivers/i2c/i2c-core.h                             |   24 +
 drivers/i2c/i2c-stub.c                             |   14 +-
 include/linux/i2c.h                                |    2 +
 include/linux/i2c/i2c-sh_mobile.h                  |   11 -
 include/trace/events/i2c.h                         |  226 +--
 include/trace/events/smbus.h                       |  249 +++
 41 files changed, 4969 insertions(+), 2508 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-pca-platform.txt
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
 create mode 100644 drivers/i2c/busses/i2c-aspeed.c
 create mode 100644 drivers/i2c/busses/i2c-designware-common.c
 rename drivers/i2c/busses/{i2c-designware-core.c => i2c-designware-master.c} (59%)
 create mode 100644 drivers/i2c/busses/i2c-designware-slave.c
 create mode 100644 drivers/i2c/busses/i2c-zx2967.c
 create mode 100644 drivers/i2c/i2c-core-acpi.c
 rename drivers/i2c/{i2c-core.c => i2c-core-base.c} (58%)
 create mode 100644 drivers/i2c/i2c-core-of.c
 create mode 100644 drivers/i2c/i2c-core-slave.c
 create mode 100644 drivers/i2c/i2c-core-smbus.c
 delete mode 100644 include/linux/i2c/i2c-sh_mobile.h
 create mode 100644 include/trace/events/smbus.h
Merging jdelvare-hwmon/master (08d27eb20666 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge jdelvare-hwmon/master
Already up-to-date.
Merging dmi/master (8efa050f19fe firmware: dmi_scan: Check DMI structure length)
$ git merge dmi/master
Merge made by the 'recursive' strategy.
Merging hwmon-staging/hwmon-next (44b413661b57 hwmon: (aspeed-pwm-tacho) Poll with short sleeps.)
$ git merge hwmon-staging/hwmon-next
Already up-to-date.
Merging jc_docs/docs-next (ecebcd4da6cd docs: Do not include from kernel/rcu/srcu.c)
$ git merge jc_docs/docs-next
Merge made by the 'recursive' strategy.
 Documentation/driver-api/basics.rst | 3 ---
 1 file changed, 3 deletions(-)
Merging v4l-dvb/master (2748e76ddb29 media: staging: cxd2099: Activate cxd2099 buffer mode)
$ git merge v4l-dvb/master
Merge made by the 'recursive' strategy.
 Documentation/media/kapi/dtv-core.rst             | 443 +++++++++++++++++++++-
 Documentation/media/uapi/v4l/vidioc-g-fmt.rst     |   6 +
 Documentation/media/v4l-drivers/imx.rst           |   7 +-
 Documentation/media/v4l-drivers/index.rst         |   1 +
 drivers/media/dvb-core/dvb_ca_en50221.c           | 143 ++++---
 drivers/media/dvb-core/dvb_ca_en50221.h           |   7 +
 drivers/media/dvb-frontends/cxd2841er.c           |   5 +-
 drivers/media/dvb-frontends/drx39xyj/drx_driver.h |  15 +-
 drivers/media/dvb-frontends/lnbh25.c              |   6 +-
 drivers/media/dvb-frontends/stv0367.c             | 210 ++++++++--
 drivers/media/i2c/et8ek8/et8ek8_driver.c          |   1 -
 drivers/media/i2c/tvp5150.c                       |  25 +-
 drivers/media/pci/ddbridge/ddbridge-core.c        | 102 +++--
 drivers/media/pci/ngene/ngene-core.c              |  32 +-
 drivers/media/pci/ngene/ngene-i2c.c               |   6 +-
 drivers/media/pci/ngene/ngene.h                   |   6 +-
 drivers/media/pci/tw5864/tw5864-video.c           |   1 +
 drivers/media/platform/coda/coda-bit.c            |   8 +-
 drivers/media/platform/coda/coda-common.c         |   4 +-
 drivers/media/platform/coda/coda.h                |   2 +-
 drivers/media/platform/omap/omap_vout_vrfb.c      | 133 ++++---
 drivers/media/platform/omap/omap_voutdef.h        |   6 +-
 drivers/media/platform/qcom/venus/core.c          |   2 +-
 drivers/media/platform/sti/bdisp/bdisp-debug.c    |  14 +-
 drivers/media/radio/radio-wl1273.c                |  15 +-
 drivers/media/tuners/fc0011.c                     |   1 +
 drivers/media/tuners/mxl5005s.c                   |   2 -
 drivers/media/usb/au0828/au0828-input.c           |   2 +-
 drivers/media/usb/dvb-usb-v2/lmedm04.c            |  10 +-
 drivers/media/usb/dvb-usb/dib0700_core.c          |  38 +-
 drivers/media/usb/em28xx/em28xx-cards.c           |  18 +
 drivers/media/usb/em28xx/em28xx-dvb.c             |   1 +
 drivers/media/usb/em28xx/em28xx-i2c.c             |   2 -
 drivers/media/usb/em28xx/em28xx-input.c           |   2 +-
 drivers/media/usb/em28xx/em28xx.h                 |   1 +
 drivers/media/usb/rainshadow-cec/rainshadow-cec.c |  18 +-
 drivers/media/usb/stkwebcam/stk-sensor.c          |  32 +-
 drivers/media/usb/stkwebcam/stk-webcam.c          |  70 ++--
 drivers/media/usb/stkwebcam/stk-webcam.h          |   6 -
 drivers/media/v4l2-core/tuner-core.c              |   2 -
 drivers/staging/media/cxd2099/cxd2099.c           | 165 +++++---
 drivers/staging/media/cxd2099/cxd2099.h           |   6 +-
 42 files changed, 1167 insertions(+), 409 deletions(-)
Merging v4l-dvb-next/master (d9c4615854ec [media] dvb uapi docs: enums are passed by value, not reference)
$ git merge v4l-dvb-next/master
Resolved 'Documentation/media/uapi/dvb/fe-diseqc-send-burst.rst' using previous resolution.
Resolved 'Documentation/media/uapi/dvb/fe-set-tone.rst' using previous resolution.
Resolved 'Documentation/media/uapi/dvb/fe-set-voltage.rst' using previous resolution.
Auto-merging Documentation/media/uapi/dvb/fe-set-voltage.rst
CONFLICT (content): Merge conflict in Documentation/media/uapi/dvb/fe-set-voltage.rst
Auto-merging Documentation/media/uapi/dvb/fe-set-tone.rst
CONFLICT (content): Merge conflict in Documentation/media/uapi/dvb/fe-set-tone.rst
Auto-merging Documentation/media/uapi/dvb/fe-diseqc-send-burst.rst
CONFLICT (content): Merge conflict in Documentation/media/uapi/dvb/fe-diseqc-send-burst.rst
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master eb4057bdf923] Merge remote-tracking branch 'v4l-dvb-next/master'
$ git diff -M --stat --summary HEAD^..
Merging fbdev/fbdev-for-next (360772f26407 video: fbdev: matrox: the list iterator can't be NULL)
$ git merge fbdev/fbdev-for-next
Merge made by the 'recursive' strategy.
 drivers/video/console/mdacon.c                     |  89 +++++++------
 drivers/video/fbdev/aty/atyfb_base.c               |   6 -
 drivers/video/fbdev/fsl-diu-fb.c                   |   4 +-
 drivers/video/fbdev/matrox/matroxfb_base.c         |   2 +-
 drivers/video/fbdev/omap/omapfb_main.c             |   8 +-
 .../fbdev/omap2/omapfb/displays/panel-dsi-cm.c     |   4 +-
 .../video/fbdev/omap2/omapfb/dss/manager-sysfs.c   |  14 +-
 drivers/video/fbdev/pxafb.c                        |   5 +-
 drivers/video/fbdev/sh_mobile_lcdcfb.c             |   2 +-
 drivers/video/fbdev/uvesafb.c                      | 148 +++++++++------------
 drivers/video/fbdev/vermilion/cr_pll.c             |   1 +
 11 files changed, 132 insertions(+), 151 deletions(-)
Merging pm/linux-next (9f11765f6370 Merge branches 'pm-domains', 'pm-sleep' and 'pm-cpufreq' into linux-next)
$ git merge pm/linux-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging idle/next (306899f94804 x86 tsc: Add the Intel Denverton Processor to native_calibrate_tsc())
$ git merge idle/next
Merge made by the 'recursive' strategy.
Merging thermal/next (5d72ed35678a Merge branches 'thermal-core', 'thermal-intel' and 'thermal-soc' into next)
$ git merge thermal/next
Auto-merging include/linux/cpufreq.h
Auto-merging drivers/cpufreq/cpufreq_stats.c
Merge made by the 'recursive' strategy.
 drivers/cpufreq/arm_big_little.c                   |   2 +-
 drivers/cpufreq/cpufreq-dt.c                       |   2 +-
 drivers/cpufreq/cpufreq_stats.c                    |  13 +-
 drivers/cpufreq/dbx500-cpufreq.c                   |   2 +-
 drivers/cpufreq/mt8173-cpufreq.c                   |   4 +-
 drivers/cpufreq/qoriq-cpufreq.c                    |   3 +-
 drivers/thermal/broadcom/bcm2835_thermal.c         |   1 -
 drivers/thermal/cpu_cooling.c                      | 609 +++++++++------------
 drivers/thermal/fair_share.c                       |   1 +
 drivers/thermal/hisi_thermal.c                     |   5 +-
 drivers/thermal/imx_thermal.c                      |  27 +-
 drivers/thermal/int340x_thermal/acpi_thermal_rel.c |   6 +-
 drivers/thermal/int340x_thermal/int3403_thermal.c  |  12 +-
 drivers/thermal/step_wise.c                        |   3 +-
 drivers/thermal/ti-soc-thermal/ti-thermal-common.c |  22 +-
 drivers/thermal/user_space.c                       |   3 +-
 include/linux/cpu_cooling.h                        |  32 +-
 include/linux/cpufreq.h                            |  14 +
 18 files changed, 342 insertions(+), 419 deletions(-)
Merging thermal-soc/next (aa647852c32a Merge branch 'work-linus' into work-next)
$ git merge thermal-soc/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging ieee1394/for-next (72f3c27aa646 firewire: net: max MTU off by one)
$ git merge ieee1394/for-next
Auto-merging drivers/firewire/net.c
Merge made by the 'recursive' strategy.
 drivers/firewire/net.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
Merging dlm/next (e94d6f64e7ba dlm: print log message when cluster name is not set)
$ git merge dlm/next
Merge made by the 'recursive' strategy.
 fs/dlm/debug_fs.c  | 25 ++++++++++++-------------
 fs/dlm/lock.c      |  8 +++-----
 fs/dlm/lockspace.c |  7 ++++++-
 fs/dlm/member.c    | 15 ++++++---------
 fs/dlm/user.c      |  2 ++
 5 files changed, 29 insertions(+), 28 deletions(-)
Merging swiotlb/linux-next (69369f52d28a swiotlb-xen: implement xen_swiotlb_get_sgtable callback)
$ git merge swiotlb/linux-next
Already up-to-date.
Merging net-next/master (f263fbb8d608 Merge tag 'pci-v4.13-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci)
$ git merge net-next/master
Already up-to-date.
Merging ipsec-next/master (8bafd73093f2 xfrm: add UDP encapsulation port in migrate message)
$ git merge ipsec-next/master
Already up-to-date.
Merging netfilter-next/master (04ba724b659c netfilter: nfnetlink: extended ACK reporting)
$ git merge netfilter-next/master
Already up-to-date.
Merging nfc-next/master (bd751808f9ff NFC: trf7970a: Correct register settings for 27MHz clock)
$ git merge nfc-next/master
Already up-to-date.
Merging ipvs-next/master (fb90e8dedb46 ipvs: change comparison on sync_refresh_period)
$ git merge ipvs-next/master
Already up-to-date.
Merging wireless-drivers-next/master (17d9aa66b08d Merge tag 'iwlwifi-next-for-kalle-2017-06-30' of git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-next)
$ git merge wireless-drivers-next/master
Already up-to-date.
Merging bluetooth/master (7627da7e6a11 Bluetooth: hci_ll: Use new hci_uart_unregister_device() function)
$ git merge bluetooth/master
Merge made by the 'recursive' strategy.
 drivers/bluetooth/btqca.c      |  2 +-
 drivers/bluetooth/btusb.c      |  9 ++++++++-
 drivers/bluetooth/hci_bcm.c    | 30 ++++++++++++++++--------------
 drivers/bluetooth/hci_ll.c     |  8 +-------
 drivers/bluetooth/hci_nokia.c  | 10 +---------
 drivers/bluetooth/hci_serdev.c | 13 +++++++++++++
 drivers/bluetooth/hci_uart.h   |  1 +
 7 files changed, 41 insertions(+), 32 deletions(-)
Merging mac80211-next/master (3dc02251f43f Merge branch 'skb-accessor-cleanups')
$ git merge mac80211-next/master
Already up-to-date.
Merging rdma/for-next (bc5214ee2922 IB/hfi1: Handle missing magic values in config file)
$ git merge rdma/for-next
Auto-merging include/rdma/ib_verbs.h
Auto-merging drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c
Auto-merging drivers/infiniband/hw/hfi1/vnic_main.c
Auto-merging drivers/infiniband/hw/hfi1/verbs.c
Auto-merging drivers/infiniband/core/verbs.c
Merge made by the 'recursive' strategy.
 drivers/infiniband/core/verbs.c                 |   1 +
 drivers/infiniband/hw/hfi1/Makefile             |   2 +-
 drivers/infiniband/hw/hfi1/affinity.c           |  18 +-
 drivers/infiniband/hw/hfi1/affinity.h           |  14 +-
 drivers/infiniband/hw/hfi1/chip.c               | 310 ++++++++++++-----------
 drivers/infiniband/hw/hfi1/chip.h               |   4 +-
 drivers/infiniband/hw/hfi1/common.h             |   1 +
 drivers/infiniband/hw/hfi1/driver.c             | 169 +++++++++----
 drivers/infiniband/hw/hfi1/eprom.c              |  11 +-
 drivers/infiniband/hw/hfi1/exp_rcv.c            | 114 +++++++++
 drivers/infiniband/hw/hfi1/exp_rcv.h            | 187 ++++++++++++++
 drivers/infiniband/hw/hfi1/file_ops.c           |  43 ++--
 drivers/infiniband/hw/hfi1/hfi.h                | 103 ++++----
 drivers/infiniband/hw/hfi1/init.c               |  62 ++++-
 drivers/infiniband/hw/hfi1/mad.c                | 323 ++++++++++++++----------
 drivers/infiniband/hw/hfi1/mad.h                |   2 +-
 drivers/infiniband/hw/hfi1/mmu_rb.c             |  14 +-
 drivers/infiniband/hw/hfi1/mmu_rb.h             |   5 +-
 drivers/infiniband/hw/hfi1/pcie.c               |  80 ++----
 drivers/infiniband/hw/hfi1/platform.c           |  30 +--
 drivers/infiniband/hw/hfi1/qp.c                 |   6 -
 drivers/infiniband/hw/hfi1/rc.c                 |  42 ++-
 drivers/infiniband/hw/hfi1/ruc.c                |  91 ++++---
 drivers/infiniband/hw/hfi1/sdma.c               |   6 +-
 drivers/infiniband/hw/hfi1/trace.c              |  58 ++++-
 drivers/infiniband/hw/hfi1/trace_ibhdrs.h       | 322 +++++++++++++++--------
 drivers/infiniband/hw/hfi1/trace_misc.h         |  20 ++
 drivers/infiniband/hw/hfi1/trace_rx.h           |  90 ++++---
 drivers/infiniband/hw/hfi1/uc.c                 |  18 +-
 drivers/infiniband/hw/hfi1/ud.c                 |  64 ++---
 drivers/infiniband/hw/hfi1/user_exp_rcv.c       | 121 ---------
 drivers/infiniband/hw/hfi1/user_exp_rcv.h       |  23 +-
 drivers/infiniband/hw/hfi1/user_sdma.c          | 207 +++++++--------
 drivers/infiniband/hw/hfi1/verbs.c              | 106 ++++----
 drivers/infiniband/hw/hfi1/verbs.h              |  10 +-
 drivers/infiniband/hw/hfi1/vnic_main.c          |  11 +-
 drivers/infiniband/hw/qib/qib.h                 |   8 +-
 drivers/infiniband/hw/qib/qib_iba6120.c         |   6 +-
 drivers/infiniband/hw/qib/qib_iba7220.c         |   7 +-
 drivers/infiniband/hw/qib/qib_iba7322.c         |  48 ++--
 drivers/infiniband/hw/qib/qib_mad.c             |  13 +-
 drivers/infiniband/hw/qib/qib_pcie.c            | 149 +++++------
 drivers/infiniband/hw/qib/qib_ruc.c             |  22 +-
 drivers/infiniband/hw/qib/qib_ud.c              |  43 +---
 drivers/infiniband/hw/qib/qib_verbs.h           |   4 +-
 drivers/infiniband/sw/rdmavt/mr.c               |  51 +++-
 drivers/infiniband/sw/rdmavt/qp.c               |  60 ++---
 drivers/infiniband/sw/rdmavt/trace_mr.h         |  62 +++++
 drivers/infiniband/sw/rdmavt/trace_tx.h         |  11 +-
 drivers/infiniband/sw/rdmavt/vt.c               |   9 +-
 drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c |  27 +-
 include/rdma/ib_hdrs.h                          |  84 ++++++
 include/rdma/ib_verbs.h                         |   5 +-
 include/rdma/rdma_vt.h                          |   4 +-
 include/rdma/rdmavt_qp.h                        |   2 +-
 55 files changed, 1945 insertions(+), 1358 deletions(-)
 create mode 100644 drivers/infiniband/hw/hfi1/exp_rcv.c
 create mode 100644 drivers/infiniband/hw/hfi1/exp_rcv.h
Merging gfs2/for-next (da029c11e6b1 exec: Limit arg stack to at most 75% of _STK_LIM)
$ git merge gfs2/for-next
Already up-to-date.
Merging mtd/master (05e97a9eda72 Merge tag 'nand/fixes-for-4.12-rc3' of git://git.infradead.org/linux-mtd into MTD)
$ git merge mtd/master
Already up-to-date.
Merging l2-mtd/master (b9504247a6eb mtd: Fix check in mtd_unpoint())
$ git merge l2-mtd/master
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../bindings/mtd/microchip,mchp23k256.txt          |  18 +
 .../devicetree/bindings/mtd/partition.txt          |  32 +-
 MAINTAINERS                                        |   3 +-
 drivers/mtd/Kconfig                                |   4 +
 drivers/mtd/Makefile                               |   1 +
 drivers/mtd/bcm47xxpart.c                          |  99 +-----
 drivers/mtd/chips/cfi_cmdset_0020.c                |   2 +-
 drivers/mtd/devices/Kconfig                        |  10 +
 drivers/mtd/devices/Makefile                       |   1 +
 drivers/mtd/devices/mchp23k256.c                   | 236 +++++++++++++
 drivers/mtd/devices/mtd_dataflash.c                | 200 ++++++-----
 drivers/mtd/maps/physmap_of_gemini.c               |   2 +-
 drivers/mtd/mtdcore.c                              |   2 +-
 drivers/mtd/mtdpart.c                              | 370 +++++++++++++--------
 drivers/mtd/parsers/Kconfig                        |   8 +
 drivers/mtd/parsers/Makefile                       |   1 +
 drivers/mtd/parsers/parser_trx.c                   | 126 +++++++
 drivers/mtd/tests/subpagetest.c                    |   2 +-
 include/linux/mtd/partitions.h                     |   7 +
 19 files changed, 786 insertions(+), 338 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mtd/microchip,mchp23k256.txt
 create mode 100644 drivers/mtd/devices/mchp23k256.c
 create mode 100644 drivers/mtd/parsers/Kconfig
 create mode 100644 drivers/mtd/parsers/Makefile
 create mode 100644 drivers/mtd/parsers/parser_trx.c
Merging nand/nand/next (81667e9c8ad8 mtd: nand: mtk: release lock on error path)
$ git merge nand/nand/next
Auto-merging include/linux/mtd/nand.h
Auto-merging drivers/mtd/nand/tango_nand.c
Auto-merging drivers/mtd/nand/nand_base.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/mtd/denali-nand.txt        |   13 +
 Documentation/devicetree/bindings/mtd/elm.txt      |    2 +-
 .../devicetree/bindings/mtd/gpmc-nand.txt          |    2 +-
 Documentation/devicetree/bindings/mtd/gpmc-nor.txt |    4 +-
 .../devicetree/bindings/mtd/gpmc-onenand.txt       |    2 +-
 .../devicetree/bindings/mtd/gpmi-nand.txt          |   14 +-
 Documentation/devicetree/bindings/mtd/mtk-nand.txt |    5 +-
 Documentation/devicetree/bindings/mtd/nand.txt     |    2 +-
 Documentation/devicetree/bindings/net/gpmc-eth.txt |    4 +-
 MAINTAINERS                                        |    6 +
 drivers/mtd/nand/Kconfig                           |    3 +
 drivers/mtd/nand/atmel/nand-controller.c           |  354 +++-
 drivers/mtd/nand/bcm47xxnflash/ops_bcm4706.c       |    2 +
 drivers/mtd/nand/cafe_nand.c                       |    2 +
 drivers/mtd/nand/davinci_nand.c                    |    3 +
 drivers/mtd/nand/denali.c                          | 1831 +++++++++-----------
 drivers/mtd/nand/denali.h                          |  315 ++--
 drivers/mtd/nand/denali_dt.c                       |   53 +-
 drivers/mtd/nand/denali_pci.c                      |   26 +-
 drivers/mtd/nand/docg4.c                           |    2 +
 drivers/mtd/nand/fsl_elbc_nand.c                   |    2 +
 drivers/mtd/nand/fsl_ifc_nand.c                    |   81 +-
 drivers/mtd/nand/fsmc_nand.c                       |  122 +-
 drivers/mtd/nand/gpmi-nand/gpmi-lib.c              |    6 +-
 drivers/mtd/nand/gpmi-nand/gpmi-nand.c             |   75 +-
 drivers/mtd/nand/gpmi-nand/gpmi-nand.h             |   13 +-
 drivers/mtd/nand/hisi504_nand.c                    |    2 +
 drivers/mtd/nand/jz4780_nand.c                     |    2 +-
 drivers/mtd/nand/mpc5121_nfc.c                     |    2 +
 drivers/mtd/nand/mtk_ecc.c                         |  228 +--
 drivers/mtd/nand/mtk_ecc.h                         |    2 +-
 drivers/mtd/nand/mtk_nand.c                        |  279 +--
 drivers/mtd/nand/mxc_nand.c                        |   12 +-
 drivers/mtd/nand/nand_base.c                       |  349 +++-
 drivers/mtd/nand/nand_micron.c                     |  222 +++
 drivers/mtd/nand/orion_nand.c                      |    6 +-
 drivers/mtd/nand/pxa3xx_nand.c                     |    2 +
 drivers/mtd/nand/qcom_nandc.c                      |    2 +
 drivers/mtd/nand/s3c2410.c                         |    5 +-
 drivers/mtd/nand/sh_flctl.c                        |    2 +
 drivers/mtd/nand/sunxi_nand.c                      |    9 +-
 drivers/mtd/nand/tango_nand.c                      |   22 +-
 drivers/mtd/nand/vf610_nfc.c                       |    2 +
 drivers/staging/mt29f_spinand/mt29f_spinand.c      |    2 +
 include/linux/mtd/nand.h                           |   80 +-
 45 files changed, 2546 insertions(+), 1628 deletions(-)
Merging spi-nor/spi-nor/next (1a18915b4971 mtd: spi-nor: parse Serial Flash Discoverable Parameters (SFDP) tables)
$ git merge spi-nor/spi-nor/next
Merge made by the 'recursive' strategy.
 drivers/mtd/devices/m25p80.c            |  121 ++-
 drivers/mtd/devices/serial_flash_cmds.h |    1 -
 drivers/mtd/devices/st_spi_fsm.c        |    4 +-
 drivers/mtd/spi-nor/Kconfig             |    2 +-
 drivers/mtd/spi-nor/aspeed-smc.c        |  183 ++++-
 drivers/mtd/spi-nor/atmel-quadspi.c     |   83 +-
 drivers/mtd/spi-nor/cadence-quadspi.c   |   20 +-
 drivers/mtd/spi-nor/fsl-quadspi.c       |    6 +-
 drivers/mtd/spi-nor/hisi-sfc.c          |   31 +-
 drivers/mtd/spi-nor/intel-spi.c         |    7 +-
 drivers/mtd/spi-nor/mtk-quadspi.c       |   15 +-
 drivers/mtd/spi-nor/nxp-spifi.c         |   22 +-
 drivers/mtd/spi-nor/spi-nor.c           | 1251 ++++++++++++++++++++++++++++---
 drivers/mtd/spi-nor/stm32-quadspi.c     |   32 +-
 include/linux/mtd/spi-nor.h             |  167 ++++-
 15 files changed, 1699 insertions(+), 246 deletions(-)
Merging crypto/master (bcf741cb7792 crypto: testmgr - Reenable sha1/aes in FIPS mode)
$ git merge crypto/master
Already up-to-date.
Merging drm/drm-next (00fc2c26bc46 drm: Remove unused drm_file parameter to drm_syncobj_replace_fence())
$ 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 (eafbc2070124 Merge tag 'gvt-fixes-2017-07-11' of https://github.com/01org/gvt-linux into drm-intel-next-fixes)
$ git merge drm-intel/for-linux-next
Auto-merging drivers/gpu/drm/i915/i915_debugfs.c
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/i915/gvt/cmd_parser.c            | 10 +++++++
 drivers/gpu/drm/i915/gvt/display.c               | 22 ++++++++++++++
 drivers/gpu/drm/i915/gvt/gtt.c                   |  2 ++
 drivers/gpu/drm/i915/gvt/handlers.c              | 37 ++++++++++++-----------
 drivers/gpu/drm/i915/gvt/kvmgt.c                 | 14 +++++----
 drivers/gpu/drm/i915/gvt/scheduler.c             | 28 ++++++++---------
 drivers/gpu/drm/i915/i915_debugfs.c              |  2 +-
 drivers/gpu/drm/i915/i915_drv.c                  |  8 +++--
 drivers/gpu/drm/i915/i915_gem_execbuffer.c       | 38 +++++++++++++++---------
 drivers/gpu/drm/i915/i915_perf.c                 | 12 ++++----
 drivers/gpu/drm/i915/i915_reg.h                  |  2 +-
 drivers/gpu/drm/i915/intel_cdclk.c               | 20 +++++++++++++
 drivers/gpu/drm/i915/intel_engine_cs.c           | 14 ++++-----
 drivers/gpu/drm/i915/intel_fbdev.c               | 11 +++----
 drivers/gpu/drm/i915/selftests/i915_gem_dmabuf.c |  6 ++--
 15 files changed, 148 insertions(+), 78 deletions(-)
Merging drm-tegra/drm/tegra/for-next (43240bbd871e gpu: host1x: At first try a non-blocking allocation for the gather copy)
$ git merge drm-tegra/drm/tegra/for-next
Already up-to-date.
Merging drm-misc/for-linux-next (6f6e0b217a93 drm/rockchip: fix NULL check on devm_kzalloc() return value)
$ git merge drm-misc/for-linux-next
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/bridge/panel.c              |  2 +-
 drivers/gpu/drm/drm_framebuffer.c           |  1 +
 drivers/gpu/drm/drm_vblank.c                |  2 +-
 drivers/gpu/drm/rockchip/cdn-dp-core.c      |  2 +-
 drivers/gpu/drm/rockchip/rockchip_drm_drv.h |  2 +-
 drivers/gpu/drm/rockchip/rockchip_drm_gem.c |  5 ++-
 include/drm/bridge/dw_hdmi.h                | 70 ++++++++++++++---------------
 7 files changed, 43 insertions(+), 41 deletions(-)
Merging drm-exynos/exynos-drm/for-next (7d1e04231461 Merge tag 'usercopy-v4.8-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux)
$ git merge drm-exynos/exynos-drm/for-next
Already up-to-date.
Merging drm-msm/msm-next (4a630fadbb29 drm/msm: Fix potential buffer overflow issue)
$ git merge drm-msm/msm-next
Already up-to-date.
Merging hdlcd/for-upstream/hdlcd (fee4964f0a6c drm/arm: hdlcd: remove unused variables)
$ git merge hdlcd/for-upstream/hdlcd
Already up-to-date.
Merging mali-dp/for-upstream/mali-dp (e40eda3dda1e drm/arm: mali-dp: Use CMA helper for plane buffer address calculation)
$ git merge mali-dp/for-upstream/mali-dp
Already up-to-date.
Merging sunxi-drm/sunxi-drm/for-next (110d33dd428e drm/sun4i: Add compatible for the A10s pipeline)
$ git merge sunxi-drm/sunxi-drm/for-next
Already up-to-date.
Merging imx-drm/imx-drm/next (994fc62e1d04 drm/imx: lock scanout transfers for consecutive bursts)
$ git merge imx-drm/imx-drm/next
Auto-merging drivers/gpu/drm/imx/ipuv3-plane.c
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/imx/ipuv3-plane.c | 53 +++++++++++++++++++++++++++++++--------
 1 file changed, 42 insertions(+), 11 deletions(-)
Merging etnaviv/etnaviv/next (8cc47b3ea082 drm/etnaviv: populate GEM objects on cpu_prep)
$ git merge etnaviv/etnaviv/next
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/etnaviv/etnaviv_gem.c | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)
Merging kconfig/for-next (5bcba792bb30 localmodconfig: Fix whitespace repeat count after "tristate")
$ git merge kconfig/for-next
Already up-to-date.
Merging regmap/for-next (9af2b88755dc Merge remote-tracking branch 'regmap/topic/namespace' into regmap-next)
$ git merge regmap/for-next
Merge made by the 'recursive' strategy.
 include/linux/regmap.h | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)
Merging sound/for-next (65553b12e8fd ALSA: hda/realtek - New codec device ID for ALC1220)
$ git merge sound/for-next
Already up-to-date.
Merging sound-asoc/for-next (2e7c639bf491 Merge remote-tracking branches 'asoc/topic/spear' and 'asoc/topic/twl6040' into asoc-next)
$ git merge sound-asoc/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/sound/rt5663.txt |   5 +
 include/sound/rt5663.h                             |  20 ++
 sound/soc/codecs/hdmi-codec.c                      |  33 +--
 sound/soc/codecs/rt5514.c                          |  49 ++---
 sound/soc/codecs/rt5663.c                          | 232 ++++++++++++++++-----
 sound/soc/codecs/rt5663.h                          |   2 +
 sound/soc/codecs/twl6040.c                         |   4 +-
 sound/soc/fsl/imx-ssi.c                            |   4 +
 sound/soc/intel/skylake/skl-messages.c             |   8 +
 sound/soc/kirkwood/kirkwood-i2s.c                  |   6 +-
 sound/soc/pxa/Kconfig                              |   1 +
 sound/soc/samsung/i2s.c                            |  20 +-
 sound/soc/spear/spdif_in.c                         |   6 +-
 13 files changed, 278 insertions(+), 112 deletions(-)
 create mode 100644 include/sound/rt5663.h
Merging modules/modules-next (96b5b19459b3 module: make the modinfo name const)
$ git merge modules/modules-next
Auto-merging kernel/module.c
Merge made by the 'recursive' strategy.
 kernel/kmod.c         | 40 +++++++++++-------------
 kernel/module.c       | 85 ++++++++++++++++++++++++++++++++-------------------
 scripts/mod/modpost.c |  1 +
 3 files changed, 73 insertions(+), 53 deletions(-)
Merging input/next (0f107573da41 Input: gpio_keys - handle the missing key press event in resume phase)
$ git merge input/next
Merge made by the 'recursive' strategy.
 drivers/input/keyboard/gpio_keys.c |  17 ++-
 drivers/input/misc/xen-kbdfront.c  | 219 ++++++++++++++++++++++++++++++-------
 2 files changed, 195 insertions(+), 41 deletions(-)
Merging block/for-next (77f644344425 Merge branch 'for-linus' into for-next)
$ git merge block/for-next
Already up-to-date!
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 (4d49f1b4a1fc dm raid: stop using BUG() in __rdev_sectors())
$ git merge device-mapper/for-next
Already up-to-date.
Merging pcmcia/master (e8e68fd86d22 pcmcia: do not break rsrc_nonstatic when handling anonymous cards)
$ git merge pcmcia/master
Already up-to-date.
Merging mmc/next (aab2ee03912b mmc: block: Let MMC_IOC_MULTI_CMD return zero again for zero entries)
$ git merge mmc/next
Merge made by the 'recursive' strategy.
 drivers/mmc/core/block.c      |  5 +++-
 drivers/mmc/host/sdhci-acpi.c | 70 +++++++++++++++++++++++++++++++++++++++----
 2 files changed, 68 insertions(+), 7 deletions(-)
Merging kgdb/kgdb-next (7a6653fca500 kdb: Fix handling of kallsyms_symbol_next() return value)
$ git merge kgdb/kgdb-next
Auto-merging kernel/debug/kdb/kdb_io.c
Merge made by the 'recursive' strategy.
 kernel/debug/kdb/kdb_io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging md/for-next (b5d27718f388 Raid5 should update rdev->sectors after reshape)
$ git merge md/for-next
Merge made by the 'recursive' strategy.
 drivers/md/bitmap.c | 3 ++-
 drivers/md/md.h     | 4 +++-
 drivers/md/raid5.c  | 4 +---
 3 files changed, 6 insertions(+), 5 deletions(-)
Merging mfd/for-mfd-next (d1f99b97478e mfd: madera: Add register definitions for Cirrus Logic Madera codecs)
$ git merge mfd/for-mfd-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 MAINTAINERS                          |   10 +
 include/linux/mfd/madera/registers.h | 8832 ++++++++++++++++++++++++++++++++++
 2 files changed, 8842 insertions(+)
 create mode 100644 include/linux/mfd/madera/registers.h
Merging backlight/for-backlight-next (056d6ff470a8 video: adp8870: move header file out of I2C realm)
$ git merge backlight/for-backlight-next
Already up-to-date.
Merging battery/for-next (7bb5a650f347 power: supply: twl4030-charger: add deferred probing for phy and iio)
$ git merge battery/for-next
Merge made by the 'recursive' strategy.
 drivers/power/supply/twl4030_charger.c | 43 ++++++++++++++++++++++------------
 1 file changed, 28 insertions(+), 15 deletions(-)
Merging omap_dss2/for-next (c456a2f30de5 video: smscufx: remove unused variable)
$ git merge omap_dss2/for-next
Already up-to-date.
Merging regulator/for-next (e2b2add63783 Merge remote-tracking branches 'regulator/topic/cpcap' and 'regulator/topic/qcom' into regulator-next)
$ git merge regulator/for-next
Merge made by the 'recursive' strategy.
 drivers/regulator/axp20x-regulator.c   |  6 ++++++
 drivers/regulator/cpcap-regulator.c    | 21 ++++++++++++++++++---
 drivers/regulator/qcom_rpm-regulator.c |  5 +++++
 drivers/regulator/qcom_smd-regulator.c |  5 +++++
 4 files changed, 34 insertions(+), 3 deletions(-)
Merging security/next (c4758fa59285 apparmor: put back designators in struct initialisers)
$ git merge security/next
Already up-to-date.
Merging integrity/next (fc26bd50539b IMA: update IMA policy documentation to include pcr= option)
$ git merge integrity/next
Already up-to-date.
Merging keys/keys-next (3088c2ad40cf Merge remote-tracking branch 'origin/keys-fixes' into keys-next)
$ git merge keys/keys-next
Resolved 'security/keys/dh.c' using previous resolution.
Auto-merging security/keys/dh.c
CONFLICT (content): Merge conflict in security/keys/dh.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 726749efc274] Merge remote-tracking branch 'keys/keys-next'
$ git diff -M --stat --summary HEAD^..
Merging selinux/next (12f6dc2696a5 selinux: Assign proper class to PF_UNIX/SOCK_RAW sockets)
$ git merge selinux/next
Auto-merging security/selinux/hooks.c
Merge made by the 'recursive' strategy.
 security/selinux/hooks.c | 1 +
 1 file changed, 1 insertion(+)
Merging tpmdd/next (65bbcc19ab70 tpm: do not suspend/resume if power stays on)
$ git merge tpmdd/next
Merge made by the 'recursive' strategy.
Merging watchdog/master (c013b65ad8a1 watchdog: introduce watchdog_worker_should_ping helper)
$ git merge watchdog/master
Already up-to-date.
Merging iommu/next (6a7086431fa1 Merge branches 'iommu/fixes', 'arm/rockchip', 'arm/renesas', 'arm/smmu', 'arm/core', 'x86/vt-d', 'x86/amd', 's390' and 'core' into next)
$ git merge iommu/next
Resolved 'Documentation/arm64/silicon-errata.txt' using previous resolution.
Auto-merging drivers/iommu/intel_irq_remapping.c
Auto-merging drivers/iommu/intel-iommu.c
Auto-merging drivers/iommu/dma-iommu.c
Auto-merging drivers/iommu/amd_iommu.c
Auto-merging drivers/acpi/arm64/iort.c
Auto-merging Documentation/arm64/silicon-errata.txt
CONFLICT (content): Merge conflict in Documentation/arm64/silicon-errata.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 0a61030ed69b] Merge remote-tracking branch 'iommu/next'
$ git diff -M --stat --summary HEAD^..
 Documentation/arm64/silicon-errata.txt             |   3 +
 .../devicetree/bindings/iommu/arm,smmu-v3.txt      |  12 +
 drivers/acpi/arm64/iort.c                          |  83 +++-
 drivers/iommu/Kconfig                              |   6 +-
 drivers/iommu/amd_iommu.c                          | 458 +++++++++++++--------
 drivers/iommu/amd_iommu_init.c                     |  44 +-
 drivers/iommu/amd_iommu_types.h                    |   3 +
 drivers/iommu/arm-smmu-v3.c                        | 229 +++++++----
 drivers/iommu/arm-smmu.c                           |  64 +--
 drivers/iommu/dma-iommu.c                          |   2 +-
 drivers/iommu/intel-iommu.c                        |  26 +-
 drivers/iommu/intel-svm.c                          |  30 ++
 drivers/iommu/intel_irq_remapping.c                |   4 +-
 drivers/iommu/io-pgtable-arm-v7s.c                 | 183 +++++---
 drivers/iommu/io-pgtable-arm.c                     | 189 ++++++---
 drivers/iommu/io-pgtable.h                         |   6 +
 drivers/iommu/iommu.c                              |  17 +-
 drivers/iommu/iova.c                               |  30 +-
 drivers/iommu/ipmmu-vmsa.c                         | 353 +++++++++++++---
 drivers/iommu/omap-iommu.c                         |   2 +-
 drivers/iommu/s390-iommu.c                         |  15 +-
 include/linux/intel-svm.h                          |  20 +
 22 files changed, 1232 insertions(+), 547 deletions(-)
Merging dwmw2-iommu/master (910170442944 iommu/vt-d: Fix PASID table allocation)
$ git merge dwmw2-iommu/master
Already up-to-date.
Merging vfio/next (7f56c30bd0a2 vfio: Remove unnecessary uses of vfio_container.group_lock)
$ git merge vfio/next
Auto-merging include/linux/vfio.h
Merge made by the 'recursive' strategy.
 drivers/vfio/pci/vfio_pci.c |  4 +--
 drivers/vfio/vfio.c         | 86 ++++++++++++++++++++++++---------------------
 include/linux/vfio.h        |  2 ++
 virt/kvm/vfio.c             | 40 +++++++++++++--------
 4 files changed, 75 insertions(+), 57 deletions(-)
Merging trivial/for-next (6fbc8798d946 tty: fix comment for __tty_alloc_driver())
$ git merge trivial/for-next
Already up-to-date.
Merging audit/next (15318a9f8015 audit: Reduce overhead using a coarse clock)
$ git merge audit/next
Auto-merging kernel/auditsc.c
Auto-merging kernel/audit.c
Merge made by the 'recursive' strategy.
 kernel/audit.c   | 2 +-
 kernel/auditsc.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Merging devicetree/for-next (580c4549578d staging: iio: tsl2x7x: add device tree documentation)
$ git merge devicetree/for-next
Auto-merging Documentation/devicetree/bindings/trivial-devices.txt
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/clock/silabs,si5351.txt |  6 +++++-
 Documentation/devicetree/bindings/nvmem/mtk-efuse.txt     |  5 ++++-
 Documentation/devicetree/bindings/trivial-devices.txt     | 10 ++++++++++
 3 files changed, 19 insertions(+), 2 deletions(-)
Merging mailbox/mailbox-for-next (25bfee16d5a3 mailbox: Introduce Qualcomm APCS IPC driver)
$ git merge mailbox/mailbox-for-next
Already up-to-date.
Merging spi/for-next (a40be456ef3c Merge remote-tracking branches 'spi/topic/at79', 'spi/topic/bcm63xx-hspi' and 'spi/topic/imx' into spi-next)
$ git merge spi/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/spi/fsl-imx-cspi.txt       |  1 +
 drivers/spi/spi-ath79.c                            | 13 +++---
 drivers/spi/spi-bcm63xx-hsspi.c                    |  6 +--
 drivers/spi/spi-imx.c                              | 47 ++++++++++++++++++----
 4 files changed, 49 insertions(+), 18 deletions(-)
Merging tip/auto-latest (4422d80ed7d4 Merge branch 'ras-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip)
$ git merge tip/auto-latest
Already up-to-date.
Merging clockevents/clockevents/next (2287d8664fe7 timers: Make the cpu base lock raw)
$ 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 (164c29244d4b EDAC, pnd2: Fix Apollo Lake DIMM detection)
$ git merge edac-amd/for-next
Already up-to-date.
Merging irqchip/irqchip/for-next (c1ae3cfa0e89 Linux 4.11-rc1)
$ git merge irqchip/irqchip/for-next
Already up-to-date.
Merging ftrace/for-next (8cb0bc9e3f86 selftests/ftrace: Add a testcase for kprobe event naming)
$ git merge ftrace/for-next
Auto-merging kernel/trace/trace_kprobe.c
Auto-merging kernel/trace/trace.c
Merge made by the 'recursive' strategy.
 kernel/trace/trace.c                               | 117 +++++++++++++++++++--
 kernel/trace/trace_kprobe.c                        |   9 ++
 .../ftrace/test.d/kprobe/kprobe_eventname.tc       |  36 +++++++
 .../ftrace/test.d/kprobe/kprobe_module.tc          |  28 +++++
 .../ftrace/test.d/kprobe/multiple_kprobes.tc       |   4 +-
 5 files changed, 182 insertions(+), 12 deletions(-)
 create mode 100644 tools/testing/selftests/ftrace/test.d/kprobe/kprobe_eventname.tc
 create mode 100644 tools/testing/selftests/ftrace/test.d/kprobe/kprobe_module.tc
Merging rcu/rcu/next (6d48152eafde rcu: Remove RCU CPU stall warnings from Tiny RCU)
$ git merge rcu/rcu/next
Already up-to-date.
Merging kvm/linux-next (af3c8d98508d Merge tag 'drm-for-v4.13' of git://people.freedesktop.org/~airlied/linux)
$ git merge kvm/linux-next
Already up-to-date.
Merging kvm-arm/next (d38338e396ee arm64: Remove a redundancy in sysreg.h)
$ 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 (8b24e69fc47e KVM: PPC: Book3S HV: Close race with testing for signals on guest entry)
$ git merge kvm-ppc/kvm-ppc-next
Already up-to-date.
Merging kvms390/next (d52cd2076eb2 KVM: s390: Inject machine check into the nested guest)
$ git merge kvms390/next
Already up-to-date.
Merging xen-tip/linux-next (18f7dd89a7c6 xen: introduce a Kconfig option to enable the pvcalls backend)
$ git merge xen-tip/linux-next
Merge made by the 'recursive' strategy.
 drivers/xen/Kconfig                |   12 +
 drivers/xen/Makefile               |    1 +
 drivers/xen/pvcalls-back.c         | 1236 ++++++++++++++++++++++++++++++++++++
 include/xen/interface/io/pvcalls.h |  121 ++++
 include/xen/interface/io/ring.h    |    2 +
 5 files changed, 1372 insertions(+)
 create mode 100644 drivers/xen/pvcalls-back.c
 create mode 100644 include/xen/interface/io/pvcalls.h
Merging percpu/for-next (e3efe3db932b percpu: fix static checker warnings in pcpu_destroy_chunk)
$ git merge percpu/for-next
Already up-to-date.
Merging workqueues/for-next (bacb71fc9187 Merge branch 'for-4.12' into for-next)
$ git merge workqueues/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging drivers-x86/for-next (d791db9a57ab platform/x86: sony-laptop: constify attribute_group and input index array)
$ git merge drivers-x86/for-next
Already up-to-date.
Merging chrome-platform/for-next (3c778a7fcfaa platform/chrome : Add myself as Maintainer)
$ git merge chrome-platform/for-next
Already up-to-date.
Merging hsi/for-next (67ddd75771b6 HSI: core: Use kcalloc() in two functions)
$ git merge hsi/for-next
Already up-to-date.
Merging leds/for-next (4d1707c1c690 leds: lp55xx: make various arrays static const)
$ git merge leds/for-next
Already up-to-date.
Merging ipmi/for-next (4495ec6d770e ipmi:ssif: Add missing unlock in error branch)
$ git merge ipmi/for-next
Already up-to-date.
Merging driver-core/driver-core-next (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge driver-core/driver-core-next
Already up-to-date.
Merging usb/usb-next (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge usb/usb-next
Already up-to-date.
Merging usb-gadget/next (0591bc236015 usb: gadget: add f_uac1 variant based on a new u_audio api)
$ git merge usb-gadget/next
Already up-to-date.
Merging usb-serial/usb-next (c22ac6d29f18 USB: serial: propagate late probe errors)
$ git merge usb-serial/usb-next
Already up-to-date.
Merging usb-chipidea-next/ci-for-usb-next (c4a0bbbdb7f6 usb: chipidea: properly handle host or gadget initialization failure)
$ git merge usb-chipidea-next/ci-for-usb-next
Already up-to-date.
Merging phy-next/next (af850e14a7ae phy: bcm-ns-usb3: add MDIO driver using proper bus layer)
$ git merge phy-next/next
Already up-to-date.
Merging tty/tty-next (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge tty/tty-next
Already up-to-date.
Merging char-misc/char-misc-next (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge char-misc/char-misc-next
Already up-to-date.
Merging extcon/extcon-next (20ad72adbc62 extcon: int3496: Constify acpi_device_id)
$ git merge extcon/extcon-next
Merge made by the 'recursive' strategy.
 drivers/extcon/extcon-intel-int3496.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging staging/staging-next (9967468c0a10 Merge branch 'akpm' (patches from Andrew))
$ git merge staging/staging-next
Already up-to-date.
Merging mux/for-next (a351e9b9fc24 Linux 4.11)
$ git merge mux/for-next
Already up-to-date.
Merging slave-dma/next (f6a28cf9aff9 Merge branch 'fixes' into next)
$ git merge slave-dma/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging cgroup/for-next (610467270fb3 cgroup: don't call migration methods if there are no tasks to migrate)
$ git merge cgroup/for-next
Merge made by the 'recursive' strategy.
 kernel/cgroup/cgroup-internal.h |  3 +++
 kernel/cgroup/cgroup.c          | 58 ++++++++++++++++++++++-------------------
 2 files changed, 34 insertions(+), 27 deletions(-)
Merging scsi/for-next (48d9c49d7106 Merge branch 'misc' into for-next)
$ git merge scsi/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging scsi-mkp/for-next (c345c6ca1382 qla2xxx: Fix NVMe entry_type for iocb packet on BE system)
$ git merge scsi-mkp/for-next
Already up-to-date.
Merging target-updates/for-next (138d351eefb7 iscsi-target: Add login_keys_workaround attribute for non RFC initiators)
$ git merge target-updates/for-next
Resolved 'drivers/scsi/qla2xxx/qla_target.c' using previous resolution.
Auto-merging include/scsi/scsi_proto.h
Auto-merging drivers/target/target_core_sbc.c
Auto-merging drivers/target/target_core_pscsi.c
Auto-merging drivers/target/target_core_iblock.c
Auto-merging drivers/target/target_core_file.c
Auto-merging drivers/scsi/qla2xxx/tcm_qla2xxx.c
Auto-merging drivers/scsi/qla2xxx/qla_target.c
CONFLICT (content): Merge conflict in drivers/scsi/qla2xxx/qla_target.c
Auto-merging drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master ca2a3632a67f] Merge remote-tracking branch 'target-updates/for-next'
$ git diff -M --stat --summary HEAD^..
 drivers/infiniband/ulp/isert/ib_isert.c        |   2 +-
 drivers/infiniband/ulp/srpt/ib_srpt.c          |   4 +-
 drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c       | 156 ++++++++-
 drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.h       |  25 +-
 drivers/scsi/ibmvscsi_tgt/libsrp.h             |   5 +-
 drivers/scsi/qla2xxx/qla_target.c              |  35 +-
 drivers/scsi/qla2xxx/tcm_qla2xxx.c             |   4 +-
 drivers/target/iscsi/iscsi_target.c            |  10 +-
 drivers/target/iscsi/iscsi_target_configfs.c   |   2 +
 drivers/target/iscsi/iscsi_target_nego.c       |  30 +-
 drivers/target/iscsi/iscsi_target_parameters.c |  41 ++-
 drivers/target/iscsi/iscsi_target_parameters.h |   2 +-
 drivers/target/iscsi/iscsi_target_tpg.c        |  27 +-
 drivers/target/iscsi/iscsi_target_tpg.h        |   1 +
 drivers/target/iscsi/iscsi_target_util.c       |  60 +---
 drivers/target/iscsi/iscsi_target_util.h       |   2 +-
 drivers/target/loopback/tcm_loop.c             |  77 +----
 drivers/target/loopback/tcm_loop.h             |   6 +-
 drivers/target/target_core_alua.c              |   8 +-
 drivers/target/target_core_configfs.c          |  30 +-
 drivers/target/target_core_device.c            | 145 ++++++--
 drivers/target/target_core_fabric_configfs.c   |  25 +-
 drivers/target/target_core_fabric_lib.c        |   6 +-
 drivers/target/target_core_file.c              |   7 +-
 drivers/target/target_core_iblock.c            |  52 +--
 drivers/target/target_core_internal.h          |   5 +-
 drivers/target/target_core_pr.c                | 109 ++----
 drivers/target/target_core_pscsi.c             |  82 ++---
 drivers/target/target_core_pscsi.h             |   4 -
 drivers/target/target_core_rd.c                |  11 +-
 drivers/target/target_core_sbc.c               |  65 ++--
 drivers/target/target_core_spc.c               |  42 ++-
 drivers/target/target_core_tmr.c               |  18 +-
 drivers/target/target_core_tpg.c               |   1 -
 drivers/target/target_core_transport.c         | 222 ++++++++++--
 drivers/target/target_core_user.c              | 447 ++++++++++++++++++++++---
 drivers/target/target_core_xcopy.c             | 184 ++++++----
 drivers/vhost/scsi.c                           |  11 +-
 drivers/xen/xen-scsiback.c                     |  36 +-
 include/scsi/scsi_proto.h                      |   1 +
 include/target/iscsi/iscsi_target_core.h       |  10 +-
 include/target/target_core_backend.h           |  17 +-
 include/target/target_core_base.h              |  11 +-
 include/target/target_core_fabric.h            |   1 +
 include/uapi/linux/target_core_user.h          |  12 +
 45 files changed, 1353 insertions(+), 698 deletions(-)
Merging target-merge/for-next-merge (2994a7518317 cxgb4: update Kconfig and Makefile)
$ git merge target-merge/for-next-merge
Already up-to-date.
Merging target-bva/for-next (2ea659a9ef48 Linux 4.12-rc1)
$ git merge target-bva/for-next
Already up-to-date.
Merging libata/for-next (7cfdfdc82a46 libata: Cleanup ata_read_log_page())
$ git merge libata/for-next
Merge made by the 'recursive' strategy.
 drivers/ata/Kconfig       | 4 ++--
 drivers/ata/libata-core.c | 6 +++---
 include/linux/libata.h    | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)
Merging binfmt_misc/for-next (4af75df6a410 binfmt_misc: add F option description to documentation)
$ git merge binfmt_misc/for-next
Already up-to-date.
Merging vhost/linux-next (e41b1355508d virtio_balloon: disable VIOMMU support)
$ git merge vhost/linux-next
Already up-to-date.
Merging rpmsg/for-next (9ef2b6cc595a Merge branches 'hwspinlock-next', 'rpmsg-next' and 'rproc-next' into for-next)
$ git merge rpmsg/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging gpio/for-next (8d2c6297aec9 Merge branch 'devel' into for-next)
$ git merge gpio/for-next
Resolved 'drivers/gpio/gpio-mvebu.c' using previous resolution.
Auto-merging drivers/gpio/gpio-mvebu.c
CONFLICT (content): Merge conflict in drivers/gpio/gpio-mvebu.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 8fbf032161b1] Merge remote-tracking branch 'gpio/for-next'
$ git diff -M --stat --summary HEAD^..
Merging pinctrl/for-next (ece5946c2eed Merge branch 'devel' into for-next)
$ git merge pinctrl/for-next
Merge made by the 'recursive' strategy.
Merging pinctrl-samsung/for-next (a453f3693f2a pinctrl: samsung: Explicitly cast pointer returned by of_iomap() to iomem)
$ git merge pinctrl-samsung/for-next
Already up-to-date.
Merging pwm/for-next (5ec8c48a6235 Merge branch 'for-4.13/drivers' into for-next)
$ git merge pwm/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/pwm/pwm-meson.txt          |   4 +-
 .../devicetree/bindings/pwm/pwm-stm32.txt          |   2 +-
 .../devicetree/bindings/pwm/renesas,pwm-rcar.txt   |   1 +
 Documentation/pwm.txt                              |  46 ++--
 drivers/pwm/core.c                                 |   4 +-
 drivers/pwm/pwm-bfin.c                             |   4 +-
 drivers/pwm/pwm-cros-ec.c                          |   4 +-
 drivers/pwm/pwm-hibvt.c                            |   2 +-
 drivers/pwm/pwm-meson.c                            |  48 +++-
 drivers/pwm/pwm-sun4i.c                            | 263 ++++++++++++---------
 drivers/pwm/pwm-tegra.c                            |  18 +-
 11 files changed, 244 insertions(+), 152 deletions(-)
Merging dma-buf/for-next (194cad44c4e1 dma-buf/sync_file: improve Kconfig description for Sync Files)
$ git merge dma-buf/for-next
Resolved 'drivers/dma-buf/Kconfig' using previous resolution.
Auto-merging drivers/dma-buf/Kconfig
CONFLICT (content): Merge conflict in drivers/dma-buf/Kconfig
Auto-merging MAINTAINERS
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master d4900f7f341c] Merge remote-tracking branch 'dma-buf/for-next'
$ git diff -M --stat --summary HEAD^..
 MAINTAINERS | 11 +++++++++++
 1 file changed, 11 insertions(+)
Merging userns/for-next (2fd1d2c4ceb2 proc: Fix proc_sys_prune_dcache to hold a sb reference)
$ git merge userns/for-next
Merge made by the 'recursive' strategy.
 fs/proc/internal.h     |  2 +-
 fs/proc/proc_sysctl.c  | 43 ++++++++++++++++++++++++++++++-------------
 include/linux/sysctl.h |  2 +-
 3 files changed, 32 insertions(+), 15 deletions(-)
Merging ktest/for-next (f7c6401ff84a ktest: Make sure wait_for_input does honor the timeout)
$ git merge ktest/for-next
Already up-to-date.
Merging random/dev (e2682130931f random: suppress spammy warnings about unseeded randomness)
$ git merge random/dev
Auto-merging net/ipv4/route.c
Auto-merging net/core/neighbour.c
Auto-merging net/ceph/ceph_common.c
Auto-merging lib/rhashtable.c
Auto-merging lib/Kconfig.debug
Auto-merging fs/cifs/cifsfs.c
Auto-merging drivers/target/iscsi/iscsi_target_login.c
Merge made by the 'recursive' strategy.
 drivers/char/random.c                     | 79 ++++++++++++++++++++++++-------
 drivers/target/iscsi/iscsi_target_auth.c  | 14 ++++--
 drivers/target/iscsi/iscsi_target_login.c | 22 +++++----
 fs/cifs/cifsfs.c                          |  2 +-
 include/linux/net.h                       |  2 +
 include/linux/once.h                      |  2 +
 include/linux/random.h                    | 26 ++++++++++
 lib/Kconfig.debug                         | 28 +++++++++++
 lib/rhashtable.c                          |  2 +-
 net/ceph/ceph_common.c                    |  6 ++-
 net/core/neighbour.c                      |  3 +-
 net/ipv4/route.c                          |  3 +-
 12 files changed, 155 insertions(+), 34 deletions(-)
Merging aio/master (4c1d69950da4 fs: aio: fix the increment of aio-nr and counting against aio-max-nr)
$ git merge aio/master
Auto-merging fs/aio.c
Merge made by the 'recursive' strategy.
 fs/aio.c | 19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)
Merging kselftest/next (e67f85fb96ca selftests: membarrier: use ksft_* var arg msg api)
$ git merge kselftest/next
Already up-to-date.
Merging y2038/y2038 (69973b830859 Linux 4.9)
$ git merge y2038/y2038
Already up-to-date.
Merging luto-misc/next (2dcd0af568b0 Linux 4.6)
$ git merge luto-misc/next
Already up-to-date.
Merging borntraeger/linux-next (e76d21c40bd6 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge borntraeger/linux-next
Already up-to-date.
Merging livepatching/for-next (26d8d1e9bb48 Merge branch 'for-4.12/upstream-fixes' into for-next)
$ git merge livepatching/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging coresight/next (f8229e48370e hwtracing: coresight: constify attribute_group structures.)
$ git merge coresight/next
Auto-merging drivers/hwtracing/coresight/coresight.c
Auto-merging drivers/hwtracing/coresight/coresight-tmc-etf.c
Auto-merging drivers/hwtracing/coresight/coresight-etm3x.c
Auto-merging drivers/hwtracing/coresight/coresight-etm-perf.c
Auto-merging drivers/hwtracing/coresight/coresight-etb10.c
Merge made by the 'recursive' strategy.
 drivers/hwtracing/coresight/coresight-etb10.c    | 46 ++++++++++++++++--------
 drivers/hwtracing/coresight/coresight-etm-perf.c |  2 +-
 drivers/hwtracing/coresight/coresight-etm3x.c    |  2 ++
 drivers/hwtracing/coresight/coresight-priv.h     |  2 ++
 drivers/hwtracing/coresight/coresight-tmc-etf.c  | 34 ++++++++++++++++--
 drivers/hwtracing/coresight/coresight-tmc-etr.c  | 12 +++++++
 drivers/hwtracing/coresight/coresight.c          |  8 +++++
 7 files changed, 88 insertions(+), 18 deletions(-)
Merging rtc/rtc-next (42a6e0996084 nvmem: include linux/err.h from header)
$ git merge rtc/rtc-next
Resolved 'tools/testing/selftests/timers/Makefile' using previous resolution.
Auto-merging tools/testing/selftests/timers/Makefile
CONFLICT (content): Merge conflict in tools/testing/selftests/timers/Makefile
Auto-merging drivers/rtc/rtc-ftrtc010.c
Auto-merging MAINTAINERS
Removing Documentation/devicetree/bindings/rtc/cortina,gemini.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 9d32cfb1140d] Merge remote-tracking branch 'rtc/rtc-next'
$ git diff -M --stat --summary HEAD^..
 .../bindings/rtc/brcm,brcmstb-waketimer.txt        |  22 +
 .../devicetree/bindings/rtc/cortina,gemini.txt     |  14 -
 .../devicetree/bindings/rtc/faraday,ftrtc010.txt   |  28 +
 .../devicetree/bindings/rtc/st,stm32-rtc.txt       |  32 +-
 Documentation/rtc.txt                              |  46 +-
 MAINTAINERS                                        |   2 +-
 drivers/rtc/Kconfig                                |  37 +-
 drivers/rtc/Makefile                               |   4 +-
 drivers/rtc/class.c                                | 202 +++--
 drivers/rtc/interface.c                            |   9 +-
 drivers/rtc/nvmem.c                                | 113 +++
 drivers/rtc/rtc-at91rm9200.c                       |  14 +-
 drivers/rtc/rtc-brcmstb-waketimer.c                | 330 +++++++
 drivers/rtc/rtc-core.h                             |   8 +
 drivers/rtc/rtc-dev.c                              |   2 +-
 drivers/rtc/rtc-ds1307.c                           | 957 ++++++++++-----------
 drivers/rtc/rtc-ds3232.c                           | 119 +++
 drivers/rtc/{rtc-gemini.c => rtc-ftrtc010.c}       | 119 ++-
 drivers/rtc/rtc-m41t80.c                           | 251 ++++--
 drivers/rtc/rtc-mxc.c                              |  11 -
 drivers/rtc/rtc-nuc900.c                           |   2 +-
 drivers/rtc/rtc-opal.c                             |  32 +-
 drivers/rtc/rtc-pcf8563.c                          |   2 +-
 drivers/rtc/rtc-rv8803.c                           |  72 +-
 drivers/rtc/rtc-s3c.c                              | 147 ++--
 drivers/rtc/rtc-st-lpc.c                           |  19 +-
 drivers/rtc/rtc-stm32.c                            |  82 +-
 drivers/rtc/rtc-sysfs.c                            |   3 +-
 include/linux/nvmem-provider.h                     |   3 +
 include/linux/rtc.h                                |  15 +-
 tools/testing/selftests/timers/Makefile            |   2 +-
 tools/testing/selftests/timers/rtctest.c           | 128 ++-
 tools/testing/selftests/timers/rtctest_setdate.c   |  86 ++
 33 files changed, 2027 insertions(+), 886 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/rtc/brcm,brcmstb-waketimer.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/cortina,gemini.txt
 create mode 100644 Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
 create mode 100644 drivers/rtc/nvmem.c
 create mode 100644 drivers/rtc/rtc-brcmstb-waketimer.c
 rename drivers/rtc/{rtc-gemini.c => rtc-ftrtc010.c} (50%)
 create mode 100644 tools/testing/selftests/timers/rtctest_setdate.c
Merging hwspinlock/for-next (bd5717a4632c hwspinlock: qcom: Correct msb in regmap_field)
$ git merge hwspinlock/for-next
Already up-to-date.
Merging nvdimm/libnvdimm-for-next (9d92573fff3e Merge branch 'for-4.13/dax' into libnvdimm-for-next)
$ git merge nvdimm/libnvdimm-for-next
Already up-to-date.
Merging dax-misc/dax-misc (4d9a2c874667 dax: Remove i_mmap_lock protection)
$ git merge dax-misc/dax-misc
Already up-to-date.
Merging 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 kspp/for-next/kspp (cb00e6b58abb Merge branch 'for-next/gcc-plugin/randstruct' into for-next/kspp)
$ git merge kspp/for-next/kspp
Resolved 'include/linux/fs.h' using previous resolution.
Auto-merging security/keys/internal.h
Auto-merging kernel/futex.c
Auto-merging include/net/sock.h
Auto-merging include/net/net_namespace.h
Auto-merging include/net/neighbour.h
Auto-merging include/net/af_unix.h
Auto-merging include/linux/tty.h
Auto-merging include/linux/sysctl.h
Auto-merging include/linux/sched.h
Auto-merging include/linux/module.h
Auto-merging include/linux/lsm_hooks.h
Auto-merging include/linux/kobject.h
Auto-merging include/linux/fs.h
CONFLICT (content): Merge conflict in include/linux/fs.h
Auto-merging include/linux/dcache.h
Auto-merging include/linux/cred.h
Auto-merging include/linux/compiler.h
Auto-merging include/linux/compiler-gcc.h
Auto-merging fs/proc/internal.h
Auto-merging fs/namei.c
Auto-merging fs/mount.h
Auto-merging arch/x86/include/asm/processor.h
Auto-merging arch/x86/include/asm/paravirt_types.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master cc334f4efa84] Merge remote-tracking branch 'kspp/for-next/kspp'
$ git diff -M --stat --summary HEAD^..
 arch/arm/include/asm/cacheflush.h     |  2 +-
 arch/x86/include/asm/paravirt_types.h | 16 ++++++++--------
 arch/x86/include/asm/processor.h      |  2 +-
 fs/mount.h                            |  4 ++--
 fs/namei.c                            |  2 +-
 fs/proc/internal.h                    |  6 +++---
 include/linux/binfmts.h               |  4 ++--
 include/linux/cdev.h                  |  2 +-
 include/linux/compiler-gcc.h          | 13 ++++++++++++-
 include/linux/compiler.h              |  5 +++++
 include/linux/cred.h                  |  4 ++--
 include/linux/dcache.h                |  2 +-
 include/linux/fs.h                    | 17 +++++++++--------
 include/linux/fs_struct.h             |  2 +-
 include/linux/ipc.h                   |  2 +-
 include/linux/ipc_namespace.h         |  2 +-
 include/linux/key-type.h              |  4 ++--
 include/linux/kmod.h                  |  2 +-
 include/linux/kobject.h               |  2 +-
 include/linux/lsm_hooks.h             |  4 ++--
 include/linux/mm_types.h              |  4 ++--
 include/linux/module.h                |  4 ++--
 include/linux/mount.h                 |  2 +-
 include/linux/msg.h                   |  2 +-
 include/linux/path.h                  |  2 +-
 include/linux/pid_namespace.h         |  2 +-
 include/linux/proc_ns.h               |  2 +-
 include/linux/sched.h                 | 16 +++++++++++++++-
 include/linux/sched/signal.h          |  2 +-
 include/linux/sem.h                   |  2 +-
 include/linux/shm.h                   |  2 +-
 include/linux/sysctl.h                |  2 +-
 include/linux/tty.h                   |  2 +-
 include/linux/tty_driver.h            |  4 ++--
 include/linux/user_namespace.h        |  2 +-
 include/linux/utsname.h               |  2 +-
 include/net/af_unix.h                 |  2 +-
 include/net/neighbour.h               |  2 +-
 include/net/net_namespace.h           |  2 +-
 include/net/sock.h                    |  2 +-
 kernel/futex.c                        |  4 ++--
 security/keys/internal.h              |  2 +-
 42 files changed, 97 insertions(+), 66 deletions(-)
Merging akpm-current/current (0cae595a2d0b ipc/util.h: update documentation for ipc_getref() and ipc_putref())
$ git merge --no-ff akpm-current/current
Resolved 'include/linux/ipc.h' using previous resolution.
Resolved 'include/linux/sem.h' using previous resolution.
Auto-merging include/linux/sysctl.h
Auto-merging include/linux/sem.h
CONFLICT (content): Merge conflict in include/linux/sem.h
Auto-merging include/linux/sched.h
Auto-merging include/linux/ipc.h
CONFLICT (content): Merge conflict in include/linux/ipc.h
Auto-merging include/linux/dcache.h
Auto-merging fs/proc/proc_sysctl.c
Auto-merging drivers/char/random.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master fe5d6686bb43] Merge branch 'akpm-current/current'
$ git diff -M --stat --summary HEAD^..
 Documentation/fault-injection/fault-injection.txt |  79 +++++
 Documentation/filesystems/proc.txt                |   6 +-
 Documentation/kdump/kdump.txt                     |  12 +-
 arch/arm/include/asm/page.h                       |   2 +
 arch/ia64/kernel/machine_kexec.c                  |   5 -
 arch/powerpc/kernel/fadump.c                      |   3 +-
 arch/s390/kernel/machine_kexec.c                  |   1 +
 arch/s390/kernel/setup.c                          |   6 -
 arch/x86/kernel/crash.c                           |   2 +-
 arch/x86/kernel/machine_kexec_64.c                |   1 +
 arch/x86/xen/mmu_pv.c                             |   4 +-
 block/genhd.c                                     |   2 +-
 drivers/char/random.c                             |   5 +
 fs/Kconfig                                        |   1 -
 fs/bfs/inode.c                                    |   2 +-
 fs/eventpoll.c                                    |  52 +++-
 fs/ocfs2/dlm/dlmmaster.c                          |  66 ++--
 fs/ocfs2/dlm/dlmrecovery.c                        |  40 +--
 fs/ocfs2/dlmglue.c                                |   2 +-
 fs/ocfs2/filecheck.c                              | 357 +++++++++-------------
 fs/ocfs2/filecheck.h                              |  29 +-
 fs/ocfs2/ocfs2.h                                  |   8 +
 fs/ocfs2/stackglue.c                              |   6 -
 fs/ocfs2/stackglue.h                              |   3 -
 fs/ocfs2/super.c                                  |  35 ++-
 fs/proc/base.c                                    |  44 +++
 fs/proc/proc_sysctl.c                             |  26 +-
 fs/read_write.c                                   |   3 +-
 fs/seq_file.c                                     |  10 -
 include/linux/crash_core.h                        |   9 +-
 include/linux/dcache.h                            |   4 +-
 include/linux/eventpoll.h                         |   5 +
 include/linux/ipc.h                               |   3 +
 include/linux/kernel.h                            |  10 +-
 include/linux/kexec.h                             |   2 +
 include/linux/reboot.h                            |   4 +
 include/linux/sched.h                             |   1 +
 include/linux/sem.h                               |  24 +-
 include/linux/sysctl.h                            |   3 +
 include/uapi/linux/kcmp.h                         |  10 +
 include/uapi/linux/sem.h                          |   2 +-
 include/uapi/linux/sysctl.h                       |   4 +
 init/main.c                                       |   1 +
 ipc/msg.c                                         |  28 +-
 ipc/sem.c                                         | 155 +++++-----
 ipc/shm.c                                         |  26 +-
 ipc/util.c                                        |  65 +---
 ipc/util.h                                        |  23 +-
 kernel/crash_core.c                               |  44 ++-
 kernel/fork.c                                     |  20 +-
 kernel/kcmp.c                                     |  57 ++++
 kernel/kexec.c                                    |   8 +
 kernel/kexec_core.c                               |  39 +++
 kernel/kexec_file.c                               |   8 +
 kernel/ksysfs.c                                   |   2 +-
 kernel/reboot.c                                   |  27 ++
 kernel/sysctl.c                                   | 304 +++++++++++++++---
 kernel/sysctl_binary.c                            |   2 +-
 lib/fault-inject.c                                |   7 +
 mm/memory_hotplug.c                               |   4 +
 mm/mmap.c                                         |   2 +-
 mm/page_alloc.c                                   |  19 +-
 mm/page_owner.c                                   |   4 +-
 mm/slub.c                                         |   2 +-
 mm/vmscan.c                                       |  17 +-
 samples/kfifo/dma-example.c                       |   8 +-
 scripts/gdb/linux/constants.py.in                 |   7 +
 scripts/gdb/linux/dmesg.py                        |  15 +-
 scripts/gdb/linux/proc.py                         |  73 +++++
 69 files changed, 1266 insertions(+), 594 deletions(-)
$ git clone -s -l -n -q . ../rebase-tmp
$ cd ../rebase-tmp
$ git checkout -b akpm remotes/origin/akpm/master
Switched to a new branch 'akpm'
$ git rebase --onto master remotes/origin/akpm/master-base
First, rewinding head to replay your work on top of it...
Applying: net/netfilter/x_tables.c: use kvmalloc() in xt_alloc_table_info()
Applying: kernel/watchdog: remove unused declaration
Applying: kernel/watchdog: introduce arch_touch_nmi_watchdog()
Applying: kernel/watchdog: split up config options
Applying: watchdog-split-up-config-options-fix
Applying: kernel/watchdog: provide watchdog_nmi_reconfigure() for arch watchdogs
Applying: watchdog-provide-watchdog_reconfigure-for-arch-watchdogs-fix
Applying: kernel/watchdog: hide unused function
Applying: powerpc/64s: implement arch-specific hardlockup watchdog
Applying: powerpc/64s: watchdog honor watchdog disable at boot/hotplug
Applying: powerpc/64s: watchdog false positive warning at CPU unplug
Applying: powerpc-64s-implement-arch-specific-hardlockup-watchdog-checkpatch-fixes
Applying: efi: avoid fortify checks in EFI stub
Applying: kexec_file: adjust declaration of kexec_purgatory
Applying: IB/rxe: do not copy extra stack memory to skb
Applying: powerpc: don't fortify prom_init
Applying: powerpc: make feature-fixup tests fortify-safe
Applying: include/linux/string.h: add the option of fortified string.h functions
Applying: x86: fix fortified memcpy
Applying: fortify: avoid panic() in favor of BUG()
Applying: sh: mark end of BUG() implementation as unreachable
Applying: random,stackprotect: introduce get_random_canary function
Applying: fork,random: use get_random_canary() to set tsk->stack_canary
Applying: x86: ascii armor the x86_64 boot init stack canary
Applying: arm64: ascii armor the arm64 boot init stack canary
Applying: sh64: ascii armor the sh64 boot init stack canary
Applying: x86/mmap: properly account for stack randomization in mmap_base
Applying: arm64/mmap: properly account for stack randomization in mmap_base
Applying: powerpc,mmap: properly account for stack randomization in mmap_base
Applying: MIPS: do not use __GFP_REPEAT for order-0 request
Applying: mm, tree wide: replace __GFP_REPEAT by __GFP_RETRY_MAYFAIL with more useful semantic
Applying: mm-tree-wide-replace-__gfp_repeat-by-__gfp_retry_mayfail-with-more-useful-semantic-fix
Applying: mm-tree-wide-replace-__gfp_repeat-by-__gfp_retry_mayfail-with-more-useful-semantic-fix
Applying: mm-tree-wide-replace-__gfp_repeat-by-__gfp_retry_mayfail-with-more-useful-semantic-fix-3
Applying: xfs: map KM_MAYFAIL to __GFP_RETRY_MAYFAIL
Applying: mm: kvmalloc support __GFP_RETRY_MAYFAIL for all sizes
Applying: drm/i915: use __GFP_RETRY_MAYFAIL
Applying: mm, migration: do not trigger OOM killer when migrating memory
Applying: checkpatch: improve the STORAGE_CLASS test
Applying: ARM: KVM: move asmlinkage before type
Applying: ARM: HP Jornada 7XX: move inline before return type
Applying: CRIS: gpio: move inline before return type
Applying: FRV: tlbflush: move asmlinkage before return type
Applying: ia64: move inline before return type
Applying: ia64: sn: pci: move inline before type
Applying: m68k: coldfire: move inline before return type
Applying: MIPS: SMP: move asmlinkage before return type
Applying: sh: move inline before return type
Applying: x86/efi: move asmlinkage before return type
Applying: drivers: s390: move static and inline before return type
Applying: drivers: tty: serial: move inline before return type
Applying: USB: serial: safe_serial: move __inline__ before return type
Applying: video: fbdev: intelfb: move inline before return type
Applying: video: fbdev: omap: move inline before return type
Applying: ARM: samsung: usb-ohci: move inline before return type
Applying: sparc64: NG4 memset 32 bits overflow
Applying: xtensa: use generic fb.h
Applying: MAINTAINERS: give kmod some maintainer love
Applying: kmod: add test driver to stress test the module loader
Applying: kmod: add dependencies for test module
Applying: kmod: throttle kmod thread limit
Applying: writeback: rework wb_[dec|inc]_stat family of functions
Applying: lib/crc-ccitt: add CCITT-FALSE CRC16 variant
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + 56a53b0cf002...9d92fb96c983 akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (9d92fb96c983 lib/crc-ccitt: add CCITT-FALSE CRC16 variant)
$ git merge --no-ff akpm/master
Removing arch/xtensa/include/asm/fb.h
Merge made by the 'recursive' strategy.
 Documentation/DMA-ISA-LPC.txt                  |    2 +-
 MAINTAINERS                                    |    9 +
 arch/Kconfig                                   |   31 +-
 arch/arm/include/asm/kvm_hyp.h                 |    8 +-
 arch/arm/mach-sa1100/jornada720_ssp.c          |    2 +-
 arch/arm64/Kconfig                             |    1 +
 arch/arm64/include/asm/stackprotector.h        |    1 +
 arch/arm64/include/asm/string.h                |    5 +
 arch/arm64/mm/mmap.c                           |    7 +-
 arch/blackfin/include/asm/nmi.h                |    2 +
 arch/blackfin/kernel/nmi.c                     |    2 +-
 arch/cris/arch-v10/drivers/gpio.c              |    4 +-
 arch/frv/include/asm/tlbflush.h                |    8 +-
 arch/ia64/kernel/mca.c                         |    2 +-
 arch/ia64/sn/pci/pcibr/pcibr_ate.c             |    2 +-
 arch/ia64/sn/pci/tioce_provider.c              |    4 +-
 arch/m68k/coldfire/intc-simr.c                 |    4 +-
 arch/mips/include/asm/pgalloc.h                |    2 +-
 arch/mips/include/asm/smp.h                    |    2 +-
 arch/mn10300/include/asm/nmi.h                 |    2 +
 arch/mn10300/kernel/mn10300-watchdog-low.S     |    8 +-
 arch/mn10300/kernel/mn10300-watchdog.c         |    2 +-
 arch/powerpc/Kconfig                           |    7 +-
 arch/powerpc/include/asm/book3s/64/pgalloc.h   |    2 +-
 arch/powerpc/include/asm/nmi.h                 |   11 +
 arch/powerpc/include/asm/smp.h                 |    2 +
 arch/powerpc/kernel/Makefile                   |    1 +
 arch/powerpc/kernel/exceptions-64s.S           |   30 +-
 arch/powerpc/kernel/kvm.c                      |    7 +
 arch/powerpc/kernel/prom_init.c                |    3 +
 arch/powerpc/kernel/setup_64.c                 |   19 -
 arch/powerpc/kernel/smp.c                      |   20 +-
 arch/powerpc/kernel/watchdog.c                 |  386 ++++++++
 arch/powerpc/kvm/book3s_64_mmu_hv.c            |    2 +-
 arch/powerpc/lib/feature-fixups.c              |  180 ++--
 arch/powerpc/mm/mmap.c                         |   28 +-
 arch/sh/include/asm/bug.h                      |    1 +
 arch/sh/include/asm/stackprotector.h           |    1 +
 arch/sh/mm/cache-sh5.c                         |    2 +-
 arch/sparc/include/asm/nmi.h                   |    1 +
 arch/sparc/kernel/mdesc.c                      |    2 +-
 arch/sparc/kernel/nmi.c                        |    6 +-
 arch/sparc/lib/NG4memset.S                     |   26 +-
 arch/x86/Kconfig                               |    2 +
 arch/x86/boot/compressed/misc.c                |    5 +
 arch/x86/include/asm/efi.h                     |    4 +-
 arch/x86/include/asm/stackprotector.h          |    1 +
 arch/x86/include/asm/string_32.h               |    9 +
 arch/x86/include/asm/string_64.h               |    7 +
 arch/x86/kernel/apic/hw_nmi.c                  |    2 +-
 arch/x86/lib/memcpy_32.c                       |    2 +-
 arch/x86/mm/mmap.c                             |    7 +-
 arch/xtensa/include/asm/Kbuild                 |    1 +
 arch/xtensa/include/asm/fb.h                   |   12 -
 drivers/firmware/efi/libstub/Makefile          |    1 +
 drivers/gpu/drm/i915/i915_gem.c                |    3 +-
 drivers/infiniband/sw/rxe/rxe_resp.c           |    4 +-
 drivers/mmc/host/wbsd.c                        |    2 +-
 drivers/s390/char/vmcp.c                       |    2 +-
 drivers/s390/net/ctcm_main.c                   |    2 +-
 drivers/s390/net/qeth_l3_main.c                |    2 +-
 drivers/target/target_core_transport.c         |    2 +-
 drivers/tty/serial/ioc3_serial.c               |    4 +-
 drivers/tty/serial/ioc4_serial.c               |    4 +-
 drivers/usb/serial/safe_serial.c               |    2 +-
 drivers/vhost/net.c                            |    2 +-
 drivers/vhost/scsi.c                           |    2 +-
 drivers/vhost/vsock.c                          |    2 +-
 drivers/video/fbdev/intelfb/intelfbdrv.c       |    2 +-
 drivers/video/fbdev/omap/lcdc.c                |    6 +-
 fs/fs-writeback.c                              |    8 +-
 fs/xfs/kmem.h                                  |   10 +
 include/linux/backing-dev.h                    |   24 +-
 include/linux/crc-ccitt.h                      |    7 +
 include/linux/gfp.h                            |   56 +-
 include/linux/migrate.h                        |    2 +-
 include/linux/nmi.h                            |   57 +-
 include/linux/platform_data/usb-ohci-s3c2410.h |    2 +-
 include/linux/random.h                         |   21 +
 include/linux/slab.h                           |    3 +-
 include/linux/string.h                         |  200 ++++
 include/trace/events/mmflags.h                 |    2 +-
 kernel/Makefile                                |    2 +-
 kernel/fork.c                                  |    2 +-
 kernel/kexec_file.c                            |    7 -
 kernel/kexec_internal.h                        |    2 +
 kernel/kmod.c                                  |   16 +-
 kernel/sysctl.c                                |   31 +-
 kernel/watchdog.c                              |  287 ++++--
 kernel/watchdog_hld.c                          |   37 +-
 lib/Kconfig.debug                              |   72 +-
 lib/Makefile                                   |    1 +
 lib/crc-ccitt.c                                |   58 +-
 lib/percpu_counter.c                           |    7 +
 lib/string.c                                   |    7 +
 lib/test_kmod.c                                | 1246 ++++++++++++++++++++++++
 mm/hugetlb.c                                   |    4 +-
 mm/internal.h                                  |    2 +-
 mm/mempolicy.c                                 |    3 +-
 mm/page-writeback.c                            |   10 +-
 mm/page_alloc.c                                |   14 +-
 mm/sparse-vmemmap.c                            |    4 +-
 mm/util.c                                      |   14 +-
 mm/vmalloc.c                                   |    2 +-
 mm/vmscan.c                                    |    8 +-
 net/core/dev.c                                 |    6 +-
 net/core/skbuff.c                              |    2 +-
 net/netfilter/x_tables.c                       |   12 +-
 net/sched/sch_fq.c                             |    2 +-
 scripts/checkpatch.pl                          |   12 +-
 security/Kconfig                               |    7 +
 tools/perf/builtin-kmem.c                      |    2 +-
 tools/testing/selftests/kmod/Makefile          |   11 +
 tools/testing/selftests/kmod/config            |    7 +
 tools/testing/selftests/kmod/kmod.sh           |  615 ++++++++++++
 115 files changed, 3354 insertions(+), 491 deletions(-)
 create mode 100644 arch/powerpc/kernel/watchdog.c
 delete mode 100644 arch/xtensa/include/asm/fb.h
 create mode 100644 lib/test_kmod.c
 create mode 100644 tools/testing/selftests/kmod/Makefile
 create mode 100644 tools/testing/selftests/kmod/config
 create mode 100644 tools/testing/selftests/kmod/kmod.sh