summaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: 1b535c53d28afd795033d875ac56bc67efbf960d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
$ date
Friday 19 July  09:46:52 EST 2013
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at 61f98b0 Merge branch 'for-3.11' of git://linux-nfs.org/~bfields/linux
Merging origin/master (0a693ab Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux)
$ git merge --no-ff origin/master
Merge made by the 'recursive' strategy.
 Documentation/cpu-hotplug.txt                 |   6 +-
 arch/alpha/kernel/smp.c                       |  10 +-
 arch/alpha/kernel/traps.c                     |   4 +-
 arch/arm/common/mcpm_platsmp.c                |   4 +-
 arch/arm/include/asm/arch_timer.h             |   2 +-
 arch/arm/kernel/head-common.S                 |   1 -
 arch/arm/kernel/head-nommu.S                  |   1 -
 arch/arm/kernel/head.S                        |   1 -
 arch/arm/kernel/hw_breakpoint.c               |   4 +-
 arch/arm/kernel/perf_event_cpu.c              |   6 +-
 arch/arm/kernel/psci_smp.c                    |   3 +-
 arch/arm/kernel/smp.c                         |  18 +-
 arch/arm/kernel/smp_twd.c                     |   6 +-
 arch/arm/lib/delay.c                          |   2 +-
 arch/arm/mach-exynos/headsmp.S                |   2 -
 arch/arm/mach-exynos/platsmp.c                |   4 +-
 arch/arm/mach-highbank/platsmp.c              |   2 +-
 arch/arm/mach-imx/platsmp.c                   |   2 +-
 arch/arm/mach-keystone/platsmp.c              |   2 +-
 arch/arm/mach-msm/headsmp.S                   |   2 -
 arch/arm/mach-msm/platsmp.c                   |   6 +-
 arch/arm/mach-msm/timer.c                     |   4 +-
 arch/arm/mach-mvebu/coherency.c               |   2 +-
 arch/arm/mach-mvebu/headsmp.S                 |   2 -
 arch/arm/mach-mvebu/platsmp.c                 |   5 +-
 arch/arm/mach-omap2/omap-headsmp.S            |   2 -
 arch/arm/mach-omap2/omap-mpuss-lowpower.c     |   2 +-
 arch/arm/mach-omap2/omap-smp.c                |   4 +-
 arch/arm/mach-omap2/omap-wakeupgen.c          |   4 +-
 arch/arm/mach-prima2/headsmp.S                |   2 -
 arch/arm/mach-prima2/platsmp.c                |   4 +-
 arch/arm/mach-shmobile/headsmp-scu.S          |   1 -
 arch/arm/mach-shmobile/headsmp.S              |   2 -
 arch/arm/mach-shmobile/smp-emev2.c            |   2 +-
 arch/arm/mach-shmobile/smp-r8a7779.c          |   2 +-
 arch/arm/mach-shmobile/smp-sh73a0.c           |   2 +-
 arch/arm/mach-socfpga/headsmp.S               |   1 -
 arch/arm/mach-socfpga/platsmp.c               |   2 +-
 arch/arm/mach-spear/generic.h                 |   2 +-
 arch/arm/mach-spear/platsmp.c                 |   4 +-
 arch/arm/mach-sti/platsmp.c                   |   6 +-
 arch/arm/mach-tegra/platsmp.c                 |   4 +-
 arch/arm/mach-tegra/pm.c                      |   2 +-
 arch/arm/mach-ux500/platsmp.c                 |   4 +-
 arch/arm/mach-zynq/common.h                   |   2 +-
 arch/arm/mach-zynq/headsmp.S                  |   2 -
 arch/arm/mach-zynq/platsmp.c                  |   6 +-
 arch/arm/mm/proc-arm1020.S                    |   2 -
 arch/arm/mm/proc-arm1020e.S                   |   2 -
 arch/arm/mm/proc-arm1022.S                    |   2 -
 arch/arm/mm/proc-arm1026.S                    |   3 -
 arch/arm/mm/proc-arm720.S                     |   2 -
 arch/arm/mm/proc-arm740.S                     |   2 -
 arch/arm/mm/proc-arm7tdmi.S                   |   2 -
 arch/arm/mm/proc-arm920.S                     |   2 -
 arch/arm/mm/proc-arm922.S                     |   2 -
 arch/arm/mm/proc-arm925.S                     |   2 -
 arch/arm/mm/proc-arm926.S                     |   2 -
 arch/arm/mm/proc-arm940.S                     |   2 -
 arch/arm/mm/proc-arm946.S                     |   2 -
 arch/arm/mm/proc-arm9tdmi.S                   |   2 -
 arch/arm/mm/proc-fa526.S                      |   2 -
 arch/arm/mm/proc-feroceon.S                   |   2 -
 arch/arm/mm/proc-mohawk.S                     |   2 -
 arch/arm/mm/proc-sa110.S                      |   2 -
 arch/arm/mm/proc-sa1100.S                     |   2 -
 arch/arm/mm/proc-v6.S                         |   2 -
 arch/arm/mm/proc-v7-2level.S                  |   4 -
 arch/arm/mm/proc-v7-3level.S                  |   4 -
 arch/arm/mm/proc-v7.S                         |   2 -
 arch/arm/mm/proc-xsc3.S                       |   2 -
 arch/arm/mm/proc-xscale.S                     |   2 -
 arch/arm/plat-versatile/platsmp.c             |   6 +-
 arch/arm64/include/asm/arch_timer.h           |   2 +-
 arch/arm64/kernel/debug-monitors.c            |   6 +-
 arch/arm64/kernel/hw_breakpoint.c             |   4 +-
 arch/arm64/kernel/smp.c                       |   8 +-
 arch/blackfin/kernel/perf_event.c             |   2 +-
 arch/blackfin/kernel/setup.c                  |   4 +-
 arch/blackfin/mach-bf561/smp.c                |   6 +-
 arch/blackfin/mach-common/cache-c.c           |   4 +-
 arch/blackfin/mach-common/ints-priority.c     |   2 +-
 arch/blackfin/mach-common/smp.c               |  12 +-
 arch/cris/arch-v32/kernel/smp.c               |   2 +-
 arch/frv/kernel/setup.c                       |   2 +-
 arch/hexagon/kernel/setup.c                   |   2 +-
 arch/hexagon/kernel/smp.c                     |   4 +-
 arch/m32r/kernel/smpboot.c                    |   2 +-
 arch/metag/kernel/perf/perf_event.c           |   6 +-
 arch/metag/kernel/smp.c                       |  22 +-
 arch/metag/kernel/traps.c                     |   2 +-
 arch/mips/ath79/setup.c                       |   2 +-
 arch/mips/cavium-octeon/octeon-irq.c          |  12 +-
 arch/mips/cavium-octeon/smp.c                 |   6 +-
 arch/mips/include/asm/uasm.h                  |  37 ++--
 arch/mips/kernel/bmips_vec.S                  |   4 -
 arch/mips/kernel/cevt-bcm1480.c               |   2 +-
 arch/mips/kernel/cevt-gic.c                   |   2 +-
 arch/mips/kernel/cevt-r4k.c                   |   2 +-
 arch/mips/kernel/cevt-sb1250.c                |   2 +-
 arch/mips/kernel/cevt-smtc.c                  |   2 +-
 arch/mips/kernel/cpu-bugs64.c                 |   2 +-
 arch/mips/kernel/cpu-probe.c                  |  14 +-
 arch/mips/kernel/head.S                       |   4 -
 arch/mips/kernel/smp-bmips.c                  |   6 +-
 arch/mips/kernel/smp-mt.c                     |   6 +-
 arch/mips/kernel/smp-up.c                     |   6 +-
 arch/mips/kernel/smp.c                        |   6 +-
 arch/mips/kernel/smtc.c                       |   2 +-
 arch/mips/kernel/spram.c                      |  14 +-
 arch/mips/kernel/sync-r4k.c                   |  12 +-
 arch/mips/kernel/traps.c                      |  12 +-
 arch/mips/kernel/watch.c                      |   2 +-
 arch/mips/lantiq/irq.c                        |   2 +-
 arch/mips/lib/uncached.c                      |   2 +-
 arch/mips/mm/c-octeon.c                       |   6 +-
 arch/mips/mm/c-r3k.c                          |   8 +-
 arch/mips/mm/c-r4k.c                          |  34 +--
 arch/mips/mm/c-tx39.c                         |   2 +-
 arch/mips/mm/cache.c                          |   2 +-
 arch/mips/mm/cex-sb1.S                        |   4 -
 arch/mips/mm/page.c                           |  40 ++--
 arch/mips/mm/sc-ip22.c                        |   2 +-
 arch/mips/mm/sc-mips.c                        |   2 +-
 arch/mips/mm/sc-r5k.c                         |   2 +-
 arch/mips/mm/sc-rm7k.c                        |  12 +-
 arch/mips/mm/tlb-r3k.c                        |   2 +-
 arch/mips/mm/tlb-r4k.c                        |   4 +-
 arch/mips/mm/tlb-r8k.c                        |   4 +-
 arch/mips/mm/tlbex.c                          | 144 ++++++-------
 arch/mips/mm/uasm-micromips.c                 |  10 +-
 arch/mips/mm/uasm-mips.c                      |  10 +-
 arch/mips/mm/uasm.c                           | 106 +++++----
 arch/mips/mti-malta/malta-smtc.c              |   6 +-
 arch/mips/mti-malta/malta-time.c              |   2 +-
 arch/mips/mti-sead3/sead3-time.c              |   2 +-
 arch/mips/netlogic/common/smp.c               |   4 +-
 arch/mips/netlogic/common/smpboot.S           |   4 -
 arch/mips/netlogic/common/time.c              |   2 +-
 arch/mips/netlogic/xlr/wakeup.c               |   2 +-
 arch/mips/pci/pci-ip27.c                      |   2 +-
 arch/mips/pmcs-msp71xx/msp_smtc.c             |   7 +-
 arch/mips/pmcs-msp71xx/msp_time.c             |   2 +-
 arch/mips/pnx833x/common/interrupts.c         |   2 +-
 arch/mips/powertv/time.c                      |   2 +-
 arch/mips/ralink/irq.c                        |   2 +-
 arch/mips/sgi-ip27/ip27-init.c                |   4 +-
 arch/mips/sgi-ip27/ip27-smp.c                 |   6 +-
 arch/mips/sgi-ip27/ip27-timer.c               |   6 +-
 arch/mips/sgi-ip27/ip27-xtalk.c               |   6 +-
 arch/mips/sibyte/bcm1480/smp.c                |   8 +-
 arch/mips/sibyte/sb1250/smp.c                 |   8 +-
 arch/openrisc/kernel/setup.c                  |   2 +-
 arch/parisc/kernel/firmware.c                 |  14 +-
 arch/parisc/kernel/hardware.c                 |   2 +-
 arch/parisc/kernel/processor.c                |   6 +-
 arch/parisc/kernel/smp.c                      |   8 +-
 arch/s390/kernel/cache.c                      |  15 +-
 arch/s390/kernel/perf_cpum_cf.c               |   4 +-
 arch/s390/kernel/processor.c                  |   2 +-
 arch/s390/kernel/smp.c                        |  17 +-
 arch/s390/kernel/sysinfo.c                    |   2 +-
 arch/s390/kernel/vtime.c                      |   6 +-
 arch/s390/mm/fault.c                          |   4 +-
 arch/score/mm/tlb-score.c                     |   2 +-
 arch/sh/kernel/cpu/init.c                     |  18 +-
 arch/sh/kernel/cpu/sh2/probe.c                |   2 +-
 arch/sh/kernel/cpu/sh2a/probe.c               |   2 +-
 arch/sh/kernel/cpu/sh3/probe.c                |   2 +-
 arch/sh/kernel/cpu/sh4/probe.c                |   2 +-
 arch/sh/kernel/cpu/sh4a/smp-shx3.c            |   6 +-
 arch/sh/kernel/cpu/sh5/probe.c                |   2 +-
 arch/sh/kernel/perf_event.c                   |   4 +-
 arch/sh/kernel/process.c                      |   2 +-
 arch/sh/kernel/setup.c                        |   2 +-
 arch/sh/kernel/smp.c                          |   8 +-
 arch/sh/kernel/traps_32.c                     |   2 +-
 arch/sh/kernel/traps_64.c                     |   2 +-
 arch/sh/mm/tlb-sh5.c                          |   2 +-
 arch/sparc/kernel/ds.c                        |  11 +-
 arch/sparc/kernel/entry.h                     |   2 +-
 arch/sparc/kernel/hvtramp.S                   |   1 -
 arch/sparc/kernel/irq_64.c                    |   5 +-
 arch/sparc/kernel/leon_smp.c                  |  10 +-
 arch/sparc/kernel/mdesc.c                     |  34 +--
 arch/sparc/kernel/smp_32.c                    |  20 +-
 arch/sparc/kernel/smp_64.c                    |   9 +-
 arch/sparc/kernel/sun4d_smp.c                 |   6 +-
 arch/sparc/kernel/sun4m_smp.c                 |   6 +-
 arch/sparc/kernel/sysfs.c                     |   4 +-
 arch/sparc/kernel/trampoline_32.S             |   3 -
 arch/sparc/kernel/trampoline_64.S             |   2 -
 arch/sparc/mm/init_64.c                       |   2 +-
 arch/sparc/mm/srmmu.c                         |  12 +-
 arch/tile/kernel/irq.c                        |   2 +-
 arch/tile/kernel/messaging.c                  |   2 +-
 arch/tile/kernel/setup.c                      |  12 +-
 arch/tile/kernel/smpboot.c                    |   8 +-
 arch/tile/kernel/time.c                       |   2 +-
 arch/x86/include/asm/cpu.h                    |   2 +-
 arch/x86/include/asm/microcode.h              |   4 +-
 arch/x86/include/asm/microcode_amd.h          |   4 +-
 arch/x86/include/asm/microcode_intel.h        |   4 +-
 arch/x86/include/asm/mmconfig.h               |   4 +-
 arch/x86/include/asm/mpspec.h                 |   2 +-
 arch/x86/include/asm/numa.h                   |   6 +-
 arch/x86/include/asm/processor.h              |   2 +-
 arch/x86/include/asm/prom.h                   |   2 +-
 arch/x86/include/asm/smp.h                    |   2 +-
 arch/x86/kernel/acpi/boot.c                   |   6 +-
 arch/x86/kernel/apic/apic.c                   |  30 +--
 arch/x86/kernel/apic/apic_numachip.c          |   2 +-
 arch/x86/kernel/apic/es7000_32.c              |   2 +-
 arch/x86/kernel/apic/numaq_32.c               |   2 +-
 arch/x86/kernel/apic/x2apic_cluster.c         |   2 +-
 arch/x86/kernel/apic/x2apic_uv_x.c            |  14 +-
 arch/x86/kernel/cpu/amd.c                     |  33 ++-
 arch/x86/kernel/cpu/centaur.c                 |  26 +--
 arch/x86/kernel/cpu/common.c                  |  64 +++---
 arch/x86/kernel/cpu/cyrix.c                   |  40 ++--
 arch/x86/kernel/cpu/hypervisor.c              |   2 +-
 arch/x86/kernel/cpu/intel.c                   |  30 +--
 arch/x86/kernel/cpu/intel_cacheinfo.c         |  55 +++--
 arch/x86/kernel/cpu/mcheck/mce.c              |  23 +-
 arch/x86/kernel/cpu/mcheck/mce_amd.c          |  14 +-
 arch/x86/kernel/cpu/mcheck/therm_throt.c      |   9 +-
 arch/x86/kernel/cpu/perf_event.c              |   2 +-
 arch/x86/kernel/cpu/perf_event_amd_ibs.c      |   2 +-
 arch/x86/kernel/cpu/perf_event_amd_uncore.c   |  31 ++-
 arch/x86/kernel/cpu/perf_event_intel_uncore.c |  20 +-
 arch/x86/kernel/cpu/rdrand.c                  |   2 +-
 arch/x86/kernel/cpu/scattered.c               |   4 +-
 arch/x86/kernel/cpu/topology.c                |   2 +-
 arch/x86/kernel/cpu/transmeta.c               |   6 +-
 arch/x86/kernel/cpu/umc.c                     |   2 +-
 arch/x86/kernel/cpu/vmware.c                  |   2 +-
 arch/x86/kernel/cpuid.c                       |   7 +-
 arch/x86/kernel/devicetree.c                  |   2 +-
 arch/x86/kernel/head_32.S                     |   1 -
 arch/x86/kernel/i387.c                        |  10 +-
 arch/x86/kernel/irq_32.c                      |   2 +-
 arch/x86/kernel/kvm.c                         |  10 +-
 arch/x86/kernel/kvmclock.c                    |   2 +-
 arch/x86/kernel/microcode_amd_early.c         |   8 +-
 arch/x86/kernel/microcode_core.c              |   2 +-
 arch/x86/kernel/microcode_core_early.c        |   6 +-
 arch/x86/kernel/microcode_intel_early.c       |  26 +--
 arch/x86/kernel/mmconf-fam10h_64.c            |  12 +-
 arch/x86/kernel/msr.c                         |   6 +-
 arch/x86/kernel/process.c                     |   2 +-
 arch/x86/kernel/setup.c                       |   2 +-
 arch/x86/kernel/smpboot.c                     |  28 +--
 arch/x86/kernel/tboot.c                       |   6 +-
 arch/x86/kernel/tsc.c                         |   4 +-
 arch/x86/kernel/tsc_sync.c                    |  18 +-
 arch/x86/kernel/vsyscall_64.c                 |   6 +-
 arch/x86/kernel/x86_init.c                    |   4 +-
 arch/x86/kernel/xsave.c                       |   4 +-
 arch/x86/mm/mmio-mod.c                        |   4 +-
 arch/x86/mm/numa.c                            |  12 +-
 arch/x86/mm/numa_emulation.c                  |  12 +-
 arch/x86/mm/setup_nx.c                        |   4 +-
 arch/x86/pci/amd_bus.c                        |   8 +-
 arch/x86/platform/ce4100/ce4100.c             |   2 +-
 arch/x86/platform/mrst/mrst.c                 |   4 +-
 arch/x86/xen/enlighten.c                      |   6 +-
 arch/x86/xen/setup.c                          |   6 +-
 arch/x86/xen/smp.c                            |  12 +-
 arch/x86/xen/spinlock.c                       |   2 +-
 arch/x86/xen/xen-ops.h                        |   2 +-
 arch/xtensa/kernel/time.c                     |   2 +-
 block/blk-iopoll.c                            |   6 +-
 block/blk-softirq.c                           |   6 +-
 drivers/acpi/acpi_processor.c                 |   2 +-
 drivers/acpi/processor_core.c                 |   8 +-
 drivers/acpi/processor_driver.c               |   8 +-
 drivers/acpi/processor_idle.c                 |   6 +-
 drivers/base/core.c                           | 120 ++++++++---
 drivers/base/cpu.c                            |   2 +-
 drivers/base/platform.c                       |   1 +
 drivers/base/topology.c                       |  10 +-
 drivers/clocksource/arm_arch_timer.c          |   8 +-
 drivers/clocksource/arm_global_timer.c        |   8 +-
 drivers/clocksource/dummy_timer.c             |   6 +-
 drivers/clocksource/exynos_mct.c              |   4 +-
 drivers/clocksource/metag_generic.c           |   6 +-
 drivers/clocksource/time-armada-370-xp.c      |   4 +-
 drivers/clocksource/timer-marco.c             |   4 +-
 drivers/cpufreq/cpufreq.c                     |   2 +-
 drivers/cpufreq/cpufreq_stats.c               |   2 +-
 drivers/cpufreq/dbx500-cpufreq.c              |   2 +-
 drivers/cpufreq/intel_pstate.c                |   4 +-
 drivers/cpufreq/longhaul.c                    |   6 +-
 drivers/cpufreq/longhaul.h                    |  26 +--
 drivers/cpufreq/longrun.c                     |   6 +-
 drivers/cpufreq/omap-cpufreq.c                |   2 +-
 drivers/cpufreq/powernow-k7.c                 |   8 +-
 drivers/cpufreq/powernow-k8.c                 |   6 +-
 drivers/gpu/drm/i915/i915_drv.c               |   4 +-
 drivers/gpu/drm/i915/i915_gem.c               |  83 +++----
 drivers/gpu/drm/i915/intel_dp.c               |   5 +
 drivers/gpu/drm/i915/intel_pm.c               |  31 ++-
 drivers/gpu/drm/i915/intel_ringbuffer.c       |  38 ++--
 drivers/gpu/drm/radeon/cik.c                  |  59 +++--
 drivers/gpu/drm/radeon/cikd.h                 |  16 ++
 drivers/gpu/drm/radeon/evergreen.c            |  13 +-
 drivers/gpu/drm/radeon/evergreen_hdmi.c       |   6 +
 drivers/gpu/drm/radeon/ni.c                   | 182 ++++++++++++++--
 drivers/gpu/drm/radeon/nid.h                  |  16 ++
 drivers/gpu/drm/radeon/r100.c                 |  11 +-
 drivers/gpu/drm/radeon/r600.c                 | 102 +++++++--
 drivers/gpu/drm/radeon/r600_hdmi.c            |   6 +
 drivers/gpu/drm/radeon/r600d.h                |   1 +
 drivers/gpu/drm/radeon/radeon.h               |  10 +-
 drivers/gpu/drm/radeon/radeon_asic.c          |  13 +-
 drivers/gpu/drm/radeon/radeon_asic.h          |   5 +
 drivers/gpu/drm/radeon/radeon_atombios.c      |  40 ++--
 drivers/gpu/drm/radeon/radeon_drv.c           |   4 +
 drivers/gpu/drm/radeon/radeon_fence.c         |   2 +-
 drivers/gpu/drm/radeon/radeon_gart.c          |  11 +-
 drivers/gpu/drm/radeon/radeon_irq_kms.c       |  11 +-
 drivers/gpu/drm/radeon/radeon_object.c        |   1 +
 drivers/gpu/drm/radeon/radeon_object.h        |   2 +-
 drivers/gpu/drm/radeon/radeon_ring.c          |   1 +
 drivers/gpu/drm/radeon/radeon_sa.c            |   7 +-
 drivers/gpu/drm/radeon/radeon_uvd.c           | 111 +++++-----
 drivers/gpu/drm/radeon/rs780_dpm.c            |  25 +++
 drivers/gpu/drm/radeon/rs780d.h               |   3 +
 drivers/gpu/drm/radeon/rv6xx_dpm.c            |  14 +-
 drivers/gpu/drm/radeon/rv770.c                |   2 +-
 drivers/gpu/drm/radeon/rv770_dpm.c            |  14 +-
 drivers/gpu/drm/radeon/si.c                   | 298 ++++++++++++++++++++++++--
 drivers/gpu/drm/radeon/sid.h                  |  14 ++
 drivers/gpu/drm/radeon/sumo_dpm.c             |  14 +-
 drivers/gpu/drm/rcar-du/rcar_du_drv.c         |   9 +-
 drivers/gpu/drm/shmobile/shmob_drm_drv.c      |   9 +-
 drivers/hwmon/abx500.c                        |   2 +-
 drivers/hwmon/coretemp.c                      |  39 ++--
 drivers/hwmon/via-cputemp.c                   |   8 +-
 drivers/irqchip/irq-gic.c                     |   8 +-
 drivers/media/pci/saa7134/saa7134-alsa.c      |   2 +
 drivers/oprofile/timer_int.c                  |   4 +-
 drivers/staging/line6/pcm.c                   |   5 +-
 drivers/video/uvesafb.c                       |   2 +-
 drivers/xen/xen-acpi-cpuhotplug.c             |   2 +-
 fs/sysfs/group.c                              |  70 ++++--
 include/linux/cpu.h                           |   2 +-
 include/linux/device.h                        |  37 +++-
 include/linux/perf_event.h                    |   2 +-
 include/linux/sysfs.h                         |  64 +++++-
 init/calibrate.c                              |  13 +-
 kernel/cpu.c                                  |   6 +-
 kernel/events/core.c                          |   6 +-
 kernel/fork.c                                 |   2 +-
 kernel/hrtimer.c                              |   6 +-
 kernel/printk.c                               |   2 +-
 kernel/profile.c                              |   2 +-
 kernel/rcutorture.c                           |   6 +-
 kernel/rcutree.c                              |   6 +-
 kernel/rcutree.h                              |   4 +-
 kernel/rcutree_plugin.h                       |   6 +-
 kernel/relay.c                                |   2 +-
 kernel/sched/core.c                           |  12 +-
 kernel/sched/fair.c                           |   2 +-
 kernel/smp.c                                  |   2 +-
 kernel/smpboot.c                              |   2 +-
 kernel/softirq.c                              |   8 +-
 kernel/time/tick-sched.c                      |   2 +-
 kernel/timer.c                                |  10 +-
 kernel/workqueue.c                            |   4 +-
 lib/Kconfig.debug                             |   2 +-
 lib/earlycpio.c                               |   2 +-
 lib/percpu_counter.c                          |   2 +-
 mm/backing-dev.c                              |   2 -
 mm/memcontrol.c                               |   2 +-
 mm/page-writeback.c                           |   4 +-
 mm/slab.c                                     |  10 +-
 mm/slub.c                                     |   4 +-
 mm/vmstat.c                                   |   6 +-
 net/core/flow.c                               |   4 +-
 net/iucv/iucv.c                               |   2 +-
 sound/arm/pxa2xx-pcm-lib.c                    |   2 +
 sound/core/seq/oss/seq_oss_init.c             |  16 +-
 sound/core/seq/oss/seq_oss_midi.c             |   2 +-
 sound/oss/vwsnd.c                             |   4 +-
 sound/pci/asihpi/asihpi.c                     |   3 +
 sound/pci/atiixp.c                            |   2 +
 sound/pci/atiixp_modem.c                      |   2 +
 sound/pci/hda/patch_hdmi.c                    |   2 +
 sound/soc/atmel/atmel-pcm-dma.c               |   2 +
 sound/soc/codecs/sgtl5000.c                   |   2 +-
 sound/soc/codecs/sgtl5000.h                   |   2 +-
 sound/soc/codecs/wm8978.c                     |   1 +
 sound/soc/codecs/wm8994.c                     |   4 -
 sound/soc/omap/mcbsp.c                        |  39 ++--
 sound/soc/omap/omap-dmic.c                    |  11 +-
 sound/soc/omap/omap-mcpdm.c                   |  16 +-
 sound/soc/omap/omap-pcm.c                     |  17 +-
 sound/soc/s6000/s6000-pcm.c                   |   2 +
 sound/soc/samsung/i2s.c                       |   8 +-
 sound/usb/6fire/pcm.c                         |  12 +-
 sound/usb/misc/ua101.c                        |  14 +-
 sound/usb/usx2y/usbusx2yaudio.c               |   4 +
 403 files changed, 2332 insertions(+), 1635 deletions(-)
Merging fixes/master (8177a9d lseek(fd, n, SEEK_END) does *not* go to eof - n)
$ git merge --no-ff fixes/master
Already up-to-date.
Merging kbuild-current/rc-fixes (42a0940 Merge branch 'yem-kconfig-rc-fixes' of git://gitorious.org/linux-kconfig/linux-kconfig into kbuild/rc-fixes)
$ git merge --no-ff kbuild-current/rc-fixes
Already up-to-date.
Merging arc-current/for-curr (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff arc-current/for-curr
Already up-to-date.
Merging arm-current/fixes (433d209 ARM: fix warnings caused by removal of __CPUINIT section)
$ git merge --no-ff arm-current/fixes
Merge made by the 'recursive' strategy.
Merging m68k-current/for-linus (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff m68k-current/for-linus
Already up-to-date.
Merging metag-fixes/fixes (d903bca metag: checksum.h: fix carry in csum_tcpudp_nofold)
$ git merge --no-ff metag-fixes/fixes
Already up-to-date.
Merging powerpc-merge/merge (ea461ab powerpc/eeh: Fix fetching bus for single-dev-PE)
$ git merge --no-ff powerpc-merge/merge
Already up-to-date.
Merging sparc/master (6d128e1 Revert "Makefile: Fix install error with make -j option")
$ git merge --no-ff sparc/master
Already up-to-date.
Merging net/master (3e3aac4 vlan: fix a race in egress prio management)
$ git merge --no-ff net/master
Merge made by the 'recursive' strategy.
 drivers/net/ethernet/atheros/atl1e/atl1e_main.c   | 24 ++++++-
 drivers/net/ethernet/broadcom/Kconfig             |  1 +
 drivers/net/ethernet/emulex/benet/be_main.c       | 14 ++--
 drivers/net/ethernet/mellanox/mlx5/core/debugfs.c |  2 +-
 drivers/net/hyperv/netvsc_drv.c                   |  4 +-
 drivers/net/macvtap.c                             | 65 ++++++++++-------
 drivers/net/tun.c                                 | 62 ++++++++++-------
 drivers/net/vxlan.c                               |  6 ++
 drivers/net/xen-netfront.c                        | 31 ++++-----
 include/linux/if_vlan.h                           |  3 +-
 net/8021q/vlan_core.c                             |  2 +-
 net/8021q/vlan_dev.c                              |  7 ++
 net/core/dev.c                                    | 11 ++-
 net/core/ethtool.c                                | 30 +++++---
 net/ethernet/eth.c                                | 21 +-----
 net/ipv4/ip_input.c                               |  7 +-
 net/ipv6/ndisc.c                                  |  6 +-
 net/irda/irlan/irlan_eth.c                        | 31 ++++-----
 net/sched/sch_qfq.c                               | 85 +++++++++++++++--------
 19 files changed, 248 insertions(+), 164 deletions(-)
Merging ipsec/master (01cb71d net_sched: restore "overhead xxx" handling)
$ git merge --no-ff ipsec/master
Already up-to-date.
Merging sound-current/for-linus (256ca9c ALSA: seq-oss: Initialize MIDI clients asynchronously)
$ git merge --no-ff sound-current/for-linus
Already up-to-date.
Merging pci-current/for-linus (65694c5 x86/PCI: Map PCI setup data with ioremap() so it can be in highmem)
$ git merge --no-ff pci-current/for-linus
Already up-to-date.
Merging wireless/master (64b6f46 ath9k_hw: Fix multicast search for AR9002 family)
$ git merge --no-ff wireless/master
Merge made by the 'recursive' strategy.
 drivers/net/wireless/ath/ath5k/mac80211-ops.c |  2 +-
 drivers/net/wireless/ath/ath9k/ar5008_phy.c   | 10 +++-
 drivers/net/wireless/ath/ath9k/hif_usb.c      |  9 ++--
 drivers/net/wireless/ath/ath9k/xmit.c         | 44 ++++++++++------
 drivers/net/wireless/rt2x00/Kconfig           |  2 +-
 drivers/net/wireless/rtlwifi/Kconfig          | 72 ++++++++++++++++++---------
 drivers/net/wireless/rtlwifi/Makefile         | 10 ++--
 drivers/net/wireless/rtlwifi/base.c           | 19 +++++--
 drivers/net/wireless/rtlwifi/base.h           |  2 +-
 drivers/net/wireless/rtlwifi/core.c           |  1 +
 drivers/net/wireless/rtlwifi/debug.c          |  1 +
 drivers/net/wireless/rtlwifi/efuse.c          |  1 +
 drivers/net/wireless/rtlwifi/pci.c            | 22 +++-----
 drivers/net/wireless/rtlwifi/ps.c             | 16 ++++++
 drivers/net/wireless/rtlwifi/ps.h             |  1 +
 drivers/net/wireless/rtlwifi/usb.c            |  9 ++++
 include/linux/mod_devicetable.h               |  5 +-
 17 files changed, 154 insertions(+), 72 deletions(-)
Merging driver-core.current/driver-core-linus (08801f9 driver-core: fix new kernel-doc warning in base/platform.c)
$ git merge --no-ff driver-core.current/driver-core-linus
Already up-to-date.
Merging tty.current/tty-linus (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff tty.current/tty-linus
Already up-to-date.
Merging usb.current/usb-linus (e583d9d USB: global suspend and remote wakeup don't mix)
$ git merge --no-ff usb.current/usb-linus
Merge made by the 'recursive' strategy.
 drivers/usb/core/hub.c                 | 39 +++++++++++++++++++++++++++-------
 drivers/usb/core/hub.h                 |  3 +++
 drivers/usb/dwc3/Kconfig               |  2 +-
 drivers/usb/dwc3/core.c                |  2 +-
 drivers/usb/dwc3/core.h                |  4 ++--
 drivers/usb/dwc3/gadget.c              |  1 +
 drivers/usb/gadget/Kconfig             |  5 ++++-
 drivers/usb/gadget/at91_udc.c          | 16 ++++++++------
 drivers/usb/gadget/fotg210-udc.c       |  4 ++--
 drivers/usb/gadget/mv_u3d_core.c       |  4 ++--
 drivers/usb/gadget/udc-core.c          |  6 ++++++
 drivers/usb/phy/phy-omap-usb3.c        |  2 +-
 drivers/usb/phy/phy-samsung-usb2.c     |  2 +-
 drivers/usb/renesas_usbhs/mod_gadget.c |  4 ----
 include/linux/usb.h                    | 11 ----------
 include/uapi/linux/usb/ch11.h          | 11 ++++++++++
 16 files changed, 75 insertions(+), 41 deletions(-)
Merging staging.current/staging-linus (7807725 Merge tag 'iio-fixes-for-3.11a' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-linus)
$ git merge --no-ff staging.current/staging-linus
Removing drivers/staging/csr/wext_events.c
Removing drivers/staging/csr/unifiio.h
Removing drivers/staging/csr/unifi_wext.h
Removing drivers/staging/csr/unifi_sme.h
Removing drivers/staging/csr/unifi_sme.c
Removing drivers/staging/csr/unifi_priv.h
Removing drivers/staging/csr/unifi_pdu_processing.c
Removing drivers/staging/csr/unifi_os.h
Removing drivers/staging/csr/unifi_native.h
Removing drivers/staging/csr/unifi_event.c
Removing drivers/staging/csr/unifi_dbg.c
Removing drivers/staging/csr/unifi_config.h
Removing drivers/staging/csr/unifi_clients.h
Removing drivers/staging/csr/ul_int.c
Removing drivers/staging/csr/sme_wext.c
Removing drivers/staging/csr/sme_userspace.h
Removing drivers/staging/csr/sme_userspace.c
Removing drivers/staging/csr/sme_sys.c
Removing drivers/staging/csr/sme_native.c
Removing drivers/staging/csr/sme_mgt.c
Removing drivers/staging/csr/sme_blocking.c
Removing drivers/staging/csr/sdio_stubs.c
Removing drivers/staging/csr/sdio_mmc.c
Removing drivers/staging/csr/sdio_events.c
Removing drivers/staging/csr/putest.c
Removing drivers/staging/csr/os.c
Removing drivers/staging/csr/netdev.c
Removing drivers/staging/csr/monitor.c
Removing drivers/staging/csr/mlme.c
Removing drivers/staging/csr/io.c
Removing drivers/staging/csr/init_hw.c
Removing drivers/staging/csr/inet.c
Removing drivers/staging/csr/firmware.c
Removing drivers/staging/csr/drv.c
Removing drivers/staging/csr/data_tx.c
Removing drivers/staging/csr/csr_wifi_vif_utils.h
Removing drivers/staging/csr/csr_wifi_sme_task.h
Removing drivers/staging/csr/csr_wifi_sme_serialize.h
Removing drivers/staging/csr/csr_wifi_sme_serialize.c
Removing drivers/staging/csr/csr_wifi_sme_sef.h
Removing drivers/staging/csr/csr_wifi_sme_sef.c
Removing drivers/staging/csr/csr_wifi_sme_prim.h
Removing drivers/staging/csr/csr_wifi_sme_lib.h
Removing drivers/staging/csr/csr_wifi_sme_free_upstream_contents.c
Removing drivers/staging/csr/csr_wifi_sme_free_downstream_contents.c
Removing drivers/staging/csr/csr_wifi_sme_converter_init.h
Removing drivers/staging/csr/csr_wifi_sme_converter_init.c
Removing drivers/staging/csr/csr_wifi_sme_ap_prim.h
Removing drivers/staging/csr/csr_wifi_sme_ap_lib.h
Removing drivers/staging/csr/csr_wifi_serialize_primitive_types.c
Removing drivers/staging/csr/csr_wifi_router_transport.c
Removing drivers/staging/csr/csr_wifi_router_task.h
Removing drivers/staging/csr/csr_wifi_router_serialize.h
Removing drivers/staging/csr/csr_wifi_router_serialize.c
Removing drivers/staging/csr/csr_wifi_router_sef.h
Removing drivers/staging/csr/csr_wifi_router_sef.c
Removing drivers/staging/csr/csr_wifi_router_prim.h
Removing drivers/staging/csr/csr_wifi_router_lib.h
Removing drivers/staging/csr/csr_wifi_router_free_upstream_contents.c
Removing drivers/staging/csr/csr_wifi_router_free_downstream_contents.c
Removing drivers/staging/csr/csr_wifi_router_ctrl_serialize.h
Removing drivers/staging/csr/csr_wifi_router_ctrl_serialize.c
Removing drivers/staging/csr/csr_wifi_router_ctrl_sef.h
Removing drivers/staging/csr/csr_wifi_router_ctrl_sef.c
Removing drivers/staging/csr/csr_wifi_router_ctrl_prim.h
Removing drivers/staging/csr/csr_wifi_router_ctrl_lib.h
Removing drivers/staging/csr/csr_wifi_router_ctrl_free_upstream_contents.c
Removing drivers/staging/csr/csr_wifi_router_ctrl_free_downstream_contents.c
Removing drivers/staging/csr/csr_wifi_router_ctrl_converter_init.h
Removing drivers/staging/csr/csr_wifi_router_ctrl_converter_init.c
Removing drivers/staging/csr/csr_wifi_router_converter_init.h
Removing drivers/staging/csr/csr_wifi_router_converter_init.c
Removing drivers/staging/csr/csr_wifi_result.h
Removing drivers/staging/csr/csr_wifi_private_common.h
Removing drivers/staging/csr/csr_wifi_nme_task.h
Removing drivers/staging/csr/csr_wifi_nme_serialize.h
Removing drivers/staging/csr/csr_wifi_nme_prim.h
Removing drivers/staging/csr/csr_wifi_nme_lib.h
Removing drivers/staging/csr/csr_wifi_nme_converter_init.h
Removing drivers/staging/csr/csr_wifi_nme_ap_serialize.h
Removing drivers/staging/csr/csr_wifi_nme_ap_serialize.c
Removing drivers/staging/csr/csr_wifi_nme_ap_sef.h
Removing drivers/staging/csr/csr_wifi_nme_ap_sef.c
Removing drivers/staging/csr/csr_wifi_nme_ap_prim.h
Removing drivers/staging/csr/csr_wifi_nme_ap_lib.h
Removing drivers/staging/csr/csr_wifi_nme_ap_free_upstream_contents.c
Removing drivers/staging/csr/csr_wifi_nme_ap_free_downstream_contents.c
Removing drivers/staging/csr/csr_wifi_nme_ap_converter_init.h
Removing drivers/staging/csr/csr_wifi_nme_ap_converter_init.c
Removing drivers/staging/csr/csr_wifi_msgconv.h
Removing drivers/staging/csr/csr_wifi_lib.h
Removing drivers/staging/csr/csr_wifi_hostio_prim.h
Removing drivers/staging/csr/csr_wifi_hip_xbv.h
Removing drivers/staging/csr/csr_wifi_hip_xbv.c
Removing drivers/staging/csr/csr_wifi_hip_unifiversion.h
Removing drivers/staging/csr/csr_wifi_hip_unifihw.h
Removing drivers/staging/csr/csr_wifi_hip_unifi_udi.h
Removing drivers/staging/csr/csr_wifi_hip_unifi_signal_names.c
Removing drivers/staging/csr/csr_wifi_hip_unifi.h
Removing drivers/staging/csr/csr_wifi_hip_udi.c
Removing drivers/staging/csr/csr_wifi_hip_ta_sampling.h
Removing drivers/staging/csr/csr_wifi_hip_ta_sampling.c
Removing drivers/staging/csr/csr_wifi_hip_sigs.h
Removing drivers/staging/csr/csr_wifi_hip_signals.h
Removing drivers/staging/csr/csr_wifi_hip_signals.c
Removing drivers/staging/csr/csr_wifi_hip_send.c
Removing drivers/staging/csr/csr_wifi_hip_packing.c
Removing drivers/staging/csr/csr_wifi_hip_dump.c
Removing drivers/staging/csr/csr_wifi_hip_download.c
Removing drivers/staging/csr/csr_wifi_hip_conversions.h
Removing drivers/staging/csr/csr_wifi_hip_chiphelper_private.h
Removing drivers/staging/csr/csr_wifi_hip_chiphelper.h
Removing drivers/staging/csr/csr_wifi_hip_chiphelper.c
Removing drivers/staging/csr/csr_wifi_hip_card_sdio_mem.c
Removing drivers/staging/csr/csr_wifi_hip_card_sdio_intr.c
Removing drivers/staging/csr/csr_wifi_hip_card_sdio.h
Removing drivers/staging/csr/csr_wifi_hip_card_sdio.c
Removing drivers/staging/csr/csr_wifi_hip_card.h
Removing drivers/staging/csr/csr_wifi_fsm_types.h
Removing drivers/staging/csr/csr_wifi_fsm_event.h
Removing drivers/staging/csr/csr_wifi_fsm.h
Removing drivers/staging/csr/csr_wifi_common.h
Removing drivers/staging/csr/csr_util.c
Removing drivers/staging/csr/csr_time.h
Removing drivers/staging/csr/csr_time.c
Removing drivers/staging/csr/csr_serialize_primitive_types.c
Removing drivers/staging/csr/csr_sdio.h
Removing drivers/staging/csr/csr_sched.h
Removing drivers/staging/csr/csr_result.h
Removing drivers/staging/csr/csr_prim_defs.h
Removing drivers/staging/csr/csr_msgconv.h
Removing drivers/staging/csr/csr_msgconv.c
Removing drivers/staging/csr/csr_msg_transport.h
Removing drivers/staging/csr/csr_macro.h
Removing drivers/staging/csr/csr_log_text.h
Removing drivers/staging/csr/csr_log_configure.h
Removing drivers/staging/csr/csr_log.h
Removing drivers/staging/csr/csr_framework_ext_types.h
Removing drivers/staging/csr/csr_framework_ext.h
Removing drivers/staging/csr/csr_framework_ext.c
Removing drivers/staging/csr/bh.c
Removing drivers/staging/csr/Makefile
Removing drivers/staging/csr/LICENSE.txt
Removing drivers/staging/csr/Kconfig
Merge made by the 'recursive' strategy.
 drivers/iio/adc/ti_am335x_adc.c                    |    1 +
 drivers/iio/dac/ad7303.c                           |    4 +-
 drivers/iio/industrialio-trigger.c                 |    2 +-
 drivers/iio/inkern.c                               |    2 +-
 drivers/iio/pressure/st_pressure_core.c            |    6 +-
 drivers/staging/Kconfig                            |    2 -
 drivers/staging/Makefile                           |    1 -
 drivers/staging/csr/Kconfig                        |    9 -
 drivers/staging/csr/LICENSE.txt                    |   39 -
 drivers/staging/csr/Makefile                       |   73 -
 drivers/staging/csr/bh.c                           |  404 --
 drivers/staging/csr/csr_framework_ext.c            |   40 -
 drivers/staging/csr/csr_framework_ext.h            |   35 -
 drivers/staging/csr/csr_framework_ext_types.h      |   30 -
 drivers/staging/csr/csr_log.h                      |  223 -
 drivers/staging/csr/csr_log_configure.h            |   39 -
 drivers/staging/csr/csr_log_text.h                 |  124 -
 drivers/staging/csr/csr_macro.h                    |   39 -
 drivers/staging/csr/csr_msg_transport.h            |   17 -
 drivers/staging/csr/csr_msgconv.c                  |  291 -
 drivers/staging/csr/csr_msgconv.h                  |   78 -
 drivers/staging/csr/csr_prim_defs.h                |   55 -
 drivers/staging/csr/csr_result.h                   |   17 -
 drivers/staging/csr/csr_sched.h                    |   85 -
 drivers/staging/csr/csr_sdio.h                     |  723 ---
 .../staging/csr/csr_serialize_primitive_types.c    |  100 -
 drivers/staging/csr/csr_time.c                     |   33 -
 drivers/staging/csr/csr_time.h                     |   76 -
 drivers/staging/csr/csr_util.c                     |   15 -
 drivers/staging/csr/csr_wifi_common.h              |  101 -
 drivers/staging/csr/csr_wifi_fsm.h                 |  240 -
 drivers/staging/csr/csr_wifi_fsm_event.h           |   42 -
 drivers/staging/csr/csr_wifi_fsm_types.h           |  430 --
 drivers/staging/csr/csr_wifi_hip_card.h            |  114 -
 drivers/staging/csr/csr_wifi_hip_card_sdio.c       | 4001 ------------
 drivers/staging/csr/csr_wifi_hip_card_sdio.h       |  694 ---
 drivers/staging/csr/csr_wifi_hip_card_sdio_intr.c  | 2595 --------
 drivers/staging/csr/csr_wifi_hip_card_sdio_mem.c   | 1713 -----
 drivers/staging/csr/csr_wifi_hip_chiphelper.c      |  793 ---
 drivers/staging/csr/csr_wifi_hip_chiphelper.h      |  407 --
 .../staging/csr/csr_wifi_hip_chiphelper_private.h  |  200 -
 drivers/staging/csr/csr_wifi_hip_conversions.h     |   73 -
 drivers/staging/csr/csr_wifi_hip_download.c        |  819 ---
 drivers/staging/csr/csr_wifi_hip_dump.c            |  837 ---
 drivers/staging/csr/csr_wifi_hip_packing.c         | 4804 ---------------
 drivers/staging/csr/csr_wifi_hip_send.c            |  415 --
 drivers/staging/csr/csr_wifi_hip_signals.c         | 1313 ----
 drivers/staging/csr/csr_wifi_hip_signals.h         |  128 -
 drivers/staging/csr/csr_wifi_hip_sigs.h            | 1417 -----
 drivers/staging/csr/csr_wifi_hip_ta_sampling.c     |  541 --
 drivers/staging/csr/csr_wifi_hip_ta_sampling.h     |   66 -
 drivers/staging/csr/csr_wifi_hip_udi.c             |  173 -
 drivers/staging/csr/csr_wifi_hip_unifi.h           |  871 ---
 .../staging/csr/csr_wifi_hip_unifi_signal_names.c  |   41 -
 drivers/staging/csr/csr_wifi_hip_unifi_udi.h       |   52 -
 drivers/staging/csr/csr_wifi_hip_unifihw.h         |   59 -
 drivers/staging/csr/csr_wifi_hip_unifiversion.h    |   30 -
 drivers/staging/csr/csr_wifi_hip_xbv.c             | 1076 ----
 drivers/staging/csr/csr_wifi_hip_xbv.h             |  119 -
 drivers/staging/csr/csr_wifi_hostio_prim.h         |   18 -
 drivers/staging/csr/csr_wifi_lib.h                 |  103 -
 drivers/staging/csr/csr_wifi_msgconv.h             |   49 -
 .../staging/csr/csr_wifi_nme_ap_converter_init.c   |   90 -
 .../staging/csr/csr_wifi_nme_ap_converter_init.h   |   41 -
 .../csr/csr_wifi_nme_ap_free_downstream_contents.c |   84 -
 .../csr/csr_wifi_nme_ap_free_upstream_contents.c   |   39 -
 drivers/staging/csr/csr_wifi_nme_ap_lib.h          |  495 --
 drivers/staging/csr/csr_wifi_nme_ap_prim.h         |  494 --
 drivers/staging/csr/csr_wifi_nme_ap_sef.c          |   30 -
 drivers/staging/csr/csr_wifi_nme_ap_sef.h          |   21 -
 drivers/staging/csr/csr_wifi_nme_ap_serialize.c    |  909 ---
 drivers/staging/csr/csr_wifi_nme_ap_serialize.h    |   94 -
 drivers/staging/csr/csr_wifi_nme_converter_init.h  |   38 -
 drivers/staging/csr/csr_wifi_nme_lib.h             |  991 ---
 drivers/staging/csr/csr_wifi_nme_prim.h            | 1657 -----
 drivers/staging/csr/csr_wifi_nme_serialize.h       |  166 -
 drivers/staging/csr/csr_wifi_nme_task.h            |   27 -
 drivers/staging/csr/csr_wifi_private_common.h      |   81 -
 drivers/staging/csr/csr_wifi_result.h              |   27 -
 .../staging/csr/csr_wifi_router_converter_init.c   |   82 -
 .../staging/csr/csr_wifi_router_converter_init.h   |   34 -
 .../csr/csr_wifi_router_ctrl_converter_init.c      |  134 -
 .../csr/csr_wifi_router_ctrl_converter_init.h      |   34 -
 ...csr_wifi_router_ctrl_free_downstream_contents.c |  108 -
 .../csr_wifi_router_ctrl_free_upstream_contents.c  |   87 -
 drivers/staging/csr/csr_wifi_router_ctrl_lib.h     | 2082 -------
 drivers/staging/csr/csr_wifi_router_ctrl_prim.h    | 2113 -------
 drivers/staging/csr/csr_wifi_router_ctrl_sef.c     |   46 -
 drivers/staging/csr/csr_wifi_router_ctrl_sef.h     |   51 -
 .../staging/csr/csr_wifi_router_ctrl_serialize.c   | 2591 --------
 .../staging/csr/csr_wifi_router_ctrl_serialize.h   |  333 -
 .../csr/csr_wifi_router_free_downstream_contents.c |   53 -
 .../csr/csr_wifi_router_free_upstream_contents.c   |   47 -
 drivers/staging/csr/csr_wifi_router_lib.h          |  417 --
 drivers/staging/csr/csr_wifi_router_prim.h         |  421 --
 drivers/staging/csr/csr_wifi_router_sef.c          |   19 -
 drivers/staging/csr/csr_wifi_router_sef.h          |   25 -
 drivers/staging/csr/csr_wifi_router_serialize.c    |  418 --
 drivers/staging/csr/csr_wifi_router_serialize.h    |   67 -
 drivers/staging/csr/csr_wifi_router_task.h         |   25 -
 drivers/staging/csr/csr_wifi_router_transport.c    |  199 -
 .../csr/csr_wifi_serialize_primitive_types.c       |  256 -
 drivers/staging/csr/csr_wifi_sme_ap_lib.h          |  774 ---
 drivers/staging/csr/csr_wifi_sme_ap_prim.h         | 1030 ----
 drivers/staging/csr/csr_wifi_sme_converter_init.c  |  201 -
 drivers/staging/csr/csr_wifi_sme_converter_init.h  |   34 -
 .../csr/csr_wifi_sme_free_downstream_contents.c    |  187 -
 .../csr/csr_wifi_sme_free_upstream_contents.c      |  275 -
 drivers/staging/csr/csr_wifi_sme_lib.h             | 4303 -------------
 drivers/staging/csr/csr_wifi_sme_prim.h            | 6510 --------------------
 drivers/staging/csr/csr_wifi_sme_sef.c             |   85 -
 drivers/staging/csr/csr_wifi_sme_sef.h             |  142 -
 drivers/staging/csr/csr_wifi_sme_serialize.c       | 5809 -----------------
 drivers/staging/csr/csr_wifi_sme_serialize.h       |  666 --
 drivers/staging/csr/csr_wifi_sme_task.h            |   25 -
 drivers/staging/csr/csr_wifi_vif_utils.h           |   27 -
 drivers/staging/csr/data_tx.c                      |   54 -
 drivers/staging/csr/drv.c                          | 2193 -------
 drivers/staging/csr/firmware.c                     |  396 --
 drivers/staging/csr/inet.c                         |  104 -
 drivers/staging/csr/init_hw.c                      |  108 -
 drivers/staging/csr/io.c                           | 1098 ----
 drivers/staging/csr/mlme.c                         |  433 --
 drivers/staging/csr/monitor.c                      |  384 --
 drivers/staging/csr/netdev.c                       | 3307 ----------
 drivers/staging/csr/os.c                           |  477 --
 drivers/staging/csr/putest.c                       |  685 --
 drivers/staging/csr/sdio_events.c                  |  134 -
 drivers/staging/csr/sdio_mmc.c                     | 1288 ----
 drivers/staging/csr/sdio_stubs.c                   |   82 -
 drivers/staging/csr/sme_blocking.c                 | 1466 -----
 drivers/staging/csr/sme_mgt.c                      | 1012 ---
 drivers/staging/csr/sme_native.c                   |  566 --
 drivers/staging/csr/sme_sys.c                      | 3260 ----------
 drivers/staging/csr/sme_userspace.c                |  315 -
 drivers/staging/csr/sme_userspace.h                |   38 -
 drivers/staging/csr/sme_wext.c                     | 3327 ----------
 drivers/staging/csr/ul_int.c                       |  528 --
 drivers/staging/csr/unifi_clients.h                |  129 -
 drivers/staging/csr/unifi_config.h                 |   34 -
 drivers/staging/csr/unifi_dbg.c                    |  110 -
 drivers/staging/csr/unifi_event.c                  |  692 ---
 drivers/staging/csr/unifi_native.h                 |  257 -
 drivers/staging/csr/unifi_os.h                     |  122 -
 drivers/staging/csr/unifi_pdu_processing.c         | 3729 -----------
 drivers/staging/csr/unifi_priv.h                   | 1136 ----
 drivers/staging/csr/unifi_sme.c                    | 1225 ----
 drivers/staging/csr/unifi_sme.h                    |  245 -
 drivers/staging/csr/unifi_wext.h                   |  108 -
 drivers/staging/csr/unifiio.h                      |  398 --
 drivers/staging/csr/wext_events.c                  |  283 -
 drivers/staging/iio/accel/lis3l02dq_core.c         |    2 +
 drivers/staging/iio/adc/ad7291.c                   |    1 +
 drivers/staging/iio/adc/mxs-lradc.c                |   18 +-
 include/linux/iio/iio.h                            |    4 +-
 155 files changed, 22 insertions(+), 91617 deletions(-)
 delete mode 100644 drivers/staging/csr/Kconfig
 delete mode 100644 drivers/staging/csr/LICENSE.txt
 delete mode 100644 drivers/staging/csr/Makefile
 delete mode 100644 drivers/staging/csr/bh.c
 delete mode 100644 drivers/staging/csr/csr_framework_ext.c
 delete mode 100644 drivers/staging/csr/csr_framework_ext.h
 delete mode 100644 drivers/staging/csr/csr_framework_ext_types.h
 delete mode 100644 drivers/staging/csr/csr_log.h
 delete mode 100644 drivers/staging/csr/csr_log_configure.h
 delete mode 100644 drivers/staging/csr/csr_log_text.h
 delete mode 100644 drivers/staging/csr/csr_macro.h
 delete mode 100644 drivers/staging/csr/csr_msg_transport.h
 delete mode 100644 drivers/staging/csr/csr_msgconv.c
 delete mode 100644 drivers/staging/csr/csr_msgconv.h
 delete mode 100644 drivers/staging/csr/csr_prim_defs.h
 delete mode 100644 drivers/staging/csr/csr_result.h
 delete mode 100644 drivers/staging/csr/csr_sched.h
 delete mode 100644 drivers/staging/csr/csr_sdio.h
 delete mode 100644 drivers/staging/csr/csr_serialize_primitive_types.c
 delete mode 100644 drivers/staging/csr/csr_time.c
 delete mode 100644 drivers/staging/csr/csr_time.h
 delete mode 100644 drivers/staging/csr/csr_util.c
 delete mode 100644 drivers/staging/csr/csr_wifi_common.h
 delete mode 100644 drivers/staging/csr/csr_wifi_fsm.h
 delete mode 100644 drivers/staging/csr/csr_wifi_fsm_event.h
 delete mode 100644 drivers/staging/csr/csr_wifi_fsm_types.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_card.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_card_sdio.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_card_sdio.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_card_sdio_intr.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_card_sdio_mem.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_chiphelper.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_chiphelper.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_chiphelper_private.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_conversions.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_download.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_dump.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_packing.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_send.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_signals.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_signals.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_sigs.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_ta_sampling.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_ta_sampling.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_udi.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_unifi.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_unifi_signal_names.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_unifi_udi.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_unifihw.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_unifiversion.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_xbv.c
 delete mode 100644 drivers/staging/csr/csr_wifi_hip_xbv.h
 delete mode 100644 drivers/staging/csr/csr_wifi_hostio_prim.h
 delete mode 100644 drivers/staging/csr/csr_wifi_lib.h
 delete mode 100644 drivers/staging/csr/csr_wifi_msgconv.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_converter_init.c
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_converter_init.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_free_downstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_free_upstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_lib.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_prim.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_sef.c
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_sef.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_serialize.c
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_ap_serialize.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_converter_init.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_lib.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_prim.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_serialize.h
 delete mode 100644 drivers/staging/csr/csr_wifi_nme_task.h
 delete mode 100644 drivers/staging/csr/csr_wifi_private_common.h
 delete mode 100644 drivers/staging/csr/csr_wifi_result.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_converter_init.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_converter_init.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_converter_init.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_converter_init.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_free_downstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_free_upstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_lib.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_prim.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_sef.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_sef.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_serialize.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_ctrl_serialize.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_free_downstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_free_upstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_lib.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_prim.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_sef.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_sef.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_serialize.c
 delete mode 100644 drivers/staging/csr/csr_wifi_router_serialize.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_task.h
 delete mode 100644 drivers/staging/csr/csr_wifi_router_transport.c
 delete mode 100644 drivers/staging/csr/csr_wifi_serialize_primitive_types.c
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_ap_lib.h
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_ap_prim.h
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_converter_init.c
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_converter_init.h
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_free_downstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_free_upstream_contents.c
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_lib.h
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_prim.h
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_sef.c
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_sef.h
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_serialize.c
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_serialize.h
 delete mode 100644 drivers/staging/csr/csr_wifi_sme_task.h
 delete mode 100644 drivers/staging/csr/csr_wifi_vif_utils.h
 delete mode 100644 drivers/staging/csr/data_tx.c
 delete mode 100644 drivers/staging/csr/drv.c
 delete mode 100644 drivers/staging/csr/firmware.c
 delete mode 100644 drivers/staging/csr/inet.c
 delete mode 100644 drivers/staging/csr/init_hw.c
 delete mode 100644 drivers/staging/csr/io.c
 delete mode 100644 drivers/staging/csr/mlme.c
 delete mode 100644 drivers/staging/csr/monitor.c
 delete mode 100644 drivers/staging/csr/netdev.c
 delete mode 100644 drivers/staging/csr/os.c
 delete mode 100644 drivers/staging/csr/putest.c
 delete mode 100644 drivers/staging/csr/sdio_events.c
 delete mode 100644 drivers/staging/csr/sdio_mmc.c
 delete mode 100644 drivers/staging/csr/sdio_stubs.c
 delete mode 100644 drivers/staging/csr/sme_blocking.c
 delete mode 100644 drivers/staging/csr/sme_mgt.c
 delete mode 100644 drivers/staging/csr/sme_native.c
 delete mode 100644 drivers/staging/csr/sme_sys.c
 delete mode 100644 drivers/staging/csr/sme_userspace.c
 delete mode 100644 drivers/staging/csr/sme_userspace.h
 delete mode 100644 drivers/staging/csr/sme_wext.c
 delete mode 100644 drivers/staging/csr/ul_int.c
 delete mode 100644 drivers/staging/csr/unifi_clients.h
 delete mode 100644 drivers/staging/csr/unifi_config.h
 delete mode 100644 drivers/staging/csr/unifi_dbg.c
 delete mode 100644 drivers/staging/csr/unifi_event.c
 delete mode 100644 drivers/staging/csr/unifi_native.h
 delete mode 100644 drivers/staging/csr/unifi_os.h
 delete mode 100644 drivers/staging/csr/unifi_pdu_processing.c
 delete mode 100644 drivers/staging/csr/unifi_priv.h
 delete mode 100644 drivers/staging/csr/unifi_sme.c
 delete mode 100644 drivers/staging/csr/unifi_sme.h
 delete mode 100644 drivers/staging/csr/unifi_wext.h
 delete mode 100644 drivers/staging/csr/unifiio.h
 delete mode 100644 drivers/staging/csr/wext_events.c
Merging char-misc.current/char-misc-linus (ed4bb97 Tools: hv: KVP: Fix a bug in IPV6 subnet enumeration)
$ git merge --no-ff char-misc.current/char-misc-linus
Merge made by the 'recursive' strategy.
 drivers/hv/hv_balloon.c  | 21 +++++++++++++--------
 drivers/hv/vmbus_drv.c   |  8 ++++----
 tools/hv/hv_kvp_daemon.c |  5 +++--
 3 files changed, 20 insertions(+), 14 deletions(-)
Merging input-current/for-linus (88ce3c3 Merge branch 'next' into for-linus)
$ git merge --no-ff input-current/for-linus
Already up-to-date.
Merging md-current/for-linus (ff9db74 md/raid1: fix bio handling problems in process_checks())
$ git merge --no-ff md-current/for-linus
Merge made by the 'recursive' strategy.
 drivers/md/md.c     | 14 --------------
 drivers/md/raid1.c  | 53 ++++++++++++++++++++++++++++++-----------------------
 drivers/md/raid10.c | 11 +++++++++--
 3 files changed, 39 insertions(+), 39 deletions(-)
Merging audit-current/for-linus (c158a35 audit: no leading space in audit_log_d_path prefix)
$ git merge --no-ff audit-current/for-linus
Already up-to-date.
Merging crypto-current/master (9c23b7d crypto: caam - Fixed the memory out of bound overwrite issue)
$ git merge --no-ff crypto-current/master
Merge made by the 'recursive' strategy.
 drivers/crypto/caam/caamhash.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging ide/master (6d128e1 Revert "Makefile: Fix install error with make -j option")
$ git merge --no-ff ide/master
Already up-to-date.
Merging dwmw2/master (5950f08 pcmcia: remove RPX board stuff)
$ git merge --no-ff dwmw2/master
Already up-to-date.
Merging sh-current/sh-fixes-for-linus (4403310 SH: Convert out[bwl] macros to inline functions)
$ git merge --no-ff sh-current/sh-fixes-for-linus
Already up-to-date.
Merging irqdomain-current/irqdomain/merge (d94ea3f irqchip: Return -EPERM for reserved IRQs)
$ git merge --no-ff irqdomain-current/irqdomain/merge
Already up-to-date.
Merging devicetree-current/devicetree/merge (706b78f dtc: ensure #line directives don't consume data from the next line)
$ git merge --no-ff devicetree-current/devicetree/merge
Already up-to-date.
Merging spi-current/spi/merge (0d2d0cc spi/davinci: fix module build error)
$ git merge --no-ff spi-current/spi/merge
Already up-to-date.
Merging gpio-current/gpio/merge (397eada gpio/omap: don't use linear domain mapping for OMAP1)
$ git merge --no-ff gpio-current/gpio/merge
Already up-to-date.
Merging rr-fixes/fixes (6407d75 virtio_console: fix uapi header)
$ git merge --no-ff rr-fixes/fixes
Already up-to-date.
Merging mfd-fixes/master (5649d8f mfd: ab8500-sysctrl: Let sysctrl driver work without pdata)
$ git merge --no-ff mfd-fixes/master
Already up-to-date.
Merging vfio-fixes/for-linus (7d13205 Linux 3.10-rc6)
$ git merge --no-ff vfio-fixes/for-linus
Already up-to-date.
Merging drm-intel-fixes/drm-intel-fixes (94a335d drm/i915: correctly restore fences with objects attached)
$ git merge --no-ff drm-intel-fixes/drm-intel-fixes
Auto-merging drivers/gpu/drm/i915/intel_lvds.c
Merge made by the 'recursive' strategy.
 drivers/gpu/drm/i915/i915_dma.c      | 18 ++++++------
 drivers/gpu/drm/i915/i915_gem.c      | 18 ++++++++++--
 drivers/gpu/drm/i915/intel_ddi.c     | 10 ++++---
 drivers/gpu/drm/i915/intel_display.c | 53 +++++++++++++++++++++++-------------
 drivers/gpu/drm/i915/intel_drv.h     |  2 +-
 drivers/gpu/drm/i915/intel_lvds.c    | 12 +++++---
 drivers/gpu/drm/i915/intel_panel.c   |  3 ++
 drivers/gpu/drm/i915/intel_pm.c      |  5 ++--
 8 files changed, 80 insertions(+), 41 deletions(-)
Merging asm-generic/master (fb9de7e xtensa: Use generic asm/mmu.h for nommu)
$ git merge --no-ff asm-generic/master
Already up-to-date.
Merging arc/for-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff arc/for-next
Already up-to-date.
Merging arm/for-next (433d209 ARM: fix warnings caused by removal of __CPUINIT section)
$ git merge --no-ff arm/for-next
Already up-to-date.
Merging arm-perf/for-next/perf (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff arm-perf/for-next/perf
Already up-to-date.
Merging davinci/davinci-next (fe0d422 Linux 3.0-rc6)
$ git merge --no-ff davinci/davinci-next
Already up-to-date.
Merging xilinx/arm-next (b028161 Merge branch 'for-3.11' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup)
$ git merge --no-ff xilinx/arm-next
Already up-to-date.
Merging arm64/upstream (97bf0cf arm64: Use reboot_mode and new pm_restart prototype)
$ git merge --no-ff arm64/upstream
Merge made by the 'recursive' strategy.
 arch/arm64/include/asm/system_misc.h | 3 ++-
 arch/arm64/kernel/process.c          | 5 +++--
 2 files changed, 5 insertions(+), 3 deletions(-)
Merging blackfin/for-linus (eb043d3 smp: blackfin: fix check error, using atomic_ops to handle atomic_t type)
$ git merge --no-ff blackfin/for-linus
Merge made by the 'recursive' strategy.
Merging c6x/for-linux-next (f934af0 add memory barrier to arch_local_irq_restore)
$ git merge --no-ff c6x/for-linux-next
Already up-to-date.
Merging cris/for-next (32ade6a CRIS: Add kvm_para.h which includes generic file)
$ git merge --no-ff cris/for-next
Resolved 'arch/cris/arch-v32/drivers/Kconfig' using previous resolution.
Auto-merging arch/cris/include/asm/processor.h
Auto-merging arch/cris/arch-v32/drivers/Kconfig
CONFLICT (content): Merge conflict in arch/cris/arch-v32/drivers/Kconfig
Auto-merging arch/cris/arch-v10/drivers/Kconfig
Auto-merging arch/cris/Kconfig
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master b6f6dc5] Merge remote-tracking branch 'cris/for-next'
$ git diff -M --stat --summary HEAD^..
 arch/cris/Kconfig                     |  81 -------
 arch/cris/arch-v10/drivers/Kconfig    |  70 ------
 arch/cris/arch-v10/drivers/Makefile   |   2 -
 arch/cris/arch-v32/drivers/Kconfig    | 394 ----------------------------------
 arch/cris/arch-v32/mach-a3/Kconfig    |   4 -
 arch/cris/include/asm/processor.h     |   1 -
 arch/cris/include/uapi/asm/kvm_para.h |   1 +
 7 files changed, 1 insertion(+), 552 deletions(-)
 create mode 100644 arch/cris/include/uapi/asm/kvm_para.h
Merging hexagon/linux-next (de44443 HEXAGON: Remove non existent reference to GENERIC_KERNEL_EXECVE & GENERIC_KERNEL_THREAD)
$ git merge --no-ff hexagon/linux-next
Already up-to-date.
Merging ia64/next (9c510f7 [IA64] dmi.h: Make dmi_alloc use kzalloc)
$ git merge --no-ff ia64/next
Merge made by the 'recursive' strategy.
 arch/ia64/configs/generic_defconfig   | 2 +-
 arch/ia64/configs/gensparse_defconfig | 2 +-
 arch/ia64/configs/tiger_defconfig     | 2 +-
 arch/ia64/configs/xen_domu_defconfig  | 2 +-
 arch/ia64/include/asm/dmi.h           | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
Merging m68k/for-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff m68k/for-next
Already up-to-date.
Merging m68knommu/for-next (1a2ac3e m68knommu: Mark functions only called from setup_arch() __init)
$ git merge --no-ff m68knommu/for-next
Merge made by the 'recursive' strategy.
 arch/m68k/kernel/setup_no.c         | 2 +-
 arch/m68k/platform/68000/m68328.c   | 3 ++-
 arch/m68k/platform/68000/m68EZ328.c | 3 ++-
 arch/m68k/platform/68000/m68VZ328.c | 9 +++++----
 arch/m68k/platform/68360/commproc.c | 3 ++-
 arch/m68k/platform/68360/config.c   | 3 ++-
 6 files changed, 14 insertions(+), 9 deletions(-)
Merging metag/for-next (c20eb0f metag: move EXPORT_SYMBOL(csum_partial) to metag_ksyms.c)
$ git merge --no-ff metag/for-next
Already up-to-date.
Merging microblaze/next (9903883 Merge tag 'dm-3.11-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-dm)
$ git merge --no-ff microblaze/next
Already up-to-date.
Merging mips/mips-for-linux-next (fb83fa1 Merge branch '3.11-fixes' into mips-for-linux-next)
$ git merge --no-ff mips/mips-for-linux-next
Auto-merging arch/mips/kernel/traps.c
Merge made by the 'recursive' strategy.
 arch/mips/kernel/traps.c | 1 -
 1 file changed, 1 deletion(-)
Merging openrisc/for-upstream (6af6095 openrisc: remove HAVE_VIRT_TO_BUS)
$ git merge --no-ff openrisc/for-upstream
Already up-to-date.
Merging parisc/for-next (6c700d7 [PARISC] hpux: Remove obsolete regs parameter from do_execve() in hpux_execve())
$ git merge --no-ff parisc/for-next
Already up-to-date.
Merging parisc-hd/for-next (3b02818 parisc: agp/parisc-agp: allow binding of user memory to the AGP GART)
$ git merge --no-ff parisc-hd/for-next
Merge made by the 'recursive' strategy.
 drivers/char/agp/parisc-agp.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
Merging powerpc/next (1d8b368 pstore: Add hsize argument in write_buf call of pstore_ftrace_call)
$ git merge --no-ff powerpc/next
Already up-to-date.
Merging 4xx/next (2074b1d powerpc: Fix irq distribution)
$ git merge --no-ff 4xx/next
Already up-to-date.
Merging mpc5xxx/next (dd0120d powerpc/mpc512x: enable USB support in defconfig)
$ git merge --no-ff mpc5xxx/next
Already up-to-date.
Merging galak/next (9e2ecdb powerpc/fsl-booke: add the reg prop for pci bridge device node for T4/B4)
$ git merge --no-ff galak/next
Already up-to-date.
Merging s390/features (191a2fa s390/kdump: Allow copy_oldmem_page() copy to virtual memory)
$ git merge --no-ff s390/features
Merge made by the 'recursive' strategy.
 arch/s390/include/asm/processor.h   |  10 +++-
 arch/s390/include/asm/switch_to.h   |   4 +-
 arch/s390/include/uapi/asm/ptrace.h |   1 +
 arch/s390/kernel/crash_dump.c       |  51 ++++++++++++++--
 arch/s390/kernel/ptrace.c           |  50 ++++++++++++----
 arch/s390/net/bpf_jit_comp.c        | 113 ++++++++++++++++++++++++++++--------
 drivers/s390/cio/qdio_main.c        |   4 +-
 fs/proc/vmcore.c                    |   2 +-
 8 files changed, 189 insertions(+), 46 deletions(-)
Merging sh/sh-latest (37284bd Merge branches 'sh/hw-breakpoints' and 'sh/serial-of' into sh-latest)
$ git merge --no-ff sh/sh-latest
Resolved 'arch/sh/kernel/cpu/sh2a/Makefile' using previous resolution.
Resolved 'include/linux/serial_sci.h' using previous resolution.
Auto-merging include/linux/serial_sci.h
CONFLICT (content): Merge conflict in include/linux/serial_sci.h
Auto-merging drivers/tty/serial/sh-sci.c
Auto-merging arch/sh/kernel/cpu/sh2a/Makefile
CONFLICT (content): Merge conflict in arch/sh/kernel/cpu/sh2a/Makefile
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master e9c5c65] Merge remote-tracking branch 'sh/sh-latest'
$ git diff -M --stat --summary HEAD^..
 .../bindings/tty/serial/renesas,sci-serial.txt     |  53 +++++++
 arch/sh/include/asm/hw_breakpoint.h                |  12 +-
 arch/sh/include/cpu-common/cpu/ubc.h               |  17 +++
 arch/sh/include/cpu-sh2a/cpu/ubc.h                 |  14 ++
 arch/sh/kernel/cpu/sh2a/Makefile                   |   1 +
 arch/sh/kernel/cpu/sh2a/ubc.c                      | 154 +++++++++++++++++++++
 arch/sh/kernel/hw_breakpoint.c                     |   8 ++
 drivers/tty/serial/sh-sci.c                        | 127 ++++++++++++++++-
 include/linux/serial_sci.h                         |   4 +
 9 files changed, 375 insertions(+), 15 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/tty/serial/renesas,sci-serial.txt
 create mode 100644 arch/sh/include/cpu-common/cpu/ubc.h
 create mode 100644 arch/sh/include/cpu-sh2a/cpu/ubc.h
 create mode 100644 arch/sh/kernel/cpu/sh2a/ubc.c
Merging sparc-next/master (f8ce1fa Merge tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux)
$ git merge --no-ff sparc-next/master
Already up-to-date.
Merging tile/master (8e42e21 edac: Remove redundant platform_set_drvdata())
$ git merge --no-ff tile/master
Merge made by the 'recursive' strategy.
 arch/tile/include/asm/cmpxchg.h | 6 ++++++
 drivers/edac/tile_edac.c        | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)
Merging unicore32/unicore32 (c284464 arch/unicore32: remove CONFIG_EXPERIMENTAL)
$ git merge --no-ff unicore32/unicore32
Already up-to-date.
Merging xtensa/for_next (0eb5afb xtensa: remove the second argument of __bio_kmap_atomic())
$ git merge --no-ff xtensa/for_next
Already up-to-date.
Merging btrfs/next (cbacd76 Merge branch 'for-chris' of git://git.kernel.org/pub/scm/linux/kernel/git/josef/btrfs-next into next)
$ git merge --no-ff btrfs/next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging ceph/master (8b8cf89 libceph: fix invalid unsigned->signed conversion for timespec encoding)
$ git merge --no-ff ceph/master
Already up-to-date.
Merging cifs/for-next (b116fb6 Do not attempt to do cifs operations reading symlinks with SMB2)
$ git merge --no-ff cifs/for-next
Merge made by the 'recursive' strategy.
 fs/cifs/cifsencrypt.c |  2 +-
 fs/cifs/cifsglob.h    |  4 +++
 fs/cifs/cifsproto.h   |  4 ++-
 fs/cifs/connect.c     |  7 +++--
 fs/cifs/link.c        | 84 ++++++++++++++++++++++++++++++++-------------------
 fs/cifs/sess.c        |  6 ++--
 fs/cifs/smb1ops.c     |  1 +
 7 files changed, 69 insertions(+), 39 deletions(-)
Merging configfs/linux-next (b930c26 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs)
$ git merge --no-ff configfs/linux-next
Already up-to-date.
Merging ecryptfs/next (cc18ec3 Use ecryptfs_dentry_to_lower_path in a couple of places)
$ git merge --no-ff ecryptfs/next
Already up-to-date.
Merging ext3/for_next (e628753 quota: Convert use of typedef ctl_table to struct ctl_table)
$ git merge --no-ff ext3/for_next
Already up-to-date.
Merging ext4/dev (3223fd0 ext4: yield during large unlinks)
$ git merge --no-ff ext4/dev
Merge made by the 'recursive' strategy.
 fs/ext4/extents.c        | 18 +++++++++++++++--
 fs/ext4/extents_status.c | 51 ++++++++++++++++++++++++++++++++++++------------
 fs/ext4/inode.c          | 10 ++++++++--
 3 files changed, 63 insertions(+), 16 deletions(-)
Merging f2fs/dev (9b09604 f2fs: update file name in the inode block during f2fs_rename)
$ git merge --no-ff f2fs/dev
Merge made by the 'recursive' strategy.
 Documentation/filesystems/f2fs.txt | 43 +++++++++++++++++++++++++++++++----
 fs/f2fs/data.c                     |  2 +-
 fs/f2fs/debug.c                    | 16 ++++++-------
 fs/f2fs/dir.c                      | 17 +++++++++++++-
 fs/f2fs/f2fs.h                     | 22 +++++++++++++-----
 fs/f2fs/file.c                     |  9 ++++----
 fs/f2fs/inode.c                    |  4 ++--
 fs/f2fs/namei.c                    |  5 +++++
 fs/f2fs/node.c                     | 10 ++++-----
 fs/f2fs/node.h                     | 40 +++++++++++++--------------------
 fs/f2fs/recovery.c                 |  6 ++---
 fs/f2fs/super.c                    | 46 ++++++++++++++++++++++++++++++++++++++
 12 files changed, 162 insertions(+), 58 deletions(-)
Merging fscache/fscache (bcd7351 Merge tag 'fscache-20130702' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs)
$ git merge --no-ff fscache/fscache
Already up-to-date.
Merging fuse/for-next (c7263bc fuse: readdirplus: cleanup)
$ git merge --no-ff fuse/for-next
Merge made by the 'recursive' strategy.
 fs/fuse/dir.c | 51 ++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 36 insertions(+), 15 deletions(-)
Merging gfs2/master (1067f2a GFS2: Fix typo in gfs2_create_inode())
$ git merge --no-ff gfs2/master
Merge made by the 'recursive' strategy.
 fs/gfs2/inode.c   |  2 +-
 fs/gfs2/lops.c    | 18 ++++++++++++++++++
 fs/gfs2/meta_io.c | 18 ------------------
 fs/gfs2/meta_io.h | 26 +++++++++++---------------
 4 files changed, 30 insertions(+), 34 deletions(-)
Merging jfs/jfs-next (eb8630d jfs: Update jfs_error)
$ git merge --no-ff jfs/jfs-next
Already up-to-date.
Merging logfs/master (3394661 Fix the call to BUG() caused by no free segment found)
$ git merge --no-ff 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 (2abbdda NFSv4: Remove an obsolete comment in encode_attrs)
$ git merge --no-ff nfs/linux-next
Merge made by the 'recursive' strategy.
 fs/nfs/nfs4xdr.c  | 128 +++++++++++++++++++++++++-----------------------------
 net/sunrpc/clnt.c |   1 +
 2 files changed, 59 insertions(+), 70 deletions(-)
Merging nfsd/nfsd-next (1c327d9 lockd: protect nlm_blocked access in nlmsvc_retry_blocked)
$ git merge --no-ff nfsd/nfsd-next
Already up-to-date.
Merging ocfs2/linux-next (4538df6 ocfs2: Don't spam on -EDQUOT.)
$ git merge --no-ff ocfs2/linux-next
Auto-merging fs/ocfs2/dlm/dlmrecovery.c
Auto-merging fs/ocfs2/dlm/dlmmaster.c
Auto-merging fs/ocfs2/cluster/heartbeat.c
Merge made by the 'recursive' strategy.
 fs/ocfs2/cluster/heartbeat.c | 40 +++++++++-------------------------------
 fs/ocfs2/cluster/masklog.h   |  3 ++-
 fs/ocfs2/dlm/dlmmaster.c     |  8 +++++++-
 fs/ocfs2/dlm/dlmrecovery.c   |  7 +++++++
 4 files changed, 25 insertions(+), 33 deletions(-)
Merging omfs/for-next (976d167 Linux 3.1-rc9)
$ git merge --no-ff omfs/for-next
Already up-to-date.
Merging squashfs/master (4b0180a Squashfs: add mount time sanity check for block_size and block_log match)
$ git merge --no-ff squashfs/master
Already up-to-date.
Merging v9fs/for-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff v9fs/for-next
Already up-to-date.
Merging ubifs/linux-next (beadadf UBIFS: correct mount message)
$ git merge --no-ff ubifs/linux-next
Already up-to-date.
Merging xfs/for-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff xfs/for-next
Already up-to-date.
Merging vfs/for-next (d405be4 ext4: ->tmpfile() support)
$ git merge --no-ff vfs/for-next
Auto-merging fs/coredump.c
Auto-merging fs/binfmt_elf.c
Auto-merging fs/binfmt_aout.c
Auto-merging arch/x86/ia32/ia32_aout.c
Merge made by the 'recursive' strategy.
 arch/ia64/kernel/elfcore.c                   | 13 ++---
 arch/powerpc/include/asm/spu.h               |  3 +-
 arch/powerpc/platforms/cell/spu_syscalls.c   |  4 +-
 arch/powerpc/platforms/cell/spufs/coredump.c | 64 ++++----------------
 arch/powerpc/platforms/cell/spufs/spufs.h    |  2 +-
 arch/x86/ia32/ia32_aout.c                    | 20 +++----
 arch/x86/um/elfcore.c                        | 16 ++---
 fs/binfmt_aout.c                             |  9 ++-
 fs/binfmt_elf.c                              | 84 +++++++++++----------------
 fs/binfmt_elf_fdpic.c                        | 87 ++++++++++------------------
 fs/coredump.c                                | 62 ++++++++++++--------
 include/linux/binfmts.h                      |  1 +
 include/linux/coredump.h                     |  5 +-
 include/linux/elf.h                          |  7 ++-
 include/linux/elfcore.h                      |  5 +-
 kernel/elfcore.c                             |  6 +-
 16 files changed, 152 insertions(+), 236 deletions(-)
Merging pci/next (a0f75f9 Merge branch 'pci/misc' into next)
$ git merge --no-ff pci/next
Already up-to-date.
Merging hid/for-next (6d4c6fe Merge branch 'for-3.12/upstream' into for-next)
$ git merge --no-ff hid/for-next
Auto-merging drivers/hid/hid-ids.h
Auto-merging drivers/hid/hid-core.c
Merge made by the 'recursive' strategy.
 drivers/hid/hid-core.c        |  3 ++-
 drivers/hid/hid-ids.h         |  1 +
 drivers/hid/hid-kye.c         | 45 +++++++++++++++++++++++++++----------------
 drivers/hid/hid-logitech-dj.c | 10 +++++-----
 4 files changed, 36 insertions(+), 23 deletions(-)
Merging i2c/i2c/for-next (97191d7 i2c-designware: use div_u64 to fix link)
$ git merge --no-ff i2c/i2c/for-next
Already up-to-date.
Merging jdelvare-hwmon/master (6f7e0b6 hwmon: (w83792d) Update module author)
$ git merge --no-ff jdelvare-hwmon/master
Merge made by the 'recursive' strategy.
 Documentation/hwmon/w83791d | 2 +-
 Documentation/hwmon/w83792d | 3 +--
 drivers/hwmon/w83792d.c     | 4 ++--
 3 files changed, 4 insertions(+), 5 deletions(-)
Merging hwmon-staging/hwmon-next (7de362d hwmon: (nct6775) Avoid using device platform data outside probe function)
$ git merge --no-ff hwmon-staging/hwmon-next
Recorded preimage for 'drivers/hwmon/coretemp.c'
Auto-merging drivers/hwmon/coretemp.c
CONFLICT (content): Merge conflict in drivers/hwmon/coretemp.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'drivers/hwmon/coretemp.c'.
[master 0abeca1] Merge remote-tracking branch 'hwmon-staging/hwmon-next'
$ git diff -M --stat --summary HEAD^..
 drivers/hwmon/coretemp.c |   14 +-
 drivers/hwmon/nct6775.c  | 2523 +++++++++++++++++++++++-----------------------
 2 files changed, 1260 insertions(+), 1277 deletions(-)
Merging v4l-dvb/master (2217438 Merge /home/v4l/v4l/for_upstream)
$ git merge --no-ff v4l-dvb/master
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging kbuild/for-next (cca867d Merge branch 'kbuild/kbuild' into kbuild/for-next)
$ git merge --no-ff kbuild/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging kconfig/for-next (4eae518 localmodconfig: Fix localyesconfig to set to 'y' not 'm')
$ git merge --no-ff kconfig/for-next
Already up-to-date.
Merging libata/for-next (76b962d Merge branch 'for-3.11-fixes' into for-next)
$ git merge --no-ff libata/for-next
Merge made by the 'recursive' strategy.
 drivers/ata/ata_piix.c |   2 +-
 include/linux/ata.h    | 102 -------------------------------------------------
 include/linux/libata.h | 102 +++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 103 insertions(+), 103 deletions(-)
Merging pstore/master (bd08ec3 pstore/ram: Restore ecc information block)
$ git merge --no-ff pstore/master
Already up-to-date.
Merging pm/linux-next (5d733b3 Merge branch 'acpi-assorted-next' into linux-next)
$ git merge --no-ff pm/linux-next
Auto-merging drivers/gpu/drm/i915/i915_dma.c
Removing drivers/cpufreq/mperf.h
Removing drivers/cpufreq/mperf.c
Auto-merging drivers/cpufreq/cpufreq_stats.c
Auto-merging drivers/cpufreq/cpufreq.c
Auto-merging drivers/acpi/processor_driver.c
Auto-merging arch/x86/include/asm/processor.h
Merge made by the 'recursive' strategy.
 Documentation/laptops/asus-laptop.txt   |   8 +-
 Documentation/laptops/sony-laptop.txt   |   8 +-
 Documentation/laptops/thinkpad-acpi.txt |  73 +-----
 arch/arm/mach-s3c24xx/Kconfig           |   2 +-
 arch/x86/include/asm/processor.h        |  29 ---
 drivers/acpi/Kconfig                    |  18 --
 drivers/acpi/ac.c                       |   1 -
 drivers/acpi/acpi_memhotplug.c          |   1 +
 drivers/acpi/acpi_pad.c                 |   1 -
 drivers/acpi/acpica/aclocal.h           |  13 --
 drivers/acpi/battery.c                  |  21 +-
 drivers/acpi/bus.c                      | 120 +---------
 drivers/acpi/button.c                   |   2 -
 drivers/acpi/dock.c                     | 396 ++++++++++----------------------
 drivers/acpi/ec.c                       |   4 +-
 drivers/acpi/event.c                    | 106 ---------
 drivers/acpi/internal.h                 |  11 +
 drivers/acpi/power.c                    |   4 +-
 drivers/acpi/processor_driver.c         |   4 -
 drivers/acpi/processor_perflib.c        |  22 +-
 drivers/acpi/resource.c                 |   4 +-
 drivers/acpi/sbs.c                      |  15 +-
 drivers/acpi/scan.c                     | 202 ++++++----------
 drivers/acpi/sleep.c                    |   7 +-
 drivers/acpi/thermal.c                  |  21 +-
 drivers/acpi/utils.c                    |  70 ++++++
 drivers/acpi/video.c                    | 164 ++++++++-----
 drivers/acpi/video_detect.c             |  40 +++-
 drivers/char/sonypi.c                   |   5 -
 drivers/cpufreq/Makefile                |   2 +-
 drivers/cpufreq/acpi-cpufreq.c          |   5 -
 drivers/cpufreq/cpufreq.c               |  16 +-
 drivers/cpufreq/cpufreq_governor.c      |  13 +-
 drivers/cpufreq/cpufreq_governor.h      |   1 -
 drivers/cpufreq/cpufreq_ondemand.c      |  39 +---
 drivers/cpufreq/cpufreq_stats.c         |   6 +-
 drivers/cpufreq/mperf.c                 |  51 ----
 drivers/cpufreq/mperf.h                 |   9 -
 drivers/cpufreq/s3c24xx-cpufreq.c       |   4 +-
 drivers/cpuidle/cpuidle.c               |  94 ++++----
 drivers/cpuidle/governors/ladder.c      |  12 +-
 drivers/cpuidle/governors/menu.c        |  12 +-
 drivers/cpuidle/sysfs.c                 | 101 +++++---
 drivers/gpu/drm/i915/i915_dma.c         |   2 +-
 drivers/pci/hotplug/acpiphp.h           |   1 -
 drivers/pci/hotplug/acpiphp_glue.c      |  48 +---
 drivers/pci/hotplug/acpiphp_ibm.c       |   1 -
 drivers/platform/x86/asus-laptop.c      |   1 -
 drivers/platform/x86/eeepc-laptop.c     |   1 -
 drivers/platform/x86/fujitsu-laptop.c   |   4 -
 drivers/platform/x86/panasonic-laptop.c |   3 -
 drivers/platform/x86/sony-laptop.c      |   4 -
 drivers/platform/x86/thinkpad_acpi.c    |  40 ----
 drivers/pnp/pnpacpi/rsparser.c          |   2 +-
 drivers/pnp/resource.c                  |   1 +
 include/acpi/acpi_bus.h                 |  21 +-
 include/acpi/acpi_drivers.h             |  14 +-
 include/acpi/acpixf.h                   |   1 +
 include/acpi/actypes.h                  |  15 ++
 include/acpi/video.h                    |  11 +-
 include/linux/acpi.h                    |   1 +
 include/linux/cpufreq.h                 |   6 -
 include/linux/cpuidle.h                 |   9 +-
 include/linux/pm_wakeup.h               |   4 +-
 kernel/power/autosleep.c                |   3 +-
 65 files changed, 652 insertions(+), 1278 deletions(-)
 delete mode 100644 drivers/cpufreq/mperf.c
 delete mode 100644 drivers/cpufreq/mperf.h
Merging idle/next (5c99726b Merge branch 'fspin' into next)
$ git merge --no-ff idle/next
Merge made by the 'recursive' strategy.
 tools/power/fspin/Makefile |  21 +++
 tools/power/fspin/fspin.1  |  68 +++++++
 tools/power/fspin/fspin.c  | 443 +++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 532 insertions(+)
 create mode 100644 tools/power/fspin/Makefile
 create mode 100644 tools/power/fspin/fspin.1
 create mode 100644 tools/power/fspin/fspin.c
Merging apm/for-next (fb9d78a Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm)
$ git merge --no-ff apm/for-next
Already up-to-date.
Merging cpupowerutils/master (f166033 cpupower tools: add install target to the debug tools' makefiles)
$ git merge --no-ff cpupowerutils/master
Already up-to-date.
Merging thermal/next (94e791f Thermal: x86_pkg_temp: Limit number of pkg temp zones)
$ git merge --no-ff thermal/next
Merge made by the 'recursive' strategy.
 drivers/thermal/x86_pkg_temp_thermal.c | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)
Merging ieee1394/for-next (bcabcfd firewire: remove support of fw_driver.driver.probe and .remove methods)
$ git merge --no-ff ieee1394/for-next
Already up-to-date.
Merging ubi/linux-next (83ff59a UBI: support ubi_num on mtd.ubi command line)
$ git merge --no-ff ubi/linux-next
Already up-to-date.
Merging dlm/next (cfa805f dlm: Avoid LVB truncation)
$ git merge --no-ff dlm/next
Already up-to-date.
Merging swiotlb/linux-next (af51a9f swiotlb: Do not export swiotlb_bounce since there are no external consumers)
$ git merge --no-ff swiotlb/linux-next
Already up-to-date.
Merging slave-dma/next (4eb3883 Merge branch 'topic/api_caps' into next)
$ git merge --no-ff slave-dma/next
Merge made by the 'recursive' strategy.
 drivers/dma/edma.c            |  2 --
 drivers/dma/ep93xx_dma.c      | 10 +---------
 drivers/dma/fsldma.c          | 10 +---------
 drivers/dma/imx-sdma.c        |  9 +++------
 drivers/dma/ipu/ipu_idmac.c   |  5 +----
 drivers/dma/mmp_pdma.c        | 10 +---------
 drivers/dma/mmp_tdma.c        |  3 ++-
 drivers/dma/mpc512x_dma.c     | 10 +---------
 drivers/dma/mxs-dma.c         |  4 +---
 drivers/dma/pch_dma.c         |  9 +--------
 drivers/dma/pl330.c           | 27 ++++++++++++++++++++++++++
 drivers/dma/tegra20-apb-dma.c |  8 +++-----
 drivers/dma/txx9dmac.c        | 13 ++++++-------
 include/linux/dmaengine.h     | 44 +++++++++++++++++++++++++++++++++++++++++++
 14 files changed, 92 insertions(+), 72 deletions(-)
Merging dmaengine/next (41ef2d5 Linux 3.9-rc7)
$ git merge --no-ff dmaengine/next
Already up-to-date.
Merging net-next/master (47188d3 Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4)
$ git merge --no-ff net-next/master
Already up-to-date.
Merging ipsec-next/master (0289094 af_key: constify lookup tables)
$ git merge --no-ff ipsec-next/master
Auto-merging net/key/af_key.c
Merge made by the 'recursive' strategy.
 include/net/xfrm.h    |  2 +-
 net/key/af_key.c      |  6 +++---
 net/xfrm/xfrm_state.c | 12 +++++++-----
 3 files changed, 11 insertions(+), 9 deletions(-)
Merging wireless-next/master (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff wireless-next/master
Already up-to-date.
Merging bluetooth/master (f0868e1 Bluetooth: hidp: remove wrong send_report at init)
$ git merge --no-ff bluetooth/master
Recorded preimage for 'drivers/net/wireless/rtlwifi/ps.c'
Auto-merging net/bluetooth/hidp/core.c
Auto-merging net/bluetooth/hci_core.c
Auto-merging drivers/net/wireless/rtlwifi/ps.c
CONFLICT (content): Merge conflict in drivers/net/wireless/rtlwifi/ps.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'drivers/net/wireless/rtlwifi/ps.c'.
[master 1cf37752] Merge remote-tracking branch 'bluetooth/master'
$ git diff -M --stat --summary HEAD^..
 drivers/bluetooth/ath3k.c   |  2 ++
 drivers/bluetooth/btusb.c   |  1 +
 include/net/bluetooth/hci.h |  6 ++++++
 net/bluetooth/hci_core.c    |  2 +-
 net/bluetooth/hci_event.c   | 22 +++++++++++++---------
 net/bluetooth/hidp/core.c   | 40 ++++++++++++++++++++++++++--------------
 net/bluetooth/l2cap_core.c  |  3 ++-
 7 files changed, 51 insertions(+), 25 deletions(-)
Merging infiniband/for-next (e04abfa Merge branches 'mlx5', 'qib' and 'srp' into for-next)
$ git merge --no-ff infiniband/for-next
Already up-to-date.
Merging mtd/master (a637b0d Merge tag 'for-linus-20130509' of git://git.infradead.org/linux-mtd)
$ git merge --no-ff mtd/master
Already up-to-date.
Merging l2-mtd/master (fb1585b mtd: nand: omap2: clean-up BCHx_HW and BCHx_SW ECC configurations in device_probe)
$ git merge --no-ff l2-mtd/master
Auto-merging drivers/mtd/nand/Kconfig
Auto-merging arch/mips/bcm63xx/nvram.c
Auto-merging arch/avr32/mach-at32ap/at32ap700x.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/mtd/atmel-nand.txt         |   1 +
 .../devicetree/bindings/mtd/fsmc-nand.txt          |  25 +-
 arch/avr32/mach-at32ap/at32ap700x.c                |   3 +
 arch/mips/bcm63xx/nvram.c                          |  11 +
 arch/mips/include/asm/mach-bcm63xx/bcm63xx_nvram.h |   2 +
 drivers/mtd/bcm63xxpart.c                          |   9 +-
 drivers/mtd/chips/cfi_cmdset_0002.c                |   4 +-
 drivers/mtd/devices/bcm47xxsflash.c                |  68 +++
 drivers/mtd/devices/bcm47xxsflash.h                |   2 +
 drivers/mtd/devices/block2mtd.c                    |  58 +--
 drivers/mtd/devices/elm.c                          | 124 ++++-
 drivers/mtd/devices/m25p80.c                       |  44 +-
 drivers/mtd/devices/mtd_dataflash.c                |   8 +-
 drivers/mtd/devices/spear_smi.c                    |  11 +-
 drivers/mtd/devices/sst25l.c                       |   6 +-
 drivers/mtd/maps/ixp4xx.c                          |   2 -
 drivers/mtd/maps/latch-addr-flash.c                |   1 -
 drivers/mtd/maps/physmap.c                         |   1 -
 drivers/mtd/maps/plat-ram.c                        |   2 -
 drivers/mtd/maps/pxa2xx-flash.c                    |   2 -
 drivers/mtd/maps/rbtx4939-flash.c                  |   1 -
 drivers/mtd/maps/sa1100-flash.c                    |   1 -
 drivers/mtd/nand/Kconfig                           |   2 +-
 drivers/mtd/nand/ams-delta.c                       |   1 -
 drivers/mtd/nand/atmel_nand.c                      |  25 +-
 drivers/mtd/nand/bf5xx_nand.c                      |   3 -
 drivers/mtd/nand/davinci_nand.c                    |  13 +-
 drivers/mtd/nand/docg4.c                           |   2 -
 drivers/mtd/nand/fsl_ifc_nand.c                    |   3 +-
 drivers/mtd/nand/fsmc_nand.c                       |  26 +-
 drivers/mtd/nand/gpio.c                            | 227 +++------
 drivers/mtd/nand/gpmi-nand/gpmi-nand.c             |  14 +-
 drivers/mtd/nand/jz4740_nand.c                     |   2 -
 drivers/mtd/nand/lpc32xx_mlc.c                     |   2 -
 drivers/mtd/nand/lpc32xx_slc.c                     |   2 -
 drivers/mtd/nand/mxc_nand.c                        |   2 -
 drivers/mtd/nand/nand_base.c                       |  27 +-
 drivers/mtd/nand/nuc900_nand.c                     |   2 -
 drivers/mtd/nand/omap2.c                           | 505 ++++++++++-----------
 drivers/mtd/nand/orion_nand.c                      |   1 -
 drivers/mtd/nand/plat_nand.c                       |   1 -
 drivers/mtd/nand/pxa3xx_nand.c                     | 110 ++---
 drivers/mtd/nand/r852.c                            |   5 +-
 drivers/mtd/nand/s3c2410.c                         |   2 -
 drivers/mtd/nand/sharpsl.c                         |   3 -
 drivers/mtd/nand/txx9ndfmc.c                       |   1 -
 drivers/mtd/onenand/generic.c                      |   2 -
 drivers/mtd/onenand/omap2.c                        |   1 -
 drivers/mtd/onenand/samsung.c                      |   1 -
 drivers/mtd/tests/mtd_oobtest.c                    |  12 +-
 drivers/mtd/tests/mtd_pagetest.c                   |  20 +-
 drivers/mtd/tests/mtd_readtest.c                   |  12 +-
 drivers/mtd/tests/mtd_speedtest.c                  |   8 +-
 drivers/mtd/tests/mtd_stresstest.c                 |   8 +-
 drivers/mtd/tests/mtd_subpagetest.c                |  12 +-
 include/linux/mtd/fsmc.h                           |   1 +
 include/linux/mtd/nand.h                           |   9 +-
 include/linux/platform_data/atmel.h                |   4 +
 include/linux/platform_data/elm.h                  |   4 +
 59 files changed, 759 insertions(+), 702 deletions(-)
Merging crypto/master (aa2faec crypto: caam - Moved macro DESC_JOB_IO_LEN to desc_constr.h)
$ git merge --no-ff crypto/master
Auto-merging drivers/crypto/caam/caamhash.c
Merge made by the 'recursive' strategy.
 drivers/crypto/caam/caamalg.c     | 2 --
 drivers/crypto/caam/caamhash.c    | 2 --
 drivers/crypto/caam/desc_constr.h | 1 +
 3 files changed, 1 insertion(+), 4 deletions(-)
Merging drm/drm-next (774d8e3 Merge branch 'drm-next-3.11' of git://people.freedesktop.org/~agd5f/linux into drm-next)
$ git merge --no-ff drm/drm-next
Already up-to-date.
Merging drm-intel/for-linux-next (7984211 drm/i915: restore debug message lost in merge resolution)
$ git merge --no-ff drm-intel/for-linux-next
Resolved 'drivers/gpu/drm/i915/i915_dma.c' using previous resolution.
Resolved 'drivers/gpu/drm/i915/i915_gem.c' using previous resolution.
Auto-merging include/drm/drm_mm.h
Auto-merging drivers/gpu/drm/i915/intel_ringbuffer.c
Auto-merging drivers/gpu/drm/i915/intel_pm.c
Auto-merging drivers/gpu/drm/i915/intel_lvds.c
Auto-merging drivers/gpu/drm/i915/intel_drv.h
Auto-merging drivers/gpu/drm/i915/intel_dp.c
Auto-merging drivers/gpu/drm/i915/intel_display.c
Auto-merging drivers/gpu/drm/i915/intel_ddi.c
Auto-merging drivers/gpu/drm/i915/i915_gem_stolen.c
Auto-merging drivers/gpu/drm/i915/i915_gem.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/i915_gem.c
Auto-merging drivers/gpu/drm/i915/i915_drv.h
Auto-merging drivers/gpu/drm/i915/i915_drv.c
Auto-merging drivers/gpu/drm/i915/i915_dma.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/i915_dma.c
Auto-merging drivers/gpu/drm/drm_mm.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 9f9f6ef] Merge remote-tracking branch 'drm-intel/for-linux-next'
$ git diff -M --stat --summary HEAD^..
 drivers/gpu/drm/drm_mm.c                   |  31 +-
 drivers/gpu/drm/i915/Makefile              |   1 +
 drivers/gpu/drm/i915/i915_debugfs.c        | 822 ++++++++----------------
 drivers/gpu/drm/i915/i915_dma.c            |  46 +-
 drivers/gpu/drm/i915/i915_drv.c            |  37 +-
 drivers/gpu/drm/i915/i915_drv.h            | 331 ++++++----
 drivers/gpu/drm/i915/i915_gem.c            | 263 ++++----
 drivers/gpu/drm/i915/i915_gem_context.c    |  25 +-
 drivers/gpu/drm/i915/i915_gem_debug.c      |   2 +-
 drivers/gpu/drm/i915/i915_gem_evict.c      |  34 +-
 drivers/gpu/drm/i915/i915_gem_execbuffer.c |  27 +-
 drivers/gpu/drm/i915/i915_gem_gtt.c        | 265 ++++----
 drivers/gpu/drm/i915/i915_gem_stolen.c     |  89 ++-
 drivers/gpu/drm/i915/i915_gem_tiling.c     |  14 +-
 drivers/gpu/drm/i915/i915_gpu_error.c      | 973 +++++++++++++++++++++++++++++
 drivers/gpu/drm/i915/i915_irq.c            | 893 ++++++--------------------
 drivers/gpu/drm/i915/i915_reg.h            |  83 ++-
 drivers/gpu/drm/i915/i915_sysfs.c          |  71 +++
 drivers/gpu/drm/i915/i915_trace.h          |   8 +-
 drivers/gpu/drm/i915/intel_ddi.c           |   2 +
 drivers/gpu/drm/i915/intel_display.c       | 627 ++++++++++++-------
 drivers/gpu/drm/i915/intel_dp.c            | 332 +++++++++-
 drivers/gpu/drm/i915/intel_drv.h           |  30 +-
 drivers/gpu/drm/i915/intel_dvo.c           |   3 -
 drivers/gpu/drm/i915/intel_fb.c            |   8 +-
 drivers/gpu/drm/i915/intel_lvds.c          |  21 +-
 drivers/gpu/drm/i915/intel_overlay.c       |  18 +-
 drivers/gpu/drm/i915/intel_pm.c            | 173 +++--
 drivers/gpu/drm/i915/intel_ringbuffer.c    |  43 +-
 drivers/gpu/drm/i915/intel_ringbuffer.h    |   5 +-
 drivers/gpu/drm/i915/intel_sdvo.c          |  27 +-
 drivers/gpu/drm/i915/intel_sprite.c        |   8 +-
 include/drm/drm_dp_helper.h                |  31 +-
 include/drm/drm_mm.h                       |   6 +-
 34 files changed, 3202 insertions(+), 2147 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_gpu_error.c
Merging drm-tegra/drm/for-next (ebae30b gpu: host1x: Rework CPU syncpoint increment)
$ git merge --no-ff drm-tegra/drm/for-next
Already up-to-date.
Merging sound/for-next (e4c3bce ALSA: hda - Headphone mic support for an Asus/Conexant device)
$ git merge --no-ff sound/for-next
Merge made by the 'recursive' strategy.
 sound/firewire/speakers.c      |    4 +-
 sound/pci/hda/patch_analog.c   | 4662 +++-------------------------------------
 sound/pci/hda/patch_conexant.c |   79 +-
 sound/pci/rme9652/hdspm.c      |  767 +++++--
 4 files changed, 862 insertions(+), 4650 deletions(-)
Merging sound-asoc/for-next (aec49d9 Merge remote-tracking branch 'asoc/topic/wm8994' into asoc-next)
$ git merge --no-ff sound-asoc/for-next
Auto-merging sound/soc/atmel/atmel-pcm-dma.c
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/sound/ak4554.c   |  11 ++
 .../{powerpc/fsl/ssi.txt => sound/fsl,ssi.txt}     |   0
 .../devicetree/bindings/sound/tlv320aic3x.txt      |   9 +-
 drivers/misc/atmel-ssc.c                           |  11 +-
 include/linux/atmel-ssc.h                          |   2 +-
 include/linux/mfd/arizona/gpio.h                   |  96 +++++++++++++++++
 sound/soc/atmel/Kconfig                            |   1 +
 sound/soc/atmel/atmel-pcm-dma.c                    | 118 +++------------------
 sound/soc/atmel/atmel_ssc_dai.c                    |  36 ++++---
 sound/soc/au1x/db1200.c                            |   4 +
 sound/soc/codecs/Kconfig                           |   4 +
 sound/soc/codecs/Makefile                          |   2 +
 sound/soc/codecs/adav80x.c                         |  13 ++-
 sound/soc/codecs/ak4554.c                          |  86 +++++++++++++++
 sound/soc/codecs/arizona.c                         |  36 +++++++
 sound/soc/codecs/arizona.h                         |   1 +
 sound/soc/codecs/hdmi.c                            |  11 ++
 sound/soc/codecs/max98088.c                        |   2 +-
 sound/soc/codecs/pcm3008.c                         | 108 +++++++------------
 sound/soc/codecs/sgtl5000.c                        |   4 +
 sound/soc/codecs/tlv320aic3x.c                     |   4 +
 sound/soc/codecs/wm5102.c                          |   6 ++
 sound/soc/codecs/wm5110.c                          |   9 ++
 sound/soc/codecs/wm8904.c                          |   2 +-
 sound/soc/codecs/wm8994.c                          |  10 +-
 sound/soc/fsl/Kconfig                              |   4 +-
 sound/soc/fsl/fsl_ssi.c                            |  57 ++++------
 sound/soc/fsl/imx-mc13783.c                        |   1 +
 sound/soc/fsl/imx-pcm-dma.c                        |   1 -
 sound/soc/fsl/imx-pcm-fiq.c                        |  18 ++--
 sound/soc/fsl/imx-pcm.h                            |  15 ++-
 sound/soc/fsl/imx-sgtl5000.c                       |   4 +-
 sound/soc/fsl/imx-ssi.c                            |   7 +-
 sound/soc/fsl/imx-ssi.h                            |   1 +
 sound/soc/fsl/imx-wm8962.c                         |   3 +-
 sound/soc/kirkwood/Kconfig                         |   6 +-
 sound/soc/kirkwood/kirkwood-i2s.c                  |  35 +++---
 sound/soc/kirkwood/kirkwood-openrd.c               |   2 -
 sound/soc/kirkwood/kirkwood-t5325.c                |   2 -
 sound/soc/omap/Kconfig                             |   6 +-
 sound/soc/pxa/brownstone.c                         |   1 +
 sound/soc/pxa/ttc-dkb.c                            |   1 +
 sound/soc/samsung/spdif.c                          |   8 +-
 sound/soc/soc-pcm.c                                |   5 +-
 sound/soc/tegra/Kconfig                            |  14 +--
 sound/soc/tegra/tegra20_ac97.c                     |   2 -
 sound/soc/tegra/tegra_alc5632.c                    |   2 -
 sound/soc/tegra/tegra_wm8753.c                     |   2 -
 sound/soc/tegra/trimslice.c                        |   2 -
 sound/soc/ux500/mop500.c                           |   1 +
 50 files changed, 472 insertions(+), 314 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/ak4554.c
 rename Documentation/devicetree/bindings/{powerpc/fsl/ssi.txt => sound/fsl,ssi.txt} (100%)
 create mode 100644 include/linux/mfd/arizona/gpio.h
 create mode 100644 sound/soc/codecs/ak4554.c
Merging modules/modules-next (9eb76d7 module: cleanup call chain.)
$ git merge --no-ff modules/modules-next
Already up-to-date.
Merging virtio/virtio-next (c893c8d MAINTAINERS: add tools/virtio/ under virtio)
$ git merge --no-ff virtio/virtio-next
Already up-to-date.
Merging input/next (46146e7 Input: nspire-keypad - replace magic offset with define)
$ git merge --no-ff input/next
Already up-to-date.
Merging input-mt/for-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff input-mt/for-next
Already up-to-date.
Merging cgroup/for-next (ed55cff Merge branch 'for-3.12' into for-next)
$ git merge --no-ff cgroup/for-next
Auto-merging kernel/cgroup.c
Merge made by the 'recursive' strategy.
 include/linux/cgroup.h        |   3 +-
 include/linux/cgroup_subsys.h |  45 +-----
 kernel/cgroup.c               | 336 +++++++++++++++++++++---------------------
 3 files changed, 174 insertions(+), 210 deletions(-)
Merging block/for-next (3fe9649 Merge branch 'for-3.11/drivers' into for-next)
$ git merge --no-ff block/for-next
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-driver-xen-blkback |  17 +
 .../ABI/testing/sysfs-driver-xen-blkfront          |  10 +
 Documentation/bcache.txt                           |  37 +-
 MAINTAINERS                                        |   4 +-
 drivers/block/Kconfig                              |   4 +-
 drivers/block/drbd/drbd_actlog.c                   |  21 +
 drivers/block/drbd/drbd_int.h                      |  15 +-
 drivers/block/drbd/drbd_main.c                     |  61 +-
 drivers/block/drbd/drbd_nl.c                       | 185 ++++-
 drivers/block/drbd/drbd_receiver.c                 |  12 +-
 drivers/block/drbd/drbd_state.c                    |   4 +-
 drivers/block/rsxx/core.c                          | 359 ++++++++-
 drivers/block/rsxx/cregs.c                         |  14 +
 drivers/block/rsxx/dev.c                           |  33 +-
 drivers/block/rsxx/dma.c                           | 185 ++---
 drivers/block/rsxx/rsxx_priv.h                     |  10 +-
 drivers/block/xen-blkback/blkback.c                | 872 +++++++++++++--------
 drivers/block/xen-blkback/common.h                 | 147 +++-
 drivers/block/xen-blkback/xenbus.c                 |  85 ++
 drivers/block/xen-blkfront.c                       | 532 ++++++++++---
 drivers/md/bcache/alloc.c                          |  46 +-
 drivers/md/bcache/bcache.h                         |  61 +-
 drivers/md/bcache/bset.c                           |  56 +-
 drivers/md/bcache/bset.h                           |   4 +
 drivers/md/bcache/btree.c                          | 451 +++++------
 drivers/md/bcache/btree.h                          |  35 +-
 drivers/md/bcache/closure.c                        |   6 +-
 drivers/md/bcache/debug.c                          | 178 +----
 drivers/md/bcache/debug.h                          |  11 +-
 drivers/md/bcache/io.c                             |  68 +-
 drivers/md/bcache/journal.c                        |  25 +-
 drivers/md/bcache/movinggc.c                       |  24 +-
 drivers/md/bcache/request.c                        | 197 ++---
 drivers/md/bcache/request.h                        |   2 +-
 drivers/md/bcache/super.c                          | 171 +++-
 drivers/md/bcache/sysfs.c                          |  68 +-
 drivers/md/bcache/trace.c                          |  47 +-
 drivers/md/bcache/util.c                           |  17 -
 drivers/md/bcache/util.h                           |   6 -
 drivers/md/bcache/writeback.c                      | 133 +++-
 drivers/md/bcache/writeback.h                      |  64 ++
 include/linux/drbd.h                               |   6 +-
 include/linux/drbd_genl.h                          |   2 +
 include/linux/drbd_limits.h                        |   9 +
 include/trace/events/bcache.h                      | 381 ++++++---
 include/xen/interface/io/blkif.h                   |  53 ++
 include/xen/interface/io/ring.h                    |   5 +
 47 files changed, 3183 insertions(+), 1550 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-driver-xen-blkback
 create mode 100644 Documentation/ABI/testing/sysfs-driver-xen-blkfront
 create mode 100644 drivers/md/bcache/writeback.h
Merging device-mapper/master (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff device-mapper/master
Already up-to-date.
Merging embedded/master (4744b43 embedded: fix vc_translate operator precedence)
$ git merge --no-ff embedded/master
Already up-to-date.
Merging firmware/master (6e03a20 firmware: speed up request_firmware(), v3)
$ git merge --no-ff firmware/master
Already up-to-date.
Merging pcmcia/master (80af9e6 pcmcia at91_cf: fix raw gpio number usage)
$ git merge --no-ff pcmcia/master
Already up-to-date.
Merging mmc/mmc-next (bfffbea Merge tag 'mmc-updates-for-3.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc)
$ git merge --no-ff mmc/mmc-next
Already up-to-date.
Merging kgdb/kgdb-next (6bedf31 kdb: Remove unhandled ssb command)
$ git merge --no-ff kgdb/kgdb-next
Merge made by the 'recursive' strategy.
Merging slab/for-next (0450b0c Merge branch 'slab/next' into for-next)
$ git merge --no-ff slab/for-next
Auto-merging mm/slub.c
Merge made by the 'recursive' strategy.
 mm/slub.c | 98 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 57 insertions(+), 41 deletions(-)
Merging uclinux/for-next (6dbe51c Linux 3.9-rc1)
$ git merge --no-ff uclinux/for-next
Already up-to-date.
Merging md/for-next (ca37218 md/raid5: make release_stripe lockless)
$ git merge --no-ff md/for-next
Recorded preimage for 'drivers/md/raid1.c'
Auto-merging drivers/md/raid1.c
CONFLICT (content): Merge conflict in drivers/md/raid1.c
Auto-merging drivers/md/md.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
Recorded resolution for 'drivers/md/raid1.c'.
[master 6e72c60] Merge remote-tracking branch 'md/for-next'
$ git diff -M --stat --summary HEAD^..
 drivers/md/md.c     |  13 +-
 drivers/md/md.h     |   8 +
 drivers/md/raid1.c  |  27 +---
 drivers/md/raid5.c  | 459 +++++++++++++++++++++++++++++++++++++++++++++++++---
 drivers/md/raid5.h  |  22 +++
 fs/bio.c            |  27 ++++
 include/linux/bio.h |   1 +
 7 files changed, 502 insertions(+), 55 deletions(-)
Merging mfd/master (25f311f mfd: sec: Provide max_register to regmap)
$ git merge --no-ff mfd/master
Already up-to-date.
Merging battery/master (5a6c220 charger-manager: Fix regulator_get() return check)
$ git merge --no-ff battery/master
Already up-to-date.
Merging fbdev/for-next (5e8be02 video: atmel_lcdfb: add device tree suport)
$ git merge --no-ff fbdev/for-next
Auto-merging arch/avr32/mach-at32ap/at32ap700x.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/video/atmel,lcdc.txt       |  75 +++++
 arch/arm/mach-at91/at91sam9261_devices.c           |   6 +-
 arch/arm/mach-at91/at91sam9263_devices.c           |   6 +-
 arch/arm/mach-at91/at91sam9g45_devices.c           |   6 +-
 arch/arm/mach-at91/at91sam9rl_devices.c            |   6 +-
 arch/arm/mach-at91/board-sam9261ek.c               |  10 +-
 arch/arm/mach-at91/board-sam9263ek.c               |   6 +-
 arch/arm/mach-at91/board-sam9m10g45ek.c            |   4 +-
 arch/arm/mach-at91/board-sam9rlek.c                |   6 +-
 arch/arm/mach-at91/board.h                         |   4 +-
 arch/avr32/boards/atngw100/evklcd10x.c             |   8 +-
 arch/avr32/boards/atngw100/mrmt.c                  |   4 +-
 arch/avr32/boards/atstk1000/atstk1000.h            |   2 +-
 arch/avr32/boards/atstk1000/setup.c                |   2 +-
 arch/avr32/boards/favr-32/setup.c                  |   2 +-
 arch/avr32/boards/hammerhead/setup.c               |   2 +-
 arch/avr32/boards/merisc/display.c                 |   2 +-
 arch/avr32/boards/mimc200/setup.c                  |   4 +-
 arch/avr32/mach-at32ap/at32ap700x.c                |   8 +-
 arch/avr32/mach-at32ap/include/mach/board.h        |   4 +-
 drivers/video/Kconfig                              |   2 +
 drivers/video/atmel_lcdfb.c                        | 343 +++++++++++++++++----
 include/video/atmel_lcdc.h                         |  25 +-
 23 files changed, 402 insertions(+), 135 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/video/atmel,lcdc.txt
Merging viafb/viafb-next (838ac78 viafb: avoid refresh and mode lookup in set_par)
$ git merge --no-ff viafb/viafb-next
Already up-to-date.
Merging omap_dss2/for-next (e72b753 fbdev/ps3fb: fix compile warning)
$ git merge --no-ff omap_dss2/for-next
Merge made by the 'recursive' strategy.
Merging regulator/for-next (c75023a Merge remote-tracking branch 'regulator/topic/sec' into regulator-next)
$ git merge --no-ff regulator/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/regulator/88pm800.txt      |  38 +++
 .../devicetree/bindings/regulator/palmas-pmic.txt  |   4 +-
 .../devicetree/bindings/regulator/regulator.txt    |   2 +
 drivers/regulator/88pm800.c                        | 377 +++++++++++++++++++++
 drivers/regulator/Kconfig                          | 254 +++++++-------
 drivers/regulator/Makefile                         |   3 +-
 drivers/regulator/core.c                           | 112 +++++-
 drivers/regulator/lp872x.c                         |   9 +-
 drivers/regulator/lp8755.c                         |   1 +
 drivers/regulator/of_regulator.c                   |  12 +-
 drivers/regulator/s2mps11.c                        | 241 ++++++++++---
 drivers/regulator/wm831x-ldo.c                     | 104 ++----
 drivers/regulator/wm8350-regulator.c               |  55 +--
 drivers/regulator/wm8400-regulator.c               |  50 +--
 include/linux/mfd/samsung/s2mps11.h                |  11 +
 include/linux/regulator/consumer.h                 |   7 +-
 include/linux/regulator/driver.h                   |  25 ++
 include/linux/regulator/machine.h                  |   1 +
 18 files changed, 968 insertions(+), 338 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/regulator/88pm800.txt
 create mode 100644 drivers/regulator/88pm800.c
Merging security/next (572e5b0 tpm/tpm_i2c_infineon: Remove unused header file)
$ git merge --no-ff security/next
Already up-to-date.
Merging selinux/master (c2d7b24 Merge tag 'v3.4' into 20120409)
$ git merge --no-ff selinux/master
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging lblnet/master (d4b6739 SELinux: fix selinuxfs policy file on big endian systems)
$ git merge --no-ff lblnet/master
Auto-merging security/capability.c
Merge made by the 'recursive' strategy.
 include/linux/security.h        |  26 ++-
 security/capability.c           |  15 +-
 security/security.c             |  13 +-
 security/selinux/hooks.c        |  18 +-
 security/selinux/include/xfrm.h |  45 ++--
 security/selinux/netnode.c      |   2 +
 security/selinux/ss/ebitmap.c   |  20 +-
 security/selinux/ss/ebitmap.h   |  10 +-
 security/selinux/ss/mls.c       |  22 +-
 security/selinux/ss/mls_types.h |   2 +-
 security/selinux/ss/policydb.c  |   3 +-
 security/selinux/xfrm.c         | 453 ++++++++++++++++++----------------------
 12 files changed, 306 insertions(+), 323 deletions(-)
Merging watchdog/master (47188d3 Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4)
$ git merge --no-ff watchdog/master
Already up-to-date.
Merging dwmw2-iommu/master (6491d4d intel-iommu: Free old page tables before creating superpage)
$ git merge --no-ff dwmw2-iommu/master
Already up-to-date.
Merging iommu/next (01ce784 Merge branches 'x86/vt-d', 'arm/omap', 'core', 'x86/amd' and 'arm/smmu' into next)
$ git merge --no-ff iommu/next
Already up-to-date.
Merging vfio/next (47188d3 Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4)
$ git merge --no-ff vfio/next
Already up-to-date.
Merging osd/linux-next (861d666 exofs: don't leak io_state and pages on read error)
$ git merge --no-ff osd/linux-next
Already up-to-date.
Merging jc_docs/docs-next (5c050fb docs: update the development process document)
$ git merge --no-ff jc_docs/docs-next
Already up-to-date.
Merging trivial/for-next (8ecada1 doc: printk-formats: fix format specifier to %p[Ii]4[hnbl])
$ git merge --no-ff trivial/for-next
Auto-merging Documentation/printk-formats.txt
Merge made by the 'recursive' strategy.
 Documentation/printk-formats.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging audit/for-next (dcd6c92 Linux 3.3-rc1)
$ git merge --no-ff audit/for-next
Already up-to-date.
Merging fsnotify/for-next (1ca39ab inotify: automatically restart syscalls)
$ git merge --no-ff fsnotify/for-next
Already up-to-date.
Merging edac/linux_next (de4772c edac: sb_edac.c should not require prescence of IMC_DDRIO device)
$ git merge --no-ff edac/linux_next
Already up-to-date.
Merging edac-amd/for-next (aad19e5 EDAC, MCE, AMD: Add an MCE signature for new Fam15h models)
$ git merge --no-ff edac-amd/for-next
Already up-to-date.
Merging devicetree/devicetree/next (6dd18e4 of: Fix address decoding on Bimini and js2x machines)
$ git merge --no-ff devicetree/devicetree/next
Already up-to-date.
Merging dt-rh/for-next (d683b96 Linux 3.10-rc4)
$ git merge --no-ff dt-rh/for-next
Already up-to-date.
Merging spi/spi/next (00ab539 spi/s3c64xx: let device core setup the default pin configuration)
$ git merge --no-ff spi/spi/next
Already up-to-date.
Merging spi-mb/for-next (919a8ec Merge remote-tracking branch 'spi/topic/xilinx' into spi-next)
$ git merge --no-ff spi-mb/for-next
Merge made by the 'recursive' strategy.
 drivers/spi/Kconfig             |  11 +-
 drivers/spi/Makefile            |   1 +
 drivers/spi/spi-atmel.c         |  12 +-
 drivers/spi/spi-bfin-v3.c       | 973 ++++++++++++++++++++++++++++++++++++++++
 drivers/spi/spi-bitbang.c       | 261 +++++------
 drivers/spi/spi-clps711x.c      |   6 -
 drivers/spi/spi-ep93xx.c        | 351 ++++-----------
 drivers/spi/spi-imx.c           |  75 ++--
 drivers/spi/spi-mxs.c           |  21 +-
 drivers/spi/spi-omap-100k.c     | 276 ++++--------
 drivers/spi/spi-pxa2xx.c        |   9 +-
 drivers/spi/spi-s3c64xx.c       |  41 +-
 drivers/spi/spi-sirf.c          |   1 +
 drivers/spi/spi-tegra114.c      |   1 -
 drivers/spi/spi-tle62x0.c       |   3 +-
 drivers/spi/spi-xilinx.c        | 172 +++----
 drivers/spi/spi.c               |  13 +
 include/linux/spi/spi.h         |   7 +
 include/linux/spi/spi_bitbang.h |   5 -
 19 files changed, 1406 insertions(+), 833 deletions(-)
 create mode 100644 drivers/spi/spi-bfin-v3.c
Merging tip/auto-latest (54396a6 Merge branch 'x86/urgent')
$ git merge --no-ff tip/auto-latest
Auto-merging kernel/sched/core.c
Auto-merging kernel/events/core.c
Auto-merging arch/x86/platform/ce4100/ce4100.c
Auto-merging arch/x86/kernel/head_32.S
Merge made by the 'recursive' strategy.
 arch/x86/include/asm/alternative.h |   1 +
 arch/x86/include/asm/bitops.h      |  46 +++++++++-------
 arch/x86/include/asm/cpufeature.h  |  17 +++---
 arch/x86/include/asm/mutex_64.h    |  30 +++++++++++
 arch/x86/include/asm/sync_bitops.h |  24 ++++-----
 arch/x86/kernel/acpi/sleep.c       |  18 ++++++-
 arch/x86/kernel/alternative.c      | 106 +++++++++++++++++++++++++++++++++++++
 arch/x86/kernel/head_32.S          |   2 +-
 arch/x86/kernel/head_64.S          |  15 ------
 arch/x86/kernel/jump_label.c       |  16 +++++-
 arch/x86/kernel/tracepoint.c       |   6 +--
 arch/x86/kernel/traps.c            |  12 ++---
 arch/x86/platform/ce4100/ce4100.c  |   1 +
 arch/x86/platform/efi/efi.c        |   7 ---
 drivers/firmware/efi/efivars.c     |   3 ++
 include/linux/lockdep.h            |  92 ++++++++------------------------
 kernel/events/core.c               |  79 ++++++++++++++-------------
 kernel/kprobes.c                   |   2 +-
 kernel/lglock.c                    |  12 ++---
 kernel/sched/core.c                |   2 +-
 20 files changed, 300 insertions(+), 191 deletions(-)
Merging ftrace/for-next (dcc3022 tracing: Make tracing_open_generic_{tr,tc}() static)
$ git merge --no-ff ftrace/for-next
Already up-to-date.
Merging rcu/rcu/next (0f791c9 nohz_full: Force RCU's grace-period kthreads onto timekeeping CPU)
$ git merge --no-ff rcu/rcu/next
Auto-merging kernel/rcutree_plugin.h
Auto-merging kernel/rcutree.h
Auto-merging kernel/rcutree.c
Auto-merging kernel/rcutorture.c
Merge made by the 'recursive' strategy.
 Documentation/RCU/RTFP.txt        | 855 ++++++++++++++++++++++++--------------
 Documentation/RCU/rcubarrier.txt  |  12 +-
 Documentation/RCU/torture.txt     |  10 +
 Documentation/memory-barriers.txt |  10 +-
 Documentation/timers/NO_HZ.txt    |  44 +-
 include/linux/debugobjects.h      |   6 +-
 include/linux/rcupdate.h          |  22 +-
 kernel/rcu.h                      |  10 +-
 kernel/rcupdate.c                 | 100 -----
 kernel/rcutorture.c               | 334 ++++++---------
 kernel/rcutree.c                  | 133 +++---
 kernel/rcutree.h                  |  17 +
 kernel/rcutree_plugin.h           | 413 +++++++++++++++++-
 kernel/time/Kconfig               |  23 +
 lib/debugobjects.c                |  20 +-
 15 files changed, 1316 insertions(+), 693 deletions(-)
Merging cputime/cputime (c3e0ef9 [S390] fix cputime overflow in uptime_proc_show)
$ git merge --no-ff cputime/cputime
Already up-to-date.
Merging uprobes/for-next (0326f5a uprobes/core: Handle breakpoint and singlestep exceptions)
$ git merge --no-ff uprobes/for-next
Already up-to-date.
Merging kvm/linux-next (6d128e1 Revert "Makefile: Fix install error with make -j option")
$ git merge --no-ff kvm/linux-next
Already up-to-date.
Merging kvm-arm/kvm-arm-next (8bd4ffd ARM: kvm: don't include drivers/virtio/Kconfig)
$ git merge --no-ff kvm-arm/kvm-arm-next
Already up-to-date.
Merging kvm-ppc/kvm-ppc-next (20f7462 Merge remote-tracking branch 'cmadma/for-v3.12-cma-dma' into kvm-ppc-next)
$ git merge --no-ff kvm-ppc/kvm-ppc-next
Resolved 'mm/Kconfig' using previous resolution.
Auto-merging mm/Kconfig
CONFLICT (content): Merge conflict in mm/Kconfig
Auto-merging drivers/base/Makefile
Auto-merging arch/arm/mm/dma-mapping.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master d09e1c2] Merge remote-tracking branch 'kvm-ppc/kvm-ppc-next'
$ git diff -M --stat --summary HEAD^..
 arch/arm/include/asm/dma-contiguous.h |  2 +-
 arch/arm/mm/dma-mapping.c             |  6 +++---
 drivers/base/Kconfig                  | 20 ++++----------------
 drivers/base/Makefile                 |  2 +-
 include/linux/dma-contiguous.h        |  2 +-
 mm/Kconfig                            | 24 ++++++++++++++++++++++++
 6 files changed, 34 insertions(+), 22 deletions(-)
Merging oprofile/for-next (f722406 Linux 3.10-rc1)
$ git merge --no-ff oprofile/for-next
Already up-to-date.
Merging fw-nohz/nohz/next (74876a9 printk: Wake up klogd using irq_work)
$ git merge --no-ff fw-nohz/nohz/next
Already up-to-date.
Merging xen/upstream/xen (af3a3ab Merge git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes)
$ git merge --no-ff xen/upstream/xen
Already up-to-date.
Merging xen-two/linux-next (21f3c04 Merge branch 'stable/for-linus-3.11' into linux-next)
$ git merge --no-ff xen-two/linux-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging xen-arm/linux-next (176455e xen/arm and xen/arm64: implement HYPERVISOR_tmem_op)
$ git merge --no-ff xen-arm/linux-next
Already up-to-date.
Merging percpu/for-next (a424445 percpu-refcount: use RCU-sched insted of normal RCU)
$ git merge --no-ff percpu/for-next
Already up-to-date.
Merging workqueues/for-next (bbe2a23 Merge branch 'for-3.10-fixes' into for-next)
$ git merge --no-ff workqueues/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging drivers-x86/linux-next (de91b53 x86 platform drivers: fix gpio leak)
$ git merge --no-ff drivers-x86/linux-next
Merge made by the 'recursive' strategy.
Merging hwpoison/hwpoison (46e387b Merge branch 'hwpoison-hugepages' into hwpoison)
$ git merge --no-ff hwpoison/hwpoison
Already up-to-date.
Merging sysctl/master (4e474a0 sysctl: protect poll() in entries that may go away)
$ git merge --no-ff sysctl/master
Already up-to-date.
Merging regmap/for-next (78fd817 Merge remote-tracking branch 'regmap/topic/patch' into regmap-next)
$ git merge --no-ff regmap/for-next
Merge made by the 'recursive' strategy.
 drivers/base/regmap/regmap.c | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)
Merging hsi/for-next (43139a6 HSI: hsi_char: Update ioctl-number.txt)
$ git merge --no-ff hsi/for-next
Already up-to-date.
Merging leds/for-next (9394690 leds: support new LP8501 device - another LP55xx common)
$ git merge --no-ff leds/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/leds/leds-lp55xx.txt       |  72 +++-
 Documentation/devicetree/bindings/leds/pca9633.txt |  45 +++
 Documentation/leds/leds-lp55xx.txt                 |  30 +-
 drivers/leds/Kconfig                               |  18 +-
 drivers/leds/Makefile                              |   1 +
 drivers/leds/leds-lp55xx-common.c                  |   3 +
 drivers/leds/leds-lp8501.c                         | 410 +++++++++++++++++++++
 drivers/leds/leds-pca9633.c                        |  71 ++++
 include/linux/platform_data/leds-lp55xx.h          |  10 +
 9 files changed, 653 insertions(+), 7 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/leds/pca9633.txt
 create mode 100644 drivers/leds/leds-lp8501.c
Merging driver-core/driver-core-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff driver-core/driver-core-next
Already up-to-date.
Merging tty/tty-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff tty/tty-next
Already up-to-date.
Merging usb/usb-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff usb/usb-next
Already up-to-date.
Merging usb-gadget/next (b1fd6cb usb: dwc3: omap: Adds dwc3_omap_readl/writel wrappers)
$ git merge --no-ff usb-gadget/next
Already up-to-date.
Merging staging/staging-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff staging/staging-next
Already up-to-date.
Merging char-misc/char-misc-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff char-misc/char-misc-next
Already up-to-date.
Merging scsi/for-next (d26911a Merge branch 'misc' into for-next)
$ git merge --no-ff scsi/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging target-updates/for-next (ca40d24 iser-target: Ignore non TEXT + LOGOUT opcodes for discovery)
$ git merge --no-ff target-updates/for-next
Already up-to-date.
Merging target-merge/for-next-merge (317ddd2 Linux 3.10-rc5)
$ git merge --no-ff target-merge/for-next-merge
Already up-to-date.
Merging ibft/linux-next (935a9fe ibft: Fix finding IBFT ACPI table on UEFI)
$ git merge --no-ff ibft/linux-next
Already up-to-date.
Merging isci/all (6734092 isci: add a couple __iomem annotations)
$ git merge --no-ff isci/all
Already up-to-date.
Merging bcon/master (e284f34 netconsole: s/syslogd/cancd/ in documentation)
$ git merge --no-ff bcon/master
Resolved 'drivers/block/Kconfig' using previous resolution.
Auto-merging kernel/printk.c
Auto-merging init/do_mounts.c
Auto-merging include/linux/mount.h
Auto-merging include/linux/console.h
Auto-merging drivers/net/netconsole.c
Auto-merging drivers/block/Makefile
Auto-merging drivers/block/Kconfig
CONFLICT (content): Merge conflict in drivers/block/Kconfig
Auto-merging block/partitions/check.h
Auto-merging block/partitions/check.c
Auto-merging block/partitions/Makefile
Auto-merging Documentation/networking/netconsole.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master bae33e4] Merge remote-tracking branch 'bcon/master'
$ git diff -M --stat --summary HEAD^..
 Documentation/block/blockconsole.txt            |  94 ++++
 Documentation/block/blockconsole/bcon_tail      |  82 ++++
 Documentation/block/blockconsole/mkblockconsole |  29 ++
 Documentation/networking/netconsole.txt         |  16 +-
 block/partitions/Makefile                       |   1 +
 block/partitions/blockconsole.c                 |  22 +
 block/partitions/check.c                        |   3 +
 block/partitions/check.h                        |   3 +
 drivers/block/Kconfig                           |   6 +
 drivers/block/Makefile                          |   1 +
 drivers/block/blockconsole.c                    | 618 ++++++++++++++++++++++++
 drivers/net/netconsole.c                        |   2 +-
 include/linux/blockconsole.h                    |   7 +
 include/linux/console.h                         |   1 +
 include/linux/mount.h                           |   2 +-
 init/do_mounts.c                                |   2 +-
 kernel/printk.c                                 |   5 +-
 17 files changed, 885 insertions(+), 9 deletions(-)
 create mode 100644 Documentation/block/blockconsole.txt
 create mode 100755 Documentation/block/blockconsole/bcon_tail
 create mode 100755 Documentation/block/blockconsole/mkblockconsole
 create mode 100644 block/partitions/blockconsole.c
 create mode 100644 drivers/block/blockconsole.c
 create mode 100644 include/linux/blockconsole.h
Merging tmem/linux-next (8f0d816 Linux 3.7-rc3)
$ git merge --no-ff tmem/linux-next
Already up-to-date.
Merging writeback/writeback-for-next (8bb495e Linux 3.10)
$ git merge --no-ff writeback/writeback-for-next
Already up-to-date.
Merging arm-dt/devicetree/arm-next (ede338f dt: add documentation of ARM dt boot interface)
$ git merge --no-ff arm-dt/devicetree/arm-next
Already up-to-date.
Merging hwspinlock/linux-next (8b37fcf hwspinlock: add MAINTAINERS entries)
$ git merge --no-ff hwspinlock/linux-next
Already up-to-date.
Merging pinctrl/for-next (5b81d55 pinctrl: remove bindings for pinconf options needing more thought)
$ git merge --no-ff pinctrl/for-next
Already up-to-date.
Merging vhost/linux-next (22fa90c vhost: Remove custom vhost rcu usage)
$ git merge --no-ff vhost/linux-next
Auto-merging drivers/vhost/scsi.c
Merge made by the 'recursive' strategy.
 drivers/vhost/net.c   | 37 ++++++++++++++++---------------------
 drivers/vhost/scsi.c  | 17 ++++++-----------
 drivers/vhost/test.c  |  6 ++----
 drivers/vhost/vhost.h | 10 ++--------
 4 files changed, 26 insertions(+), 44 deletions(-)
Merging memblock/memblock-kill-early_node_map (7bd0b0f memblock: Reimplement memblock allocation using reverse free area iterator)
$ git merge --no-ff memblock/memblock-kill-early_node_map
Already up-to-date.
Merging remoteproc/for-next (b977785 remoteproc: fix kconfig dependencies for VIRTIO)
$ git merge --no-ff remoteproc/for-next
Already up-to-date.
Merging rpmsg/for-next (397944d rpmsg: fix kconfig dependencies for VIRTIO)
$ git merge --no-ff rpmsg/for-next
Already up-to-date.
Merging irqdomain/irqdomain/next (798f0fd irq: fix checkpatch error)
$ git merge --no-ff irqdomain/irqdomain/next
Already up-to-date.
Merging gpio/gpio/next (644c8df gpio: sx150x: convert to use devm_* functions)
$ git merge --no-ff gpio/gpio/next
Already up-to-date.
Merging gpio-lw/for-next (69acf2e Merge branch 'merge' into for-next)
$ git merge --no-ff gpio-lw/for-next
Merge made by the 'recursive' strategy.
 drivers/gpio/gpio-omap.c | 84 ++++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 70 insertions(+), 14 deletions(-)
Merging arm-soc/for-next (f681e48 Merge branch 'fixes' into for-next)
$ git merge --no-ff arm-soc/for-next
Merge made by the 'recursive' strategy.
 arch/arm/arm-soc-for-next-contents.txt | 345 +++++++++++++++++++++++++++++++++
 1 file changed, 345 insertions(+)
 create mode 100644 arch/arm/arm-soc-for-next-contents.txt
Merging bcm2835/for-next (7d13205 Linux 3.10-rc6)
$ git merge --no-ff bcm2835/for-next
Already up-to-date.
Merging cortex/for-next (3ad87ac ARM: ARMv7-M: Fix name of NVIC handler function)
$ git merge --no-ff cortex/for-next
Merge made by the 'recursive' strategy.
 arch/arm/kernel/entry-v7m.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging ep93xx/ep93xx-for-next (7ec4429 Merge branch 'ep93xx-fixes' into ep93xx-for-next)
$ git merge --no-ff ep93xx/ep93xx-for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging imx-mxs/for-next (395e853 Merge branch 'mxs/dt' into for-next)
$ git merge --no-ff imx-mxs/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/bus/imx-weim.txt |   17 +-
 .../devicetree/bindings/clock/imx27-clock.txt      |    1 +
 arch/arm/Kconfig.debug                             |    8 +
 arch/arm/boot/dts/Makefile                         |    5 +
 arch/arm/boot/dts/imx23-evk.dts                    |   15 +
 arch/arm/boot/dts/imx23-olinuxino.dts              |    4 +
 arch/arm/boot/dts/imx23.dtsi                       |   15 +-
 arch/arm/boot/dts/imx25.dtsi                       |   35 +-
 arch/arm/boot/dts/imx27-apf27dev.dts               |    5 +
 arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts   |   93 +
 arch/arm/boot/dts/imx27-phytec-phycard-s-som.dts   |   44 +
 arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts     |   13 +
 arch/arm/boot/dts/imx27-phytec-phycore-som.dts     |   98 +-
 arch/arm/boot/dts/imx27.dtsi                       |  114 +-
 arch/arm/boot/dts/imx28-apx4devkit.dts             |    2 +-
 arch/arm/boot/dts/imx28-cfa10036.dts               |    7 +-
 arch/arm/boot/dts/imx28-cfa10037.dts               |   19 +-
 arch/arm/boot/dts/imx28-cfa10049.dts               |   73 +-
 arch/arm/boot/dts/imx28-cfa10055.dts               |   38 +-
 arch/arm/boot/dts/imx28-cfa10056.dts               |  119 ++
 arch/arm/boot/dts/imx28-cfa10057.dts               |   23 +-
 arch/arm/boot/dts/imx28-cfa10058.dts               |  141 ++
 arch/arm/boot/dts/imx28-evk.dts                    |    2 +-
 arch/arm/boot/dts/imx28-m28evk.dts                 |   15 +-
 arch/arm/boot/dts/imx28.dtsi                       |   47 +-
 arch/arm/boot/dts/imx31.dtsi                       |   17 +
 arch/arm/boot/dts/imx51-babbage.dts                |   14 +-
 arch/arm/boot/dts/imx51.dtsi                       |  103 +-
 arch/arm/boot/dts/imx53-mba53.dts                  |    2 +-
 arch/arm/boot/dts/imx53-qsb.dts                    |    4 +
 arch/arm/boot/dts/imx53.dtsi                       |   87 +-
 arch/arm/boot/dts/imx6dl-pinfunc.h                 | 2138 ++++++++++----------
 arch/arm/boot/dts/imx6dl-sabreauto.dts             |   22 -
 arch/arm/boot/dts/imx6dl-sabresd.dts               |   19 -
 arch/arm/boot/dts/imx6dl-wandboard.dts             |   24 +-
 arch/arm/boot/dts/imx6dl.dtsi                      |  248 +--
 arch/arm/boot/dts/imx6q-arm2.dts                   |   14 +-
 arch/arm/boot/dts/imx6q-phytec-pfla02.dtsi         |    6 +-
 arch/arm/boot/dts/imx6q-pinfunc.h                  | 2050 +++++++++----------
 arch/arm/boot/dts/imx6q-sabreauto.dts              |   22 +-
 arch/arm/boot/dts/imx6q-sabrelite.dts              |   20 +-
 arch/arm/boot/dts/imx6q-sabresd.dts                |   19 +-
 arch/arm/boot/dts/imx6q-wandboard.dts              |   26 +
 arch/arm/boot/dts/imx6q.dtsi                       |  387 +---
 arch/arm/boot/dts/imx6qdl-sabreauto.dtsi           |   22 +
 arch/arm/boot/dts/imx6qdl-sabresd.dtsi             |   60 +
 arch/arm/boot/dts/imx6qdl-wandboard.dtsi           |  132 ++
 arch/arm/boot/dts/imx6qdl.dtsi                     |  776 ++++++-
 arch/arm/boot/dts/imx6sl.dtsi                      |   35 +-
 arch/arm/boot/dts/vf610.dtsi                       |    8 +-
 arch/arm/configs/imx_v4_v5_defconfig               |    1 +
 arch/arm/configs/imx_v6_v7_defconfig               |    9 +
 arch/arm/include/debug/vf.S                        |   26 +
 arch/arm/mach-imx/Kconfig                          |    1 +
 arch/arm/mach-imx/Makefile                         |    3 +-
 arch/arm/mach-imx/clk-fixup-div.c                  |  129 ++
 arch/arm/mach-imx/clk-fixup-mux.c                  |  107 +
 arch/arm/mach-imx/clk-imx6q.c                      |   29 +-
 arch/arm/mach-imx/clk-imx6sl.c                     |   20 +-
 arch/arm/mach-imx/clk-pllv3.c                      |   15 +-
 arch/arm/mach-imx/clk-vf610.c                      |    2 +
 arch/arm/mach-imx/clk.c                            |   26 +
 arch/arm/mach-imx/clk.h                            |   10 +
 arch/arm/mach-imx/common.h                         |    6 +
 arch/arm/mach-imx/mach-imx6q.c                     |  102 +-
 arch/arm/mach-imx/mach-imx6sl.c                    |    3 +-
 arch/arm/mach-imx/mx27.h                           |    2 +-
 arch/arm/mach-imx/system.c                         |   33 +
 arch/arm/mach-mxs/mach-mxs.c                       |    5 +-
 arch/arm/mach-mxs/pm.c                             |    1 +
 drivers/bus/Kconfig                                |    3 +-
 drivers/bus/imx-weim.c                             |  129 +-
 include/dt-bindings/clock/vf610-clock.h            |    4 +-
 include/linux/mfd/syscon/imx6q-iomuxc-gpr.h        |   16 +-
 74 files changed, 4737 insertions(+), 3153 deletions(-)
 create mode 100644 arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts
 create mode 100644 arch/arm/boot/dts/imx27-phytec-phycard-s-som.dts
 create mode 100644 arch/arm/boot/dts/imx28-cfa10056.dts
 create mode 100644 arch/arm/boot/dts/imx28-cfa10058.dts
 create mode 100644 arch/arm/boot/dts/imx6q-wandboard.dts
 create mode 100644 arch/arm/boot/dts/imx6qdl-wandboard.dtsi
 create mode 100644 arch/arm/include/debug/vf.S
 create mode 100644 arch/arm/mach-imx/clk-fixup-div.c
 create mode 100644 arch/arm/mach-imx/clk-fixup-mux.c
Merging ixp4xx/next (19f949f Linux 3.8)
$ git merge --no-ff ixp4xx/next
Already up-to-date.
Merging msm/for-next (d701eda ARM: dts: msm: Fix merge resolution)
$ git merge --no-ff msm/for-next
Merge made by the 'recursive' strategy.
Merging mvebu/for-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff mvebu/for-next
Already up-to-date.
Merging renesas/next (4bfc0fa Merge branch 'fixes' into for-next)
$ git merge --no-ff renesas/next
Already up-to-date.
Merging samsung/for-next (ad81f05 Linux 3.11-rc1)
$ git merge --no-ff samsung/for-next
Already up-to-date.
Merging tegra/for-next (1884644 Merge branch for-3.12/defconfig into for-next)
$ git merge --no-ff tegra/for-next
Removing arch/arm/boot/dts/tegra114-pluto.dts
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/Makefile             |  3 +--
 arch/arm/boot/dts/tegra114-dalmore.dts | 29 +++++++++++++++++++++++++++++
 arch/arm/boot/dts/tegra114-pluto.dts   | 33 ---------------------------------
 arch/arm/boot/dts/tegra30-cardhu.dtsi  | 33 ++++++++++++++++++++-------------
 arch/arm/configs/tegra_defconfig       |  3 +++
 arch/arm/mach-tegra/Kconfig            |  1 +
 6 files changed, 54 insertions(+), 48 deletions(-)
 delete mode 100644 arch/arm/boot/dts/tegra114-pluto.dts
Merging dma-mapping/dma-mapping-next (f7d8f1e Merge remote-tracking branch 'dma-public/for-v3.12-cma-dma' into for-next)
$ git merge --no-ff dma-mapping/dma-mapping-next
Merge made by the 'recursive' strategy.
Merging pwm/for-next (b388f15 pwm: pwm-tiehrpwm: Use clk_enable/disable instead clk_prepare/unprepare.)
$ git merge --no-ff pwm/for-next
Already up-to-date.
Merging dma-buf/for-next (8bb495e Linux 3.10)
$ git merge --no-ff dma-buf/for-next
Already up-to-date.
Merging userns/for-next (78008c4 proc: Restrict mounting the proc filesystem)
$ git merge --no-ff userns/for-next
Auto-merging fs/proc/root.c
Merge made by the 'recursive' strategy.
 fs/proc/root.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
Merging ktest/for-next (df5f7c6 ktest: Reset grub menu cache with different machines)
$ git merge --no-ff ktest/for-next
Already up-to-date.
Merging signal/for-next (20b4fb4 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
$ git merge --no-ff signal/for-next
Already up-to-date.
Merging clk/clk-next (45e3ec3 clk: tegra: fix ifdef for tegra_periph_reset_assert inline)
$ git merge --no-ff clk/clk-next
Already up-to-date.
Merging random/dev (b980955 random: fix locking dependency with the tasklist_lock)
$ git merge --no-ff random/dev
Already up-to-date.
Merging lzo-update/lzo-update (42b775a lib/lzo: huge LZO decompression speedup on ARM by using unaligned access)
$ git merge --no-ff lzo-update/lzo-update
Merge made by the 'recursive' strategy.
 lib/lzo/lzo1x_decompress_safe.c | 4 ++++
 lib/lzo/lzodefs.h               | 6 ++++++
 2 files changed, 10 insertions(+)
Merging arm64-hugepages/for-next/hugepages (af07484 ARM64: mm: THP support.)
$ git merge --no-ff arm64-hugepages/for-next/hugepages
Already up-to-date.
Merging ptr-ret/PTR_RET (6b4f2b5 mm/oom_kill: remove weird use of ERR_PTR()/PTR_ERR().)
$ git merge --no-ff ptr-ret/PTR_RET
Auto-merging drivers/acpi/acpi_pad.c
Merge made by the 'recursive' strategy.
 arch/arm/mach-omap2/i2c.c                         |  2 +-
 arch/m68k/amiga/platform.c                        |  2 +-
 arch/m68k/kernel/time.c                           |  2 +-
 arch/m68k/q40/config.c                            |  2 +-
 arch/powerpc/kernel/iommu.c                       |  2 +-
 arch/powerpc/kernel/time.c                        |  2 +-
 arch/powerpc/platforms/ps3/time.c                 |  2 +-
 arch/powerpc/sysdev/rtc_cmos_setup.c              |  2 +-
 arch/s390/hypfs/hypfs_dbfs.c                      |  2 +-
 arch/s390/kvm/gaccess.h                           | 12 ++++++++----
 drivers/acpi/acpi_pad.c                           | 13 ++++++++-----
 drivers/char/tile-srom.c                          |  2 +-
 drivers/infiniband/core/cma.c                     |  2 +-
 drivers/net/appletalk/cops.c                      |  2 +-
 drivers/net/appletalk/ltpc.c                      |  2 +-
 drivers/net/ethernet/amd/atarilance.c             |  2 +-
 drivers/net/ethernet/amd/mvme147.c                |  2 +-
 drivers/net/ethernet/amd/ni65.c                   |  2 +-
 drivers/net/ethernet/amd/sun3lance.c              |  2 +-
 drivers/net/wireless/brcm80211/brcmfmac/dhd_dbg.c |  2 +-
 drivers/net/wireless/brcm80211/brcmsmac/debug.c   |  2 +-
 drivers/pinctrl/mvebu/pinctrl-dove.c              |  2 +-
 drivers/platform/x86/samsung-q10.c                |  2 +-
 drivers/regulator/fan53555.c                      |  2 +-
 drivers/remoteproc/da8xx_remoteproc.c             |  2 +-
 drivers/spi/spi-fsl-spi.c                         |  2 +-
 drivers/spi/spidev.c                              |  2 +-
 drivers/staging/zcache/zcache-main.c              |  2 +-
 drivers/video/omap2/dss/core.c                    |  2 +-
 fs/btrfs/dev-replace.c                            |  2 +-
 fs/btrfs/inode.c                                  |  2 +-
 include/linux/err.h                               |  5 ++++-
 mm/oom_kill.c                                     |  6 +++---
 net/bluetooth/hci_sysfs.c                         |  2 +-
 net/bridge/netfilter/ebtable_broute.c             |  2 +-
 net/bridge/netfilter/ebtable_filter.c             |  2 +-
 net/bridge/netfilter/ebtable_nat.c                |  2 +-
 net/ipv4/netfilter/arptable_filter.c              |  2 +-
 net/ipv4/netfilter/iptable_filter.c               |  2 +-
 net/ipv4/netfilter/iptable_mangle.c               |  2 +-
 net/ipv4/netfilter/iptable_nat.c                  |  2 +-
 net/ipv4/netfilter/iptable_raw.c                  |  2 +-
 net/ipv4/netfilter/iptable_security.c             |  2 +-
 net/ipv6/netfilter/ip6table_filter.c              |  2 +-
 net/ipv6/netfilter/ip6table_mangle.c              |  2 +-
 net/ipv6/netfilter/ip6table_nat.c                 |  2 +-
 net/ipv6/netfilter/ip6table_raw.c                 |  2 +-
 net/ipv6/netfilter/ip6table_security.c            |  2 +-
 scripts/coccinelle/api/ptr_ret.cocci              | 10 +++++-----
 sound/soc/soc-io.c                                |  2 +-
 50 files changed, 73 insertions(+), 63 deletions(-)
Merging aio/master (0c45355 aio: fix build when migration is disabled)
$ git merge --no-ff aio/master
Merge made by the 'recursive' strategy.
 fs/aio.c                    | 123 ++++++++++++++++++++++++++++++++++++++++----
 fs/anon_inodes.c            |  66 ++++++++++++++++++++++++
 include/linux/anon_inodes.h |   3 ++
 include/linux/migrate.h     |   3 ++
 mm/migrate.c                |   2 +-
 5 files changed, 185 insertions(+), 12 deletions(-)
Merging scsi-post-merge/merge-base:master (65112dc Merge git://git.samba.org/sfrench/cifs-2.6)
Merging akpm-current/current (1f02e5b staging/lustre: replace num_physpages with totalram_pages)
$ git merge akpm-current/current
Auto-merging kernel/printk/printk.c
Auto-merging fs/binfmt_elf.c
Auto-merging drivers/thermal/x86_pkg_temp_thermal.c
Auto-merging arch/x86/platform/efi/efi.c
Auto-merging arch/x86/platform/ce4100/ce4100.c
Auto-merging MAINTAINERS
Merge made by the 'recursive' strategy.
 .gitignore                                         |    1 +
 Documentation/development-process/2.Process        |    4 +-
 MAINTAINERS                                        |    7 +-
 arch/alpha/lib/csum_partial_copy.c                 |    5 +
 arch/sparc/kernel/sys_sparc32.c                    |   12 +-
 arch/x86/include/asm/e820.h                        |    2 +
 arch/x86/kernel/e820.c                             |   72 +-
 arch/x86/mm/tlb.c                                  |   18 +-
 arch/x86/platform/ce4100/ce4100.c                  |    1 +
 arch/x86/platform/efi/efi.c                        |   15 +-
 block/compat_ioctl.c                               |    2 +-
 block/genhd.c                                      |    2 +-
 drivers/accessibility/braille/braille_console.c    |    9 +-
 drivers/atm/he.c                                   |   13 +-
 drivers/base/node.c                                |    6 -
 drivers/firmware/dmi_scan.c                        |   87 +-
 drivers/gpu/drm/cirrus/cirrus_mode.c               |    4 +-
 drivers/gpu/drm/drm_fb_helper.c                    |    8 +
 drivers/gpu/drm/nouveau/nouveau_acpi.c             |    5 +
 drivers/infiniband/core/cm.c                       |    5 +-
 drivers/isdn/hisax/amd7930_fn.c                    |    4 +-
 drivers/isdn/hisax/avm_pci.c                       |    4 +-
 drivers/isdn/hisax/config.c                        |    2 +-
 drivers/isdn/hisax/diva.c                          |    4 +-
 drivers/isdn/hisax/elsa.c                          |    2 +-
 drivers/isdn/hisax/elsa_ser.c                      |    2 +-
 drivers/isdn/hisax/hfc_pci.c                       |    2 +-
 drivers/isdn/hisax/hfc_sx.c                        |    2 +-
 drivers/isdn/hisax/hscx_irq.c                      |    4 +-
 drivers/isdn/hisax/icc.c                           |    4 +-
 drivers/isdn/hisax/ipacx.c                         |    8 +-
 drivers/isdn/hisax/isac.c                          |    4 +-
 drivers/isdn/hisax/isar.c                          |    6 +-
 drivers/isdn/hisax/jade.c                          |   18 +-
 drivers/isdn/hisax/jade_irq.c                      |    4 +-
 drivers/isdn/hisax/l3_1tr6.c                       |   50 +-
 drivers/isdn/hisax/netjet.c                        |    2 +-
 drivers/isdn/hisax/q931.c                          |    6 +-
 drivers/isdn/hisax/w6692.c                         |    8 +-
 drivers/isdn/mISDN/core.c                          |    6 +
 drivers/isdn/mISDN/core.h                          |    1 +
 drivers/isdn/mISDN/socket.c                        |    9 +
 drivers/memstick/core/Kconfig                      |   12 +
 drivers/memstick/core/Makefile                     |    2 +-
 drivers/memstick/core/ms_block.c                   | 2385 ++++++++++++++++++++
 drivers/memstick/core/ms_block.h                   |  290 +++
 drivers/mtd/chips/gen_probe.c                      |    4 +-
 drivers/net/ethernet/ibm/ehea/ehea_main.c          |   14 +-
 drivers/net/irda/donauboe.c                        |   15 +-
 drivers/pcmcia/pd6729.c                            |   13 +-
 drivers/pcmcia/yenta_socket.c                      |   16 +-
 drivers/rapidio/rio.c                              |    4 +-
 drivers/rtc/rtc-hid-sensor-time.c                  |   16 +-
 drivers/scsi/a100u2w.c                             |   12 +-
 drivers/scsi/dc395x.c                              |   24 +-
 drivers/scsi/dmx3191d.c                            |   13 +-
 drivers/scsi/initio.c                              |   13 +-
 drivers/scsi/mvumi.c                               |   20 +-
 .../lustre/include/linux/libcfs/linux/linux-mem.h  |   42 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lib.c      |   10 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_pool.c     |  139 +-
 .../lustre/lustre/libcfs/linux/linux-tracefile.c   |    2 +-
 drivers/staging/lustre/lustre/llite/lproc_llite.c  |    8 +-
 drivers/staging/lustre/lustre/obdclass/class_obd.c |    6 +-
 .../lustre/lustre/obdclass/linux/linux-sysctl.c    |    6 +-
 drivers/staging/lustre/lustre/obdclass/lu_object.c |  100 +-
 drivers/staging/lustre/lustre/osc/lproc_osc.c      |    2 +-
 .../staging/lustre/lustre/ptlrpc/lproc_ptlrpc.c    |    2 +-
 drivers/staging/lustre/lustre/ptlrpc/sec_bulk.c    |   80 +-
 drivers/thermal/x86_pkg_temp_thermal.c             |    1 -
 drivers/video/acornfb.c                            |  266 +--
 drivers/video/acornfb.h                            |   29 -
 drivers/video/cyber2000fb.c                        |    3 +
 fs/autofs4/autofs_i.h                              |    4 +-
 fs/autofs4/dev-ioctl.c                             |   16 +-
 fs/autofs4/inode.c                                 |   33 +-
 fs/autofs4/waitq.c                                 |   16 +-
 fs/binfmt_elf.c                                    |   21 +-
 fs/eventpoll.c                                     |   34 +-
 fs/fat/file.c                                      |  108 +-
 fs/fat/inode.c                                     |   54 +
 fs/file_table.c                                    |    3 +-
 fs/ocfs2/alloc.c                                   |    2 +-
 fs/ocfs2/file.c                                    |   60 +-
 fs/ocfs2/namei.c                                   |   12 +-
 fs/ocfs2/refcounttree.c                            |    5 +
 fs/proc/meminfo.c                                  |    6 -
 include/linux/hardirq.h                            |    5 +
 include/linux/huge_mm.h                            |    3 -
 include/linux/interrupt.h                          |   23 +-
 include/linux/ipc_namespace.h                      |    2 +-
 include/linux/mempolicy.h                          |    9 +-
 include/linux/mm.h                                 |    3 +-
 include/linux/page-flags.h                         |    4 +-
 include/linux/sched.h                              |    8 +-
 include/linux/smp.h                                |   20 +-
 include/linux/vm_event_item.h                      |    5 +
 ipc/msg.c                                          |   25 +-
 ipc/namespace.c                                    |    4 +-
 ipc/sem.c                                          |   24 +-
 ipc/shm.c                                          |  239 +-
 ipc/util.c                                         |   60 +-
 ipc/util.h                                         |    7 +-
 kernel/Makefile                                    |    3 +-
 kernel/fork.c                                      |    9 +-
 kernel/hrtimer.c                                   |    2 +
 kernel/printk/Makefile                             |    2 +
 kernel/printk/braille.c                            |   48 +
 kernel/printk/braille.h                            |   48 +
 kernel/printk/console_cmdline.h                    |   14 +
 kernel/{ => printk}/printk.c                       |  183 +-
 kernel/relay.c                                     |   14 +-
 kernel/sched/fair.c                                |    4 +-
 kernel/signal.c                                    |    4 +-
 kernel/smp.c                                       |   16 +-
 kernel/watchdog.c                                  |   10 +-
 mm/filemap.c                                       |   60 +-
 mm/huge_memory.c                                   |  125 +-
 mm/madvise.c                                       |   14 +-
 mm/memory.c                                        |    9 +-
 mm/mempolicy.c                                     |   16 +-
 mm/mmap.c                                          |   47 +-
 mm/rmap.c                                          |   18 +-
 mm/shmem.c                                         |   11 +-
 mm/swap.c                                          |   29 +-
 mm/swap_state.c                                    |   63 +-
 mm/swapfile.c                                      |   38 +-
 mm/vmstat.c                                        |    5 +
 mm/zbud.c                                          |    2 +-
 mm/zswap.c                                         |    2 +-
 net/socket.c                                       |   50 +-
 131 files changed, 4218 insertions(+), 1422 deletions(-)
 create mode 100644 drivers/memstick/core/ms_block.c
 create mode 100644 drivers/memstick/core/ms_block.h
 create mode 100644 kernel/printk/Makefile
 create mode 100644 kernel/printk/braille.c
 create mode 100644 kernel/printk/braille.h
 create mode 100644 kernel/printk/console_cmdline.h
 rename kernel/{ => printk}/printk.c (95%)
$ git clone -s -l -n -q . ../rebase-tmp
$ cd ../rebase-tmp
$ git checkout -b akpm remotes/origin/akpm/master
Switched to a new branch 'akpm'
$ git rebase --onto master remotes/origin/akpm/master-base
First, rewinding head to replay your work on top of it...
Applying: fs: bump inode and dentry counters to long
Applying: super: fix calculation of shrinkable objects for small numbers
Applying: dcache: convert dentry_stat.nr_unused to per-cpu counters
Applying: dentry: move to per-sb LRU locks
Applying: dcache: remove dentries from LRU before putting on dispose list
Applying: mm: new shrinker API
Applying: shrinker: convert superblock shrinkers to new API
Applying: shrinker-convert-superblock-shrinkers-to-new-api-fix
Applying: list: add a new LRU list type
Applying: inode: convert inode lru list to generic lru list code.
Applying: inode: move inode to a different list inside lock
Applying: dcache: convert to use new lru list infrastructure
Applying: list_lru: per-node list infrastructure
Applying: list_lru: per-node list infrastructure fix
Applying: list_lru: fix broken LRU_RETRY behaviour
Applying: list_lru: per-node API
Applying: list_lru: remove special case function list_lru_dispose_all.
Applying: shrinker: add node awareness
Applying: vmscan: per-node deferred work
Applying: fs: convert inode and dentry shrinking to be node aware
Applying: xfs: convert buftarg LRU to generic code
Applying: xfs-convert-buftarg-lru-to-generic-code-fix
Applying: xfs: rework buffer dispose list tracking
Applying: xfs: convert dquot cache lru to list_lru
Applying: xfs-convert-dquot-cache-lru-to-list_lru-fix
Applying: xfs: fix dquot isolation hang
Applying: fs: convert fs shrinkers to new scan/count API
Applying: fs-convert-fs-shrinkers-to-new-scan-count-api-fix
Applying: UBIFS: signedness bug in ubifs_shrink_count()
Applying: drivers: convert shrinkers to new count/scan API
Applying: drivers-convert-shrinkers-to-new-count-scan-api-fix
Applying: drivers-convert-shrinkers-to-new-count-scan-api-fix-2
Applying: i915: bail out earlier when shrinker cannot acquire mutex
Applying: shrinker: convert remaining shrinkers to count/scan API
Applying: shrinker-convert-remaining-shrinkers-to-count-scan-api-fix
Applying: hugepage: convert huge zero page shrinker to new shrinker API
Applying: hugepage-convert-huge-zero-page-shrinker-to-new-shrinker-api-fix
Applying: shrinker: Kill old ->shrink API.
Applying: shrinker-kill-old-shrink-api-fix
Applying: list_lru: dynamically adjust node arrays
Applying: super: fix for destroy lrus
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + f6038c8...54dbc71 akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (54dbc71 super: fix for destroy lrus)
$ git merge --no-ff akpm/master
Merge made by the 'recursive' strategy.
 arch/x86/kvm/mmu.c                        |  25 ++-
 drivers/gpu/drm/i915/i915_dma.c           |   4 +-
 drivers/gpu/drm/i915/i915_gem.c           |  82 ++++++---
 drivers/gpu/drm/ttm/ttm_page_alloc.c      |  44 +++--
 drivers/gpu/drm/ttm/ttm_page_alloc_dma.c  |  51 ++++--
 drivers/md/bcache/btree.c                 |  43 +++--
 drivers/md/bcache/sysfs.c                 |   2 +-
 drivers/md/dm-bufio.c                     |  64 ++++---
 drivers/staging/android/ashmem.c          |  44 +++--
 drivers/staging/android/lowmemorykiller.c |  43 +++--
 drivers/staging/zcache/zcache-main.c      |  29 +--
 fs/dcache.c                               | 279 ++++++++++++++++++-----------
 fs/drop_caches.c                          |   1 +
 fs/ext4/extents_status.c                  |  27 ++-
 fs/gfs2/glock.c                           |  30 ++--
 fs/gfs2/main.c                            |   3 +-
 fs/gfs2/quota.c                           |  18 +-
 fs/gfs2/quota.h                           |   6 +-
 fs/inode.c                                | 193 +++++++++-----------
 fs/internal.h                             |   6 +-
 fs/mbcache.c                              |  49 ++---
 fs/nfs/dir.c                              |  16 +-
 fs/nfs/internal.h                         |   6 +-
 fs/nfs/super.c                            |   3 +-
 fs/nfsd/nfscache.c                        |  32 +++-
 fs/quota/dquot.c                          |  34 ++--
 fs/super.c                                | 111 +++++++-----
 fs/ubifs/shrinker.c                       |  29 +--
 fs/ubifs/super.c                          |   3 +-
 fs/ubifs/ubifs.h                          |   5 +-
 fs/xfs/xfs_buf.c                          | 253 +++++++++++++-------------
 fs/xfs/xfs_buf.h                          |  17 +-
 fs/xfs/xfs_dquot.c                        |   7 +-
 fs/xfs/xfs_icache.c                       |   4 +-
 fs/xfs/xfs_icache.h                       |   2 +-
 fs/xfs/xfs_qm.c                           | 287 ++++++++++++++++--------------
 fs/xfs/xfs_qm.h                           |   4 +-
 fs/xfs/xfs_super.c                        |  12 +-
 include/linux/dcache.h                    |  14 +-
 include/linux/fs.h                        |  25 ++-
 include/linux/list_lru.h                  | 131 ++++++++++++++
 include/linux/shrinker.h                  |  54 ++++--
 include/trace/events/vmscan.h             |   4 +-
 include/uapi/linux/fs.h                   |   6 +-
 kernel/sysctl.c                           |   6 +-
 mm/Makefile                               |   2 +-
 mm/huge_memory.c                          |  17 +-
 mm/list_lru.c                             | 139 +++++++++++++++
 mm/memory-failure.c                       |   2 +
 mm/vmscan.c                               | 241 ++++++++++++++-----------
 net/sunrpc/auth.c                         |  41 +++--
 51 files changed, 1597 insertions(+), 953 deletions(-)
 create mode 100644 include/linux/list_lru.h
 create mode 100644 mm/list_lru.c
$ git revert a1df5c2b310f
[master 84c3a20] Revert "ASoC: imx: Enable COMPILE_TEST builds"
 1 file changed, 1 insertion(+), 1 deletion(-)