summaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: ce3e22f04143dd064ed0e56a3a2f3200c1bf8a50 (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
$ date
Saturday 3 January  07:31:26 AEDT 2015
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at 2c90331cf5ed Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Merging origin/master (5e0f872c7d7e Merge branch 'upstream' of git://git.infradead.org/users/pcmoore/audit)
$ git merge origin/master
Updating 2c90331cf5ed..5e0f872c7d7e
Fast-forward
 .../devicetree/bindings/input/gpio-keys.txt        |  10 +-
 .../devicetree/bindings/input/stmpe-keypad.txt     |   2 +
 arch/arm/boot/dts/armada-370-db.dts                |  24 ----
 arch/arm/configs/multi_v7_defconfig                |   1 +
 arch/nios2/kernel/cpuinfo.c                        |   1 +
 arch/nios2/kernel/entry.S                          |  20 +--
 crypto/af_alg.c                                    |   3 +
 drivers/clocksource/arm_arch_timer.c               |   2 +-
 drivers/input/evdev.c                              |  60 ++++++---
 drivers/input/input.c                              |  22 ++--
 drivers/input/keyboard/Kconfig                     |   1 +
 drivers/input/keyboard/gpio_keys.c                 | 114 ++++++++---------
 drivers/input/keyboard/hil_kbd.c                   |   6 +-
 drivers/input/keyboard/stmpe-keypad.c              | 141 ++++++++++++---------
 drivers/input/mouse/alps.c                         |  84 ++++++++++--
 drivers/input/mouse/trackpoint.c                   |   4 +
 drivers/input/mouse/trackpoint.h                   |   5 +
 drivers/input/touchscreen/atmel_mxt_ts.c           |  99 ++++-----------
 drivers/input/touchscreen/edt-ft5x06.c             |   4 +-
 drivers/mfd/stmpe.c                                |   4 +
 drivers/mfd/stmpe.h                                |   3 +
 drivers/video/fbdev/core/fb_defio.c                |   5 +-
 drivers/video/fbdev/omap2/dss/hdmi_pll.c           |   2 -
 drivers/video/fbdev/omap2/dss/pll.c                |   3 +-
 drivers/video/fbdev/omap2/dss/sdi.c                |   2 +
 drivers/video/logo/logo.c                          |  17 ++-
 include/linux/mfd/stmpe.h                          |  22 +---
 kernel/auditsc.c                                   |  49 +++++--
 net/wireless/Kconfig                               |   2 +-
 29 files changed, 400 insertions(+), 312 deletions(-)
Merging fixes/master (b94d525e58dc Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge fixes/master
Already up-to-date.
Merging kbuild-current/rc-fixes (a16c5f99a28c kbuild: Fix removal of the debian/ directory)
$ git merge kbuild-current/rc-fixes
Merge made by the 'recursive' strategy.
 scripts/Makefile.clean | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
Merging arc-current/for-curr (2ce7598c9a45 Linux 3.17-rc4)
$ git merge arc-current/for-curr
Already up-to-date.
Merging arm-current/fixes (3f4aa45ceea5 ARM: 8226/1: cacheflush: get rid of restarting block)
$ git merge arm-current/fixes
Already up-to-date.
Merging m68k-current/for-linus (f0b99a643e96 m68k/mm: Eliminate memset after alloc_bootmem_pages)
$ git merge m68k-current/for-linus
Already up-to-date.
Merging metag-fixes/fixes (ffe6902b66aa asm-generic: remove _STK_LIM_MAX)
$ git merge metag-fixes/fixes
Already up-to-date.
Merging mips-fixes/mips-fixes (1795cd9b3a91 Linux 3.16-rc5)
$ git merge mips-fixes/mips-fixes
Already up-to-date.
Merging powerpc-merge/merge (31345e1a071e powerpc/pci: Remove unused force_32bit_msi quirk)
$ git merge powerpc-merge/merge
Already up-to-date.
Merging powerpc-merge-mpe/fixes (1be6f10f6f9c Revert "powerpc: Secondary CPUs must set cpu_callin_map after setting active and online")
$ git merge powerpc-merge-mpe/fixes
Merge made by the 'recursive' strategy.
 arch/powerpc/include/asm/kexec.h       | 10 ++++++++++
 arch/powerpc/include/asm/systbl.h      |  1 +
 arch/powerpc/include/asm/unistd.h      |  2 +-
 arch/powerpc/include/uapi/asm/unistd.h |  1 +
 arch/powerpc/kernel/machine_kexec_64.c |  2 +-
 arch/powerpc/kernel/smp.c              |  9 +--------
 arch/powerpc/platforms/pseries/lpar.c  |  8 +++++++-
 7 files changed, 22 insertions(+), 11 deletions(-)
Merging sparc/master (66d0f7ec9f10 sparc32: destroy_context() and switch_mm() needs to disable interrupts.)
$ git merge sparc/master
Already up-to-date.
Merging net/master (7824acd92494 qlcnic: Fix return value in qlcnic_probe())
$ git merge net/master
Merge made by the 'recursive' strategy.
 drivers/net/ethernet/allwinner/sun4i-emac.c       | 4 +++-
 drivers/net/ethernet/intel/e100.c                 | 2 +-
 drivers/net/ethernet/intel/i40e/i40e_debugfs.c    | 4 +++-
 drivers/net/ethernet/intel/igb/e1000_82575.c      | 2 +-
 drivers/net/ethernet/myricom/myri10ge/myri10ge.c  | 4 +++-
 drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c  | 1 +
 drivers/net/ethernet/xilinx/ll_temac_main.c       | 2 ++
 drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 2 ++
 drivers/net/ethernet/xilinx/xilinx_emaclite.c     | 1 +
 9 files changed, 17 insertions(+), 5 deletions(-)
Merging ipsec/master (f855691975bb xfrm6: Fix the nexthdr offset in _decode_session6.)
$ git merge ipsec/master
Merge made by the 'recursive' strategy.
 net/ipv6/xfrm6_policy.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
Merging sound-current/for-linus (62f64a880af2 ALSA: pcm: Fix kerneldoc for params_*() functions)
$ git merge sound-current/for-linus
Merge made by the 'recursive' strategy.
 include/sound/pcm.h                 | 10 ++++----
 sound/soc/codecs/rt5677.c           |  9 ++++---
 sound/soc/dwc/designware_i2s.c      | 49 +++++++++++++++++++++++--------------
 sound/soc/intel/Kconfig             |  4 +--
 sound/soc/intel/bytcr_dpcm_rt5640.c |  2 +-
 sound/soc/intel/sst-firmware.c      |  6 ++++-
 sound/soc/intel/sst/sst_acpi.c      |  2 +-
 sound/soc/rockchip/rockchip_i2s.c   |  4 +--
 sound/soc/rockchip/rockchip_i2s.h   |  2 +-
 sound/soc/soc-core.c                | 14 ++++-------
 10 files changed, 57 insertions(+), 45 deletions(-)
Merging pci-current/for-linus (97bf6af1f928 Linux 3.19-rc1)
$ git merge pci-current/for-linus
Already up-to-date.
Merging wireless/master (97bf6af1f928 Linux 3.19-rc1)
$ git merge wireless/master
Already up-to-date.
Merging wireless-drivers/master (eb46e2215fc6 Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth)
$ git merge wireless-drivers/master
Already up-to-date.
Merging driver-core.current/driver-core-linus (b7392d2247cf Linux 3.19-rc2)
$ git merge driver-core.current/driver-core-linus
Already up-to-date.
Merging tty.current/tty-linus (b7392d2247cf Linux 3.19-rc2)
$ git merge tty.current/tty-linus
Already up-to-date.
Merging usb.current/usb-linus (b3ee8bdcd243 Merge tag 'fixes-for-v3.19-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus)
$ git merge usb.current/usb-linus
Merge made by the 'recursive' strategy.
 drivers/usb/dwc2/gadget.c               | 10 +++++++---
 drivers/usb/dwc3/dwc3-pci.c             |  4 ++++
 drivers/usb/gadget/function/f_hid.c     |  5 +++--
 drivers/usb/gadget/function/f_midi.c    |  2 +-
 drivers/usb/gadget/function/f_uac1.c    |  2 +-
 drivers/usb/gadget/legacy/inode.c       |  1 +
 drivers/usb/gadget/udc/atmel_usba_udc.c |  7 +++----
 drivers/usb/musb/Kconfig                |  4 ++++
 drivers/usb/musb/blackfin.c             |  2 +-
 drivers/usb/musb/musb_cppi41.c          |  4 ++--
 drivers/usb/musb/musb_debugfs.c         | 34 +++++++++++++++++----------------
 drivers/usb/musb/musb_host.c            |  1 -
 12 files changed, 45 insertions(+), 31 deletions(-)
Merging usb-gadget-fixes/fixes (6785a1034461 usb: gadget: udc: atmel: fix possible IN hang issue)
$ git merge usb-gadget-fixes/fixes
Already up-to-date.
Merging usb-serial-fixes/usb-linus (b5122236bba8 USB: keyspan: fix null-deref at probe)
$ git merge usb-serial-fixes/usb-linus
Merge made by the 'recursive' strategy.
 drivers/usb/serial/cp210x.c  |  2 +-
 drivers/usb/serial/keyspan.c | 20 +++++++++++++++-----
 2 files changed, 16 insertions(+), 6 deletions(-)
Merging staging.current/staging-linus (97bf6af1f928 Linux 3.19-rc1)
$ git merge staging.current/staging-linus
Already up-to-date.
Merging char-misc.current/char-misc-linus (b7392d2247cf Linux 3.19-rc2)
$ git merge char-misc.current/char-misc-linus
Already up-to-date.
Merging input-current/for-linus (cceeb872d60f Input: hil_kbd - fix incorrect use of init_completion)
$ git merge input-current/for-linus
Already up-to-date.
Merging md-current/for-linus (d47648fcf061 raid5: avoid finding "discard" stripe)
$ git merge md-current/for-linus
Already up-to-date.
Merging crypto-current/master (7e77bdebff5c crypto: af_alg - fix backlog handling)
$ git merge crypto-current/master
Already up-to-date.
Merging ide/master (f96fe225677b Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge ide/master
Already up-to-date.
Merging dwmw2/master (5950f0803ca9 pcmcia: remove RPX board stuff)
$ git merge dwmw2/master
Already up-to-date.
Merging devicetree-current/devicetree/merge (094cb98179f1 of/fdt: memblock_reserve /memreserve/ regions in the case of partial overlap)
$ git merge devicetree-current/devicetree/merge
Already up-to-date.
Merging rr-fixes/fixes (3438cf549d2f param: fix crash on bad kernel arguments)
$ git merge rr-fixes/fixes
Already up-to-date.
Merging vfio-fixes/for-linus (239a87020b26 Merge branch 'for-joerg/arm-smmu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/will/linux into for-linus)
$ git merge vfio-fixes/for-linus
Already up-to-date.
Merging kselftest-fixes/fixes (6898b627aab6 selftests/exec: Use %zu to format size_t)
$ git merge kselftest-fixes/fixes
Already up-to-date.
Merging drm-intel-fixes/for-linux-next-fixes (f465245df911 drm/i915: vlv: sanitize RPS interrupt mask during GPU idling)
$ git merge drm-intel-fixes/for-linux-next-fixes
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/i915/i915_irq.c  | 20 ++++++++++++++++++--
 drivers/gpu/drm/i915/intel_drv.h |  1 +
 drivers/gpu/drm/i915/intel_pm.c  | 14 +++-----------
 3 files changed, 22 insertions(+), 13 deletions(-)
Merging asm-generic/master (cb61f6769b88 ARM64: use GENERIC_PCI_IOMAP)
$ git merge asm-generic/master
Already up-to-date.
Merging arc/for-next (97bf6af1f928 Linux 3.19-rc1)
$ git merge arc/for-next
Already up-to-date.
Merging arm/for-next (e9f2d6d66037 Merge branch 'devel-stable' into for-next)
$ git merge arm/for-next
Already up-to-date.
Merging arm-perf/for-next/perf (cac7f2429872 Linux 3.18-rc2)
$ git merge arm-perf/for-next/perf
Already up-to-date.
Merging arm-soc/for-next (d6ad36913083 clocksource: arch_timer: Only use the virtual counter (CNTVCT) on arm64)
$ git merge arm-soc/for-next
Already up-to-date.
Merging bcm2835/for-next (b2776bf7149b Linux 3.18)
$ git merge bcm2835/for-next
Already up-to-date.
Merging berlin/berlin/for-next (97bf6af1f928 Linux 3.19-rc1)
$ git merge berlin/berlin/for-next
Already up-to-date.
Merging cortex-m/for-next (e799b6f37e6c ARM: zImage: add support for ARMv7-M)
$ git merge cortex-m/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/compressed/head.S | 33 +++++++++++++++++++++++++++------
 arch/arm/include/asm/unified.h  |  8 ++++++++
 2 files changed, 35 insertions(+), 6 deletions(-)
Merging ep93xx/ep93xx-for-next (bfb0709fd17b Merge branch 'ep93xx-fixes' into ep93xx-for-next)
$ git merge ep93xx/ep93xx-for-next
Merge made by the 'recursive' strategy.
Merging imx-mxs/for-next (8a73e870fc56 Merge tag 'imx-dt-3.19' into for-next)
$ git merge imx-mxs/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging ixp4xx/next (19f949f52599 Linux 3.8)
$ git merge ixp4xx/next
Already up-to-date.
Merging keystone/next (b17275a4a6cc Merge branch 'for_3.19/soc' into next)
$ git merge keystone/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging msm/for-next (81cf1e061d00 ARM: msm: Rename msm devicetrees to have standard 'qcom' prefix)
$ git merge msm/for-next
Already up-to-date.
Merging mvebu/for-next (10fbc6c4d046 Merge branch 'mvebu/dt' into mvebu/for-next)
$ git merge mvebu/for-next
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/kirkwood-6192.dtsi          |  2 ++
 arch/arm/boot/dts/kirkwood-iomega_ix2_200.dts |  8 ++++++--
 arch/arm/configs/mvebu_v7_defconfig           |  1 +
 drivers/leds/leds-netxbig.c                   | 12 ++++++------
 4 files changed, 15 insertions(+), 8 deletions(-)
Merging renesas/next (340337ad530d Merge branches 'heads/soc-fixes-for-v3.19', 'heads/defconfig-for-v3.20', 'heads/soc-for-v3.20', 'heads/dt-for-v3.20', 'heads/dt-cleanups-for-v3.20', 'heads/sh-drivers-for-v3.20', 'heads/lager-board-removal-for-v3.20' and 'heads/sh73a0-ccf-for-v3.20' into next)
$ git merge renesas/next
Removing arch/arm/mach-shmobile/clock-r8a7790.c
Removing arch/arm/mach-shmobile/board-lager.c
Removing arch/arm/mach-shmobile/board-lager-reference.c
Removing arch/arm/configs/lager_defconfig
Merge made by the 'recursive' strategy.
 .../bindings/clock/renesas,sh73a0-cpg-clocks.txt   |  35 +
 .../bindings/power/renesas,sysc-rmobile.txt        |  98 +++
 MAINTAINERS                                        |   1 -
 arch/arm/boot/dts/Makefile                         |   2 +-
 arch/arm/boot/dts/r7s72100-genmai.dts              |   2 +-
 arch/arm/boot/dts/r8a73a4-ape6evm-reference.dts    |   2 +-
 arch/arm/boot/dts/r8a73a4-ape6evm.dts              | 173 ++++-
 arch/arm/boot/dts/r8a7740-armadillo800eva.dts      |   4 +-
 arch/arm/boot/dts/r8a7740.dtsi                     | 109 ++-
 arch/arm/boot/dts/r8a7779.dtsi                     |  39 +-
 arch/arm/boot/dts/r8a7790-lager.dts                |  20 +-
 arch/arm/boot/dts/r8a7790.dtsi                     |  33 +-
 arch/arm/boot/dts/r8a7791-henninger.dts            |   4 +-
 arch/arm/boot/dts/r8a7791-koelsch.dts              |  22 +-
 arch/arm/boot/dts/r8a7791.dtsi                     |  40 +-
 arch/arm/boot/dts/r8a7794-alt.dts                  |   4 +-
 arch/arm/boot/dts/r8a7794.dtsi                     |  82 +-
 arch/arm/boot/dts/sh73a0-kzm9g-reference.dts       |   6 +-
 arch/arm/boot/dts/sh73a0.dtsi                      | 358 +++++++++
 arch/arm/configs/kzm9g_defconfig                   |   2 +-
 arch/arm/configs/lager_defconfig                   | 150 ----
 arch/arm/configs/shmobile_defconfig                |  31 +-
 arch/arm/mach-shmobile/Kconfig                     |  28 +-
 arch/arm/mach-shmobile/Makefile                    |   3 -
 arch/arm/mach-shmobile/Makefile.boot               |   1 -
 arch/arm/mach-shmobile/board-lager-reference.c     |  39 -
 arch/arm/mach-shmobile/board-lager.c               | 827 ---------------------
 arch/arm/mach-shmobile/clock-r8a7790.c             | 459 ------------
 arch/arm/mach-shmobile/clock-sh73a0.c              |  10 +
 arch/arm/mach-shmobile/pm-r8a7740.c                |  14 +
 arch/arm/mach-shmobile/pm-rmobile.c                | 273 ++++++-
 arch/arm/mach-shmobile/pm-rmobile.h                |   3 +-
 arch/arm/mach-shmobile/pm-sh7372.c                 |  11 +
 arch/arm/mach-shmobile/r8a7790.h                   |  28 -
 arch/arm/mach-shmobile/setup-r8a7740.c             |   7 +
 arch/arm/mach-shmobile/setup-r8a7790.c             | 284 +------
 arch/arm/mach-shmobile/setup-rcar-gen2.c           |   4 +-
 arch/arm/mach-shmobile/setup-sh73a0.c              |   5 +-
 arch/arm/mach-shmobile/smp-r8a7779.c               |   2 +-
 drivers/clk/shmobile/Makefile                      |   1 +
 drivers/clk/shmobile/clk-sh73a0.c                  | 218 ++++++
 drivers/sh/pm_runtime.c                            |   2 +
 include/dt-bindings/clock/r8a7790-clock.h          |   1 +
 include/dt-bindings/clock/r8a7791-clock.h          |   2 +
 include/dt-bindings/clock/r8a7794-clock.h          |  17 +
 include/dt-bindings/clock/sh73a0-clock.h           |  79 ++
 46 files changed, 1580 insertions(+), 1955 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/renesas,sh73a0-cpg-clocks.txt
 create mode 100644 Documentation/devicetree/bindings/power/renesas,sysc-rmobile.txt
 delete mode 100644 arch/arm/configs/lager_defconfig
 delete mode 100644 arch/arm/mach-shmobile/board-lager-reference.c
 delete mode 100644 arch/arm/mach-shmobile/board-lager.c
 delete mode 100644 arch/arm/mach-shmobile/clock-r8a7790.c
 create mode 100644 drivers/clk/shmobile/clk-sh73a0.c
 create mode 100644 include/dt-bindings/clock/sh73a0-clock.h
Merging samsung/for-next (1eeec807bf64 Merge branch 'v3.20-next/dt-samsung-64' into for-next)
$ git merge samsung/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/arm/samsung/pmu.txt        |   1 +
 arch/arm/configs/exynos_defconfig                  |   3 +-
 arch/arm/plat-samsung/cpu.c                        |   4 +
 arch/arm64/Kconfig                                 |  17 +
 arch/arm64/boot/dts/Makefile                       |   1 +
 arch/arm64/boot/dts/exynos/Makefile                |   5 +
 arch/arm64/boot/dts/exynos/exynos7-espresso.dts    |  84 +++
 arch/arm64/boot/dts/exynos/exynos7-pinctrl.dtsi    | 588 +++++++++++++++++++++
 arch/arm64/boot/dts/exynos/exynos7.dtsi            | 530 +++++++++++++++++++
 9 files changed, 1232 insertions(+), 1 deletion(-)
 create mode 100644 arch/arm64/boot/dts/exynos/Makefile
 create mode 100644 arch/arm64/boot/dts/exynos/exynos7-espresso.dts
 create mode 100644 arch/arm64/boot/dts/exynos/exynos7-pinctrl.dtsi
 create mode 100644 arch/arm64/boot/dts/exynos/exynos7.dtsi
Merging sunxi/sunxi/for-next (ad01dbad5626 Merge branch 'sunxi/clocks-for-3.19' into sunxi/for-next)
$ git merge sunxi/sunxi/for-next
Merge made by the 'recursive' strategy.
Merging tegra/for-next (fa047e01365d Merge branch for-3.19/soc into for-next)
$ git merge tegra/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging arm64/for-next/core (fb59d007a0e4 arm64: mm: dump: don't skip final region)
$ git merge arm64/for-next/core
Already up-to-date.
Merging blackfin/for-linus (275f5a8573e7 blackfin: defconfigs: cleanup unused CONFIG_MTD_CHAR, add MTD_SPI_NOR for BF537-STAMP)
$ git merge blackfin/for-linus
Merge made by the 'recursive' strategy.
 arch/blackfin/configs/BF518F-EZBRD_defconfig    |  1 -
 arch/blackfin/configs/BF527-TLL6527M_defconfig  |  1 -
 arch/blackfin/configs/BF533-EZKIT_defconfig     |  1 -
 arch/blackfin/configs/BF533-STAMP_defconfig     |  1 -
 arch/blackfin/configs/BF537-STAMP_defconfig     |  3 ++-
 arch/blackfin/configs/BF538-EZKIT_defconfig     |  1 -
 arch/blackfin/configs/BF561-ACVILON_defconfig   |  1 -
 arch/blackfin/configs/BF561-EZKIT-SMP_defconfig |  1 -
 arch/blackfin/configs/BF561-EZKIT_defconfig     |  1 -
 arch/blackfin/configs/CM-BF527_defconfig        |  1 -
 arch/blackfin/configs/CM-BF533_defconfig        |  1 -
 arch/blackfin/configs/CM-BF537E_defconfig       |  1 -
 arch/blackfin/configs/CM-BF537U_defconfig       |  1 -
 arch/blackfin/configs/CM-BF548_defconfig        |  1 -
 arch/blackfin/configs/CM-BF561_defconfig        |  1 -
 arch/blackfin/configs/DNP5370_defconfig         |  1 -
 arch/blackfin/configs/IP0X_defconfig            |  1 -
 arch/blackfin/configs/PNAV-10_defconfig         |  1 -
 arch/blackfin/configs/SRV1_defconfig            |  1 -
 arch/blackfin/configs/TCM-BF518_defconfig       |  1 -
 arch/blackfin/configs/TCM-BF537_defconfig       |  1 -
 arch/blackfin/kernel/kgdb.c                     | 12 ++++--------
 arch/blackfin/mach-bf609/boards/ezkit.c         |  8 ++++----
 23 files changed, 10 insertions(+), 33 deletions(-)
Merging c6x/for-linux-next (ae72758f1dd9 c6x: fix build failure caused by cache.h)
$ git merge c6x/for-linux-next
Already up-to-date.
Merging cris/for-next (21bd887cd7c4 CRISv32: Remove last remnants of ETRAX_SPI_MMC_BOARD)
$ git merge cris/for-next
Merge made by the 'recursive' strategy.
Merging hexagon/linux-next (8914d7e85780 Hexagon: fix signal delivery for debug traps)
$ git merge hexagon/linux-next
Already up-to-date.
Merging ia64/next (0fd2468fd035 Merge branch 'misc-3.19' into next)
$ git merge ia64/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging m68k/for-next (f0b99a643e96 m68k/mm: Eliminate memset after alloc_bootmem_pages)
$ git merge m68k/for-next
Already up-to-date.
Merging m68knommu/for-next (afdc830bf9ce m68knommu: fix irq handler types in 68360/commproc.c)
$ git merge m68knommu/for-next
Merge made by the 'recursive' strategy.
 arch/m68k/68360/commproc.c       |  8 ++++----
 arch/m68k/include/asm/commproc.h | 24 +-----------------------
 2 files changed, 5 insertions(+), 27 deletions(-)
Merging metag/for-next (f93125ae17d1 metag: cachepart: Fix failure check)
$ git merge metag/for-next
Already up-to-date.
Merging microblaze/next (3a8e3265179b microblaze: Fix mmap for cache coherent memory)
$ git merge microblaze/next
Already up-to-date.
Merging mips/mips-for-linux-next (28320df4899b Merge branch '3.19-fixes' into mips-for-linux-next)
$ git merge mips/mips-for-linux-next
Merge made by the 'recursive' strategy.
 arch/mips/Kconfig                   | 21 ++++++++----------
 arch/mips/configs/malta_defconfig   | 16 ++++----------
 arch/mips/include/asm/checksum.h    | 40 ++++++++++++----------------------
 arch/mips/include/asm/fpu.h         | 43 ++++++++++++++++++++++---------------
 arch/mips/include/uapi/asm/unistd.h | 15 +++++++------
 arch/mips/jz4740/irq.c              |  3 +++
 arch/mips/kernel/scall32-o32.S      |  1 +
 arch/mips/kernel/scall64-64.S       |  1 +
 arch/mips/kernel/scall64-n32.S      |  1 +
 arch/mips/kernel/scall64-o32.S      |  1 +
 10 files changed, 69 insertions(+), 73 deletions(-)
Merging nios2/nios2-next (1b0f44923e18 nios2: Use preempt_schedule_irq)
$ git merge nios2/nios2-next
Already up-to-date.
Merging openrisc/for-upstream (548dafe880ad openrisc: Use get_signal() signal_setup_done())
$ git merge openrisc/for-upstream
Already up-to-date.
Merging parisc/for-next (6c700d71f7fa [PARISC] hpux: Remove obsolete regs parameter from do_execve() in hpux_execve())
$ git merge parisc/for-next
Already up-to-date.
Merging parisc-hd/for-next (b2776bf7149b Linux 3.18)
$ git merge parisc-hd/for-next
Already up-to-date.
Merging powerpc/next (d557b09800da powerpc/mm/thp: Use tlbiel if possible)
$ git merge powerpc/next
Already up-to-date.
Merging powerpc-mpe/next (d70a54e2d085 powerpc/powernv: Ignore smt-enabled on Power8 and later)
$ git merge powerpc-mpe/next
Already up-to-date.
Merging fsl/next (76f3e2929bb6 powerpc/config: Enable memory driver)
$ git merge fsl/next
Already up-to-date.
Merging mpc5xxx/next (9e813308a5c1 powerpc/thp: Add tracepoints to track hugepage invalidate)
$ git merge mpc5xxx/next
Already up-to-date.
Merging s390/features (fa0d0b064d55 s390/signal: add sys_sigreturn and sys_rt_sigreturn declarations)
$ git merge s390/features
Auto-merging arch/s390/mm/pgtable.c
Merge made by the 'recursive' strategy.
 arch/s390/kernel/dis.c       |  1 -
 arch/s390/kernel/entry.h     |  4 +-
 arch/s390/kernel/ftrace.c    | 95 +++++++++++++++++++++++---------------------
 arch/s390/kernel/vtime.c     |  2 -
 arch/s390/mm/pgtable.c       |  6 +--
 arch/s390/pci/pci_mmio.c     |  4 +-
 drivers/s390/crypto/ap_bus.c | 10 +++--
 7 files changed, 64 insertions(+), 58 deletions(-)
Merging sparc-next/master (9f935675d41a Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input)
$ git merge sparc-next/master
Already up-to-date.
Merging tile/master (c47b15c4928c arch/tile: update MAINTAINERS email to EZchip)
$ git merge tile/master
Already up-to-date.
Merging uml/next (989e59fa41c5 um: Include generic barrier.h)
$ git merge uml/next
Resolved 'arch/um/include/asm/Kbuild' using previous resolution.
Removing arch/x86/um/shared/sysdep/skas_ptrace.h
Removing arch/um/sys-ppc/shared/sysdep/skas_ptrace.h
Removing arch/um/sys-ia64/sysdep/skas_ptrace.h
Auto-merging arch/um/os-Linux/skas/process.c
Auto-merging arch/um/kernel/um_arch.c
Auto-merging arch/um/kernel/trap.c
Auto-merging arch/um/kernel/ptrace.c
Removing arch/um/include/shared/skas_ptrace.h
Removing arch/um/include/shared/skas/proc_mm.h
Auto-merging arch/um/include/shared/os.h
Auto-merging arch/um/include/asm/Kbuild
CONFLICT (content): Merge conflict in arch/um/include/asm/Kbuild
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master f81d160b09fc] Merge remote-tracking branch 'uml/next'
$ git diff -M --stat --summary HEAD^..
 arch/um/include/shared/os.h                 |   2 -
 arch/um/include/shared/skas/proc_mm.h       |  44 ------
 arch/um/include/shared/skas/skas.h          |   3 -
 arch/um/include/shared/skas_ptrace.h        |  14 --
 arch/um/kernel/ptrace.c                     |  32 ----
 arch/um/kernel/reboot.c                     |  35 ++---
 arch/um/kernel/skas/mmu.c                   |  68 +++------
 arch/um/kernel/skas/process.c               |  27 ----
 arch/um/kernel/trap.c                       |   2 +-
 arch/um/kernel/um_arch.c                    |  10 --
 arch/um/os-Linux/process.c                  |  16 --
 arch/um/os-Linux/skas/mem.c                 | 100 ++----------
 arch/um/os-Linux/skas/process.c             | 200 ++++++------------------
 arch/um/os-Linux/start_up.c                 | 154 -------------------
 arch/um/sys-ia64/sysdep/skas_ptrace.h       |  22 ---
 arch/um/sys-ppc/shared/sysdep/skas_ptrace.h |  22 ---
 arch/x86/um/ldt.c                           | 227 ++++++----------------------
 arch/x86/um/shared/sysdep/faultinfo_32.h    |   3 -
 arch/x86/um/shared/sysdep/faultinfo_64.h    |   3 -
 arch/x86/um/shared/sysdep/skas_ptrace.h     |  22 ---
 20 files changed, 148 insertions(+), 858 deletions(-)
 delete mode 100644 arch/um/include/shared/skas/proc_mm.h
 delete mode 100644 arch/um/include/shared/skas_ptrace.h
 delete mode 100644 arch/um/sys-ia64/sysdep/skas_ptrace.h
 delete mode 100644 arch/um/sys-ppc/shared/sysdep/skas_ptrace.h
 delete mode 100644 arch/x86/um/shared/sysdep/skas_ptrace.h
Merging unicore32/unicore32 (d670878e2c9a unicore32: Remove ARCH_HAS_CPUFREQ config option)
$ git merge unicore32/unicore32
Already up-to-date.
Merging xtensa/for_next (1f2fdbd0078c xtensa: disable link optimization)
$ git merge xtensa/for_next
Already up-to-date.
Merging btrfs/next (1edb647bb954 Btrfs: remove non-sense btrfs_error_discard_extent() function)
$ git merge btrfs/next
Already up-to-date.
Merging ceph/master (388cfdc9bc19 libceph: require cephx message signature by default)
$ git merge ceph/master
Resolved 'fs/ceph/snap.c' using previous resolution.
Resolved 'fs/ceph/super.c' using previous resolution.
Resolved 'fs/ceph/super.h' using previous resolution.
Resolved 'net/ceph/auth_x.c' using previous resolution.
Auto-merging net/ceph/auth_x.c
CONFLICT (content): Merge conflict in net/ceph/auth_x.c
Auto-merging fs/ceph/super.h
CONFLICT (content): Merge conflict in fs/ceph/super.h
Auto-merging fs/ceph/super.c
CONFLICT (content): Merge conflict in fs/ceph/super.c
Auto-merging fs/ceph/snap.c
CONFLICT (content): Merge conflict in fs/ceph/snap.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 69989f8e3a88] Merge remote-tracking branch 'ceph/master'
$ git diff -M --stat --summary HEAD^..
Merging cifs/for-next (0891605dd763 Initialize salt value for negotiate context)
$ git merge cifs/for-next
Merge made by the 'recursive' strategy.
 fs/cifs/Kconfig    |  9 ++++++++
 fs/cifs/cifsglob.h |  7 ++++++
 fs/cifs/connect.c  | 10 +++++++++
 fs/cifs/smb2ops.c  | 22 +++++++++++++++++++
 fs/cifs/smb2pdu.c  | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++---
 fs/cifs/smb2pdu.h  | 50 +++++++++++++++++++++++++++++++++++-------
 6 files changed, 151 insertions(+), 11 deletions(-)
Merging configfs/linux-next (b930c26416c4 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs)
$ git merge configfs/linux-next
Already up-to-date.
Merging ecryptfs/next (942080643bce eCryptfs: Remove buggy and unnecessary write in file name decode routine)
$ git merge ecryptfs/next
Already up-to-date.
Merging ext3/for_next (3ee3039c5b4d udf: Reduce repeated dereferences)
$ git merge ext3/for_next
Already up-to-date.
Merging ext4/dev (50db71abc529 ext4: ext4_da_convert_inline_data_to_extent drop locked page after error)
$ git merge ext4/dev
Already up-to-date.
Merging f2fs/dev (987b52e65709 f2fs: reuse inode_entry_slab in gc procedure for using slab more effectively)
$ git merge f2fs/dev
Merge made by the 'recursive' strategy.
 fs/f2fs/Kconfig             |  10 ++++
 fs/f2fs/Makefile            |   1 +
 fs/f2fs/acl.c               |   4 +-
 fs/f2fs/checkpoint.c        |  47 +++++++++-------
 fs/f2fs/data.c              |  85 +++++++++++++++++-----------
 fs/f2fs/debug.c             |   6 +-
 fs/f2fs/dir.c               |   3 +-
 fs/f2fs/f2fs.h              |  45 ++++++++++-----
 fs/f2fs/file.c              |  79 ++++++++++++++++++++++----
 fs/f2fs/gc.c                |  20 +------
 fs/f2fs/gc.h                |   7 +--
 fs/f2fs/inline.c            |   7 +--
 fs/f2fs/inode.c             |   2 +-
 fs/f2fs/node.c              |  90 ++++++++++-------------------
 fs/f2fs/node.h              |  44 +++++++++++----
 fs/f2fs/segment.c           | 116 ++++++++++++++++++++------------------
 fs/f2fs/super.c             |  10 +---
 fs/f2fs/trace.c             | 110 ++++++++++++++++++++++++++++++++++++
 fs/f2fs/trace.h             |  42 ++++++++++++++
 include/linux/f2fs_fs.h     |   2 +
 include/trace/events/f2fs.h | 134 ++++++++++++++++++++------------------------
 21 files changed, 546 insertions(+), 318 deletions(-)
 create mode 100644 fs/f2fs/trace.c
 create mode 100644 fs/f2fs/trace.h
Merging fscache/fscache (1a8ed18fb7db cachefiles: remove two unused pagevecs.)
$ git merge fscache/fscache
Resolved 'fs/fscache/object.c' using previous resolution.
Auto-merging fs/fscache/object.c
CONFLICT (content): Merge conflict in fs/fscache/object.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master dc2e6449b127] Merge remote-tracking branch 'fscache/fscache'
$ git diff -M --stat --summary HEAD^..
Merging fuse/for-next (1c68271cf1bf fuse: use file_inode() in fuse_file_fallocate())
$ git merge fuse/for-next
Already up-to-date.
Merging gfs2/master (ec7d879c4576 GFS2: gfs2_atomic_open(): simplify the use of finish_no_open())
$ git merge gfs2/master
Already up-to-date.
Merging jfs/jfs-next (e1f1fe798d2f jfs: get rid of homegrown endianness helpers)
$ git merge jfs/jfs-next
Removing fs/jfs/endian24.h
Merge made by the 'recursive' strategy.
 fs/jfs/endian24.h  | 49 ------------------------------------------------
 fs/jfs/jfs_dtree.c |  4 ++--
 fs/jfs/jfs_types.h | 55 ++++++++++++++++++++++++++++++++----------------------
 fs/jfs/jfs_xtree.h | 25 +++++++++----------------
 4 files changed, 44 insertions(+), 89 deletions(-)
 delete mode 100644 fs/jfs/endian24.h
Merging logfs/master (339466142b3f Fix the call to BUG() caused by no free segment found)
$ git merge logfs/master
Auto-merging fs/logfs/super.c
Merge made by the 'recursive' strategy.
 fs/logfs/dev_mtd.c | 2 +-
 fs/logfs/super.c   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
Merging nfs/linux-next (b7392d2247cf Linux 3.19-rc2)
$ git merge nfs/linux-next
Already up-to-date.
Merging nfsd/nfsd-next (3c0aeb6da065 nfsd: fi_delegees doesn't need to be an atomic_t)
$ git merge nfsd/nfsd-next
Auto-merging fs/nfsd/nfs4state.c
Merge made by the 'recursive' strategy.
 fs/nfsd/nfs4state.c | 8 ++++----
 fs/nfsd/state.h     | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
Merging omfs/for-next (976d167615b6 Linux 3.1-rc9)
$ git merge omfs/for-next
Already up-to-date.
Merging overlayfs/overlayfs-next (2b7a8f36f092 ovl: add testsuite to docs)
$ git merge overlayfs/overlayfs-next
Auto-merging fs/overlayfs/readdir.c
Merge made by the 'recursive' strategy.
 Documentation/filesystems/overlayfs.txt |  24 ++
 fs/overlayfs/copy_up.c                  |   5 +-
 fs/overlayfs/dir.c                      |  28 +-
 fs/overlayfs/inode.c                    |  12 +-
 fs/overlayfs/overlayfs.h                |  18 +-
 fs/overlayfs/readdir.c                  | 145 ++++-----
 fs/overlayfs/super.c                    | 546 +++++++++++++++++++++-----------
 7 files changed, 482 insertions(+), 296 deletions(-)
Merging squashfs/master (62421645bb70 Squashfs: Add LZ4 compression configuration option)
$ git merge squashfs/master
Already up-to-date.
Merging v9fs/for-next (f15844e0777f 9P: fix return value in v9fs_fid_xattr_set)
$ git merge v9fs/for-next
Already up-to-date.
Merging ubifs/linux-next (f38aed975c0c UBI: Fix invalid vfree())
$ git merge ubifs/linux-next
Already up-to-date.
Merging xfs/for-next (efdca7aa3c41 Merge branch 'xfs-misc-fixes-for-3.20-1' into for-next)
$ git merge xfs/for-next
Merge made by the 'recursive' strategy.
 fs/xfs/libxfs/xfs_format.h |  10 ++--
 fs/xfs/xfs_buf_item.c      |   2 +-
 fs/xfs/xfs_inode.c         | 134 ++++++++++++++++++++++++++++++++++++++++++++-
 fs/xfs/xfs_inode.h         |   2 +-
 fs/xfs/xfs_iops.c          |  21 +++++--
 fs/xfs/xfs_log.c           |  10 ++--
 fs/xfs/xfs_mount.c         |   5 +-
 fs/xfs/xfs_super.c         |   2 +-
 8 files changed, 163 insertions(+), 23 deletions(-)
Merging file-locks/linux-next (1b2b32dcdb3d locks: fix fcntl_setlease/getlease return when !CONFIG_FILE_LOCKING)
$ git merge file-locks/linux-next
Already up-to-date.
Merging vfs/for-next (88174fd2c8fb kill d_validate())
$ git merge vfs/for-next
Merge made by the 'recursive' strategy.
 fs/dcache.c                  | 31 --------------
 fs/ncpfs/dir.c               | 98 +++++++++++++++++++++++---------------------
 fs/ncpfs/ncp_fs_i.h          |  1 +
 fs/ncpfs/ncplib_kernel.h     | 30 --------------
 include/linux/dcache.h       |  3 --
 security/selinux/selinuxfs.c | 52 ++---------------------
 6 files changed, 55 insertions(+), 160 deletions(-)
Merging pci/next (75f30c3d9949 Merge branches 'pci/host-keystone', 'pci/host-layerscape', 'pci/host-rcar' and 'pci/host-tegra' into next)
$ git merge pci/next
Merge made by the 'recursive' strategy.
 arch/arm/Kconfig                        |  3 ++
 arch/arm/include/asm/mach/pci.h         |  6 ----
 arch/arm/include/asm/pci.h              |  7 -----
 arch/arm/kernel/bios32.c                |  3 --
 arch/arm/mach-cns3xxx/pcie.c            | 40 ++++++++++++---------------
 arch/arm64/kernel/pci.c                 | 22 ---------------
 drivers/pci/host/pci-keystone.c         |  2 +-
 drivers/pci/host/pci-layerscape.c       |  1 -
 drivers/pci/host/pci-mvebu.c            | 15 ++--------
 drivers/pci/host/pci-tegra.c            | 13 ---------
 drivers/pci/host/pcie-designware.c      |  3 --
 drivers/pci/host/pcie-rcar.c            |  7 ++---
 drivers/pci/hotplug/cpci_hotplug_core.c |  3 +-
 drivers/pci/pci.c                       | 49 +++++++++++++++++++++++++++++++++
 14 files changed, 75 insertions(+), 99 deletions(-)
Merging hid/for-next (3bc80f8b09bd Merge branch 'for-3.20/betop' into for-next)
$ git merge hid/for-next
Merge made by the 'recursive' strategy.
 drivers/hid/Kconfig              |  10 +++
 drivers/hid/Makefile             |   1 +
 drivers/hid/hid-betopff.c        | 160 +++++++++++++++++++++++++++++++++++++++
 drivers/hid/hid-core.c           |  26 +++++--
 drivers/hid/hid-ids.h            |   5 ++
 drivers/hid/hid-lenovo.c         |  79 ++++++++++++++++++-
 drivers/hid/hid-logitech-hidpp.c |  84 ++++++++++++++++----
 drivers/hid/hid-rmi.c            |  93 ++++++++++++++++++-----
 include/linux/hid.h              |   4 +-
 9 files changed, 423 insertions(+), 39 deletions(-)
 create mode 100644 drivers/hid/hid-betopff.c
Merging i2c/i2c/for-next (523c5b89640e i2c: Remove support for legacy PM)
$ git merge i2c/i2c/for-next
Merge made by the 'recursive' strategy.
 drivers/i2c/i2c-core.c | 118 -------------------------------------------------
 include/linux/i2c.h    |   4 --
 2 files changed, 122 deletions(-)
Merging jdelvare-hwmon/master (ae530d4403e9 hwmon: (i5500_temp) Convert to use ATTRIBUTE_GROUPS macro)
$ git merge jdelvare-hwmon/master
Auto-merging drivers/hwmon/Makefile
Auto-merging drivers/hwmon/Kconfig
Merge made by the 'recursive' strategy.
 drivers/hwmon/Kconfig      |  10 +++
 drivers/hwmon/Makefile     |   1 +
 drivers/hwmon/i5500_temp.c | 149 +++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 160 insertions(+)
 create mode 100644 drivers/hwmon/i5500_temp.c
Merging hwmon-staging/hwmon-next (907a6d582459 hwmon: (tmp401) Detect TMP435 on all addresses it supports)
$ git merge hwmon-staging/hwmon-next
Already up-to-date.
Merging v4l-dvb/master (2ea3258b238c Merge branch 'patchwork' into to_next)
$ git merge v4l-dvb/master
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging kbuild/for-next (45d5415f3b18 Merge branch 'kbuild/misc' into kbuild/for-next)
$ git merge kbuild/for-next
Auto-merging Makefile
Merge made by the 'recursive' strategy.
 Documentation/lto-build  | 173 +++++++++++++++++++++++++++++++++++++++++++++++
 Makefile                 |  19 +++++-
 arch/x86/Kconfig         |   2 +-
 init/Kconfig             |  73 ++++++++++++++++++++
 kernel/gcov/Kconfig      |   2 +-
 lib/Kconfig.debug        |   2 +-
 scripts/Makefile.clean   |   3 -
 scripts/Makefile.lto     |  84 +++++++++++++++++++++++
 scripts/Makefile.modpost |   7 +-
 scripts/link-vmlinux.sh  |   2 +-
 scripts/package/builddeb |   4 +-
 11 files changed, 358 insertions(+), 13 deletions(-)
 create mode 100644 Documentation/lto-build
 create mode 100644 scripts/Makefile.lto
Merging kconfig/for-next (95edca5c523c localmodconfig: Add config depends by default settings)
$ git merge kconfig/for-next
Already up-to-date.
Merging libata/for-next (d325a876e2b3 Merge branch 'for-3.18-fixes' into for-next)
$ git merge libata/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging pm/linux-next (df90dcd1007b Merge tag 'pm+acpi-3.19-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm)
$ git merge pm/linux-next
Already up-to-date.
Merging idle/next (f7c0e22f2d14 Merge branch 'turbostat' into release)
$ git merge idle/next
Resolved 'arch/x86/include/uapi/asm/msr-index.h' using previous resolution.
Auto-merging drivers/cpufreq/Makefile
Auto-merging arch/x86/include/uapi/asm/msr-index.h
CONFLICT (content): Merge conflict in arch/x86/include/uapi/asm/msr-index.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 97504a797e33] Merge remote-tracking branch 'idle/next'
$ git diff -M --stat --summary HEAD^..
 arch/x86/include/uapi/asm/msr-index.h |   5 +
 drivers/cpufreq/Kconfig.x86           |  10 ++
 drivers/cpufreq/Makefile              |   1 +
 drivers/cpufreq/sfi-cpufreq.c         | 136 ++++++++++++++++++++++++++
 drivers/sfi/sfi_core.c                |   4 +-
 tools/power/x86/turbostat/turbostat.c | 179 +++++++++++++++++++++++++++++++---
 6 files changed, 321 insertions(+), 14 deletions(-)
 create mode 100644 drivers/cpufreq/sfi-cpufreq.c
Merging apm/for-next (53675abbd1e5 x86, apm: Remove unused variable)
$ git merge apm/for-next
Already up-to-date.
Merging cpupowerutils/master (f16603386b38 cpupower tools: add install target to the debug tools' makefiles)
$ git merge cpupowerutils/master
Already up-to-date.
Merging thermal/next (7429b1e0d00e Merge branches 'thermal-core', 'thermal-soc' and 'thermal-int340x' of .git into next)
$ git merge thermal/next
Already up-to-date.
Merging thermal-soc/next (d8c3cd75e77d Merge branch 'work-fixes' into work-next)
$ git merge thermal-soc/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging ieee1394/for-next (d737d7da8e7e firewire: sbp2: replace card lock by target lock)
$ git merge ieee1394/for-next
Already up-to-date.
Merging dlm/next (2ab4bd8ea3a6 dlm: adopt orphan locks)
$ git merge dlm/next
Already up-to-date.
Merging swiotlb/linux-next (8e0629c1d4ce swiotlb: don't assume PA 0 is invalid)
$ git merge swiotlb/linux-next
Already up-to-date.
Merging slave-dma/next (3e8ec65e62df Merge branch 'topic/rcar' into next)
$ git merge slave-dma/next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/dma/renesas,rcar-dmac.txt  |    3 -
 Documentation/dmaengine/provider.txt               |   97 +-
 MAINTAINERS                                        |    2 +-
 drivers/crypto/ux500/cryp/cryp_core.c              |    4 +-
 drivers/crypto/ux500/hash/hash_core.c              |    2 +-
 drivers/dma/Makefile                               |    2 +-
 drivers/dma/amba-pl08x.c                           |  156 +-
 drivers/dma/at_hdmac.c                             |  121 +-
 drivers/dma/at_hdmac_regs.h                        |    3 +-
 drivers/dma/at_xdmac.c                             |  127 +-
 drivers/dma/bcm2835-dma.c                          |   46 +-
 drivers/dma/coh901318.c                            |  137 +-
 drivers/dma/cppi41.c                               |   30 +-
 drivers/dma/dma-jz4740.c                           |   20 +-
 drivers/dma/dmaengine.c                            |   51 +-
 drivers/dma/dw/core.c                              |   82 +-
 drivers/dma/dw/regs.h                              |    2 +-
 drivers/dma/edma.c                                 |   70 +-
 drivers/dma/ep93xx_dma.c                           |   43 +-
 drivers/dma/fsl-edma.c                             |  123 +-
 drivers/dma/fsldma.c                               |   91 +-
 drivers/dma/imx-dma.c                              |  108 +-
 drivers/dma/imx-sdma.c                             |   84 +-
 drivers/dma/intel_mid_dma.c                        |   25 +-
 drivers/dma/ioat/dma_v3.c                          |   11 +
 drivers/dma/ipu/ipu_idmac.c                        |   96 +-
 drivers/dma/k3dma.c                                |  197 ++-
 drivers/dma/mmp_pdma.c                             |  109 +-
 drivers/dma/mmp_tdma.c                             |   82 +-
 drivers/dma/moxart-dma.c                           |   25 +-
 drivers/dma/mpc512x_dma.c                          |  111 +-
 drivers/dma/mv_xor.c                               |    9 -
 drivers/dma/mxs-dma.c                              |   61 +-
 drivers/dma/nbpfaxi.c                              |  112 +-
 drivers/dma/omap-dma.c                             |   69 +-
 drivers/dma/pch_dma.c                              |    8 +-
 drivers/dma/pl330.c                                |  134 +-
 drivers/dma/qcom_bam_dma.c                         |   85 +-
 drivers/dma/s3c24xx-dma.c                          |   75 +-
 drivers/dma/sa11x0-dma.c                           |  158 +-
 drivers/dma/sh/Kconfig                             |   14 +-
 drivers/dma/sh/Makefile                            |    1 +
 drivers/dma/sh/rcar-dmac.c                         | 1747 ++++++++++++++++++++
 drivers/dma/sh/shdma-base.c                        |   72 +-
 drivers/dma/sirf-dma.c                             |   59 +-
 drivers/dma/ste_dma40.c                            |   63 +-
 drivers/dma/sun6i-dma.c                            |  160 +-
 drivers/dma/tegra20-apb-dma.c                      |   27 +-
 drivers/dma/timb_dma.c                             |    8 +-
 drivers/dma/txx9dmac.c                             |    9 +-
 drivers/dma/xilinx/xilinx_vdma.c                   |   29 +-
 drivers/rapidio/devices/tsi721_dma.c               |    8 +-
 include/linux/dmaengine.h                          |  124 +-
 sound/soc/soc-generic-dmaengine-pcm.c              |    2 +-
 54 files changed, 3315 insertions(+), 1779 deletions(-)
 create mode 100644 drivers/dma/sh/rcar-dmac.c
Merging net-next/master (01aa29978bda Merge branch 'gmac-next')
$ git merge net-next/master
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/net/fsl-fec.txt  |    2 +
 .../devicetree/bindings/net/rockchip-dwmac.txt     |   67 +
 arch/arm/boot/dts/imx6qdl-sabreauto.dtsi           |    1 +
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi             |    1 +
 arch/arm/boot/dts/rk3288-evb-rk808.dts             |   23 +
 arch/arm/boot/dts/rk3288-evb.dtsi                  |   17 +
 arch/arm/boot/dts/rk3288.dtsi                      |   54 +
 arch/arm/mach-imx/mach-imx6q.c                     |   41 +-
 arch/arm/mach-imx/mach-imx6sx.c                    |   50 +
 arch/arm/mach-sa1100/assabet.c                     |    2 +-
 arch/arm/mach-sa1100/collie.c                      |    2 +-
 arch/arm/mach-sa1100/h3100.c                       |    2 +-
 arch/arm/mach-sa1100/h3600.c                       |    2 +-
 drivers/clk/rockchip/clk-rk3288.c                  |   14 +-
 drivers/net/ethernet/amd/xgbe/xgbe-ptp.c           |    8 +-
 drivers/net/ethernet/amd/xgbe/xgbe.h               |    2 +-
 drivers/net/ethernet/atheros/atl1e/atl1e_main.c    |    5 +-
 drivers/net/ethernet/atheros/atlx/atl2.c           |   10 +-
 drivers/net/ethernet/broadcom/bnx2x/bnx2x.h        |    2 +-
 drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c   |    6 +-
 drivers/net/ethernet/cisco/enic/enic.h             |   14 +
 drivers/net/ethernet/cisco/enic/enic_ethtool.c     |   19 +-
 drivers/net/ethernet/cisco/enic/enic_main.c        |  152 +-
 drivers/net/ethernet/cisco/enic/vnic_stats.h       |    5 +
 drivers/net/ethernet/cisco/enic/vnic_wq.c          |    3 +
 drivers/net/ethernet/cisco/enic/vnic_wq.h          |    1 +
 drivers/net/ethernet/freescale/fec.h               |    3 +
 drivers/net/ethernet/freescale/fec_main.c          |  104 +-
 drivers/net/ethernet/freescale/fec_ptp.c           |   16 +-
 drivers/net/ethernet/freescale/gianfar.c           |   11 +-
 drivers/net/ethernet/freescale/gianfar.h           |    2 +-
 drivers/net/ethernet/intel/e1000e/e1000.h          |    2 +-
 drivers/net/ethernet/intel/e1000e/netdev.c         |    1 +
 drivers/net/ethernet/intel/e1000e/ptp.c            |    5 +-
 drivers/net/ethernet/intel/igb/igb.h               |    2 +-
 drivers/net/ethernet/intel/igb/igb_ptp.c           |    8 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe.h           |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c       |   11 +-
 drivers/net/ethernet/mellanox/mlx4/en_clock.c      |    9 +-
 drivers/net/ethernet/micrel/ksz884x.c              |    4 +-
 drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c    |   10 +-
 drivers/net/ethernet/stmicro/stmmac/Makefile       |    2 +-
 drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c     |  459 +++++
 .../net/ethernet/stmicro/stmmac/stmmac_platform.c  |    1 +
 .../net/ethernet/stmicro/stmmac/stmmac_platform.h  |    1 +
 drivers/net/ethernet/ti/cpts.c                     |    5 +-
 drivers/net/ethernet/ti/cpts.h                     |    1 +
 drivers/net/irda/sa1100_ir.c                       |    2 +-
 drivers/net/tun.c                                  |    4 +-
 drivers/net/virtio_net.c                           |    2 +
 include/clocksource/arm_arch_timer.h               |    2 +-
 include/dt-bindings/clock/rk3288-cru.h             |    3 +
 include/linux/clocksource.h                        |  102 --
 include/linux/fec.h                                |    1 +
 include/linux/mlx4/device.h                        |    2 +-
 .../linux/platform_data/irda-sa11x0.h              |    0
 include/linux/timecounter.h                        |  136 ++
 include/linux/types.h                              |    3 +
 include/net/ip_fib.h                               |   50 +-
 include/uapi/linux/l2tp.h                          |    1 +
 kernel/time/Makefile                               |    2 +-
 kernel/time/clocksource.c                          |   76 -
 kernel/time/timecounter.c                          |  112 ++
 net/ipv4/fib_frontend.c                            |   29 +-
 net/ipv4/fib_rules.c                               |   22 +-
 net/ipv4/fib_trie.c                                | 1916 +++++++++-----------
 net/ipv4/ip_gre.c                                  |    1 +
 net/l2tp/l2tp_netlink.c                            |  101 +-
 net/tipc/link.c                                    |    2 +-
 sound/pci/hda/hda_priv.h                           |    2 +-
 virt/kvm/arm/arch_timer.c                          |    3 +-
 71 files changed, 2302 insertions(+), 1436 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/rockchip-dwmac.txt
 create mode 100644 drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
 rename arch/arm/include/asm/mach/irda.h => include/linux/platform_data/irda-sa11x0.h (100%)
 create mode 100644 include/linux/timecounter.h
 create mode 100644 kernel/time/timecounter.c
$ git am -3 ../patches/0001-ixgbe_ptp-mlx4-Include-clocksource.h-to-get-CLOCKSOU.patch
Applying: ixgbe_ptp, mlx4: Include clocksource.h to get CLOCKSOURCE_MASK
$ git reset HEAD^
Unstaged changes after reset:
M	drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
M	drivers/net/ethernet/mellanox/mlx4/en_clock.c
$ git add -A .
$ git commit -v -a --amend
[master cb0fbf2aceff] Merge remote-tracking branch 'net-next/master'
 Date: Sat Jan 3 08:44:10 2015 +1100
Merging ipsec-next/master (fbe68ee87522 vti6: Add a lookup method for tunnels with wildcard endpoints.)
$ git merge ipsec-next/master
Already up-to-date.
Merging wireless-next/master (97bf6af1f928 Linux 3.19-rc1)
$ git merge wireless-next/master
Already up-to-date.
Merging wireless-drivers-next/master (354f473ee2c5 ath9k: fix typo)
$ git merge wireless-drivers-next/master
Merge made by the 'recursive' strategy.
 drivers/net/wireless/ath/ath9k/debug.c            |  71 +++++++
 drivers/net/wireless/ath/ath9k/hw.c               |   3 +
 drivers/net/wireless/ath/ath9k/xmit.c             |   2 +-
 drivers/net/wireless/ath/dfs_pattern_detector.c   |   2 +-
 drivers/net/wireless/rsi/rsi_91x_sdio_ops.c       |   4 +-
 drivers/net/wireless/rtlwifi/base.c               | 156 +++++++++++----
 drivers/net/wireless/rtlwifi/base.h               |   4 +-
 drivers/net/wireless/rtlwifi/core.c               |  24 ++-
 drivers/net/wireless/rtlwifi/core.h               |   1 +
 drivers/net/wireless/rtlwifi/rtl8188ee/trx.c      | 162 +--------------
 drivers/net/wireless/rtlwifi/rtl8192c/fw_common.h |   1 +
 drivers/net/wireless/rtlwifi/rtl8192ce/hw.c       | 165 ++++++++-------
 drivers/net/wireless/rtlwifi/rtl8192ce/phy.c      |   5 +-
 drivers/net/wireless/rtlwifi/rtl8192ce/sw.c       |  30 +--
 drivers/net/wireless/rtlwifi/rtl8192ce/trx.c      |  13 +-
 drivers/net/wireless/rtlwifi/rtl8192cu/mac.c      |   4 +-
 drivers/net/wireless/rtlwifi/rtl8192cu/sw.c       |  28 +--
 drivers/net/wireless/rtlwifi/rtl8192cu/trx.c      |  20 +-
 drivers/net/wireless/rtlwifi/rtl8192de/fw.c       |  17 --
 drivers/net/wireless/rtlwifi/rtl8192de/fw.h       |   1 -
 drivers/net/wireless/rtlwifi/rtl8192de/sw.c       |  30 +--
 drivers/net/wireless/rtlwifi/rtl8192de/trx.c      |  27 ++-
 drivers/net/wireless/rtlwifi/rtl8192ee/trx.c      | 196 +-----------------
 drivers/net/wireless/rtlwifi/rtl8192ee/trx.h      |   9 +-
 drivers/net/wireless/rtlwifi/rtl8192se/def.h      |   8 +-
 drivers/net/wireless/rtlwifi/rtl8192se/sw.c       |  30 +--
 drivers/net/wireless/rtlwifi/rtl8192se/trx.c      |  23 +--
 drivers/net/wireless/rtlwifi/rtl8723ae/trx.c      | 162 +--------------
 drivers/net/wireless/rtlwifi/rtl8723be/phy.c      |  25 ---
 drivers/net/wireless/rtlwifi/rtl8723be/phy.h      |   2 -
 drivers/net/wireless/rtlwifi/rtl8723be/trx.c      | 162 +--------------
 drivers/net/wireless/rtlwifi/rtl8821ae/def.h      |  54 -----
 drivers/net/wireless/rtlwifi/rtl8821ae/pwrseq.h   |   4 +-
 drivers/net/wireless/rtlwifi/rtl8821ae/sw.c       |  74 +++----
 drivers/net/wireless/rtlwifi/rtl8821ae/trx.c      | 232 +---------------------
 drivers/net/wireless/rtlwifi/wifi.h               |  96 +++++----
 36 files changed, 510 insertions(+), 1337 deletions(-)
Merging bluetooth/master (b7e711f28c0a Bluetooth: Fix issue with Roper Class 1 Bluetooth Dongle)
$ git merge bluetooth/master
Auto-merging net/bluetooth/hci_event.c
Merge made by the 'recursive' strategy.
 drivers/bluetooth/bfusb.c          |    2 +
 drivers/bluetooth/btusb.c          |   37 +-
 drivers/net/ieee802154/at86rf230.c |   80 +-
 drivers/net/ieee802154/cc2520.c    |   27 +-
 drivers/net/ieee802154/mrf24j40.c  |    6 +-
 include/net/bluetooth/hci.h        |   56 +-
 include/net/bluetooth/hci_core.h   |   38 +-
 include/net/bluetooth/l2cap.h      |    1 +
 include/net/bluetooth/rfcomm.h     |    2 -
 include/net/cfg802154.h            |   10 +-
 include/net/ieee802154_netdev.h    |    4 +-
 include/net/mac802154.h            |    5 +-
 include/net/nl802154.h             |   45 +-
 net/bluetooth/Kconfig              |   27 +
 net/bluetooth/Makefile             |    4 +-
 net/bluetooth/af_bluetooth.c       |    6 +
 net/bluetooth/hci_conn.c           |    4 +
 net/bluetooth/hci_core.c           | 1656 ++----------------------------------
 net/bluetooth/hci_debugfs.c        |  979 +++++++++++++++++++++
 net/bluetooth/hci_debugfs.h        |   26 +
 net/bluetooth/hci_event.c          |   71 +-
 net/bluetooth/hci_request.c        |  555 ++++++++++++
 net/bluetooth/hci_request.h        |   54 ++
 net/bluetooth/l2cap_core.c         |    2 +-
 net/bluetooth/mgmt.c               |  276 ++++--
 net/bluetooth/rfcomm/core.c        |    4 +-
 net/bluetooth/selftest.c           |  244 ++++++
 net/bluetooth/selftest.h           |   45 +
 net/bluetooth/smp.c                |  415 ++++++++-
 net/bluetooth/smp.h                |   13 +
 net/ieee802154/nl-mac.c            |    4 +-
 net/ieee802154/nl802154.c          |   46 +-
 net/ieee802154/rdev-ops.h          |    7 +
 net/ieee802154/sysfs.c             |    2 +-
 net/mac802154/cfg.c                |   21 +
 net/mac802154/driver-ops.h         |    5 +-
 net/mac802154/iface.c              |  100 ++-
 net/mac802154/mac_cmd.c            |    6 +-
 38 files changed, 3085 insertions(+), 1800 deletions(-)
 create mode 100644 net/bluetooth/hci_debugfs.c
 create mode 100644 net/bluetooth/hci_debugfs.h
 create mode 100644 net/bluetooth/hci_request.c
 create mode 100644 net/bluetooth/hci_request.h
 create mode 100644 net/bluetooth/selftest.c
 create mode 100644 net/bluetooth/selftest.h
Merging infiniband/for-next (a7cfef21e3d0 Merge branches 'core', 'cxgb4', 'ipoib', 'iser', 'mlx4', 'ocrdma', 'odp' and 'srp' into for-next)
$ git merge infiniband/for-next
Already up-to-date.
Merging mtd/master (97bf6af1f928 Linux 3.19-rc1)
$ git merge mtd/master
Already up-to-date.
Merging l2-mtd/master (ed0215cc3b52 mtd: gpmi: Remove "We support only one NAND chip" from bindings doc)
$ git merge l2-mtd/master
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mtd/gpmi-nand.txt | 2 +-
 drivers/mtd/nand/gpmi-nand/gpmi-nand.c              | 9 ---------
 2 files changed, 1 insertion(+), 10 deletions(-)
Merging crypto/master (2f3755381da8 crypto: algif_rng - enable RNG interface compilation)
$ git merge crypto/master
Auto-merging drivers/crypto/ux500/cryp/cryp_core.c
Merge made by the 'recursive' strategy.
 arch/mips/cavium-octeon/Makefile                 |   1 +
 arch/mips/cavium-octeon/crypto/Makefile          |   7 +
 arch/mips/cavium-octeon/crypto/octeon-crypto.c   |  66 +++
 arch/mips/cavium-octeon/crypto/octeon-crypto.h   |  75 +++
 arch/mips/cavium-octeon/crypto/octeon-md5.c      | 216 ++++++++
 arch/mips/cavium-octeon/executive/octeon-model.c |   6 +
 arch/mips/include/asm/octeon/octeon-feature.h    |  17 +-
 arch/mips/include/asm/octeon/octeon.h            |   5 -
 crypto/Kconfig                                   |  18 +
 crypto/Makefile                                  |   1 +
 crypto/ablkcipher.c                              |   8 +-
 crypto/aead.c                                    |   3 +-
 crypto/af_alg.c                                  |  11 +-
 crypto/ahash.c                                   |   1 +
 crypto/algapi.c                                  |   1 +
 crypto/algif_rng.c                               | 192 +++++++
 crypto/algif_skcipher.c                          |   8 +
 crypto/drbg.c                                    |  11 +-
 drivers/char/hw_random/core.c                    | 215 +++++---
 drivers/crypto/atmel-sha.c                       |  50 +-
 drivers/crypto/qat/qat_common/icp_qat_hw.h       |   2 +-
 drivers/crypto/qat/qat_common/qat_algs.c         | 610 +++++++++++++++++------
 drivers/crypto/qat/qat_common/qat_crypto.h       |  16 +-
 drivers/crypto/ux500/cryp/cryp_core.c            |   8 +-
 include/crypto/if_alg.h                          |   1 +
 include/linux/hw_random.h                        |   4 +
 26 files changed, 1271 insertions(+), 282 deletions(-)
 create mode 100644 arch/mips/cavium-octeon/crypto/Makefile
 create mode 100644 arch/mips/cavium-octeon/crypto/octeon-crypto.c
 create mode 100644 arch/mips/cavium-octeon/crypto/octeon-crypto.h
 create mode 100644 arch/mips/cavium-octeon/crypto/octeon-md5.c
 create mode 100644 crypto/algif_rng.c
Merging drm/drm-next (4e0cd6811562 drm: sti: fix module compilation issue)
$ git merge drm/drm-next
Already up-to-date.
Merging drm-panel/drm/panel/for-next (54cbc4e298ea drm/mipi-dsi: Avoid potential NULL pointer dereference)
$ git merge drm-panel/drm/panel/for-next
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/drm_mipi_dsi.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
Merging drm-intel/for-linux-next (5d77d9c5e177 drm/i915: add missing rpm ref to i915_gem_pwrite_ioctl)
$ git merge drm-intel/for-linux-next
Auto-merging drivers/gpu/drm/i915/intel_display.c
Auto-merging drivers/gpu/drm/i915/i915_irq.c
Auto-merging drivers/gpu/drm/i915/i915_gem.c
Auto-merging drivers/gpu/drm/i915/i915_drv.h
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/i915/i915_drv.h         |  2 --
 drivers/gpu/drm/i915/i915_gem.c         |  8 +++++++-
 drivers/gpu/drm/i915/i915_irq.c         |  6 ++----
 drivers/gpu/drm/i915/intel_display.c    |  8 +-------
 drivers/gpu/drm/i915/intel_runtime_pm.c | 27 ---------------------------
 5 files changed, 10 insertions(+), 41 deletions(-)
Merging drm-tegra/drm/tegra/for-next (7e0180e3570c drm/tegra: gem: Check before freeing CMA memory)
$ git merge drm-tegra/drm/tegra/for-next
Already up-to-date.
Merging drm-misc/topic/core-stuff (6cadd306033e drm/fb-helper: Propagate errors from initial config failure)
$ git merge drm-misc/topic/core-stuff
Auto-merging include/drm/drm_fb_helper.h
Auto-merging include/drm/drm_crtc.h
Auto-merging include/drm/drmP.h
Auto-merging drivers/gpu/drm/tegra/dc.c
Auto-merging drivers/gpu/drm/sti/sti_drm_crtc.c
Auto-merging drivers/gpu/drm/radeon/radeon_fb.c
Auto-merging drivers/gpu/drm/nouveau/nouveau_fbcon.c
Auto-merging drivers/gpu/drm/msm/msm_fbdev.c
Auto-merging drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c
Auto-merging drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c
Auto-merging drivers/gpu/drm/drm_irq.c
Auto-merging drivers/gpu/drm/drm_fb_helper.c
Auto-merging drivers/gpu/drm/drm_crtc.c
Auto-merging Documentation/DocBook/drm.tmpl
Merge made by the 'recursive' strategy.
 Documentation/DocBook/drm.tmpl           |   3 +-
 drivers/gpu/drm/armada/armada_crtc.c     |   5 --
 drivers/gpu/drm/ast/ast_fb.c             |  21 +++++--
 drivers/gpu/drm/bochs/bochs_fbdev.c      |  14 ++++-
 drivers/gpu/drm/bochs/bochs_kms.c        |   5 --
 drivers/gpu/drm/cirrus/cirrus_fbdev.c    |  12 ++--
 drivers/gpu/drm/drm_cache.c              |  13 ++--
 drivers/gpu/drm/drm_crtc.c               | 103 ++++++++++++++++---------------
 drivers/gpu/drm/drm_fb_helper.c          |   2 +-
 drivers/gpu/drm/drm_info.c               |  24 -------
 drivers/gpu/drm/drm_internal.h           |   1 -
 drivers/gpu/drm/drm_irq.c                |  11 ++--
 drivers/gpu/drm/drm_modes.c              |  56 +++++++++++++----
 drivers/gpu/drm/drm_plane_helper.c       |  16 +++--
 drivers/gpu/drm/drm_probe_helper.c       |  43 +++++++------
 drivers/gpu/drm/gma500/framebuffer.c     |  22 +++++--
 drivers/gpu/drm/mgag200/mgag200_fb.c     |  12 +++-
 drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c |   5 --
 drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c |   5 --
 drivers/gpu/drm/msm/msm_fbdev.c          |  10 ++-
 drivers/gpu/drm/nouveau/nouveau_fbcon.c  |  21 +++++--
 drivers/gpu/drm/omapdrm/omap_fbdev.c     |  10 ++-
 drivers/gpu/drm/qxl/qxl_fb.c             |  22 +++++--
 drivers/gpu/drm/radeon/radeon_fb.c       |  21 +++++--
 drivers/gpu/drm/sti/sti_drm_crtc.c       |   6 --
 drivers/gpu/drm/tegra/dc.c               |   5 --
 drivers/gpu/drm/udl/udl_fb.c             |  22 ++++---
 include/drm/drmP.h                       |   4 +-
 include/drm/drm_crtc.h                   |   2 +-
 include/drm/drm_crtc_helper.h            |  32 ++++++++--
 include/drm/drm_fb_helper.h              |   2 +-
 include/drm/drm_modes.h                  |   6 +-
 include/uapi/drm/drm_mode.h              |   8 +--
 33 files changed, 319 insertions(+), 225 deletions(-)
Merging sound/for-next (a14e7eb59bb7 ALSA: ps3: Remove unnecessary snd_pcm_lib_preallocate_free_for_all())
$ git merge sound/for-next
Removing sound/isa/gus/gus_instr.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/sound/pcm512x.txt          |   3 +-
 include/sound/ad1816a.h                            |   5 +-
 include/sound/emu10k1.h                            |  14 +-
 include/sound/es1688.h                             |   3 +-
 include/sound/gus.h                                |   4 +-
 include/sound/pcm.h                                |   4 +-
 include/sound/pcm_params.h                         |  96 +++++-----
 include/sound/sb.h                                 |   6 +-
 include/sound/soc-dapm.h                           |   1 -
 include/sound/wss.h                                |   6 +-
 include/uapi/sound/asound.h                        |   1 +
 sound/atmel/ac97c.c                                |   6 +-
 sound/core/oss/pcm_oss.c                           |   6 +-
 sound/core/pcm_lib.c                               |  15 +-
 sound/core/pcm_native.c                            |  10 +-
 sound/drivers/ml403-ac97cr.c                       |   9 +-
 sound/isa/ad1816a/ad1816a.c                        |   5 +-
 sound/isa/ad1816a/ad1816a_lib.c                    |   9 +-
 sound/isa/ad1848/ad1848.c                          |   7 +-
 sound/isa/als100.c                                 |   2 +-
 sound/isa/azt2320.c                                |   4 +-
 sound/isa/cmi8328.c                                |   4 +-
 sound/isa/cs423x/cs4231.c                          |   9 +-
 sound/isa/cs423x/cs4236.c                          |  13 +-
 sound/isa/cs423x/cs4236_lib.c                      |   9 +-
 sound/isa/es1688/es1688.c                          |   7 +-
 sound/isa/es1688/es1688_lib.c                      |   6 +-
 sound/isa/es18xx.c                                 |  10 +-
 sound/isa/galaxy/galaxy.c                          |   4 +-
 sound/isa/gus/gus_instr.c                          | 172 ------------------
 sound/isa/gus/gus_pcm.c                            |   6 +-
 sound/isa/gus/gus_uart.c                           |   6 +-
 sound/isa/gus/gusclassic.c                         |   4 +-
 sound/isa/gus/gusextreme.c                         |   4 +-
 sound/isa/gus/gusmax.c                             |   8 +-
 sound/isa/gus/interwave.c                          |  14 +-
 sound/isa/msnd/msnd.c                              |   6 +-
 sound/isa/msnd/msnd.h                              |   2 +-
 sound/isa/msnd/msnd_pinnacle.c                     |   2 +-
 sound/isa/opl3sa2.c                                |   4 +-
 sound/isa/opti9xx/miro.c                           |  12 +-
 sound/isa/opti9xx/opti92x-ad1848.c                 |  13 +-
 sound/isa/sb/jazz16.c                              |   2 +-
 sound/isa/sb/sb16.c                                |   2 +-
 sound/isa/sb/sb16_main.c                           |   8 +-
 sound/isa/sb/sb8.c                                 |   4 +-
 sound/isa/sb/sb8_main.c                            |   6 +-
 sound/isa/sb/sb8_midi.c                            |   6 +-
 sound/isa/sc6000.c                                 |   2 +-
 sound/isa/sscape.c                                 |   5 +-
 sound/isa/wavefront/wavefront.c                    |   4 +-
 sound/isa/wss/wss_lib.c                            |   8 +-
 sound/pci/ad1889.c                                 |  10 +-
 sound/pci/asihpi/asihpi.c                          |   9 +-
 sound/pci/asihpi/hpi6000.c                         |   7 +-
 sound/pci/asihpi/hpioctl.c                         |   2 +
 sound/pci/cs4281.c                                 |  18 +-
 sound/pci/cs46xx/cs46xx.c                          |  10 +-
 sound/pci/cs46xx/cs46xx.h                          |  10 +-
 sound/pci/cs46xx/cs46xx_lib.c                      |  40 +----
 sound/pci/cs5530.c                                 |   2 +-
 sound/pci/emu10k1/emu10k1.c                        |  12 +-
 sound/pci/emu10k1/emu10k1x.c                       |  19 +-
 sound/pci/emu10k1/emufx.c                          |   7 +-
 sound/pci/emu10k1/emupcm.c                         |  33 +---
 sound/pci/emu10k1/p16v.c                           |   7 +-
 sound/pci/ens1370.c                                |  37 +---
 sound/pci/fm801.c                                  |  14 +-
 sound/pci/hda/patch_analog.c                       |  33 ----
 sound/pci/ice1712/ice1712.c                        |  26 +--
 sound/pci/ice1712/wm8776.c                         |  15 --
 sound/pci/ice1712/wm8776.h                         |   3 -
 sound/pci/oxygen/oxygen_pcm.c                      |   8 -
 sound/pci/riptide/riptide.c                        |   9 +-
 sound/pci/sonicvibes.c                             |   7 +-
 sound/pci/trident/trident.c                        |   6 +-
 sound/pci/trident/trident.h                        |   6 +-
 sound/pci/trident/trident_main.c                   |  21 +--
 sound/pci/ymfpci/ymfpci.c                          |   8 +-
 sound/pci/ymfpci/ymfpci.h                          |   8 +-
 sound/pci/ymfpci/ymfpci_main.c                     |  38 +---
 sound/ppc/snd_ps3.c                                |   4 +-
 sound/soc/codecs/pcm512x-i2c.c                     |   4 +
 sound/soc/codecs/pcm512x-spi.c                     |   4 +
 sound/soc/codecs/rt5670.c                          |  38 ++++
 sound/soc/codecs/rt5677.c                          | 195 +++++++++++++++++++--
 sound/soc/codecs/wm8750.c                          |   2 +-
 sound/soc/dwc/designware_i2s.c                     |  86 +++++----
 sound/soc/intel/Kconfig                            |   4 +-
 sound/soc/intel/bytcr_dpcm_rt5640.c                |   1 -
 sound/soc/intel/cht_bsw_rt5672.c                   |   1 -
 sound/soc/intel/sst-firmware.c                     |   1 +
 sound/soc/intel/sst/sst_acpi.c                     |   5 +-
 sound/soc/omap/omap-hdmi-audio.c                   |   1 -
 sound/soc/pxa/spitz.c                              |   1 -
 sound/soc/rockchip/rockchip_i2s.c                  |   4 +
 sound/soc/samsung/arndale_rt5631.c                 |   1 -
 sound/soc/soc-core.c                               |   3 -
 sound/soc/soc-dapm.c                               | 105 ++---------
 sound/soc/soc-pcm.c                                |  33 +---
 100 files changed, 573 insertions(+), 923 deletions(-)
 delete mode 100644 sound/isa/gus/gus_instr.c
Merging sound-asoc/for-next (e0495d6d6aee Merge remote-tracking branch 'asoc/topic/mxs-saif' into asoc-next)
$ git merge sound-asoc/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/sound/designware-i2s.txt   |  31 +++
 sound/soc/davinci/davinci-mcasp.c                  |  30 +++
 sound/soc/dwc/Kconfig                              |   1 +
 sound/soc/dwc/designware_i2s.c                     | 283 +++++++++++++++++----
 sound/soc/fsl/fsl_asrc.c                           |   3 +-
 sound/soc/fsl/fsl_asrc.h                           |   3 -
 sound/soc/fsl/fsl_spdif.c                          |  15 +-
 sound/soc/mxs/mxs-saif.c                           |  10 +-
 sound/soc/mxs/mxs-saif.h                           |   1 -
 9 files changed, 302 insertions(+), 75 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/designware-i2s.txt
Merging modules/modules-next (b0a65b0cccd4 param: do not set store func without write perm)
$ git merge modules/modules-next
Already up-to-date.
Merging virtio/virtio-next (c91c2a63913b mic/host: initial virtio 1.0 support)
$ git merge virtio/virtio-next
Resolved 'drivers/virtio/virtio_pci_common.c' using previous resolution.
Auto-merging drivers/virtio/virtio_pci_common.c
CONFLICT (content): Merge conflict in drivers/virtio/virtio_pci_common.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 08e7b142c344] Merge remote-tracking branch 'virtio/virtio-next'
$ git diff -M --stat --summary HEAD^..
 drivers/virtio/virtio_pci_common.c | 5 -----
 1 file changed, 5 deletions(-)
Merging input/next (aa104b1aaaa3 Input: synaptics - remove duplicated code)
$ git merge input/next
Auto-merging drivers/input/mouse/synaptics.c
Auto-merging drivers/input/mouse/psmouse-base.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/input/regulator-haptic.txt |  21 +
 .../devicetree/bindings/input/sun4i-lradc-keys.txt |  62 +++
 .../bindings/input/tps65218-pwrbutton.txt          |  17 +
 MAINTAINERS                                        |   7 +
 drivers/input/keyboard/Kconfig                     |  10 +
 drivers/input/keyboard/Makefile                    |   1 +
 drivers/input/keyboard/sun4i-lradc-keys.c          | 286 ++++++++++++++
 drivers/input/misc/Kconfig                         |  22 ++
 drivers/input/misc/Makefile                        |   2 +
 drivers/input/misc/regulator-haptic.c              | 279 +++++++++++++
 drivers/input/misc/tps65218-pwrbutton.c            | 126 ++++++
 drivers/input/mouse/Kconfig                        |  10 +
 drivers/input/mouse/focaltech.c                    | 408 ++++++++++++++++++-
 drivers/input/mouse/focaltech.h                    |   2 +
 drivers/input/mouse/psmouse-base.c                 |  32 +-
 drivers/input/mouse/psmouse.h                      |   1 +
 drivers/input/mouse/synaptics.c                    | 435 ++-------------------
 drivers/input/mouse/synaptics.h                    |  18 +-
 drivers/input/touchscreen/elants_i2c.c             |   2 -
 include/linux/platform_data/regulator-haptic.h     |  29 ++
 20 files changed, 1333 insertions(+), 437 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/input/regulator-haptic.txt
 create mode 100644 Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
 create mode 100644 Documentation/devicetree/bindings/input/tps65218-pwrbutton.txt
 create mode 100644 drivers/input/keyboard/sun4i-lradc-keys.c
 create mode 100644 drivers/input/misc/regulator-haptic.c
 create mode 100644 drivers/input/misc/tps65218-pwrbutton.c
 create mode 100644 include/linux/platform_data/regulator-haptic.h
Merging input-mt/for-next (5e01dc7b26d9 Linux 3.12)
$ git merge input-mt/for-next
Already up-to-date.
Merging block/for-next (e248d2ba0082 Merge branch 'for-3.19/drivers' into for-next)
$ git merge block/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging device-mapper/for-next (af66c8489d6d dm table: train hybrid target type detection to select blk-mq if appropriate)
$ git merge device-mapper/for-next
Merge made by the 'recursive' strategy.
 block/blk-core.c              |   9 +-
 block/blk-mq.c                |   1 +
 drivers/md/dm-mpath.c         |  62 ++++++--
 drivers/md/dm-table.c         |  59 +++++--
 drivers/md/dm-target.c        |  15 +-
 drivers/md/dm.c               | 346 +++++++++++++++++++++++++++++-------------
 drivers/md/dm.h               |  11 +-
 include/linux/blkdev.h        |   1 +
 include/linux/device-mapper.h |  10 +-
 include/uapi/linux/dm-ioctl.h |   4 +-
 10 files changed, 370 insertions(+), 148 deletions(-)
Merging embedded/master (4744b43431e8 embedded: fix vc_translate operator precedence)
$ git merge embedded/master
Already up-to-date.
Merging firmware/master (6e03a201bbe8 firmware: speed up request_firmware(), v3)
$ git merge firmware/master
Already up-to-date.
Merging pcmcia/master (80af9e6d7ae6 pcmcia at91_cf: fix raw gpio number usage)
$ git merge pcmcia/master
Already up-to-date.
Merging mmc/mmc-next (11bc9381b277 mmc: sdhci-s3c: use mmc_of_parse and remove the card_tasklet)
$ git merge mmc/mmc-next
Already up-to-date.
Merging mmc-uh/next (76f00a555408 mmc: Add SDIO function devicetree subnode parsing)
$ git merge mmc-uh/next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/mmc/mmc.txt |  48 ++-
 drivers/mmc/core/bus.c                        |   4 +
 drivers/mmc/core/core.c                       |  28 ++
 drivers/mmc/core/core.h                       |   3 +
 drivers/mmc/core/host.c                       |  61 ++-
 drivers/mmc/core/mmc.c                        |  38 +-
 drivers/mmc/core/mmc_ops.c                    |  30 ++
 drivers/mmc/core/sd.c                         |   7 +-
 drivers/mmc/core/sdio_bus.c                   |  11 +
 drivers/mmc/core/slot-gpio.c                  | 164 ++------
 drivers/mmc/core/slot-gpio.h                  |  13 +
 drivers/mmc/host/dw_mmc-exynos.c              | 111 +-----
 drivers/mmc/host/dw_mmc-exynos.h              |  56 +++
 drivers/mmc/host/dw_mmc.c                     | 114 +++---
 drivers/mmc/host/dw_mmc.h                     |   9 +-
 drivers/mmc/host/mmci.c                       |   2 +-
 drivers/mmc/host/moxart-mmc.c                 |   4 +-
 drivers/mmc/host/mvsdio.c                     |  10 -
 drivers/mmc/host/mxs-mmc.c                    |   3 +-
 drivers/mmc/host/omap_hsmmc.c                 |  50 ---
 drivers/mmc/host/rtsx_pci_sdmmc.c             | 522 ++++++++++++++------------
 drivers/mmc/host/sdhci-acpi.c                 |   7 +-
 drivers/mmc/host/sdhci-bcm-kona.c             |   4 +-
 drivers/mmc/host/sdhci-esdhc-imx.c            |  17 +-
 drivers/mmc/host/sdhci-of-esdhc.c             |  20 +-
 drivers/mmc/host/sdhci-pci.c                  |   7 +-
 drivers/mmc/host/sdhci-pxav3.c                |  15 +-
 drivers/mmc/host/sdhci-s3c.c                  |   4 +-
 drivers/mmc/host/sdhci-sirf.c                 |  74 +++-
 drivers/mmc/host/sdhci-st.c                   |   4 +-
 drivers/mmc/host/sdhci.c                      | 169 +++++++--
 drivers/mmc/host/sunxi-mmc.c                  |  29 +-
 drivers/mmc/host/toshsd.c                     |  17 +-
 include/linux/mmc/dw_mmc.h                    |   6 +
 include/linux/mmc/host.h                      |   2 -
 include/linux/mmc/mmc.h                       |   5 -
 include/linux/mmc/sdhci.h                     |   7 +
 include/linux/mmc/slot-gpio.h                 |   3 -
 include/linux/platform_data/mmc-omap.h        |   4 -
 39 files changed, 890 insertions(+), 792 deletions(-)
 create mode 100644 drivers/mmc/core/slot-gpio.h
 create mode 100644 drivers/mmc/host/dw_mmc-exynos.h
Merging kgdb/kgdb-next (0f16996cf2ed kernel/debug/debug_core.c: Logging clean-up)
$ git merge kgdb/kgdb-next
Auto-merging kernel/trace/trace_kdb.c
Merge made by the 'recursive' strategy.
 include/linux/kdb.h             |  62 ++++++++--
 kernel/debug/debug_core.c       |  52 ++++----
 kernel/debug/kdb/kdb_bp.c       |  37 +++---
 kernel/debug/kdb/kdb_debugger.c |   4 +
 kernel/debug/kdb/kdb_main.c     | 267 +++++++++++++++++++++++++---------------
 kernel/debug/kdb/kdb_private.h  |   3 +-
 kernel/trace/trace_kdb.c        |   4 +-
 lib/Kconfig.kgdb                |  25 ++++
 8 files changed, 306 insertions(+), 148 deletions(-)
Merging uclinux/for-next (6dbe51c251a3 Linux 3.9-rc1)
$ git merge uclinux/for-next
Already up-to-date.
Merging md/for-next (f851b60db0fd md: Check MD_RECOVERY_RUNNING as well as ->sync_thread.)
$ git merge md/for-next
Already up-to-date.
Merging mfd/for-mfd-next (a3b63979f8a3 mfd: rtsx: Add func to split u32 into register)
$ git merge mfd/for-mfd-next
Already up-to-date.
Merging backlight/for-backlight-next (3d6969a641d0 MAINTAINERS: Remove my name from Backlight subsystem)
$ git merge backlight/for-backlight-next
Already up-to-date.
Merging battery/master (02088e3ed79f power: reset: augment versatile driver for integrator)
$ git merge battery/master
Merge made by the 'recursive' strategy.
 drivers/power/reset/arm-versatile-reboot.c | 32 +++++++++++++++++++++++++++---
 1 file changed, 29 insertions(+), 3 deletions(-)
Merging fbdev/for-next (718b90ac4c21 video: xilinxfb: Simplify error path)
$ git merge fbdev/for-next
Already up-to-date.
Merging viafb/viafb-next (838ac785d521 viafb: avoid refresh and mode lookup in set_par)
$ git merge viafb/viafb-next
Already up-to-date.
Merging omap_dss2/for-next (574d54112fda Merge branches '3.19/omapdss' and '3.19/simplefb' into for-next)
$ git merge omap_dss2/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging regulator/for-next (70f56625cae8 Merge remote-tracking branch 'regulator/topic/rt5033' into regulator-next)
$ git merge regulator/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/regulator/isl9305.txt      |   4 +-
 .../bindings/regulator/mt6397-regulator.txt        | 217 ++++++++++++++
 drivers/regulator/Kconfig                          |   9 +
 drivers/regulator/Makefile                         |   1 +
 drivers/regulator/core.c                           |   6 +-
 drivers/regulator/isl9305.c                        |   6 +-
 drivers/regulator/max14577.c                       |  62 +---
 drivers/regulator/mt6397-regulator.c               | 332 +++++++++++++++++++++
 drivers/regulator/rk808-regulator.c                |   6 +-
 drivers/regulator/rt5033-regulator.c               |   8 +-
 include/linux/regulator/mt6397-regulator.h         |  49 +++
 11 files changed, 641 insertions(+), 59 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/regulator/mt6397-regulator.txt
 create mode 100644 drivers/regulator/mt6397-regulator.c
 create mode 100644 include/linux/regulator/mt6397-regulator.h
Merging security/next (b2d1965dcea1 Merge branch 'next' of git://git.infradead.org/users/pcmoore/selinux into next)
$ git merge security/next
Already up-to-date.
Merging integrity/next (63a0eb7891bd ima: Fix build failure on powerpc when TCG_IBMVTPM dependencies are not met)
$ git merge integrity/next
Already up-to-date.
Merging selinux/next (566075875a84 selinux: Remove unused function avc_sidcmp())
$ git merge selinux/next
Merge made by the 'recursive' strategy.
 security/selinux/avc.c | 5 -----
 1 file changed, 5 deletions(-)
Merging lblnet/next (d8ec26d7f828 Linux 3.13)
$ git merge lblnet/next
Already up-to-date.
Merging watchdog/master (e0c3e00f4045 watchdog: drop owner assignment from platform_drivers)
$ git merge watchdog/master
Merge made by the 'recursive' strategy.
 drivers/watchdog/cadence_wdt.c |  1 -
 drivers/watchdog/imx2_wdt.c    | 40 +++++++++++++++++++++++++++++++---------
 drivers/watchdog/meson_wdt.c   |  1 -
 3 files changed, 31 insertions(+), 11 deletions(-)
Merging iommu/next (76771c938e95 Merge branches 'arm/omap', 'arm/msm', 'arm/rockchip', 'arm/renesas', 'arm/smmu', 'x86/vt-d', 'x86/amd' and 'core' into next)
$ git merge iommu/next
Already up-to-date.
Merging dwmw2-iommu/master (1860e379875d Linux 3.15)
$ git merge dwmw2-iommu/master
Already up-to-date.
Merging vfio/next (5e9f36c59a48 drivers/vfio: allow type-1 IOMMU instantiation on top of an ARM SMMU)
$ git merge vfio/next
Already up-to-date.
Merging osd/linux-next (1fa3a002b254 Boaz Harrosh - fix email in Documentation)
$ git merge osd/linux-next
Already up-to-date.
Merging jc_docs/docs-next (174236285cf8 Merge branch 'doc/sp-update' into docs-next)
$ git merge jc_docs/docs-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/00-INDEX                 |  28 +--
 Documentation/Changes                  |   6 +-
 Documentation/SubmittingPatches        | 438 ++++++++++++++++-----------------
 Documentation/arm/00-INDEX             |  12 +-
 Documentation/cgroups/00-INDEX         |   2 +
 Documentation/dmaengine/00-INDEX       |   8 +
 Documentation/driver-model/bus.txt     |   2 +-
 Documentation/filesystems/seq_file.txt |  12 +-
 Documentation/locking/00-INDEX         |  16 ++
 Documentation/networking/00-INDEX      |   8 +-
 MAINTAINERS                            |   1 +
 11 files changed, 277 insertions(+), 256 deletions(-)
 create mode 100644 Documentation/dmaengine/00-INDEX
 create mode 100644 Documentation/locking/00-INDEX
Merging trivial/for-next (231821d4c3fa dynamic_debug: fix comment)
$ git merge trivial/for-next
Auto-merging lib/dynamic_debug.c
Auto-merging arch/x86/mm/init.c
Merge made by the 'recursive' strategy.
 Documentation/usb/usbmon.txt | 2 +-
 arch/x86/mm/init.c           | 2 +-
 lib/dynamic_debug.c          | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
Merging audit/next (0f7e94ee40d0 Merge branch 'next' into upstream for v3.19)
$ git merge audit/next
Already up-to-date.
Merging fsnotify/for-next (1ca39ab9d21a inotify: automatically restart syscalls)
$ git merge fsnotify/for-next
Already up-to-date.
Merging devicetree/devicetree/next (c46ca3c8310b of: Delete unnecessary check before calling "of_node_put()")
$ git merge devicetree/devicetree/next
Already up-to-date.
Merging dt-rh/for-next (a0e27f51ba8a documentation: pinctrl bindings: Fix trivial typo 'abitrary')
$ git merge dt-rh/for-next
Already up-to-date.
Merging mailbox/mailbox-for-next (9f3e3cacb2ff dt: mailbox: add generic bindings)
$ git merge mailbox/mailbox-for-next
Already up-to-date.
Merging spi/for-next (a8eb27814016 Merge remote-tracking branch 'spi/topic/st-ssc' into spi-next)
$ git merge spi/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/spi/sh-msiof.txt |  16 +
 .../devicetree/bindings/spi/spi-st-ssc.txt         |  40 +
 drivers/spi/Kconfig                                |  17 +
 drivers/spi/Makefile                               |   2 +
 drivers/spi/spi-au1550.c                           |   4 -
 drivers/spi/spi-bcm2835.c                          |   4 -
 drivers/spi/spi-bcm63xx.c                          |   4 -
 drivers/spi/spi-bitbang.c                          |   4 -
 drivers/spi/spi-butterfly.c                        |   4 -
 drivers/spi/spi-coldfire-qspi.c                    |   5 -
 drivers/spi/spi-davinci.c                          |   4 -
 drivers/spi/spi-dln2.c                             | 890 +++++++++++++++++++++
 drivers/spi/spi-falcon.c                           |  12 -
 drivers/spi/spi-fsl-lib.c                          |   2 -
 drivers/spi/spi-gpio.c                             |   4 -
 drivers/spi/spi-img-spfi.c                         |  49 +-
 drivers/spi/spi-imx.c                              |  13 +-
 drivers/spi/spi-lm70llp.c                          |   4 -
 drivers/spi/spi-omap-100k.c                        |   5 -
 drivers/spi/spi-omap-uwire.c                       |   4 -
 drivers/spi/spi-omap2-mcspi.c                      |   5 -
 drivers/spi/spi-pxa2xx-dma.c                       |  17 +-
 drivers/spi/spi-pxa2xx-pxadma.c                    |  33 +-
 drivers/spi/spi-pxa2xx.c                           | 206 ++---
 drivers/spi/spi-pxa2xx.h                           |  34 +-
 drivers/spi/spi-qup.c                              |  11 +-
 drivers/spi/spi-rspi.c                             |   5 -
 drivers/spi/spi-s3c64xx.c                          |   4 -
 drivers/spi/spi-sc18is602.c                        |   4 -
 drivers/spi/spi-sh-hspi.c                          |   5 -
 drivers/spi/spi-sh-msiof.c                         |  47 ++
 drivers/spi/spi-sh.c                               |   5 -
 drivers/spi/spi-st-ssc4.c                          | 510 ++++++++++++
 drivers/spi/spi-topcliff-pch.c                     |   4 -
 drivers/spi/spi.c                                  | 118 ++-
 drivers/spi/spidev.c                               |   4 -
 include/linux/pxa2xx_ssp.h                         |   1 +
 include/linux/spi/at86rf230.h                      |   4 -
 include/linux/spi/l4f00242t03.h                    |   4 -
 include/linux/spi/lms283gf05.h                     |   4 -
 include/linux/spi/mxs-spi.h                        |   4 -
 include/linux/spi/pxa2xx_spi.h                     |   4 -
 include/linux/spi/rspi.h                           |   5 -
 include/linux/spi/sh_hspi.h                        |   4 -
 include/linux/spi/sh_msiof.h                       |   2 +
 include/linux/spi/spi.h                            |   6 +-
 include/linux/spi/tle62x0.h                        |   4 -
 include/linux/spi/tsc2005.h                        |   5 -
 48 files changed, 1781 insertions(+), 365 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/spi/spi-st-ssc.txt
 create mode 100644 drivers/spi/spi-dln2.c
 create mode 100644 drivers/spi/spi-st-ssc4.c
Merging tip/auto-latest (caa523dc2242 Merge branch 'x86/urgent')
$ git merge tip/auto-latest
Auto-merging arch/x86/include/uapi/asm/msr-index.h
Merge made by the 'recursive' strategy.
 arch/x86/include/asm/cpufeature.h        |  2 ++
 arch/x86/include/asm/debugreg.h          |  5 +++
 arch/x86/include/asm/hw_breakpoint.h     |  1 +
 arch/x86/include/uapi/asm/msr-index.h    |  4 +++
 arch/x86/kernel/cpu/amd.c                | 19 +++++++++++
 arch/x86/kernel/hw_breakpoint.c          | 45 ++++++++++---------------
 arch/x86/vdso/vma.c                      | 45 ++++++++++++++++---------
 tools/perf/Documentation/perf-record.txt |  7 ++--
 tools/perf/tests/parse-events.c          | 58 ++++++++++++++++++++++++++++++++
 tools/perf/util/parse-events.c           | 21 ++++++------
 tools/perf/util/parse-events.h           |  2 +-
 tools/perf/util/parse-events.l           |  1 +
 tools/perf/util/parse-events.y           | 26 ++++++++++++--
 13 files changed, 177 insertions(+), 59 deletions(-)
Merging clockevents/clockevents/next (b0ad5917960c ARM/ARM64: arch-timer: fix arch_timer_probed logic)
$ git merge clockevents/clockevents/next
Merge made by the 'recursive' strategy.
Merging edac/linux_next (fec53af531dd sb_edac: Fix typo computing number of banks)
$ git merge edac/linux_next
Already up-to-date.
Merging edac-amd/for-next (775c503f6567 mpc85xx_edac: Fix a typo in comments)
$ git merge edac-amd/for-next
Merge made by the 'recursive' strategy.
 drivers/edac/mce_amd_inj.c  | 2 +-
 drivers/edac/mpc85xx_edac.c | 2 +-
 drivers/edac/mpc85xx_edac.h | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
Merging irqchip/irqchip/for-next (5cc8f658723f Merge branch 'irqchip/irqdomain-arm' into irqchip/for-next)
$ git merge irqchip/irqchip/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging tiny/tiny/next (f114040e3ea6 Linux 3.18-rc1)
$ git merge tiny/tiny/next
Already up-to-date.
Merging ftrace/for-next (d716ff71dd12 tracing: Remove taking of trace_types_lock in pipe files)
$ git merge ftrace/for-next
Merge made by the 'recursive' strategy.
 kernel/trace/trace.c | 126 ++++++++++++++++++---------------------------------
 kernel/trace/trace.h |   1 +
 2 files changed, 44 insertions(+), 83 deletions(-)
Merging rcu/rcu/next (940c6c7fb5ec Documentation/memory-barriers.txt: Fix smp typo)
$ git merge rcu/rcu/next
Auto-merging lib/Kconfig.debug
Auto-merging init/Kconfig
Merge made by the 'recursive' strategy.
 Documentation/RCU/stallwarn.txt                    |  16 +-
 Documentation/RCU/trace.txt                        |  32 +-
 Documentation/memory-barriers.txt                  |  33 +-
 include/linux/compiler.h                           |   2 +-
 include/linux/rculist.h                            |  16 +-
 include/linux/rcupdate.h                           |  13 +-
 include/linux/rcutiny.h                            |  45 ++-
 include/linux/rcutree.h                            |  11 +-
 include/linux/srcu.h                               |  14 +-
 init/Kconfig                                       |   3 -
 kernel/cpu.c                                       |  56 ++--
 kernel/rcu/rcu.h                                   |   6 +
 kernel/rcu/rcutorture.c                            |  66 ++--
 kernel/rcu/srcu.c                                  |   2 +-
 kernel/rcu/tiny.c                                  | 113 +------
 kernel/rcu/tiny_plugin.h                           |   9 +-
 kernel/rcu/tree.c                                  | 341 +++++++++++++++------
 kernel/rcu/tree.h                                  |  62 +---
 kernel/rcu/tree_plugin.h                           | 271 +++++-----------
 kernel/rcu/tree_trace.c                            |   8 +-
 lib/Kconfig.debug                                  |   2 +-
 tools/testing/selftests/rcutorture/bin/cpus2use.sh |   2 +-
 .../selftests/rcutorture/bin/kvm-recheck-rcu.sh    |  18 ++
 .../selftests/rcutorture/bin/kvm-test-1-run.sh     |   9 +-
 .../selftests/rcutorture/bin/parse-build.sh        |  20 +-
 .../selftests/rcutorture/bin/parse-console.sh      |   2 +-
 26 files changed, 591 insertions(+), 581 deletions(-)
Merging uprobes/for-next (0326f5a94dde uprobes/core: Handle breakpoint and singlestep exceptions)
$ git merge uprobes/for-next
Already up-to-date.
Merging kvm/linux-next (2c4aa55a6af0 Merge tag 'signed-kvm-ppc-next' of git://github.com/agraf/linux-2.6 into HEAD)
$ git merge kvm/linux-next
Already up-to-date.
Merging kvm-arm/next (05971120fca4 arm/arm64: KVM: Require in-kernel vgic for the arch timers)
$ git merge kvm-arm/next
Already up-to-date.
Merging kvm-ppc/kvm-ppc-next (476ce5ef09b2 KVM: PPC: Book3S: Enable in-kernel XICS emulation by default)
$ git merge kvm-ppc/kvm-ppc-next
Already up-to-date.
Merging oprofile/for-next (6ce4eac1f600 Linux 3.13-rc1)
$ git merge oprofile/for-next
Already up-to-date.
Merging fw-nohz/nohz/next (74876a98a87a printk: Wake up klogd using irq_work)
$ git merge fw-nohz/nohz/next
Already up-to-date.
Merging xen-tip/linux-next (2e917175e1ef xen: Speed up set_phys_to_machine() by using read-only mappings)
$ git merge xen-tip/linux-next
Already up-to-date.
Merging percpu/for-next (bfaa047a9415 Merge branch 'for-3.18-fixes' into for-next)
$ git merge percpu/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging workqueues/for-next (008847f66c38 workqueue: allow rescuer thread to do more work.)
$ git merge workqueues/for-next
Already up-to-date.
Merging drivers-x86/for-next (200db647112d platform/x86/acerhdf: Still depends on THERMAL)
$ git merge drivers-x86/for-next
Already up-to-date.
Merging chrome-platform/for-next (5502486a2077 platform/chrome: chromeos_laptop - Add a limit for deferred retries)
$ git merge chrome-platform/for-next
Already up-to-date.
Merging sysctl/master (4e474a00d7ff sysctl: protect poll() in entries that may go away)
$ git merge sysctl/master
Already up-to-date.
Merging regmap/for-next (270ded427d7b Merge remote-tracking branch 'regmap/topic/core' into regmap-next)
$ git merge regmap/for-next
Merge made by the 'recursive' strategy.
 drivers/base/regmap/internal.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
Merging hsi/for-next (d95dc9e38810 HSI: nokia-modem: fix error handling of irq_of_parse_and_map)
$ git merge hsi/for-next
Already up-to-date.
Merging leds/for-next (d5a570782795 leds: Don't allow brightness values greater than max_brightness)
$ git merge leds/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/leds/common.txt | 16 ++++++++++++++++
 drivers/leds/leds.h                               |  3 ++-
 2 files changed, 18 insertions(+), 1 deletion(-)
Merging ipmi/for-next (1421c935df15 ipmi: Fix compile warning with tv_usec)
$ git merge ipmi/for-next
Merge made by the 'recursive' strategy.
 drivers/char/ipmi/ipmi_ssif.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
Merging driver-core/driver-core-next (b7392d2247cf Linux 3.19-rc2)
$ git merge driver-core/driver-core-next
Already up-to-date.
Merging tty/tty-next (b7392d2247cf Linux 3.19-rc2)
$ git merge tty/tty-next
Already up-to-date.
Merging usb/usb-next (b7392d2247cf Linux 3.19-rc2)
$ git merge usb/usb-next
Already up-to-date.
Merging usb-gadget/next (ebf3992061db usb: musb: Use IS_ENABLED for tusb6010)
$ git merge usb-gadget/next
Already up-to-date.
Merging usb-serial/usb-next (b7392d2247cf Linux 3.19-rc2)
$ git merge usb-serial/usb-next
Already up-to-date.
Merging staging/staging-next (b7392d2247cf Linux 3.19-rc2)
$ git merge staging/staging-next
Already up-to-date.
Merging char-misc/char-misc-next (b7392d2247cf Linux 3.19-rc2)
$ git merge char-misc/char-misc-next
Already up-to-date.
Merging cgroup/for-next (eeecbd197151 cgroup: implement cgroup_get_e_css())
$ git merge cgroup/for-next
Already up-to-date.
Merging scsi/for-next (6bf850aa7ff6 Merge branch 'fixes' into for-next)
$ git merge scsi/for-next
Merge made by the 'recursive' strategy.
 drivers/scsi/3w-9xxx.c              |   3 +-
 drivers/scsi/constants.c            |  28 +++++++-
 drivers/scsi/fnic/fnic.h            |   2 +-
 drivers/scsi/fnic/fnic_scsi.c       |  15 +++++
 drivers/scsi/mpt2sas/mpt2sas_base.c |   8 +--
 drivers/scsi/mpt3sas/mpt3sas_base.c |   8 +--
 drivers/scsi/scsi_debug.c           | 128 +++++++++++++++++++++++++++++++++++-
 drivers/scsi/scsi_error.c           |   4 +-
 drivers/scsi/sd.c                   |   5 +-
 9 files changed, 183 insertions(+), 18 deletions(-)
Merging target-updates/for-next (ae450e246e85 target: Allow AllRegistrants to re-RESERVE existing reservation)
$ git merge target-updates/for-next
Already up-to-date.
Merging target-merge/for-next-merge (b28a960c42fc Linux 3.14-rc2)
$ git merge target-merge/for-next-merge
Already up-to-date.
Merging writeback/writeback-for-next (f9b0e058cbd0 writeback: Fix data corruption on NFS)
$ git merge writeback/writeback-for-next
Already up-to-date.
Merging hwspinlock/linux-next (8b37fcfc9b34 hwspinlock: add MAINTAINERS entries)
$ git merge hwspinlock/linux-next
Already up-to-date.
Merging pinctrl/for-next (96dfdff694ae pinctrl: rockchip: Fix enable/disable/mask/unmask)
$ git merge pinctrl/for-next
Merge made by the 'recursive' strategy.
 drivers/pinctrl/pinctrl-rockchip.c | 57 ++++++++++++++++++++++++++++++++++++--
 1 file changed, 54 insertions(+), 3 deletions(-)
Merging vhost/linux-next (5d9a07b0de51 vhost: relax used address alignment)
$ git merge vhost/linux-next
Merge made by the 'recursive' strategy.
 drivers/vhost/vhost.c            | 10 +++++++---
 include/uapi/linux/virtio_ring.h |  7 +++++++
 2 files changed, 14 insertions(+), 3 deletions(-)
Merging remoteproc/for-next (9a3c4145af32 Linux 3.16-rc6)
$ git merge remoteproc/for-next
Already up-to-date.
Merging rpmsg/for-next (b1b9891441fa rpmsg: use less buffers when vrings are small)
$ git merge rpmsg/for-next
Already up-to-date.
Merging gpio/for-next (170680abd1eb gpio: mcp23s08: fix up compilation error)
$ git merge gpio/for-next
Already up-to-date.
Merging dma-mapping/dma-mapping-next (dda02fd6278d mm, cma: make parameters order consistent in func declaration and definition)
$ git merge dma-mapping/dma-mapping-next
Already up-to-date.
Merging pwm/for-next (39e046f2c1dd pwm: atmel-hlcdc: add at91sam9x5 and sama5d3 errata handling)
$ git merge pwm/for-next
Already up-to-date.
Merging dma-buf/for-next (101e31050bf1 dma-buf/fence: Fix one more kerneldoc warning)
$ git merge dma-buf/for-next
Merge made by the 'recursive' strategy.
Merging userns/for-next (db86da7cb76f userns: Unbreak the unprivileged remount tests)
$ git merge userns/for-next
Already up-to-date.
Merging ktest/for-next (17150fef4ab1 ktest: Add back "tail -1" to kernelrelease make)
$ git merge ktest/for-next
Already up-to-date.
Merging signal/for-next (20b4fb485227 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge signal/for-next
Already up-to-date.
Merging clk/clk-next (f1e9203e2366 clk: samsung: Fix Exynos 5420 pinctrl setup and clock disable failure due to domain being gated)
$ git merge clk/clk-next
Already up-to-date.
Merging random/dev (7185ad2672a7 crypto: memzero_explicit - make sure to clear out sensitive data)
$ git merge random/dev
Already up-to-date.
Merging lzo-update/lzo-update (42b775abafaf lib/lzo: huge LZO decompression speedup on ARM by using unaligned access)
$ git merge lzo-update/lzo-update
Auto-merging lib/lzo/lzo1x_decompress_safe.c
Merge made by the 'recursive' strategy.
 lib/lzo/lzo1x_decompress_safe.c | 4 ++++
 lib/lzo/lzodefs.h               | 6 ++++++
 2 files changed, 10 insertions(+)
Merging aio/master (5f785de58873 aio: Skip timer for io_getevents if timeout=0)
$ git merge aio/master
Already up-to-date.
Merging llvmlinux/for-next (25d4aee23af2 arm: LLVMLinux: Use global stack register variable for percpu)
$ git merge llvmlinux/for-next
Merge made by the 'recursive' strategy.
Merging documentation/for-next (0415447aa3b4 Documentation: fix broken v4l-utils URL)
$ git merge documentation/for-next
Already up-to-date.
Merging kselftest/next (97bf6af1f928 Linux 3.19-rc1)
$ git merge kselftest/next
Already up-to-date.
Merging y2038/y2038 (45446a99cef6 staging: media: lirc: Replace timeval with ktime_t in lirc_parallel.c)
$ git merge y2038/y2038
Resolved 'drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c' using previous resolution.
Resolved 'drivers/staging/ft1000/ft1000-usb/ft1000_debug.c' using previous resolution.
Resolved 'drivers/staging/media/lirc/lirc_sasem.c' using previous resolution.
Auto-merging kernel/cpuset.c
Auto-merging drivers/staging/media/lirc/lirc_serial.c
Auto-merging drivers/staging/media/lirc/lirc_sasem.c
CONFLICT (content): Merge conflict in drivers/staging/media/lirc/lirc_sasem.c
Auto-merging drivers/staging/media/lirc/lirc_parallel.c
Auto-merging drivers/staging/ft1000/ft1000-usb/ft1000_hw.c
Auto-merging drivers/staging/ft1000/ft1000-usb/ft1000_debug.c
CONFLICT (content): Merge conflict in drivers/staging/ft1000/ft1000-usb/ft1000_debug.c
Auto-merging drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c
CONFLICT (content): Merge conflict in drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 02ff661fae37] Merge remote-tracking branch 'y2038/y2038'
$ git diff -M --stat --summary HEAD^..
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c |  6 +--
 drivers/staging/ft1000/ft1000-usb/ft1000_debug.c |  6 +--
 drivers/staging/ft1000/ft1000-usb/ft1000_hw.c    |  6 +--
 drivers/staging/ft1000/ft1000.h                  |  4 +-
 drivers/staging/gdm72xx/gdm_sdio.c               | 13 +++---
 drivers/staging/gdm72xx/gdm_sdio.h               |  4 +-
 drivers/staging/media/lirc/lirc_parallel.c       | 35 +++++++----------
 drivers/staging/media/lirc/lirc_sasem.c          | 20 +++++-----
 drivers/staging/media/lirc/lirc_serial.c         | 50 ++++++++----------------
 kernel/cpuset.c                                  | 12 ++++--
 10 files changed, 69 insertions(+), 87 deletions(-)
Merging luto-misc/next (e589c9e13aeb Merge branch 'x86-apic-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip)
$ git merge luto-misc/next
Already up-to-date.
Merging access_once/linux-next (5de72a2247ac s390/kvm: REPLACE barrier fixup with READ_ONCE)
$ git merge access_once/linux-next
Already up-to-date.
Merging omap/for-next (b2776bf7149b Linux 3.18)
$ git merge omap/for-next
Already up-to-date.
Merging omap-pending/for-next (b2776bf7149b Linux 3.18)
$ git merge omap-pending/for-next
Already up-to-date.
Merging livepatching/for-next (700a3048aaa3 livepatch: samples: fix usage example comments)
$ git merge livepatching/for-next
Auto-merging arch/x86/Kconfig
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-kernel-livepatch |  44 ++
 Documentation/oops-tracing.txt                   |   2 +
 Documentation/sysctl/kernel.txt                  |   1 +
 MAINTAINERS                                      |  15 +
 arch/x86/Kconfig                                 |   3 +
 arch/x86/include/asm/livepatch.h                 |  42 +
 arch/x86/kernel/Makefile                         |   1 +
 arch/x86/kernel/livepatch.c                      |  90 +++
 include/linux/kernel.h                           |   1 +
 include/linux/livepatch.h                        | 133 ++++
 kernel/Makefile                                  |   1 +
 kernel/livepatch/Kconfig                         |  18 +
 kernel/livepatch/Makefile                        |   3 +
 kernel/livepatch/core.c                          | 931 +++++++++++++++++++++++
 kernel/panic.c                                   |   2 +
 samples/Kconfig                                  |   7 +
 samples/Makefile                                 |   2 +-
 samples/livepatch/Makefile                       |   1 +
 samples/livepatch/livepatch-sample.c             |  91 +++
 19 files changed, 1387 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/ABI/testing/sysfs-kernel-livepatch
 create mode 100644 arch/x86/include/asm/livepatch.h
 create mode 100644 arch/x86/kernel/livepatch.c
 create mode 100644 include/linux/livepatch.h
 create mode 100644 kernel/livepatch/Kconfig
 create mode 100644 kernel/livepatch/Makefile
 create mode 100644 kernel/livepatch/core.c
 create mode 100644 samples/livepatch/Makefile
 create mode 100644 samples/livepatch/livepatch-sample.c
$ git am -3 ../patches/0001-bnx2x-Include-clocksource.h-to-get-CLOCKSOURCE_MASK.patch
Applying: bnx2x: Include clocksource.h to get CLOCKSOURCE_MASK
Merging akpm-current/current (350b61c87ab5 metag: Align thread_info::supervisor_stack)
$ git merge --no-ff akpm-current/current
Resolved 'fs/ocfs2/aops.c' using previous resolution.
Auto-merging mm/rmap.c
Auto-merging mm/page_alloc.c
Auto-merging mm/memory.c
Auto-merging mm/madvise.c
Auto-merging mm/huge_memory.c
CONFLICT (modify/delete): mm/fremap.c deleted in akpm-current/current and modified in HEAD. Version HEAD of mm/fremap.c left in tree.
Auto-merging init/main.c
Auto-merging init/Kconfig
Auto-merging include/linux/fs.h
Auto-merging fs/ocfs2/file.c
Auto-merging fs/ocfs2/dlm/dlmmaster.c
Auto-merging fs/ocfs2/aops.c
CONFLICT (content): Merge conflict in fs/ocfs2/aops.c
Auto-merging drivers/leds/Kconfig
Auto-merging drivers/input/input.c
Auto-merging arch/xtensa/include/uapi/asm/mman.h
Auto-merging arch/x86/kernel/machine_kexec_64.c
Auto-merging arch/tile/kernel/signal.c
Auto-merging arch/arm64/include/asm/pgtable.h
Automatic merge failed; fix conflicts and then commit the result.
$ git rm -f mm/fremap.c
mm/fremap.c: needs merge
rm 'mm/fremap.c'
$ git commit -v -a
[master baac3e42d28a] Merge branch 'akpm-current/current'
$ git diff -M --stat --summary HEAD^..
 .../devicetree/bindings/i2c/trivial-devices.txt    |   2 +-
 Documentation/filesystems/vfat.txt                 |  10 +
 Documentation/leds/leds-class.txt                  |   3 -
 Documentation/printk-formats.txt                   |   6 +
 Documentation/vm/remap_file_pages.txt              |   7 +-
 arch/alpha/include/asm/thread_info.h               |   5 -
 arch/alpha/include/uapi/asm/mman.h                 |   1 +
 arch/alpha/kernel/signal.c                         |   2 +-
 arch/arc/include/asm/thread_info.h                 |   4 -
 arch/arc/kernel/signal.c                           |   2 +-
 arch/arm/include/asm/pgtable-3level.h              |   1 +
 arch/arm/include/asm/thread_info.h                 |   4 -
 arch/arm/kernel/signal.c                           |   4 +-
 arch/arm64/include/asm/pgtable.h                   |   2 +
 arch/arm64/include/asm/thread_info.h               |   4 -
 arch/arm64/kernel/signal.c                         |   2 +-
 arch/arm64/kernel/signal32.c                       |   4 +-
 arch/avr32/include/asm/thread_info.h               |   4 -
 arch/avr32/kernel/asm-offsets.c                    |   1 -
 arch/avr32/kernel/signal.c                         |   2 +-
 arch/blackfin/include/asm/thread_info.h            |   4 -
 arch/blackfin/kernel/signal.c                      |   2 +-
 arch/c6x/include/asm/thread_info.h                 |   4 -
 arch/c6x/kernel/signal.c                           |   2 +-
 arch/cris/arch-v10/kernel/signal.c                 |   2 +-
 arch/cris/arch-v32/kernel/signal.c                 |   2 +-
 arch/cris/include/asm/thread_info.h                |   4 -
 arch/frv/include/asm/thread_info.h                 |   4 -
 arch/frv/kernel/asm-offsets.c                      |   1 -
 arch/frv/kernel/signal.c                           |   2 +-
 arch/hexagon/include/asm/thread_info.h             |   4 -
 arch/hexagon/kernel/signal.c                       |   2 +-
 arch/ia64/include/asm/thread_info.h                |   4 -
 arch/ia64/kernel/signal.c                          |   2 +-
 arch/m32r/include/asm/thread_info.h                |   5 -
 arch/m32r/kernel/signal.c                          |   2 +-
 arch/m68k/include/asm/thread_info.h                |   4 -
 arch/m68k/kernel/signal.c                          |   4 +-
 arch/metag/include/asm/thread_info.h               |   6 +-
 arch/metag/kernel/signal.c                         |   2 +-
 arch/microblaze/include/asm/thread_info.h          |   4 -
 arch/microblaze/kernel/signal.c                    |   2 +-
 arch/mips/include/asm/thread_info.h                |   4 -
 arch/mips/include/uapi/asm/mman.h                  |   1 +
 arch/mips/kernel/asm-offsets.c                     |   1 -
 arch/mips/kernel/signal.c                          |   2 +-
 arch/mips/kernel/signal32.c                        |   2 +-
 arch/mn10300/include/asm/thread_info.h             |   4 -
 arch/mn10300/kernel/asm-offsets.c                  |   1 -
 arch/mn10300/kernel/signal.c                       |   2 +-
 arch/openrisc/include/asm/thread_info.h            |   4 -
 arch/openrisc/kernel/signal.c                      |   2 +-
 arch/parisc/include/asm/thread_info.h              |   4 -
 arch/parisc/include/uapi/asm/mman.h                |   1 +
 arch/parisc/kernel/signal.c                        |   2 +-
 arch/powerpc/include/asm/pgtable-ppc64.h           |   2 +
 arch/powerpc/include/asm/thread_info.h             |   4 -
 arch/powerpc/kernel/signal_32.c                    |   4 +-
 arch/powerpc/kernel/signal_64.c                    |   2 +-
 arch/s390/include/asm/thread_info.h                |   4 -
 arch/s390/kernel/compat_signal.c                   |   2 +-
 arch/s390/kernel/signal.c                          |   2 +-
 arch/score/include/asm/thread_info.h               |   4 -
 arch/score/kernel/asm-offsets.c                    |   1 -
 arch/score/kernel/signal.c                         |   2 +-
 arch/sh/include/asm/thread_info.h                  |   4 -
 arch/sh/kernel/asm-offsets.c                       |   1 -
 arch/sh/kernel/signal_32.c                         |   4 +-
 arch/sh/kernel/signal_64.c                         |   4 +-
 arch/sparc/include/asm/pgtable_64.h                |   9 +
 arch/sparc/include/asm/thread_info_32.h            |   6 -
 arch/sparc/include/asm/thread_info_64.h            |  12 +-
 arch/sparc/kernel/signal32.c                       |   4 +-
 arch/sparc/kernel/signal_32.c                      |   2 +-
 arch/sparc/kernel/signal_64.c                      |   2 +-
 arch/sparc/kernel/traps_64.c                       |   2 -
 arch/tile/include/asm/thread_info.h                |   4 -
 arch/tile/kernel/signal.c                          |   2 +-
 arch/um/include/asm/thread_info.h                  |   4 -
 arch/unicore32/include/asm/thread_info.h           |   4 -
 arch/unicore32/kernel/signal.c                     |   2 +-
 arch/x86/ia32/ia32_signal.c                        |   2 +-
 arch/x86/include/asm/pgtable.h                     |   5 +
 arch/x86/include/asm/thread_info.h                 |   4 -
 arch/x86/kernel/machine_kexec_64.c                 |   1 +
 arch/x86/kernel/signal.c                           |   2 +-
 arch/x86/um/signal.c                               |   2 +-
 arch/xtensa/include/asm/thread_info.h              |   5 -
 arch/xtensa/include/uapi/asm/mman.h                |   1 +
 arch/xtensa/kernel/signal.c                        |   2 +-
 block/genhd.c                                      |   2 +-
 drivers/input/Kconfig                              |   9 +
 drivers/input/Makefile                             |   3 +
 drivers/input/input.c                              |   9 +
 drivers/input/leds.c                               | 272 ++++++++++++++++
 drivers/leds/Kconfig                               |   3 -
 drivers/misc/ti-st/st_core.c                       |   2 +-
 drivers/rtc/rtc-isl12057.c                         | 324 ++++++++++++++++++-
 drivers/tty/Kconfig                                |   4 +
 drivers/tty/vt/keyboard.c                          | 110 +++++--
 fs/ext4/fsync.c                                    |   5 +-
 fs/fat/cache.c                                     |  38 ++-
 fs/fat/fat.h                                       |   4 +
 fs/fat/file.c                                      |  62 ++++
 fs/fat/inode.c                                     |  68 +++-
 fs/mpage.c                                         |  23 +-
 fs/ocfs2/aops.c                                    | 258 ++++++++++++++-
 fs/ocfs2/dlm/dlmast.c                              |   6 +-
 fs/ocfs2/dlm/dlmmaster.c                           |  10 -
 fs/ocfs2/dlm/dlmthread.c                           |  10 +
 fs/ocfs2/file.c                                    | 108 +++----
 fs/ocfs2/file.h                                    |   9 +
 fs/ocfs2/inode.c                                   |  10 +-
 fs/ocfs2/inode.h                                   |   2 +
 fs/ocfs2/journal.c                                 | 115 +++++--
 fs/ocfs2/journal.h                                 |   5 +
 fs/ocfs2/namei.c                                   | 348 +++++++++++++++++++++
 fs/ocfs2/namei.h                                   |   5 +
 fs/ocfs2/ocfs2.h                                   |  15 +
 fs/ocfs2/ocfs2_fs.h                                |   5 +-
 fs/ocfs2/ocfs2_trace.h                             |   3 +
 fs/ocfs2/super.c                                   |   2 +
 fs/select.c                                        |   2 +-
 include/linux/crc64_ecma.h                         |  56 ++++
 include/linux/fs.h                                 |   8 +-
 include/linux/huge_mm.h                            |   4 +
 include/linux/init_task.h                          |   3 +
 include/linux/input.h                              |  28 ++
 include/linux/kexec.h                              |   2 +
 include/linux/oom.h                                |   5 -
 include/linux/rmap.h                               |   9 +-
 include/linux/sched.h                              |   2 +
 include/linux/string.h                             |   1 +
 include/linux/vm_event_item.h                      |   1 +
 include/uapi/asm-generic/mman-common.h             |   1 +
 init/Kconfig                                       |  16 -
 init/main.c                                        |   5 -
 kernel/compat.c                                    |   5 +-
 kernel/exit.c                                      |  12 +-
 kernel/futex.c                                     |   2 +-
 kernel/signal.c                                    |   2 +-
 kernel/time/alarmtimer.c                           |   2 +-
 kernel/time/hrtimer.c                              |   2 +-
 kernel/time/posix-cpu-timers.c                     |   3 +-
 lib/Kconfig                                        |   7 +
 lib/Makefile                                       |   1 +
 lib/crc64_ecma.c                                   | 341 ++++++++++++++++++++
 lib/vsprintf.c                                     |  20 +-
 mm/Makefile                                        |   2 +-
 mm/fremap.c                                        | 283 -----------------
 mm/huge_memory.c                                   |  35 +++
 mm/madvise.c                                       | 150 +++++++++
 mm/memory.c                                        |   2 +
 mm/memory_hotplug.c                                |  11 +-
 mm/mmap.c                                          |  69 ++++
 mm/nommu.c                                         |   8 -
 mm/page_alloc.c                                    |  95 +++---
 mm/page_isolation.c                                |   7 +-
 mm/rmap.c                                          |  46 ++-
 mm/util.c                                          |  30 ++
 mm/vmscan.c                                        |  64 +++-
 mm/vmstat.c                                        |   1 +
 162 files changed, 2693 insertions(+), 784 deletions(-)
 create mode 100644 drivers/input/leds.c
 create mode 100644 include/linux/crc64_ecma.h
 create mode 100644 lib/crc64_ecma.c
 delete mode 100644 mm/fremap.c
$ git clone -s -l -n -q . ../rebase-tmp
$ cd ../rebase-tmp
$ git checkout -b akpm remotes/origin/akpm/master
Switched to a new branch 'akpm'
$ git rebase --onto master remotes/origin/akpm/master-base
First, rewinding head to replay your work on top of it...
Applying: drivers/gpio/gpio-zevio.c: fix build
Applying: drivers/w1/w1_int.c: call put_device if device_register fails
Applying: mm: add strictlimit knob
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + 7a319ed99033...e86bed5fa4c7 akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (e86bed5fa4c7 mm: add strictlimit knob)
$ git merge --no-ff akpm/master
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-class-bdi |  8 +++++++
 drivers/gpio/gpio-zevio.c                 |  4 ++++
 drivers/w1/w1_int.c                       |  3 +--
 mm/backing-dev.c                          | 35 +++++++++++++++++++++++++++++++
 4 files changed, 48 insertions(+), 2 deletions(-)