summaryrefslogtreecommitdiff
path: root/Next/merge.log
blob: 77c641cd8e259b663f881c8dd8542ad1dc3dbea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
$ date
Thursday 16 May  11:02:28 EST 2013
$ git checkout master
Already on 'master'
$ git reset --hard stable
HEAD is now at b973425 Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
Merging origin/master (c240a53 Merge tag 'trace-fixes-v3.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace)
$ git merge origin/master
Updating b973425..c240a53
Fast-forward
 Documentation/kernel-per-CPU-kthreads.txt | 202 +++++++
 arch/Kconfig                              |   3 +
 arch/arm/Kconfig                          |   3 +-
 arch/arm/Makefile                         |   2 +-
 arch/arm/common/mcpm_platsmp.c            |   3 -
 arch/arm/include/asm/cmpxchg.h            |   8 +-
 arch/x86/Kconfig                          |   1 -
 arch/x86/kernel/microcode_intel_early.c   |   5 +-
 arch/x86/kernel/process.c                 |   5 +-
 arch/x86/mm/init.c                        |  19 +-
 drivers/block/rbd.c                       | 935 ++++++++++++++++++------------
 drivers/mmc/host/mmci.c                   |   9 +-
 drivers/rtc/Kconfig                       |   2 -
 include/linux/time.h                      |   4 -
 kernel/cpu/idle.c                         |   2 +
 kernel/events/core.c                      | 240 +++-----
 kernel/time/Kconfig                       |   5 -
 kernel/time/tick-broadcast.c              |  10 +-
 kernel/time/tick-sched.c                  |   3 +-
 kernel/timer.c                            |   2 +-
 kernel/trace/trace_events_filter.c        |   4 +
 kernel/trace/trace_kprobe.c               |  53 +-
 net/ceph/osd_client.c                     |   5 +-
 23 files changed, 938 insertions(+), 587 deletions(-)
 create mode 100644 Documentation/kernel-per-CPU-kthreads.txt
Merging fixes/master (0279b3c Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip)
$ git merge fixes/master
Already up-to-date.
Merging kbuild-current/rc-fixes (f722406 Linux 3.10-rc1)
$ git merge kbuild-current/rc-fixes
Already up-to-date.
Merging arc-current/for-curr (7d19273 ARC: [TB10x] Remove redundant abilis,simple-pinctrl mechanism)
$ git merge arc-current/for-curr
Merge made by the 'recursive' strategy.
 arch/arc/boot/dts/abilis_tb100_dvk.dts |  2 +-
 arch/arc/boot/dts/abilis_tb101_dvk.dts |  2 +-
 arch/arc/boot/dts/abilis_tb10x.dtsi    |  6 ++----
 arch/arc/plat-tb10x/tb10x.c            | 26 --------------------------
 4 files changed, 4 insertions(+), 32 deletions(-)
Merging arm-current/fixes (6eabb33 ARM: 7720/1: ARM v6/v7 cmpxchg64 shouldn't clear upper 32 bits of the old/new value)
$ git merge arm-current/fixes
Already up-to-date.
Merging m68k-current/for-linus (f722406 Linux 3.10-rc1)
$ git merge m68k-current/for-linus
Already up-to-date.
Merging powerpc-merge/merge (e34166a powerpc: Set show_unhandled_signals to 1 by default)
$ git merge powerpc-merge/merge
Already up-to-date.
Merging sparc/master (de9c9f8 Merge tag 'remoteproc-3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc)
$ git merge sparc/master
Already up-to-date.
Merging net/master (755ccb9 broadcom: add include guards to include/linux/brcmphy.h)
$ git merge net/master
Merge made by the 'recursive' strategy.
 drivers/net/ethernet/broadcom/tg3.c         | 49 ++++++++++++++--
 drivers/net/ethernet/cadence/macb.c         | 18 +++++-
 drivers/net/ethernet/cadence/macb.h         |  7 +++
 drivers/net/ethernet/emulex/benet/be_main.c | 18 ++----
 drivers/net/ethernet/freescale/fec_main.c   |  8 +--
 drivers/net/ethernet/icplus/ipg.h           | 86 ++++++++++++++---------------
 drivers/net/ethernet/marvell/mv643xx_eth.c  |  2 +-
 drivers/net/ethernet/sfc/efx.c              |  8 ++-
 drivers/net/ethernet/sfc/net_driver.h       | 31 +++++------
 drivers/net/ethernet/sfc/rx.c               |  8 +--
 include/linux/brcmphy.h                     |  5 ++
 net/802/mrp.c                               |  4 +-
 net/ipv4/tcp.c                              |  7 ++-
 13 files changed, 155 insertions(+), 96 deletions(-)
Merging ipsec/master (da241ef Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge ipsec/master
Already up-to-date.
Merging sound-current/for-linus (854784e ALSA: hda - Add headset mic support for another Dell machine)
$ git merge sound-current/for-linus
Merge made by the 'recursive' strategy.
 sound/aoa/fabrics/layout.c       |  8 ++++++++
 sound/aoa/soundbus/i2sbus/core.c |  3 ++-
 sound/oss/Kconfig                |  2 +-
 sound/pci/hda/hda_generic.c      |  9 +++++++--
 sound/pci/hda/patch_realtek.c    |  1 +
 sound/pci/hda/patch_via.c        | 41 +++++++++++++++-------------------------
 sound/soc/codecs/ab8500-codec.h  | 36 +++++++++++++++++------------------
 sound/soc/codecs/da7213.c        |  8 ++++----
 sound/soc/codecs/wm0010.c        |  1 +
 9 files changed, 57 insertions(+), 52 deletions(-)
Merging pci-current/for-linus (f722406 Linux 3.10-rc1)
$ git merge pci-current/for-linus
Already up-to-date.
Merging wireless/master (ccd384b mwifiex: fix setting of multicast filter)
$ git merge wireless/master
Already up-to-date.
Merging driver-core.current/driver-core-linus (9affd6b arm: fix mismerge of arch/arm/mach-omap2/timer.c)
$ git merge driver-core.current/driver-core-linus
Already up-to-date.
Merging tty.current/tty-linus (f722406 Linux 3.10-rc1)
$ git merge tty.current/tty-linus
Already up-to-date.
Merging usb.current/usb-linus (98f541c USB: remove remaining instances of USB_SUSPEND)
$ git merge usb.current/usb-linus
Merge made by the 'recursive' strategy.
 arch/arm/configs/omap1_defconfig     |  1 -
 arch/arm/configs/omap2plus_defconfig |  1 -
 arch/mips/configs/db1000_defconfig   |  1 -
 arch/mips/configs/db1235_defconfig   |  1 -
 arch/mips/configs/lemote2f_defconfig |  1 -
 arch/powerpc/configs/ps3_defconfig   |  1 -
 drivers/net/usb/usbnet.c             |  2 +-
 drivers/staging/dwc2/Kconfig         |  1 -
 drivers/staging/gdm72xx/Kconfig      |  2 +-
 drivers/usb/core/Kconfig             |  2 +-
 drivers/usb/dwc3/Kconfig             |  6 +++---
 drivers/usb/gadget/Kconfig           |  1 -
 drivers/usb/gadget/atmel_usba_udc.c  |  2 --
 drivers/usb/gadget/bcm63xx_udc.c     | 11 -----------
 drivers/usb/gadget/configfs.c        |  8 ++++++--
 drivers/usb/gadget/dummy_hcd.c       |  5 +++--
 drivers/usb/gadget/f_ecm.c           |  1 +
 drivers/usb/gadget/f_subset.c        |  1 +
 drivers/usb/gadget/f_uac2.c          |  2 --
 drivers/usb/gadget/fusb300_udc.c     |  4 +++-
 drivers/usb/gadget/imx_udc.c         |  2 --
 drivers/usb/gadget/m66592-udc.c      |  4 +++-
 drivers/usb/gadget/pxa25x_udc.c      |  1 -
 drivers/usb/gadget/r8a66597-udc.c    |  4 +++-
 drivers/usb/gadget/s3c-hsotg.c       |  2 +-
 drivers/usb/gadget/s3c2410_udc.c     |  3 +--
 drivers/usb/gadget/zero.c            |  8 ++++++--
 drivers/usb/host/Kconfig             | 17 +++++------------
 drivers/usb/host/isp1760-hcd.c       |  2 +-
 drivers/usb/host/ohci-hcd.c          | 34 +++++++++++++++++++---------------
 drivers/usb/host/oxu210hp-hcd.c      |  2 +-
 drivers/usb/host/sl811-hcd.c         |  2 +-
 drivers/usb/host/uhci-hub.c          |  3 ++-
 drivers/usb/host/uhci-q.c            |  2 +-
 drivers/usb/host/xhci-mem.c          | 17 +++++++++--------
 drivers/usb/musb/musb_dsps.c         |  1 +
 drivers/usb/musb/omap2430.c          |  3 ++-
 drivers/usb/phy/Kconfig              |  5 ++---
 drivers/usb/phy/phy-ab8500-usb.c     |  2 --
 drivers/usb/phy/phy-fsl-usb.c        |  1 +
 drivers/usb/phy/phy-gpio-vbus-usb.c  |  3 +--
 drivers/usb/phy/phy-isp1301.c        |  1 +
 drivers/usb/phy/phy-mv-u3d-usb.c     |  5 -----
 drivers/usb/phy/phy-mv-usb.c         |  3 ---
 drivers/usb/phy/phy-mxs-usb.c        |  8 +-------
 drivers/usb/phy/phy-nop.c            |  2 --
 drivers/usb/phy/phy-samsung-usb2.c   |  5 -----
 drivers/usb/phy/phy-samsung-usb3.c   |  5 -----
 include/linux/usb/gadget.h           |  5 ++---
 49 files changed, 84 insertions(+), 122 deletions(-)
Merging staging.current/staging-linus (c2b62f6 staging: nvec: cleanup childs on remove)
$ git merge staging.current/staging-linus
Merge made by the 'recursive' strategy.
 drivers/staging/comedi/Kconfig                 |  9 +++++++++
 drivers/staging/comedi/comedi_buf.c            | 12 ++++++++++++
 drivers/staging/comedi/comedi_fops.c           |  3 ---
 drivers/staging/comedi/drivers/ni_labpc.c      |  8 +++++---
 drivers/staging/comedi/drivers/ni_labpc.h      |  1 +
 drivers/staging/comedi/drivers/ni_mio_common.c | 20 ++++++++++----------
 drivers/staging/nvec/nvec.c                    | 21 +++++++++++++++++++--
 drivers/staging/nvec/nvec.h                    |  5 ++---
 drivers/staging/nvec/nvec_kbd.c                | 10 +++++++++-
 drivers/staging/nvec/nvec_power.c              |  1 +
 drivers/staging/nvec/nvec_ps2.c                |  8 +++++++-
 drivers/staging/vt6656/hostap.c                |  2 +-
 12 files changed, 76 insertions(+), 24 deletions(-)
Merging char-misc.current/char-misc-linus (f722406 Linux 3.10-rc1)
$ git merge char-misc.current/char-misc-linus
Already up-to-date.
Merging input-current/for-linus (f0aacea Input: wacom - add a few new styli for Cintiq series)
$ git merge input-current/for-linus
Merge made by the 'recursive' strategy.
 drivers/input/tablet/wacom_wac.c      | 72 ++++++++++++++++++++++++++---------
 drivers/input/tablet/wacom_wac.h      |  1 +
 drivers/input/touchscreen/egalax_ts.c |  2 +-
 3 files changed, 55 insertions(+), 20 deletions(-)
Merging md-current/for-linus (32f9f57 MD: ignore discard request for hard disks of hybid raid1/raid10 array)
$ git merge md-current/for-linus
Already up-to-date.
Merging audit-current/for-linus (c158a35 audit: no leading space in audit_log_d_path prefix)
$ git merge audit-current/for-linus
Already up-to-date.
Merging crypto-current/master (286233e crypto: caam - fix inconsistent assoc dma mapping direction)
$ git merge crypto-current/master
Merge made by the 'recursive' strategy.
 drivers/crypto/caam/caamalg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Merging ide/master (bf6b438 ide: gayle: use module_platform_driver_probe())
$ git merge ide/master
Merge made by the 'recursive' strategy.
 drivers/ide/gayle.c     | 15 +--------------
 drivers/ide/tx4938ide.c | 13 +------------
 drivers/ide/tx4939ide.c | 13 +------------
 3 files changed, 3 insertions(+), 38 deletions(-)
Merging dwmw2/master (5950f08 pcmcia: remove RPX board stuff)
$ git merge dwmw2/master
Already up-to-date.
Merging sh-current/sh-fixes-for-linus (4403310 SH: Convert out[bwl] macros to inline functions)
$ git merge sh-current/sh-fixes-for-linus
Already up-to-date.
Merging irqdomain-current/irqdomain/merge (a0d271c Linux 3.6)
$ git merge irqdomain-current/irqdomain/merge
Already up-to-date.
Merging devicetree-current/devicetree/merge (ab28698 of: define struct device in of_platform.h if !OF_DEVICE and !OF_ADDRESS)
$ git merge devicetree-current/devicetree/merge
Already up-to-date.
Merging spi-current/spi/merge (0d2d0cc spi/davinci: fix module build error)
$ git merge spi-current/spi/merge
Already up-to-date.
Merging gpio-current/gpio/merge (e97f9b5 gpio/gpio-ich: fix ichx_gpio_check_available() return what callers expect)
$ git merge gpio-current/gpio/merge
Already up-to-date.
Merging rr-fixes/fixes (e5c4b5d module: Add section ".ref.data" into kmemleak-scan-area.)
$ git merge rr-fixes/fixes
Merge made by the 'recursive' strategy.
 kernel/module.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
Merging mfd-fixes/master (f722406 Linux 3.10-rc1)
$ git merge mfd-fixes/master
Already up-to-date.
Merging vfio-fixes/for-linus (904c680 vfio-pci: Fix possible integer overflow)
$ git merge vfio-fixes/for-linus
Already up-to-date.
Merging asm-generic/master (fb9de7e xtensa: Use generic asm/mmu.h for nommu)
$ git merge asm-generic/master
Already up-to-date.
Merging arc/for-next (f722406 Linux 3.10-rc1)
$ git merge arc/for-next
Already up-to-date.
Merging arm/for-next (47aa03d Merge branches 'fixes', 'misc' and 'mmci' into for-next)
$ git merge arm/for-next
Merge made by the 'recursive' strategy.
 Documentation/devicetree/bindings/arm/l2cc.txt |   3 +
 arch/arm/boot/compressed/atags_to_fdt.c        |  44 ++++++-
 arch/arm/boot/dts/bcm11351.dtsi                |   8 +-
 arch/arm/include/asm/div64.h                   |   2 +-
 arch/arm/kernel/setup.c                        |   7 ++
 arch/arm/mm/cache-l2x0.c                       | 158 +++++++++++++++++++++++++
 drivers/mmc/host/mmci.c                        |  71 ++++++-----
 7 files changed, 251 insertions(+), 42 deletions(-)
Merging arm-perf/for-next/perf (ab87304 Merge branches 'perf/fixes' and 'hw-breakpoint' into for-next/perf)
$ git merge arm-perf/for-next/perf
Merge made by the 'recursive' strategy.
Merging davinci/davinci-next (fe0d422 Linux 3.0-rc6)
$ git merge davinci/davinci-next
Already up-to-date.
Merging xilinx/arm-next (64e3fd3 arm: zynq: Add support for pmu)
$ git merge xilinx/arm-next
Resolved 'arch/arm/mach-highbank/highbank.c' using previous resolution.
Resolved 'arch/arm/mach-imx/mach-imx6q.c' using previous resolution.
Resolved 'arch/arm/mach-spear/spear13xx.c' using previous resolution.
Resolved 'arch/arm/mach-vexpress/v2m.c' using previous resolution.
Resolved 'arch/arm/mach-zynq/platsmp.c' using previous resolution.
Resolved 'drivers/clocksource/Makefile' using previous resolution.
Resolved 'drivers/clocksource/tegra20_timer.c' using previous resolution.
Auto-merging drivers/clocksource/tegra20_timer.c
CONFLICT (content): Merge conflict in drivers/clocksource/tegra20_timer.c
Auto-merging drivers/clocksource/Makefile
CONFLICT (content): Merge conflict in drivers/clocksource/Makefile
Auto-merging arch/arm/mach-zynq/platsmp.c
CONFLICT (add/add): Merge conflict in arch/arm/mach-zynq/platsmp.c
Auto-merging arch/arm/mach-vexpress/v2m.c
CONFLICT (content): Merge conflict in arch/arm/mach-vexpress/v2m.c
Auto-merging arch/arm/mach-spear/spear13xx.c
CONFLICT (content): Merge conflict in arch/arm/mach-spear/spear13xx.c
Auto-merging arch/arm/mach-imx/mach-imx6q.c
CONFLICT (content): Merge conflict in arch/arm/mach-imx/mach-imx6q.c
Auto-merging arch/arm/mach-highbank/highbank.c
CONFLICT (content): Merge conflict in arch/arm/mach-highbank/highbank.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 5bfcd1b] Merge remote-tracking branch 'xilinx/arm-next'
$ git diff -M --stat --summary HEAD^..
Merging arm64/upstream (02e3cba arm64: Do not source kernel/time/Kconfig explicitly)
$ git merge arm64/upstream
Merge made by the 'recursive' strategy.
 arch/arm64/Kconfig                 |  2 --
 arch/arm64/kernel/debug-monitors.c |  2 --
 arch/arm64/kernel/early_printk.c   |  5 +++--
 arch/arm64/kernel/setup.c          | 12 +++---------
 arch/arm64/mm/cache.S              |  2 +-
 arch/arm64/mm/proc.S               |  3 +--
 6 files changed, 8 insertions(+), 18 deletions(-)
Merging blackfin/blackfin-linus (5ae89ee bfin cache: dcplb map: add 16M dcplb map for BF60x)
$ git merge blackfin/blackfin-linus
Already up-to-date.
Merging c6x/for-linux-next (f934af0 add memory barrier to arch_local_irq_restore)
$ git merge c6x/for-linux-next
Already up-to-date.
Merging cris/for-next (32ade6a CRIS: Add kvm_para.h which includes generic file)
$ git merge cris/for-next
Auto-merging arch/cris/include/asm/processor.h
Auto-merging arch/cris/arch-v32/drivers/Kconfig
Auto-merging arch/cris/Kconfig
Merge made by the 'recursive' strategy.
 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 hexagon/linux-next
Already up-to-date.
Merging ia64/next (797f6a6 Add size restriction to the kdump documentation)
$ git merge ia64/next
Already up-to-date.
Merging m68k/for-next (f722406 Linux 3.10-rc1)
$ git merge m68k/for-next
Already up-to-date.
Merging m68knommu/for-next (2842e5b0 m68knommu: enable Timer on coldfire 532x)
$ git merge m68knommu/for-next
Already up-to-date.
Merging metag/for-next (164c013 metag: defconfigs: increase log buffer 8KiB => 128KiB)
$ git merge metag/for-next
Already up-to-date.
Merging microblaze/next (972be32 microblaze: Initialize temp variable to remove compilation warning)
$ git merge microblaze/next
Merge made by the 'recursive' strategy.
 arch/microblaze/kernel/cpu/cache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging mips/mips-for-linux-next (b22d1b6 Merge branch 'mti-next' of git://git.linux-mips.org/pub/scm/sjhill/linux-sjhill into mips-for-linux-next)
$ git merge mips/mips-for-linux-next
Already up-to-date.
Merging openrisc/for-upstream (6af6095 openrisc: remove HAVE_VIRT_TO_BUS)
$ git merge 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 parisc/for-next
Already up-to-date.
Merging parisc-hd/for-next (c1be5a5 Linux 3.9)
$ git merge parisc-hd/for-next
Already up-to-date.
Merging powerpc/next (674825d Merge tag 'fixes-for-3.10-rc2-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/sstabellini/xen)
$ git merge powerpc/next
Already up-to-date.
Merging 4xx/next (2074b1d powerpc: Fix irq distribution)
$ git merge 4xx/next
Already up-to-date.
Merging mpc5xxx/next (fdeaf0e powerpc/512x: add ifm ac14xx board)
$ git merge 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 galak/next
Already up-to-date.
Merging s390/features (ba54229 s390/cio: add channel ID sysfs attribute)
$ git merge s390/features
Merge made by the 'recursive' strategy.
 arch/s390/Kconfig              |  1 -
 arch/s390/include/asm/ftrace.h | 12 +++++++-----
 arch/s390/include/asm/page.h   | 20 ++++++++------------
 arch/s390/kernel/dis.c         |  2 ++
 arch/s390/kernel/ftrace.c      |  9 ++-------
 arch/s390/kernel/mcount.S      |  2 ++
 arch/s390/kernel/mcount64.S    |  2 ++
 arch/s390/mm/pgtable.c         |  3 +--
 drivers/s390/cio/chp.c         | 36 ++++++++++++++++++++++++++++++++++++
 drivers/s390/cio/chsc.h        |  4 +++-
 10 files changed, 63 insertions(+), 28 deletions(-)
Merging sh/sh-latest (37284bd Merge branches 'sh/hw-breakpoints' and 'sh/serial-of' into sh-latest)
$ git merge sh/sh-latest
Resolved 'arch/sh/kernel/cpu/sh2a/Makefile' using previous resolution.
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 f9a46fe] 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 sparc-next/master
Already up-to-date.
Merging tile/master (9fc1894 arch/tile: Fix syscall return value passed to tracepoint)
$ git merge tile/master
Already up-to-date.
Merging unicore32/unicore32 (c284464 arch/unicore32: remove CONFIG_EXPERIMENTAL)
$ git merge unicore32/unicore32
Already up-to-date.
Merging xtensa/for_next (b341d84 xtensa: Switch to asm-generic/linkage.h)
$ git merge xtensa/for_next
Already up-to-date.
Merging btrfs/next (667e7d9 Btrfs: allow superblock mismatch from older mkfs)
$ git merge btrfs/next
Already up-to-date.
Merging ceph/testing (675a794 ceph: ceph_pagelist_append might sleep while atomic)
$ git merge ceph/testing
Auto-merging drivers/block/rbd.c
Merge made by the 'recursive' strategy.
 drivers/block/rbd.c  |  4 +--
 fs/ceph/locks.c      | 75 +++++++++++++++++++++++++++++++++-------------------
 fs/ceph/mds_client.c | 65 ++++++++++++++++++++++++---------------------
 fs/ceph/super.h      |  9 +++++--
 4 files changed, 92 insertions(+), 61 deletions(-)
Merging cifs/for-next (c2b93e0 cifs: only set ops for inodes in I_NEW state)
$ git merge cifs/for-next
Merge made by the 'recursive' strategy.
 fs/cifs/inode.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
Merging configfs/linux-next (b930c26 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs)
$ git merge configfs/linux-next
Already up-to-date.
Merging ecryptfs/next (f6161aa Linux 3.9-rc2)
$ git merge ecryptfs/next
Already up-to-date.
Merging ext3/for_next (e162b2f jbd: use kmem_cache_zalloc instead of kmem_cache_alloc/memset)
$ git merge ext3/for_next
Already up-to-date.
Merging ext4/dev (e2555fd jbd,jbd2: fix oops in jbd2_journal_put_journal_head())
$ git merge ext4/dev
Already up-to-date.
Merging f2fs/dev (f722406 Linux 3.10-rc1)
$ git merge f2fs/dev
Already up-to-date.
Merging fuse/for-next (de82b92 fuse: allocate for_background dio requests based on io->async state)
$ git merge fuse/for-next
Merge made by the 'recursive' strategy.
 fs/fuse/file.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)
Merging gfs2/master (315debd GFS2: fix DLM depends to fix build errors)
$ git merge gfs2/master
Merge made by the 'recursive' strategy.
 fs/gfs2/Kconfig |  2 +-
 fs/gfs2/lops.c  | 16 ++++++++++++++++
 fs/gfs2/quota.c |  4 ++--
 fs/gfs2/rgrp.c  |  9 +++++++--
 4 files changed, 26 insertions(+), 5 deletions(-)
Merging jfs/jfs-next (73aaa22 jfs: fix a couple races)
$ git merge jfs/jfs-next
Already up-to-date.
Merging logfs/master (3394661 Fix the call to BUG() caused by no free segment found)
$ git merge logfs/master
Auto-merging fs/logfs/super.c
Merge made by the 'recursive' strategy.
 fs/logfs/dev_mtd.c | 2 +-
 fs/logfs/super.c   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
Merging nfs/linux-next (11575f2 SUNRPC: Convert auth_gss pipe detection to work in namespaces)
$ git merge nfs/linux-next
Merge made by the 'recursive' strategy.
 net/sunrpc/auth_gss/auth_gss.c | 62 ++++++++++++++++++++++++++++--------------
 net/sunrpc/netns.h             |  4 +++
 net/sunrpc/rpc_pipe.c          |  5 ++++
 3 files changed, 50 insertions(+), 21 deletions(-)
Merging nfsd/nfsd-next (ba4e55b nfsd4: fix compile in !CONFIG_NFSD_V4_SECURITY_LABEL case)
$ git merge nfsd/nfsd-next
Merge made by the 'recursive' strategy.
 fs/nfsd/Kconfig       |  16 ++++++++
 fs/nfsd/nfs4proc.c    |  41 +++++++++++++++++++
 fs/nfsd/nfs4state.c   |   2 +-
 fs/nfsd/nfs4xdr.c     | 111 ++++++++++++++++++++++++++++++++++++++++++++++----
 fs/nfsd/nfsd.h        |  26 ++++++++++--
 fs/nfsd/vfs.c         |  28 +++++++++++++
 fs/nfsd/vfs.h         |   7 +---
 fs/nfsd/xdr4.h        |   4 ++
 include/linux/nfs4.h  |   9 ++++
 net/sunrpc/xprtsock.c |   1 -
 security/capability.c |   2 +-
 11 files changed, 228 insertions(+), 19 deletions(-)
Merging ocfs2/linux-next (4538df6 ocfs2: Don't spam on -EDQUOT.)
$ git merge 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 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 squashfs/master
Already up-to-date.
Merging v9fs/for-next (c1be5a5 Linux 3.9)
$ git merge v9fs/for-next
Already up-to-date.
Merging ubifs/linux-next (c1be5a5 Linux 3.9)
$ git merge ubifs/linux-next
Already up-to-date.
Merging xfs/for-next (f722406 Linux 3.10-rc1)
$ git merge xfs/for-next
Already up-to-date.
Merging vfs/for-next (ac3e3c5 don't bother with deferred freeing of fdtables)
$ git merge vfs/for-next
Already up-to-date.
Merging pci/next (f722406 Linux 3.10-rc1)
$ git merge pci/next
Already up-to-date.
Merging hid/for-next (46b1897 Merge branch 'for-3.10/hid-debug' into for-next)
$ git merge hid/for-next
Merge made by the 'recursive' strategy.
Merging i2c/i2c/for-next (f722406 Linux 3.10-rc1)
$ git merge i2c/i2c/for-next
Already up-to-date.
Merging jdelvare-hwmon/master (1aaf6d3 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge jdelvare-hwmon/master
Already up-to-date.
Merging hwmon-staging/hwmon-next (d0a665e hwmon: (ds1621) Add ds1721 update interval sysfs attribute)
$ git merge hwmon-staging/hwmon-next
Merge made by the 'recursive' strategy.
 Documentation/hwmon/ds1621     |  91 +++++++++++++++++++--
 drivers/hwmon/Kconfig          |   9 ++-
 drivers/hwmon/abituguru.c      |  16 ++--
 drivers/hwmon/abituguru3.c     |   1 -
 drivers/hwmon/coretemp.c       |   2 -
 drivers/hwmon/ds1621.c         | 178 +++++++++++++++++++++++++++++++++++++----
 drivers/hwmon/i5k_amb.c        |   2 -
 drivers/hwmon/iio_hwmon.c      |   8 +-
 drivers/hwmon/nct6775.c        |   6 +-
 drivers/hwmon/ntc_thermistor.c |   1 -
 drivers/hwmon/w83627ehf.c      |   2 -
 11 files changed, 274 insertions(+), 42 deletions(-)
Merging v4l-dvb/master (1d62caa Merge /home/v4l/v4l/patchwork)
$ git merge v4l-dvb/master
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging kbuild/for-next (f722406 Linux 3.10-rc1)
$ git merge kbuild/for-next
Already up-to-date.
Merging kconfig/for-next (4eae518 localmodconfig: Fix localyesconfig to set to 'y' not 'm')
$ git merge kconfig/for-next
Already up-to-date.
Merging libata/for-next (7bca13b Merge branch 'for-3.11' into for-next)
$ git merge libata/for-next
Merge made by the 'recursive' strategy.
 drivers/ata/acard-ahci.c       | 2 +-
 drivers/ata/ahci.c             | 2 +-
 drivers/ata/ahci.h             | 2 +-
 drivers/ata/ata_piix.c         | 2 +-
 drivers/ata/libahci.c          | 2 +-
 drivers/ata/libata-core.c      | 8 +++++---
 drivers/ata/libata-eh.c        | 2 +-
 drivers/ata/libata-scsi.c      | 2 +-
 drivers/ata/libata-sff.c       | 2 +-
 drivers/ata/libata-transport.c | 4 +++-
 drivers/ata/pdc_adma.c         | 2 +-
 drivers/ata/sata_promise.c     | 2 +-
 drivers/ata/sata_sil.c         | 2 +-
 drivers/ata/sata_sx4.c         | 2 +-
 drivers/ata/sata_via.c         | 2 +-
 include/linux/libata.h         | 1 +
 16 files changed, 22 insertions(+), 17 deletions(-)
Merging infiniband/for-next (f1258ea Merge branches 'misc' and 'mlx4' into for-next)
$ git merge infiniband/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging pstore/master (bd08ec3 pstore/ram: Restore ecc information block)
$ git merge pstore/master
Already up-to-date.
Merging pm/linux-next (a5e7626 Merge branch 'pm-cpufreq-next' into linux-next)
$ git merge pm/linux-next
Merge made by the 'recursive' strategy.
 Documentation/ABI/testing/sysfs-devices-online |  20 +
 Documentation/ABI/testing/sysfs-firmware-acpi  |  10 +
 Documentation/power/devices.txt                |  15 +-
 Documentation/power/interface.txt              |   4 +-
 Documentation/power/notifiers.txt              |   6 +-
 Documentation/power/states.txt                 |  30 +-
 drivers/acpi/Makefile                          |   1 +
 drivers/acpi/ac.c                              |  33 +
 drivers/acpi/acpi_memhotplug.c                 |  53 +-
 drivers/acpi/acpi_processor.c                  | 484 +++++++++++++++
 drivers/acpi/ec.c                              |   4 +-
 drivers/acpi/glue.c                            |   6 +-
 drivers/acpi/internal.h                        |   5 +
 drivers/acpi/processor_driver.c                | 811 +++----------------------
 drivers/acpi/processor_idle.c                  |  29 +-
 drivers/acpi/scan.c                            |  88 ++-
 drivers/acpi/sysfs.c                           |  31 +
 drivers/acpi/video.c                           |   8 +
 drivers/base/core.c                            | 130 ++++
 drivers/base/cpu.c                             | 100 ++-
 drivers/base/memory.c                          | 112 +++-
 drivers/base/power/common.c                    |  12 +-
 drivers/cpufreq/Kconfig                        |   2 +-
 drivers/cpufreq/Kconfig.arm                    |  15 +-
 drivers/cpufreq/arm_big_little.c               |   7 +-
 drivers/cpufreq/arm_big_little.h               |   5 +
 drivers/cpufreq/arm_big_little_dt.c            |   9 +-
 drivers/cpufreq/cpufreq-cpu0.c                 |  27 +-
 drivers/cpufreq/cpufreq.c                      |  10 +-
 drivers/cpufreq/cpufreq_governor.c             |  11 +-
 drivers/cpufreq/cpufreq_governor.h             |   1 +
 drivers/cpufreq/cpufreq_ondemand.c             |   1 -
 drivers/cpufreq/cpufreq_stats.c                |   7 +-
 drivers/cpufreq/intel_pstate.c                 | 122 +---
 drivers/cpufreq/kirkwood-cpufreq.c             |   4 -
 drivers/i2c/busses/i2c-s3c2410.c               |   8 +-
 drivers/pnp/manager.c                          |  14 +-
 drivers/staging/android/binder.c               |   5 +-
 fs/cifs/transport.c                            |   2 +-
 fs/eventpoll.c                                 |   4 +-
 fs/nfs/inode.c                                 |   2 +-
 fs/nfs/nfs3proc.c                              |   2 +-
 fs/nfs/nfs4proc.c                              |   4 +-
 fs/select.c                                    |   4 +-
 include/acpi/acpi_bus.h                        |   1 +
 include/acpi/acpiosxf.h                        |   2 +-
 include/acpi/processor.h                       |  15 +-
 include/linux/debug_locks.h                    |   4 +-
 include/linux/device.h                         |  21 +
 include/linux/freezer.h                        | 171 +++++-
 include/linux/memory.h                         |   1 +
 include/linux/memory_hotplug.h                 |   2 +
 include/linux/pm.h                             |   2 +
 kernel/exit.c                                  |   2 +-
 kernel/freezer.c                               |  12 +
 kernel/futex.c                                 |   3 +-
 kernel/hrtimer.c                               |   3 +-
 kernel/lockdep.c                               |  17 +-
 kernel/power/process.c                         |  26 +-
 kernel/signal.c                                |   2 +-
 mm/memory_hotplug.c                            |   4 +-
 net/sunrpc/sched.c                             |   2 +-
 net/unix/af_unix.c                             |   3 +-
 63 files changed, 1461 insertions(+), 1090 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-devices-online
 create mode 100644 drivers/acpi/acpi_processor.c
Merging idle/next (5c99726b Merge branch 'fspin' into next)
$ git merge 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 apm/for-next
Already up-to-date.
Merging cpuidle/cpuidle-next (817c876 Merge branch 'pm-fixes-next' into fixes-next)
$ git merge cpuidle/cpuidle-next
Resolved 'drivers/acpi/processor_driver.c' using previous resolution.
Resolved 'drivers/base/power/qos.c' using previous resolution.
Auto-merging drivers/base/power/qos.c
CONFLICT (content): Merge conflict in drivers/base/power/qos.c
Auto-merging drivers/acpi/processor_driver.c
CONFLICT (content): Merge conflict in drivers/acpi/processor_driver.c
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master c6fe3fb] Merge remote-tracking branch 'cpuidle/cpuidle-next'
$ git diff -M --stat --summary HEAD^..
Merging cpupowerutils/master (f166033 cpupower tools: add install target to the debug tools' makefiles)
$ git merge cpupowerutils/master
Already up-to-date.
Merging thermal/next (de6558d Merge branch 'MAINTAINERS-update' of .git into next)
$ git merge thermal/next
Already up-to-date.
Merging ieee1394/for-next (6fe9efb firewire: ohci: dump_stack() for PHY regs read/write failures)
$ git merge ieee1394/for-next
Already up-to-date.
Merging ubi/linux-next (f6161aa Linux 3.9-rc2)
$ git merge ubi/linux-next
Already up-to-date.
Merging dlm/next (9000831 dlm: avoid unnecessary posix unlock)
$ git merge 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 swiotlb/linux-next
Already up-to-date.
Merging scsi/for-next (222ab59 [SCSI] ipr: Avoid target_destroy accessing memory after it was freed)
$ git merge scsi/for-next
Merge made by the 'recursive' strategy.
 drivers/scsi/ipr.c                | 16 ----------------
 drivers/scsi/ipr.h                |  6 +++---
 drivers/scsi/qla2xxx/qla_inline.h | 11 +++++++++++
 drivers/scsi/qla2xxx/qla_isr.c    | 27 ++++-----------------------
 drivers/scsi/qla2xxx/qla_mbx.c    |  2 --
 drivers/scsi/qla2xxx/qla_mr.c     | 10 ++--------
 drivers/scsi/qla2xxx/qla_nx.c     | 26 ++++++++++----------------
 7 files changed, 30 insertions(+), 68 deletions(-)
Merging target-updates/for-next (04b59ba tcm_vhost: Enable VIRTIO_SCSI_F_HOTPLUG)
$ git merge target-updates/for-next
Already up-to-date.
Merging target-merge/for-next-merge (b8d26b3 iser-target: Add iSCSI Extensions for RDMA (iSER) target driver)
$ git merge target-merge/for-next-merge
Already up-to-date.
Merging ibft/linux-next (935a9fe ibft: Fix finding IBFT ACPI table on UEFI)
$ git merge ibft/linux-next
Already up-to-date.
Merging isci/all (6734092 isci: add a couple __iomem annotations)
$ git merge isci/all
Already up-to-date.
Merging slave-dma/next (9562f83 DMA: AT91: Get residual bytes in dma buffer)
$ git merge slave-dma/next
Auto-merging drivers/acpi/scan.c
Auto-merging drivers/acpi/internal.h
Removing drivers/acpi/csrt.c
Auto-merging drivers/acpi/Makefile
Merge made by the 'recursive' strategy.
 drivers/acpi/Makefile                   |   1 -
 drivers/acpi/acpi_lpss.c                |  26 ++++-
 drivers/acpi/csrt.c                     | 159 -----------------------------
 drivers/acpi/internal.h                 |   1 -
 drivers/acpi/scan.c                     |   1 -
 drivers/clk/x86/clk-lpt.c               |  15 ++-
 drivers/dma/acpi-dma.c                  | 172 +++++++++++++++++++++++++++++++-
 drivers/dma/at_hdmac.c                  | 142 ++++++++++++++++++++++----
 drivers/dma/at_hdmac_regs.h             |   5 +
 include/linux/acpi_dma.h                |   4 +
 include/linux/platform_data/clk-lpss.h  |   5 +
 include/linux/platform_data/dma-atmel.h |   4 +
 12 files changed, 340 insertions(+), 195 deletions(-)
 delete mode 100644 drivers/acpi/csrt.c
Merging dmaengine/next (41ef2d5 Linux 3.9-rc7)
$ git merge dmaengine/next
Already up-to-date.
Merging net-next/master (dbbffe6 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
$ git merge net-next/master
Already up-to-date.
Merging ipsec-next/master (05600a7 xfrm_user: constify netlink dispatch table)
$ git merge ipsec-next/master
Already up-to-date.
Merging wireless-next/master (de9c9f8 Merge tag 'remoteproc-3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc)
$ git merge wireless-next/master
Already up-to-date.
Merging bluetooth/master (26b5afc Bluetooth: Mgmt Device Found Event)
$ git merge bluetooth/master
Auto-merging net/bluetooth/l2cap_sock.c
Merge made by the 'recursive' strategy.
 include/net/bluetooth/hci_core.h |  29 ++---
 include/net/bluetooth/l2cap.h    |   2 +-
 net/bluetooth/hci_core.c         | 182 +++++++++----------------------
 net/bluetooth/hci_event.c        |  67 +-----------
 net/bluetooth/l2cap_core.c       | 121 ++++++++++++++-------
 net/bluetooth/l2cap_sock.c       |   4 +-
 net/bluetooth/mgmt.c             | 229 ++++++++++++++++++++++++++-------------
 net/bluetooth/smp.c              |   4 +-
 8 files changed, 308 insertions(+), 330 deletions(-)
Merging mtd/master (a637b0d Merge tag 'for-linus-20130509' of git://git.infradead.org/linux-mtd)
$ git merge mtd/master
Already up-to-date.
Merging l2-mtd/master (fc228fa mtd: increase max OOB size to 744)
$ git merge l2-mtd/master
Merge made by the 'recursive' strategy.
 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                          |   6 +-
 drivers/mtd/devices/m25p80.c                       |  44 +++-
 drivers/mtd/devices/mtd_dataflash.c                |   8 +-
 drivers/mtd/devices/spear_smi.c                    |   6 +-
 drivers/mtd/devices/sst25l.c                       |   6 +-
 drivers/mtd/nand/Kconfig                           |   2 +-
 drivers/mtd/nand/fsl_ifc_nand.c                    |   3 +-
 drivers/mtd/nand/fsmc_nand.c                       |   6 +-
 drivers/mtd/nand/gpio.c                            | 227 ++++++---------------
 drivers/mtd/nand/nand_base.c                       |  19 +-
 drivers/mtd/nand/pxa3xx_nand.c                     |  93 +++------
 drivers/mtd/nand/r852.c                            |   5 +-
 include/linux/mtd/nand.h                           |   6 +-
 20 files changed, 272 insertions(+), 313 deletions(-)
Merging crypto/master (00db14e crypto: sahara - remove dependency on EXPERIMENTAL)
$ git merge crypto/master
Merge made by the 'recursive' strategy.
 arch/x86/crypto/Makefile                |   2 +
 arch/x86/crypto/crct10dif-pcl-asm_64.S  | 643 ++++++++++++++++++++++++++++++++
 arch/x86/crypto/crct10dif-pclmul_glue.c | 157 ++++++++
 crypto/Kconfig                          |  19 +
 crypto/Makefile                         |   1 +
 crypto/crct10dif.c                      | 126 +++++++
 crypto/tcrypt.c                         |   8 +
 crypto/testmgr.c                        |  10 +
 crypto/testmgr.h                        |  33 ++
 drivers/char/hw_random/atmel-rng.c      |   2 -
 drivers/char/hw_random/bcm63xx-rng.c    |   2 -
 drivers/char/hw_random/timeriomem-rng.c |   2 -
 drivers/char/hw_random/tx4939-rng.c     |   1 -
 drivers/crypto/Kconfig                  |   2 +-
 drivers/crypto/caam/ctrl.c              |  10 +-
 drivers/crypto/caam/regs.h              |  42 ++-
 drivers/crypto/mv_cesa.c                |   1 -
 drivers/crypto/omap-aes.c               |   7 +-
 drivers/crypto/omap-sham.c              |   7 +-
 drivers/crypto/s5p-sss.c                |   2 -
 include/linux/crc-t10dif.h              |   5 +
 lib/Kconfig                             |   1 +
 lib/crc-t10dif.c                        |  95 ++++-
 23 files changed, 1153 insertions(+), 25 deletions(-)
 create mode 100644 arch/x86/crypto/crct10dif-pcl-asm_64.S
 create mode 100644 arch/x86/crypto/crct10dif-pclmul_glue.c
 create mode 100644 crypto/crct10dif.c
Merging drm/drm-next (9f1d036 drm/mgag200: Fix framebuffer base address programming)
$ git merge drm/drm-next
Already up-to-date.
Merging drm-intel/for-linux-next (1ffc528 drm/i915: clear the stolen fb before resuming)
$ git merge drm-intel/for-linux-next
Already up-to-date.
Merging sound/for-next (854784e ALSA: hda - Add headset mic support for another Dell machine)
$ git merge sound/for-next
Already up-to-date.
Merging sound-asoc/for-next (dfc0f91 Merge remote-tracking branch 'asoc/topic/x86' into asoc-next)
$ git merge sound-asoc/for-next
Removing sound/soc/pxa/tavorevb3.c
Removing sound/soc/pxa/saarb.c
Removing sound/soc/fsl/imx-pcm.c
Auto-merging sound/soc/codecs/spdif_transmitter.c
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/sound/mxs-saif.txt         |  17 +-
 .../devicetree/bindings/sound/spdif-receiver.txt   |  10 +
 .../bindings/sound/spdif-transmitter.txt           |  10 +
 include/sound/soc-dapm.h                           |   2 +
 sound/soc/atmel/sam9g20_wm8731.c                   |   9 -
 sound/soc/blackfin/bf5xx-tdm-pcm.c                 |   3 +-
 sound/soc/cirrus/Kconfig                           |   2 +-
 sound/soc/cirrus/ep93xx-ac97.c                     |  16 +-
 sound/soc/cirrus/ep93xx-i2s.c                      |  16 +-
 sound/soc/cirrus/ep93xx-pcm.c                      | 138 +------
 sound/soc/codecs/88pm860x-codec.c                  |   9 +-
 sound/soc/codecs/Makefile                          |   2 +-
 sound/soc/codecs/ab8500-codec.c                    |   6 +
 sound/soc/codecs/jz4740.c                          |   2 -
 sound/soc/codecs/sgtl5000.c                        | 214 +++++++---
 sound/soc/codecs/sgtl5000.h                        |   2 +-
 sound/soc/codecs/sn95031.c                         |   2 +-
 sound/soc/codecs/spdif_receiver.c                  |  10 +
 .../{spdif_transciever.c => spdif_transmitter.c}   |  10 +
 sound/soc/codecs/wm8994.c                          |  49 ++-
 sound/soc/codecs/wm_adsp.c                         | 460 ++++++++++++++++++++-
 sound/soc/codecs/wm_adsp.h                         |   3 +
 sound/soc/davinci/davinci-sffsdr.c                 |   2 +-
 sound/soc/fsl/Kconfig                              |   5 -
 sound/soc/fsl/Makefile                             |  11 +-
 sound/soc/fsl/eukrea-tlv320.c                      |   2 +-
 sound/soc/fsl/fsl_ssi.c                            |  13 +-
 sound/soc/fsl/imx-audmux.c                         |   8 -
 sound/soc/fsl/imx-mc13783.c                        |   2 +-
 sound/soc/fsl/imx-pcm-dma.c                        |   2 +
 sound/soc/fsl/imx-pcm-fiq.c                        |  92 +++++
 sound/soc/fsl/imx-pcm.c                            | 145 -------
 sound/soc/fsl/imx-pcm.h                            |  10 +-
 sound/soc/fsl/imx-sgtl5000.c                       |   7 +-
 sound/soc/fsl/imx-ssi.c                            |  44 +-
 sound/soc/fsl/imx-ssi.h                            |   3 -
 sound/soc/fsl/mx27vis-aic32x4.c                    |   2 +-
 sound/soc/fsl/phycore-ac97.c                       |   2 +-
 sound/soc/fsl/wm1133-ev1.c                         |   2 +-
 sound/soc/jz4740/jz4740-i2s.c                      |  17 +-
 sound/soc/kirkwood/kirkwood-dma.c                  |   2 +-
 sound/soc/mid-x86/mfld_machine.c                   |   1 -
 sound/soc/mxs/mxs-pcm.c                            |  18 -
 sound/soc/mxs/mxs-pcm.h                            |   7 -
 sound/soc/mxs/mxs-saif.c                           |  37 +-
 sound/soc/mxs/mxs-saif.h                           |   1 -
 sound/soc/mxs/mxs-sgtl5000.c                       |  10 +-
 sound/soc/omap/omap-mcbsp.c                        |   2 -
 sound/soc/pxa/Kconfig                              |  20 -
 sound/soc/pxa/Makefile                             |   4 -
 sound/soc/pxa/mmp-pcm.c                            |   6 +-
 sound/soc/pxa/mmp-sspa.c                           |   2 +-
 sound/soc/pxa/saarb.c                              | 190 ---------
 sound/soc/pxa/tavorevb3.c                          | 189 ---------
 sound/soc/samsung/smdk_wm8580pcm.c                 |   1 -
 sound/soc/samsung/smdk_wm8994pcm.c                 |   1 -
 sound/soc/soc-core.c                               | 106 ++---
 sound/soc/soc-dapm.c                               |  47 ++-
 sound/soc/soc-pcm.c                                |  91 ++--
 sound/soc/spear/spdif_in.c                         |  21 +-
 sound/soc/spear/spdif_out.c                        |  16 +-
 sound/soc/spear/spear_pcm.c                        | 152 +------
 sound/soc/tegra/tegra_asoc_utils.c                 |  23 +-
 sound/soc/ux500/mop500.c                           |   2 +-
 sound/soc/ux500/mop500_ab8500.c                    |  26 +-
 65 files changed, 1046 insertions(+), 1290 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/spdif-receiver.txt
 create mode 100644 Documentation/devicetree/bindings/sound/spdif-transmitter.txt
 rename sound/soc/codecs/{spdif_transciever.c => spdif_transmitter.c} (88%)
 delete mode 100644 sound/soc/fsl/imx-pcm.c
 delete mode 100644 sound/soc/pxa/saarb.c
 delete mode 100644 sound/soc/pxa/tavorevb3.c
Merging modules/modules-next (a53a11f3 modpost: fix unwanted VMLINUX_SYMBOL_STR expansion)
$ git merge modules/modules-next
Already up-to-date.
Merging virtio/virtio-next (01d779a caif_virtio: Remove bouncing email addresses)
$ git merge virtio/virtio-next
Already up-to-date.
Merging input/next (d520145 Input: w90p910_keypad - remove redundant platform_set_drvdata())
$ git merge input/next
Auto-merging drivers/input/touchscreen/egalax_ts.c
Auto-merging drivers/input/keyboard/omap4-keypad.c
Merge made by the 'recursive' strategy.
 drivers/input/keyboard/amikbd.c             |  1 -
 drivers/input/keyboard/bf54x-keys.c         |  2 --
 drivers/input/keyboard/davinci_keyscan.c    |  2 --
 drivers/input/keyboard/ep93xx_keypad.c      |  3 --
 drivers/input/keyboard/gpio_keys.c          |  1 -
 drivers/input/keyboard/gpio_keys_polled.c   |  2 --
 drivers/input/keyboard/jornada680_kbd.c     |  2 --
 drivers/input/keyboard/jornada720_kbd.c     |  2 --
 drivers/input/keyboard/matrix_keypad.c      |  2 --
 drivers/input/keyboard/omap4-keypad.c       |  2 --
 drivers/input/keyboard/opencores-kbd.c      |  2 --
 drivers/input/keyboard/pmic8xxx-keypad.c    |  2 --
 drivers/input/keyboard/pxa27x_keypad.c      |  1 -
 drivers/input/keyboard/pxa930_rotary.c      |  1 -
 drivers/input/keyboard/samsung-keypad.c     |  2 --
 drivers/input/keyboard/sh_keysc.c           |  2 --
 drivers/input/keyboard/spear-keyboard.c     |  1 -
 drivers/input/keyboard/tnetv107x-keypad.c   |  2 --
 drivers/input/keyboard/twl4030_keypad.c     |  1 -
 drivers/input/keyboard/w90p910_keypad.c     |  1 -
 drivers/input/misc/ab8500-ponkey.c          |  2 --
 drivers/input/misc/bfin_rotary.c            |  1 -
 drivers/input/misc/gpio_tilt_polled.c       |  2 --
 drivers/input/misc/max8925_onkey.c          |  2 --
 drivers/input/misc/mc13783-pwrbutton.c      |  1 -
 drivers/input/misc/pm8xxx-vibrator.c        |  2 --
 drivers/input/misc/pmic8xxx-pwrkey.c        |  2 --
 drivers/input/misc/pwm-beeper.c             |  1 -
 drivers/input/misc/rotary_encoder.c         |  2 --
 drivers/input/mouse/amimouse.c              |  1 -
 drivers/input/mouse/gpio_mouse.c            |  3 --
 drivers/input/serio/altera_ps2.c            |  1 -
 drivers/input/serio/at32psif.c              |  2 --
 drivers/input/serio/q40kbd.c                |  1 -
 drivers/input/touchscreen/88pm860x-ts.c     |  1 -
 drivers/input/touchscreen/atmel-wm97xx.c    |  2 --
 drivers/input/touchscreen/da9052_tsi.c      |  2 --
 drivers/input/touchscreen/egalax_ts.c       | 53 ++++++++---------------------
 drivers/input/touchscreen/intel-mid-touch.c |  2 --
 drivers/input/touchscreen/jornada720_ts.c   |  2 --
 drivers/input/touchscreen/mc13783_ts.c      |  2 --
 drivers/input/touchscreen/ti_am335x_tsc.c   |  1 -
 drivers/input/touchscreen/tnetv107x-ts.c    |  2 --
 drivers/input/touchscreen/w90p910_ts.c      |  2 --
 44 files changed, 14 insertions(+), 112 deletions(-)
Merging input-mt/for-next (194664e Input: MT - handle semi-mt devices in core)
$ git merge input-mt/for-next
Merge made by the 'recursive' strategy.
Merging cgroup/for-next (e691100 Merge branch 'for-3.11' into for-next)
$ git merge cgroup/for-next
Merge made by the 'recursive' strategy.
 include/linux/cgroup.h |   2 +
 kernel/cgroup.c        | 136 +++++++++++++++++++++++++++++++++----------------
 2 files changed, 93 insertions(+), 45 deletions(-)
Merging block/for-next (3ba25f6 Merge branch 'for-linus' into for-next)
$ git merge block/for-next
Auto-merging include/linux/cgroup.h
Merge made by the 'recursive' strategy.
 Documentation/bcache.txt                   |   12 +-
 Documentation/cgroups/blkio-controller.txt |   29 +-
 block/blk-cgroup.c                         |  105 ++-
 block/blk-cgroup.h                         |   38 +-
 block/blk-throttle.c                       | 1064 +++++++++++++++++++---------
 drivers/block/mtip32xx/mtip32xx.c          |    8 +-
 drivers/md/bcache/Kconfig                  |    1 -
 drivers/md/bcache/bcache.h                 |    2 +-
 drivers/md/bcache/stats.c                  |   34 +-
 drivers/md/bcache/super.c                  |  185 +++--
 drivers/md/bcache/writeback.c              |    2 +-
 include/linux/cgroup.h                     |    2 +
 12 files changed, 951 insertions(+), 531 deletions(-)
Merging device-mapper/master (f722406 Linux 3.10-rc1)
$ git merge device-mapper/master
Already up-to-date.
Merging embedded/master (4744b43 embedded: fix vc_translate operator precedence)
$ git merge embedded/master
Already up-to-date.
Merging firmware/master (6e03a20 firmware: speed up request_firmware(), v3)
$ git merge firmware/master
Already up-to-date.
Merging pcmcia/master (80af9e6 pcmcia at91_cf: fix raw gpio number usage)
$ git merge pcmcia/master
Already up-to-date.
Merging mmc/mmc-next (f722406 Linux 3.10-rc1)
$ git merge mmc/mmc-next
Already up-to-date.
Merging kgdb/kgdb-next (6bedf31 kdb: Remove unhandled ssb command)
$ git merge kgdb/kgdb-next
Merge made by the 'recursive' strategy.
Merging slab/for-next (8a965b3 mm, slab_common: Fix bootstrap creation of kmalloc caches)
$ git merge slab/for-next
Already up-to-date.
Merging uclinux/for-next (6dbe51c Linux 3.9-rc1)
$ git merge uclinux/for-next
Already up-to-date.
Merging md/for-next (ae59b84 dm-raid: silence compiler warning on rebuilds_per_group.)
$ git merge md/for-next
Auto-merging drivers/md/raid10.c
Auto-merging drivers/md/raid1.c
Auto-merging drivers/md/md.c
Merge made by the 'recursive' strategy.
 Documentation/device-mapper/dm-raid.txt |  1 +
 drivers/md/dm-raid.c                    | 67 ++++++++++++++++++++++++++++++++-
 drivers/md/md.c                         |  2 +-
 drivers/md/raid1.c                      |  7 ++--
 drivers/md/raid10.c                     | 10 +++--
 5 files changed, 77 insertions(+), 10 deletions(-)
Merging mfd/master (d7ab730 Merge tag 'mfd-3.10-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next)
$ git merge mfd/master
Already up-to-date.
Merging battery/master (237a1b0 lp8788-charger: Fix kconfig dependency)
$ git merge battery/master
Auto-merging drivers/power/Kconfig
Merge made by the 'recursive' strategy.
 drivers/power/Kconfig | 1 +
 1 file changed, 1 insertion(+)
Merging fbdev/fbdev-next (a49f0d1 Linux 3.8-rc1)
$ git merge fbdev/fbdev-next
Already up-to-date.
Merging viafb/viafb-next (838ac78 viafb: avoid refresh and mode lookup in set_par)
$ git merge viafb/viafb-next
Already up-to-date.
Merging omap_dss2/for-next (e72b753 fbdev/ps3fb: fix compile warning)
$ git merge omap_dss2/for-next
Merge made by the 'recursive' strategy.
 drivers/video/ps3fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Merging regulator/for-next (0eeca66 Merge remote-tracking branch 'regulator/topic/isl6271a' into regulator-next)
$ git merge regulator/for-next
Merge made by the 'recursive' strategy.
 .../bindings/regulator/ti-abb-regulator.txt        | 128 +++
 drivers/regulator/88pm8607.c                       |   1 -
 drivers/regulator/Kconfig                          |  10 +
 drivers/regulator/Makefile                         |   1 +
 drivers/regulator/core.c                           |   5 +-
 drivers/regulator/dbx500-prcmu.c                   |  24 +-
 drivers/regulator/isl6271a-regulator.c             |   2 +-
 drivers/regulator/lp8755.c                         |   1 -
 drivers/regulator/lp8788-buck.c                    |   1 -
 drivers/regulator/lp8788-ldo.c                     |   2 -
 drivers/regulator/max77686.c                       |   1 -
 drivers/regulator/max8925-regulator.c              |   1 -
 drivers/regulator/mc13783-regulator.c              |   2 -
 drivers/regulator/mc13892-regulator.c              |   2 -
 drivers/regulator/palmas-regulator.c               |   2 +-
 drivers/regulator/pcap-regulator.c                 |   1 -
 drivers/regulator/pcf50633-regulator.c             |   1 -
 drivers/regulator/s2mps11.c                        |   1 -
 drivers/regulator/ti-abb-regulator.c               | 912 +++++++++++++++++++++
 drivers/regulator/tps65217-regulator.c             |   2 -
 drivers/regulator/virtual.c                        |   2 -
 drivers/regulator/wm831x-dcdc.c                    |   7 -
 drivers/regulator/wm831x-isink.c                   |   2 -
 drivers/regulator/wm831x-ldo.c                     |   2 -
 drivers/regulator/wm8400-regulator.c               |   1 -
 drivers/regulator/wm8994-regulator.c               |   2 -
 26 files changed, 1069 insertions(+), 47 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/regulator/ti-abb-regulator.txt
 create mode 100644 drivers/regulator/ti-abb-regulator.c
Merging security/next (4726e8f security: clarify cap_inode_getsecctx description)
$ git merge security/next
Merge made by the 'recursive' strategy.
 include/linux/security.h             |   3 +-
 security/apparmor/audit.c            |   2 +-
 security/apparmor/context.c          |  44 +++++----
 security/apparmor/domain.c           |  26 ++---
 security/apparmor/include/apparmor.h |  12 ++-
 security/apparmor/include/context.h  |  61 ++++++++----
 security/apparmor/include/file.h     |  14 +--
 security/apparmor/include/match.h    |  21 ++--
 security/apparmor/include/policy.h   |  16 ++--
 security/apparmor/include/procattr.h |   1 -
 security/apparmor/include/sid.h      |   4 +-
 security/apparmor/ipc.c              |  13 +--
 security/apparmor/lib.c              |  44 ++++-----
 security/apparmor/lsm.c              |  69 +++++++------
 security/apparmor/match.c            |  23 ++---
 security/apparmor/path.c             |   2 +-
 security/apparmor/policy.c           | 181 ++++++++++++++++-------------------
 security/apparmor/policy_unpack.c    |   4 +-
 security/apparmor/procattr.c         |   6 --
 security/apparmor/resource.c         |  15 ++-
 20 files changed, 291 insertions(+), 270 deletions(-)
Merging selinux/master (c2d7b24 Merge tag 'v3.4' into 20120409)
$ git merge selinux/master
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging lblnet/master (7e27d6e Linux 2.6.35-rc3)
$ git merge lblnet/master
Already up-to-date.
Merging watchdog/master (f722406 Linux 3.10-rc1)
$ git merge watchdog/master
Already up-to-date.
Merging dwmw2-iommu/master (6491d4d intel-iommu: Free old page tables before creating superpage)
$ git merge dwmw2-iommu/master
Already up-to-date.
Merging iommu/next (0c4513b Merge branches 'iommu/fixes', 'x86/vt-d', 'x86/amd', 'ppc/pamu', 'core' and 'arm/tegra' into next)
$ git merge iommu/next
Already up-to-date.
Merging vfio/next (664e938 vfio: Set container device mode)
$ git merge vfio/next
Already up-to-date.
Merging osd/linux-next (861d666 exofs: don't leak io_state and pages on read error)
$ git merge osd/linux-next
Already up-to-date.
Merging jc_docs/docs-next (5c050fb docs: update the development process document)
$ git merge jc_docs/docs-next
Already up-to-date.
Merging trivial/for-next (071361d mm: Convert print_symbol to %pSR)
$ git merge trivial/for-next
Already up-to-date.
Merging audit/for-next (dcd6c92 Linux 3.3-rc1)
$ git merge audit/for-next
Already up-to-date.
Merging fsnotify/for-next (1ca39ab inotify: automatically restart syscalls)
$ git merge 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 edac/linux_next
Already up-to-date.
Merging edac-amd/for-next (9713fae EDAC: Merge mci.mem_is_per_rank with mci.csbased)
$ git merge edac-amd/for-next
Already up-to-date.
Merging devicetree/devicetree/next (3132f62 Merge branch 'for-next' of git://sources.calxeda.com/kernel/linux into HEAD)
$ git merge devicetree/devicetree/next
Auto-merging drivers/of/base.c
Merge made by the 'recursive' strategy.
 .../bindings/{drm/exynos/hdmi.txt => video/exynos_hdmi.txt}       | 0
 .../bindings/{drm/exynos/hdmiddc.txt => video/exynos_hdmiddc.txt} | 0
 .../bindings/{drm/exynos/hdmiphy.txt => video/exynos_hdmiphy.txt} | 0
 .../bindings/{drm/exynos/mixer.txt => video/exynos_mixer.txt}     | 0
 Documentation/devicetree/usage-model.txt                          | 8 +++++---
 drivers/of/base.c                                                 | 4 ++--
 include/linux/of_platform.h                                       | 5 +++--
 7 files changed, 10 insertions(+), 7 deletions(-)
 rename Documentation/devicetree/bindings/{drm/exynos/hdmi.txt => video/exynos_hdmi.txt} (100%)
 rename Documentation/devicetree/bindings/{drm/exynos/hdmiddc.txt => video/exynos_hdmiddc.txt} (100%)
 rename Documentation/devicetree/bindings/{drm/exynos/hdmiphy.txt => video/exynos_hdmiphy.txt} (100%)
 rename Documentation/devicetree/bindings/{drm/exynos/mixer.txt => video/exynos_mixer.txt} (100%)
Merging dt-rh/for-next (a2b9ea7 Documentation/devicetree: make semantic of initrd-end more explicit)
$ git merge 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 spi/spi/next
Already up-to-date.
Merging spi-mb/for-next (760a8c4 Merge remote-tracking branch 'spi/topic/sirf' into spi-next)
$ git merge spi-mb/for-next
Merge made by the 'recursive' strategy.
 drivers/spi/spi-altera.c        |  2 --
 drivers/spi/spi-ath79.c         |  2 --
 drivers/spi/spi-au1550.c        |  2 --
 drivers/spi/spi-bcm2835.c       |  7 +++----
 drivers/spi/spi-bcm63xx.c       |  3 ---
 drivers/spi/spi-bfin-sport.c    |  3 ---
 drivers/spi/spi-bfin5xx.c       |  3 ---
 drivers/spi/spi-clps711x.c      |  2 --
 drivers/spi/spi-coldfire-qspi.c |  1 -
 drivers/spi/spi-dw-mmio.c       |  2 --
 drivers/spi/spi-ep93xx.c        |  2 --
 drivers/spi/spi-gpio.c          |  2 --
 drivers/spi/spi-imx.c           | 11 -----------
 drivers/spi/spi-mxs.c           |  6 ------
 drivers/spi/spi-oc-tiny.c       |  2 --
 drivers/spi/spi-omap2-mcspi.c   |  7 -------
 drivers/spi/spi-pxa2xx-dma.c    | 11 ++++++-----
 drivers/spi/spi-pxa2xx.c        | 40 ++++------------------------------------
 drivers/spi/spi-s3c64xx.c       |  2 --
 drivers/spi/spi-sirf.c          | 12 +-----------
 20 files changed, 14 insertions(+), 108 deletions(-)
Merging tip/auto-latest (57e87c1 Merge branch 'timers/urgent')
$ git merge tip/auto-latest
Auto-merging kernel/printk.c
Merge made by the 'recursive' strategy.
 kernel/printk.c       |   2 +-
 kernel/sched/Makefile |   2 +-
 kernel/sched/core.c   | 569 -------------------------------------------------
 kernel/sched/fair.c   |  18 ++
 kernel/sched/proc.c   | 578 ++++++++++++++++++++++++++++++++++++++++++++++++++
 kernel/sched/sched.h  |  26 +--
 6 files changed, 606 insertions(+), 589 deletions(-)
 create mode 100644 kernel/sched/proc.c
Merging ftrace/for-next (4c69e6e tracepoints: Prevent null probe from being added)
$ git merge ftrace/for-next
Already up-to-date.
Merging rcu/rcu/next (4573e86 rcu: Switch to exedited grace periods for suspend as well as hibernation)
$ git merge rcu/rcu/next
Merge made by the 'recursive' strategy.
 Documentation/RCU/RTFP.txt       |  855 ++++++++++++++++++++------------
 Documentation/RCU/checklist.txt  |    6 -
 Documentation/RCU/rcubarrier.txt |   12 +-
 Documentation/RCU/torture.txt    |    6 -
 Documentation/RCU/trace.txt      |  100 +---
 Documentation/RCU/whatisRCU.txt  |   22 +-
 Documentation/timers/NO_HZ.txt   |   79 ++-
 arch/powerpc/kvm/book3s_hv.c     |    2 +-
 include/linux/debugobjects.h     |    6 +-
 include/linux/hardirq.h          |    2 +-
 include/linux/rcupdate.h         |    9 +-
 include/linux/rcutiny.h          |   41 +-
 include/linux/rcutree.h          |    3 +-
 include/linux/srcu.h             |   43 --
 init/Kconfig                     |   46 +-
 kernel/rcu.h                     |   10 +-
 kernel/rcupdate.c                |  129 +----
 kernel/rcutiny.c                 |   21 +-
 kernel/rcutiny_plugin.h          | 1009 ++------------------------------------
 kernel/rcutorture.c              |   76 ++-
 kernel/rcutree.c                 |  246 +++-------
 kernel/rcutree.h                 |   15 +-
 kernel/rcutree_plugin.h          |   85 ++--
 lib/debugobjects.c               |   20 +-
 24 files changed, 924 insertions(+), 1919 deletions(-)
Merging cputime/cputime (c3e0ef9 [S390] fix cputime overflow in uptime_proc_show)
$ git merge cputime/cputime
Already up-to-date.
Merging uprobes/for-next (0326f5a uprobes/core: Handle breakpoint and singlestep exceptions)
$ git merge uprobes/for-next
Already up-to-date.
Merging kvm/linux-next (f722406 Linux 3.10-rc1)
$ git merge kvm/linux-next
Already up-to-date.
Merging kvm-arm/kvm-arm-next (b8022d7 arm: kvm: arch_timer: use symbolic constants)
$ git merge kvm-arm/kvm-arm-next
Resolved 'arch/arm/include/asm/kvm_host.h' using previous resolution.
Resolved 'arch/arm/kvm/arm.c' using previous resolution.
Auto-merging arch/arm/kvm/arm.c
CONFLICT (content): Merge conflict in arch/arm/kvm/arm.c
Auto-merging arch/arm/include/asm/kvm_host.h
CONFLICT (content): Merge conflict in arch/arm/include/asm/kvm_host.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master fa2b5f9] Merge remote-tracking branch 'kvm-arm/kvm-arm-next'
$ git diff -M --stat --summary HEAD^..
Merging kvm-ppc/kvm-ppc-next (5975a2e KVM: PPC: Book3S: Add API for in-kernel XICS emulation)
$ git merge kvm-ppc/kvm-ppc-next
Already up-to-date.
Merging oprofile/for-next (f722406 Linux 3.10-rc1)
$ git merge oprofile/for-next
Already up-to-date.
Merging fw-nohz/nohz/next (74876a9 printk: Wake up klogd using irq_work)
$ git merge 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 xen/upstream/xen
Already up-to-date.
Merging xen-two/linux-next (f722406 Linux 3.10-rc1)
$ git merge xen-two/linux-next
Already up-to-date.
Merging xen-arm/linux-next (3cc8e40 xen/arm: rename xen_secondary_init and run it on every online cpu)
$ git merge xen-arm/linux-next
Already up-to-date.
Merging percpu/for-next (a1b2a55 percpu: add documentation on this_cpu operations)
$ git merge percpu/for-next
Already up-to-date.
Merging workqueues/for-next (e3c8d93 Merge branch 'for-3.10-fixes' into for-next)
$ git merge workqueues/for-next
Merge made by the 'recursive' strategy.
 Documentation/kernel-parameters.txt | 15 +++++++++++++++
 block/blk-core.c                    |  3 ++-
 block/blk-ioc.c                     |  3 ++-
 block/genhd.c                       | 12 ++++++++----
 drivers/net/phy/phy.c               |  9 +++++----
 drivers/video/console/fbcon.c       |  2 +-
 include/linux/workqueue.h           | 35 +++++++++++++++++++++++++++++++++++
 kernel/power/Kconfig                | 20 ++++++++++++++++++++
 kernel/workqueue.c                  | 36 +++++++++++++++++++++++++++++++-----
 9 files changed, 119 insertions(+), 16 deletions(-)
Merging drivers-x86/linux-next (a1ec56e Add support for fan button on Ideapad Z580)
$ git merge drivers-x86/linux-next
Already up-to-date.
Merging hwpoison/hwpoison (46e387b Merge branch 'hwpoison-hugepages' into hwpoison)
$ git merge hwpoison/hwpoison
Already up-to-date.
Merging sysctl/master (4e474a0 sysctl: protect poll() in entries that may go away)
$ git merge sysctl/master
Already up-to-date.
Merging regmap/for-next (3615b6e Merge remote-tracking branch 'regmap/topic/debugfs' into regmap-next)
$ git merge regmap/for-next
Merge made by the 'recursive' strategy.
 drivers/base/regmap/internal.h        |  1 +
 drivers/base/regmap/regcache-rbtree.c | 62 +++++++++++++++++++++++++++--------
 drivers/base/regmap/regcache.c        | 37 +++++++++++++++++++++
 drivers/base/regmap/regmap-debugfs.c  |  9 +++--
 drivers/base/regmap/regmap.c          | 14 ++++----
 include/linux/regmap.h                | 12 +++++++
 include/trace/events/regmap.h         | 23 +++++++++++++
 7 files changed, 134 insertions(+), 24 deletions(-)
Merging hsi/for-next (43139a6 HSI: hsi_char: Update ioctl-number.txt)
$ git merge hsi/for-next
Already up-to-date.
Merging leds/for-next (34185fe leds: lp5562: Properly setup of_device_id table)
$ git merge leds/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/leds/leds-lp55xx.txt       | 147 +++++++++++++++++++++
 drivers/leds/leds-atmel-pwm.c                      |   1 -
 drivers/leds/leds-gpio.c                           |   2 -
 drivers/leds/leds-lp5521.c                         |  28 +++-
 drivers/leds/leds-lp5523.c                         |  28 +++-
 drivers/leds/leds-lp5562.c                         |  28 +++-
 drivers/leds/leds-lp55xx-common.c                  |  45 +++++++
 drivers/leds/leds-lp55xx-common.h                  |   4 +
 drivers/leds/leds-mc13783.c                        |   1 -
 drivers/leds/leds-ns2.c                            |   2 -
 10 files changed, 265 insertions(+), 21 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/leds/leds-lp55xx.txt
Merging driver-core/driver-core-next (9affd6b arm: fix mismerge of arch/arm/mach-omap2/timer.c)
$ git merge driver-core/driver-core-next
Already up-to-date.
Merging tty/tty-next (f722406 Linux 3.10-rc1)
$ git merge tty/tty-next
Already up-to-date.
Merging usb/usb-next (83fc1fc usb: misc: Added space after closing brace in adutux.c)
$ git merge usb/usb-next
Merge made by the 'recursive' strategy.
 drivers/usb/misc/adutux.c | 138 +++++++++++++++++++++++-----------------------
 1 file changed, 69 insertions(+), 69 deletions(-)
Merging usb-gadget/next (added5f ARM: mxs_defconfig: add CONFIG_USB_PHY)
$ git merge usb-gadget/next
Already up-to-date.
Merging staging/staging-next (6dea0da staging: rtl8192e: Use kmemdup for duplicating memory)
$ git merge staging/staging-next
Auto-merging drivers/staging/comedi/drivers/ni_mio_common.c
Auto-merging drivers/staging/comedi/drivers/ni_labpc.h
Auto-merging drivers/staging/comedi/drivers/ni_labpc.c
Auto-merging drivers/staging/comedi/comedi_fops.c
Auto-merging drivers/staging/comedi/comedi_buf.c
Merge made by the 'recursive' strategy.
 MAINTAINERS                                        |    2 +-
 drivers/staging/Kconfig                            |    2 +
 drivers/staging/Makefile                           |    1 +
 drivers/staging/android/ashmem.c                   |    3 +-
 drivers/staging/android/sync.c                     |   20 +-
 drivers/staging/asus_oled/asus_oled.c              |    2 +-
 drivers/staging/bcm/Bcmchar.c                      |    2 +-
 drivers/staging/bcm/InterfaceIdleMode.c            |   88 +-
 drivers/staging/ced1401/ced_ioc.c                  |  655 ++-
 drivers/staging/ced1401/ced_ioctl.h                |    2 +-
 drivers/staging/ced1401/machine.h                  |   39 +-
 drivers/staging/ced1401/usb1401.c                  |  613 ++-
 drivers/staging/ced1401/usb1401.h                  |  285 +-
 drivers/staging/ced1401/use1401.h                  |  185 +-
 drivers/staging/ced1401/use14_ioc.h                |  503 ++-
 drivers/staging/comedi/comedi.h                    |    5 -
 drivers/staging/comedi/comedi_buf.c                |    4 -
 drivers/staging/comedi/comedi_compat32.c           |    5 -
 drivers/staging/comedi/comedi_compat32.h           |    5 -
 drivers/staging/comedi/comedi_fops.c               |    5 -
 drivers/staging/comedi/comedi_pci.c                |    4 -
 drivers/staging/comedi/comedi_pcmcia.c             |    4 -
 drivers/staging/comedi/comedi_usb.c                |    4 -
 drivers/staging/comedi/comedidev.h                 |    5 -
 drivers/staging/comedi/comedilib.h                 |    5 -
 drivers/staging/comedi/drivers.c                   |    5 -
 drivers/staging/comedi/drivers/8253.h              |    5 -
 drivers/staging/comedi/drivers/8255.c              |    5 -
 drivers/staging/comedi/drivers/8255.h              |    5 -
 drivers/staging/comedi/drivers/8255_pci.c          |    4 -
 .../comedi/drivers/addi-data/APCI1710_Chrono.c     |    4 -
 .../comedi/drivers/addi-data/APCI1710_Dig_io.c     |    4 -
 .../comedi/drivers/addi-data/APCI1710_INCCPT.c     |    4 -
 .../comedi/drivers/addi-data/APCI1710_Inp_cpt.c    |    4 -
 .../comedi/drivers/addi-data/APCI1710_Pwm.c        |    4 -
 .../comedi/drivers/addi-data/APCI1710_Ssi.c        |    4 -
 .../comedi/drivers/addi-data/APCI1710_Tor.c        |    4 -
 .../comedi/drivers/addi-data/APCI1710_Ttl.c        |    4 -
 .../staging/comedi/drivers/addi-data/addi_common.c |    7 -
 .../staging/comedi/drivers/addi-data/addi_eeprom.c |    7 -
 .../comedi/drivers/addi-data/hwdrv_APCI1710.c      |    4 -
 .../comedi/drivers/addi-data/hwdrv_apci035.c       |    4 -
 .../comedi/drivers/addi-data/hwdrv_apci1500.c      |    4 -
 .../comedi/drivers/addi-data/hwdrv_apci1564.c      |    4 -
 .../comedi/drivers/addi-data/hwdrv_apci3120.c      |    4 -
 .../comedi/drivers/addi-data/hwdrv_apci3200.c      |    4 -
 .../comedi/drivers/addi-data/hwdrv_apci3xxx.c      |    4 -
 drivers/staging/comedi/drivers/addi_apci_1032.c    |    7 -
 drivers/staging/comedi/drivers/addi_apci_1516.c    |    7 -
 drivers/staging/comedi/drivers/addi_apci_16xx.c    |    7 -
 drivers/staging/comedi/drivers/addi_apci_2032.c    |    7 -
 drivers/staging/comedi/drivers/addi_apci_2200.c    |    7 -
 drivers/staging/comedi/drivers/addi_apci_3501.c    |    7 -
 drivers/staging/comedi/drivers/addi_watchdog.c     |    4 -
 drivers/staging/comedi/drivers/adl_pci6208.c       |    4 -
 drivers/staging/comedi/drivers/adl_pci7x3x.c       |    4 -
 drivers/staging/comedi/drivers/adl_pci8164.c       |    4 -
 drivers/staging/comedi/drivers/adl_pci9111.c       |    4 -
 drivers/staging/comedi/drivers/adq12b.c            |    5 -
 drivers/staging/comedi/drivers/adv_pci1723.c       |    9 +-
 drivers/staging/comedi/drivers/adv_pci1724.c       |    7 +-
 drivers/staging/comedi/drivers/aio_aio12_8.c       |    4 -
 drivers/staging/comedi/drivers/aio_iiro_16.c       |    4 -
 drivers/staging/comedi/drivers/amplc_dio200.c      |    5 -
 drivers/staging/comedi/drivers/amplc_dio200.h      |    5 -
 .../staging/comedi/drivers/amplc_dio200_common.c   |    5 -
 drivers/staging/comedi/drivers/amplc_dio200_pci.c  |    5 -
 drivers/staging/comedi/drivers/amplc_pc236.c       |    5 -
 drivers/staging/comedi/drivers/amplc_pc263.c       |    5 -
 drivers/staging/comedi/drivers/amplc_pci224.c      |    5 -
 drivers/staging/comedi/drivers/amplc_pci230.c      |    4 -
 drivers/staging/comedi/drivers/amplc_pci263.c      |    5 -
 drivers/staging/comedi/drivers/c6xdigio.c          |    5 -
 drivers/staging/comedi/drivers/cb_das16_cs.c       |    4 -
 drivers/staging/comedi/drivers/cb_pcidas.c         |    6 -
 drivers/staging/comedi/drivers/cb_pcidas64.c       |    7 +-
 drivers/staging/comedi/drivers/cb_pcidda.c         |    4 -
 drivers/staging/comedi/drivers/cb_pcimdas.c        |    5 -
 drivers/staging/comedi/drivers/cb_pcimdda.c        |    5 -
 drivers/staging/comedi/drivers/comedi_bond.c       |    5 -
 drivers/staging/comedi/drivers/comedi_fc.c         |    7 +-
 drivers/staging/comedi/drivers/comedi_fc.h         |    7 +-
 drivers/staging/comedi/drivers/comedi_parport.c    |    5 -
 drivers/staging/comedi/drivers/comedi_test.c       |    7 +-
 drivers/staging/comedi/drivers/contec_pci_dio.c    |    5 -
 drivers/staging/comedi/drivers/daqboard2000.c      |    5 -
 drivers/staging/comedi/drivers/das08.c             |    6 -
 drivers/staging/comedi/drivers/das08.h             |    5 -
 drivers/staging/comedi/drivers/das08_cs.c          |    7 -
 drivers/staging/comedi/drivers/das08_isa.c         |    4 -
 drivers/staging/comedi/drivers/das08_pci.c         |    4 -
 drivers/staging/comedi/drivers/das16.c             |    6 -
 drivers/staging/comedi/drivers/das16m1.c           |    6 -
 drivers/staging/comedi/drivers/das1800.c           |    6 -
 drivers/staging/comedi/drivers/das6402.c           |    5 -
 drivers/staging/comedi/drivers/das800.c            |    6 -
 drivers/staging/comedi/drivers/dmm32at.c           |    5 -
 drivers/staging/comedi/drivers/dt2811.c            |    4 -
 drivers/staging/comedi/drivers/dt2814.c            |    5 -
 drivers/staging/comedi/drivers/dt2815.c            |    5 -
 drivers/staging/comedi/drivers/dt2817.c            |    5 -
 drivers/staging/comedi/drivers/dt282x.c            |    5 -
 drivers/staging/comedi/drivers/dt3000.c            |    5 -
 drivers/staging/comedi/drivers/dt9812.c            |    5 -
 drivers/staging/comedi/drivers/dyna_pci10xx.c      |    4 -
 drivers/staging/comedi/drivers/gsc_hpdi.c          |    7 +-
 drivers/staging/comedi/drivers/icp_multi.c         |    5 -
 drivers/staging/comedi/drivers/jr3_pci.c           |    5 -
 drivers/staging/comedi/drivers/ke_counter.c        |    5 -
 drivers/staging/comedi/drivers/me4000.c            |    5 -
 drivers/staging/comedi/drivers/me_daq.c            |    4 -
 drivers/staging/comedi/drivers/mite.c              |    5 -
 drivers/staging/comedi/drivers/mite.h              |    5 -
 drivers/staging/comedi/drivers/mpc624.c            |    5 -
 drivers/staging/comedi/drivers/multiq3.c           |    5 -
 drivers/staging/comedi/drivers/ni_6527.c           |    5 -
 drivers/staging/comedi/drivers/ni_65xx.c           |    5 -
 drivers/staging/comedi/drivers/ni_660x.c           |    4 -
 drivers/staging/comedi/drivers/ni_670x.c           |    5 -
 drivers/staging/comedi/drivers/ni_at_a2150.c       |    6 -
 drivers/staging/comedi/drivers/ni_at_ao.c          |    5 -
 drivers/staging/comedi/drivers/ni_atmio.c          |    4 -
 drivers/staging/comedi/drivers/ni_atmio16d.c       |    5 -
 drivers/staging/comedi/drivers/ni_daq_700.c        |    5 -
 drivers/staging/comedi/drivers/ni_daq_dio24.c      |    6 -
 drivers/staging/comedi/drivers/ni_labpc.c          |   45 +-
 drivers/staging/comedi/drivers/ni_labpc.h          |   25 +-
 drivers/staging/comedi/drivers/ni_labpc_cs.c       |   12 +-
 drivers/staging/comedi/drivers/ni_labpc_pci.c      |   11 +-
 drivers/staging/comedi/drivers/ni_mio_common.c     |    5 -
 drivers/staging/comedi/drivers/ni_mio_cs.c         |    5 -
 drivers/staging/comedi/drivers/ni_pcidio.c         |    5 -
 drivers/staging/comedi/drivers/ni_pcimio.c         |    4 -
 drivers/staging/comedi/drivers/ni_stc.h            |    5 -
 drivers/staging/comedi/drivers/ni_tio.c            |    4 -
 drivers/staging/comedi/drivers/ni_tio.h            |    5 -
 drivers/staging/comedi/drivers/ni_tio_internal.h   |    5 -
 drivers/staging/comedi/drivers/ni_tiocmd.c         |    4 -
 drivers/staging/comedi/drivers/pcl711.c            |    5 -
 drivers/staging/comedi/drivers/pcl726.c            |    5 -
 drivers/staging/comedi/drivers/pcmad.c             |    5 -
 drivers/staging/comedi/drivers/pcmda12.c           |    4 -
 drivers/staging/comedi/drivers/pcmmio.c            |    4 -
 drivers/staging/comedi/drivers/pcmuio.c            |    4 -
 drivers/staging/comedi/drivers/plx9052.h           |    5 -
 drivers/staging/comedi/drivers/poc.c               |    4 -
 drivers/staging/comedi/drivers/rtd520.c            |    4 -
 drivers/staging/comedi/drivers/rti800.c            |    4 -
 drivers/staging/comedi/drivers/rti802.c            |    5 -
 drivers/staging/comedi/drivers/s526.c              |    5 -
 drivers/staging/comedi/drivers/s626.c              |    5 -
 drivers/staging/comedi/drivers/s626.h              |    5 -
 drivers/staging/comedi/drivers/serial2002.c        |    5 -
 drivers/staging/comedi/drivers/skel.c              |    5 -
 drivers/staging/comedi/drivers/ssv_dnp.c           |    5 -
 drivers/staging/comedi/drivers/unioxx5.c           |    4 -
 drivers/staging/comedi/drivers/usbdux.c            |    5 -
 drivers/staging/comedi/drivers/usbduxfast.c        |    4 -
 drivers/staging/comedi/drivers/usbduxsigma.c       |    5 -
 drivers/staging/comedi/drivers/vmk80xx.c           |    5 -
 .../staging/comedi/kcomedilib/kcomedilib_main.c    |    5 -
 drivers/staging/comedi/proc.c                      |    5 -
 drivers/staging/comedi/range.c                     |    5 -
 drivers/staging/cptm1217/clearpad_tm1217.c         |    4 +-
 drivers/staging/crystalhd/bc_dts_glob_lnx.h        |   19 +-
 drivers/staging/crystalhd/crystalhd_cmds.c         |   28 +-
 drivers/staging/crystalhd/crystalhd_cmds.h         |   19 +-
 drivers/staging/crystalhd/crystalhd_fw_if.h        |   81 +-
 drivers/staging/crystalhd/crystalhd_hw.c           |  231 +-
 drivers/staging/crystalhd/crystalhd_hw.h           |  121 +-
 drivers/staging/crystalhd/crystalhd_lnx.c          |   28 +-
 drivers/staging/crystalhd/crystalhd_lnx.h          |    4 +-
 drivers/staging/crystalhd/crystalhd_misc.c         |   39 +-
 drivers/staging/crystalhd/crystalhd_misc.h         |   37 +-
 drivers/staging/csr/csr_wifi_nme_ap_sef.c          |    4 +-
 drivers/staging/csr/drv.c                          |    6 +-
 drivers/staging/csr/io.c                           |   18 +-
 drivers/staging/csr/netdev.c                       |  100 +-
 drivers/staging/csr/sdio_mmc.c                     |    4 +-
 drivers/staging/csr/sme_blocking.c                 |   24 +-
 drivers/staging/csr/sme_native.c                   |    2 +-
 drivers/staging/csr/sme_sys.c                      |  148 +-
 drivers/staging/csr/sme_userspace.c                |    4 +-
 drivers/staging/csr/sme_wext.c                     |  116 +-
 drivers/staging/csr/ul_int.c                       |    2 +-
 drivers/staging/csr/unifi_event.c                  |   20 +-
 drivers/staging/csr/unifi_pdu_processing.c         |  490 +--
 drivers/staging/csr/unifi_priv.h                   |   30 +-
 drivers/staging/csr/unifi_sme.c                    |   24 +-
 drivers/staging/csr/unifi_sme.h                    |    8 +-
 drivers/staging/dgrp/dgrp_dpa_ops.c                |    2 +-
 drivers/staging/dgrp/dgrp_net_ops.c                |    4 +-
 drivers/staging/dgrp/drp.h                         |    2 +-
 drivers/staging/echo/echo.c                        |   78 +-
 drivers/staging/echo/echo.h                        |   26 +-
 drivers/staging/goldfish/goldfish_nand.c           |   11 +-
 drivers/staging/goldfish/goldfish_nand_reg.h       |    6 +-
 drivers/staging/iio/adc/ad7192.c                   |    2 +-
 drivers/staging/iio/adc/ad7280a.c                  |    2 +-
 drivers/staging/iio/adc/ad7606_core.c              |   12 +-
 drivers/staging/iio/adc/ad7816.c                   |    8 +-
 drivers/staging/iio/adc/ad799x_core.c              |    4 +-
 drivers/staging/keucr/init.c                       |    6 +-
 drivers/staging/keucr/transport.h                  |    2 +-
 drivers/staging/keucr/usb.c                        |    2 +-
 drivers/staging/lustre/Kconfig                     |    3 +
 drivers/staging/lustre/Makefile                    |    4 +
 drivers/staging/lustre/TODO                        |   13 +
 .../staging/lustre/include/linux/libcfs/bitmap.h   |  111 +
 .../staging/lustre/include/linux/libcfs/curproc.h  |  110 +
 .../staging/lustre/include/linux/libcfs/libcfs.h   |  286 ++
 .../lustre/include/linux/libcfs/libcfs_cpu.h       |  214 +
 .../lustre/include/linux/libcfs/libcfs_crypto.h    |  201 +
 .../lustre/include/linux/libcfs/libcfs_debug.h     |  350 ++
 .../lustre/include/linux/libcfs/libcfs_fail.h      |  170 +
 .../lustre/include/linux/libcfs/libcfs_hash.h      |  850 ++++
 .../lustre/include/linux/libcfs/libcfs_heap.h      |  200 +
 .../lustre/include/linux/libcfs/libcfs_ioctl.h     |  222 +
 .../include/linux/libcfs/libcfs_kernelcomm.h       |  117 +
 .../lustre/include/linux/libcfs/libcfs_prim.h      |  101 +
 .../lustre/include/linux/libcfs/libcfs_private.h   |  568 +++
 .../lustre/include/linux/libcfs/libcfs_string.h    |  137 +
 .../lustre/include/linux/libcfs/libcfs_time.h      |  132 +
 .../lustre/include/linux/libcfs/libcfs_workitem.h  |  110 +
 .../lustre/include/linux/libcfs/linux/kp30.h       |  286 ++
 .../lustre/include/linux/libcfs/linux/libcfs.h     |  131 +
 .../include/linux/libcfs/linux/linux-bitops.h      |   38 +
 .../lustre/include/linux/libcfs/linux/linux-cpu.h  |  175 +
 .../include/linux/libcfs/linux/linux-crypto.h      |   49 +
 .../lustre/include/linux/libcfs/linux/linux-fs.h   |   95 +
 .../lustre/include/linux/libcfs/linux/linux-lock.h |  204 +
 .../lustre/include/linux/libcfs/linux/linux-mem.h  |  139 +
 .../lustre/include/linux/libcfs/linux/linux-prim.h |  243 ++
 .../include/linux/libcfs/linux/linux-tcpip.h       |   87 +
 .../lustre/include/linux/libcfs/linux/linux-time.h |  275 ++
 .../include/linux/libcfs/linux/linux-types.h       |   36 +
 .../include/linux/libcfs/linux/portals_compat25.h  |  116 +
 .../staging/lustre/include/linux/libcfs/lucache.h  |  162 +
 .../lustre/include/linux/libcfs/params_tree.h      |  230 +
 .../lustre/include/linux/lnet/api-support.h        |   44 +
 drivers/staging/lustre/include/linux/lnet/api.h    |  220 +
 .../staging/lustre/include/linux/lnet/lib-lnet.h   |  874 ++++
 .../staging/lustre/include/linux/lnet/lib-types.h  |  765 ++++
 .../lustre/include/linux/lnet/linux/api-support.h  |   43 +
 .../lustre/include/linux/lnet/linux/lib-lnet.h     |   72 +
 .../lustre/include/linux/lnet/linux/lib-types.h    |   45 +
 .../staging/lustre/include/linux/lnet/linux/lnet.h |   56 +
 .../lustre/include/linux/lnet/lnet-sysctl.h        |   51 +
 drivers/staging/lustre/include/linux/lnet/lnet.h   |   51 +
 .../staging/lustre/include/linux/lnet/lnetctl.h    |   80 +
 drivers/staging/lustre/include/linux/lnet/lnetst.h |  491 +++
 drivers/staging/lustre/include/linux/lnet/ptllnd.h |   94 +
 .../lustre/include/linux/lnet/ptllnd_wire.h        |  124 +
 .../staging/lustre/include/linux/lnet/socklnd.h    |  103 +
 drivers/staging/lustre/include/linux/lnet/types.h  |  503 +++
 drivers/staging/lustre/lnet/Kconfig                |   40 +
 drivers/staging/lustre/lnet/Makefile               |    1 +
 drivers/staging/lustre/lnet/klnds/Makefile         |    1 +
 drivers/staging/lustre/lnet/klnds/o2iblnd/Makefile |    5 +
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c    | 3256 ++++++++++++++
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h    | 1057 +++++
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c | 3529 +++++++++++++++
 .../lustre/lnet/klnds/o2iblnd/o2iblnd_modparams.c  |  493 +++
 drivers/staging/lustre/lnet/klnds/socklnd/Makefile |    7 +
 .../staging/lustre/lnet/klnds/socklnd/socklnd.c    | 2902 +++++++++++++
 .../staging/lustre/lnet/klnds/socklnd/socklnd.h    |  602 +++
 .../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c | 2664 ++++++++++++
 .../lustre/lnet/klnds/socklnd/socklnd_lib-linux.c  | 1088 +++++
 .../lustre/lnet/klnds/socklnd/socklnd_lib-linux.h  |   91 +
 .../lustre/lnet/klnds/socklnd/socklnd_modparams.c  |  198 +
 .../lustre/lnet/klnds/socklnd/socklnd_proto.c      |  797 ++++
 drivers/staging/lustre/lnet/lnet/Makefile          |    8 +
 drivers/staging/lustre/lnet/lnet/acceptor.c        |  527 +++
 drivers/staging/lustre/lnet/lnet/api-errno.c       |   39 +
 drivers/staging/lustre/lnet/lnet/api-ni.c          | 1941 +++++++++
 drivers/staging/lustre/lnet/lnet/config.c          | 1264 ++++++
 drivers/staging/lustre/lnet/lnet/lib-eq.c          |  447 ++
 drivers/staging/lustre/lnet/lnet/lib-md.c          |  451 ++
 drivers/staging/lustre/lnet/lnet/lib-me.c          |  297 ++
 drivers/staging/lustre/lnet/lnet/lib-move.c        | 2441 +++++++++++
 drivers/staging/lustre/lnet/lnet/lib-msg.c         |  650 +++
 drivers/staging/lustre/lnet/lnet/lib-ptl.c         |  938 ++++
 drivers/staging/lustre/lnet/lnet/lo.c              |  120 +
 drivers/staging/lustre/lnet/lnet/module.c          |  154 +
 drivers/staging/lustre/lnet/lnet/peer.c            |  337 ++
 drivers/staging/lustre/lnet/lnet/router.c          | 1693 ++++++++
 drivers/staging/lustre/lnet/lnet/router_proc.c     |  950 +++++
 drivers/staging/lustre/lnet/selftest/Makefile      |    6 +
 drivers/staging/lustre/lnet/selftest/brw_test.c    |  499 +++
 drivers/staging/lustre/lnet/selftest/conctl.c      |  931 ++++
 drivers/staging/lustre/lnet/selftest/conrpc.c      | 1397 ++++++
 drivers/staging/lustre/lnet/selftest/conrpc.h      |  146 +
 drivers/staging/lustre/lnet/selftest/console.c     | 2071 +++++++++
 drivers/staging/lustre/lnet/selftest/console.h     |  232 +
 drivers/staging/lustre/lnet/selftest/framework.c   | 1814 ++++++++
 drivers/staging/lustre/lnet/selftest/module.c      |  169 +
 drivers/staging/lustre/lnet/selftest/ping_test.c   |  229 +
 drivers/staging/lustre/lnet/selftest/rpc.c         | 1665 ++++++++
 drivers/staging/lustre/lnet/selftest/rpc.h         |  302 ++
 drivers/staging/lustre/lnet/selftest/selftest.h    |  611 +++
 drivers/staging/lustre/lnet/selftest/timer.c       |  253 ++
 drivers/staging/lustre/lnet/selftest/timer.h       |   53 +
 drivers/staging/lustre/lustre/Kconfig              |   33 +
 drivers/staging/lustre/lustre/Makefile             |    2 +
 drivers/staging/lustre/lustre/fid/Makefile         |    5 +
 drivers/staging/lustre/lustre/fid/fid_handler.c    |  661 +++
 drivers/staging/lustre/lustre/fid/fid_internal.h   |   86 +
 drivers/staging/lustre/lustre/fid/fid_lib.c        |   97 +
 drivers/staging/lustre/lustre/fid/fid_request.c    |  522 +++
 drivers/staging/lustre/lustre/fid/fid_store.c      |  259 ++
 drivers/staging/lustre/lustre/fid/lproc_fid.c      |  360 ++
 drivers/staging/lustre/lustre/fld/Makefile         |    5 +
 drivers/staging/lustre/lustre/fld/fld_cache.c      |  566 +++
 drivers/staging/lustre/lustre/fld/fld_handler.c    |  447 ++
 drivers/staging/lustre/lustre/fld/fld_index.c      |  426 ++
 drivers/staging/lustre/lustre/fld/fld_internal.h   |  223 +
 drivers/staging/lustre/lustre/fld/fld_request.c    |  519 +++
 drivers/staging/lustre/lustre/fld/lproc_fld.c      |  365 ++
 drivers/staging/lustre/lustre/include/cl_object.h  | 3281 ++++++++++++++
 drivers/staging/lustre/lustre/include/dt_object.h  | 1498 +++++++
 .../staging/lustre/lustre/include/interval_tree.h  |  124 +
 drivers/staging/lustre/lustre/include/ioctl.h      |  106 +
 drivers/staging/lustre/lustre/include/lclient.h    |  441 ++
 .../lustre/lustre/include/linux/lprocfs_status.h   |   58 +
 .../lustre/lustre/include/linux/lustre_acl.h       |   66 +
 .../lustre/lustre/include/linux/lustre_common.h    |   22 +
 .../lustre/lustre/include/linux/lustre_compat25.h  |  349 ++
 .../lustre/lustre/include/linux/lustre_debug.h     |   47 +
 .../lustre/lustre/include/linux/lustre_dlm.h       |   46 +
 .../lustre/lustre/include/linux/lustre_fsfilt.h    |  181 +
 .../lustre/lustre/include/linux/lustre_handles.h   |   53 +
 .../lustre/lustre/include/linux/lustre_intent.h    |   62 +
 .../lustre/lustre/include/linux/lustre_lib.h       |   87 +
 .../lustre/lustre/include/linux/lustre_lite.h      |  100 +
 .../lustre/lustre/include/linux/lustre_log.h       |   57 +
 .../lustre/lustre/include/linux/lustre_net.h       |   50 +
 .../lustre/include/linux/lustre_patchless_compat.h |   85 +
 .../lustre/lustre/include/linux/lustre_quota.h     |   47 +
 .../lustre/lustre/include/linux/lustre_user.h      |   67 +
 drivers/staging/lustre/lustre/include/linux/lvfs.h |  134 +
 .../lustre/lustre/include/linux/lvfs_linux.h       |   66 +
 drivers/staging/lustre/lustre/include/linux/obd.h  |  128 +
 .../lustre/lustre/include/linux/obd_class.h        |   58 +
 .../lustre/lustre/include/linux/obd_support.h      |   63 +
 .../staging/lustre/lustre/include/lprocfs_status.h | 1100 +++++
 drivers/staging/lustre/lustre/include/lu_object.h  | 1346 ++++++
 drivers/staging/lustre/lustre/include/lu_ref.h     |  170 +
 drivers/staging/lustre/lustre/include/lu_target.h  |   91 +
 .../staging/lustre/lustre/include/lustre/libiam.h  |  145 +
 .../lustre/lustre/include/lustre/liblustreapi.h    |   43 +
 .../lustre/lustre/include/lustre/ll_fiemap.h       |  121 +
 .../lustre/include/lustre/lustre_build_version.h   |    2 +
 .../lustre/lustre/include/lustre/lustre_idl.h      | 3629 ++++++++++++++++
 .../lustre/include/lustre/lustre_lfsck_user.h      |   95 +
 .../lustre/lustre/include/lustre/lustre_user.h     | 1146 +++++
 .../lustre/lustre/include/lustre/lustreapi.h       |  310 ++
 drivers/staging/lustre/lustre/include/lustre_acl.h |   42 +
 .../staging/lustre/lustre/include/lustre_capa.h    |  305 ++
 drivers/staging/lustre/lustre/include/lustre_cfg.h |  299 ++
 .../staging/lustre/lustre/include/lustre_debug.h   |   76 +
 .../staging/lustre/lustre/include/lustre_disk.h    |  553 +++
 drivers/staging/lustre/lustre/include/lustre_dlm.h | 1668 ++++++++
 .../staging/lustre/lustre/include/lustre_eacl.h    |   95 +
 .../staging/lustre/lustre/include/lustre_export.h  |  389 ++
 drivers/staging/lustre/lustre/include/lustre_fid.h |  761 ++++
 drivers/staging/lustre/lustre/include/lustre_fld.h |  202 +
 .../staging/lustre/lustre/include/lustre_fsfilt.h  |   48 +
 drivers/staging/lustre/lustre/include/lustre_ha.h  |   67 +
 .../staging/lustre/lustre/include/lustre_handles.h |   93 +
 .../staging/lustre/lustre/include/lustre_idmap.h   |  104 +
 .../staging/lustre/lustre/include/lustre_import.h  |  367 ++
 drivers/staging/lustre/lustre/include/lustre_lib.h |  667 +++
 .../staging/lustre/lustre/include/lustre_linkea.h  |   57 +
 .../staging/lustre/lustre/include/lustre_lite.h    |  147 +
 drivers/staging/lustre/lustre/include/lustre_log.h |  576 +++
 drivers/staging/lustre/lustre/include/lustre_mdc.h |  176 +
 drivers/staging/lustre/lustre/include/lustre_mds.h |   81 +
 drivers/staging/lustre/lustre/include/lustre_mdt.h |   84 +
 drivers/staging/lustre/lustre/include/lustre_net.h | 3453 +++++++++++++++
 .../staging/lustre/lustre/include/lustre_param.h   |  121 +
 .../staging/lustre/lustre/include/lustre_quota.h   |  239 ++
 .../lustre/lustre/include/lustre_req_layout.h      |  334 ++
 drivers/staging/lustre/lustre/include/lustre_sec.h | 1145 +++++
 .../staging/lustre/lustre/include/lustre_update.h  |  189 +
 drivers/staging/lustre/lustre/include/lustre_ver.h |   24 +
 drivers/staging/lustre/lustre/include/lvfs.h       |   57 +
 drivers/staging/lustre/lustre/include/md_object.h  |  946 +++++
 drivers/staging/lustre/lustre/include/obd.h        | 1683 ++++++++
 drivers/staging/lustre/lustre/include/obd_cache.h  |   39 +
 drivers/staging/lustre/lustre/include/obd_cksum.h  |  176 +
 drivers/staging/lustre/lustre/include/obd_class.h  | 2281 ++++++++++
 drivers/staging/lustre/lustre/include/obd_lov.h    |  126 +
 drivers/staging/lustre/lustre/include/obd_ost.h    |   96 +
 .../staging/lustre/lustre/include/obd_support.h    |  853 ++++
 drivers/staging/lustre/lustre/lclient/glimpse.c    |  274 ++
 drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 1325 ++++++
 .../staging/lustre/lustre/lclient/lcommon_misc.c   |  194 +
 drivers/staging/lustre/lustre/ldlm/interval_tree.c |  764 ++++
 drivers/staging/lustre/lustre/ldlm/l_lock.c        |   76 +
 drivers/staging/lustre/lustre/ldlm/ldlm_extent.c   |  242 ++
 drivers/staging/lustre/lustre/ldlm/ldlm_flock.c    |  849 ++++
 .../staging/lustre/lustre/ldlm/ldlm_inodebits.c    |   75 +
 drivers/staging/lustre/lustre/ldlm/ldlm_internal.h |  277 ++
 drivers/staging/lustre/lustre/ldlm/ldlm_lib.c      |  868 ++++
 drivers/staging/lustre/lustre/ldlm/ldlm_lock.c     | 2443 +++++++++++
 drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c    | 1238 ++++++
 drivers/staging/lustre/lustre/ldlm/ldlm_plain.c    |   72 +
 drivers/staging/lustre/lustre/ldlm/ldlm_pool.c     | 1406 ++++++
 drivers/staging/lustre/lustre/ldlm/ldlm_request.c  | 2333 ++++++++++
 drivers/staging/lustre/lustre/ldlm/ldlm_resource.c | 1444 +++++++
 drivers/staging/lustre/lustre/libcfs/Makefile      |   22 +
 .../lustre/lustre/libcfs/crc32-pclmul_asm.S        |  360 ++
 drivers/staging/lustre/lustre/libcfs/debug.c       |  476 +++
 drivers/staging/lustre/lustre/libcfs/fail.c        |  137 +
 drivers/staging/lustre/lustre/libcfs/hash.c        | 2135 ++++++++++
 drivers/staging/lustre/lustre/libcfs/heap.c        |  475 +++
 .../lustre/lustre/libcfs/kernel_user_comm.c        |  336 ++
 drivers/staging/lustre/lustre/libcfs/libcfs_cpu.c  |  204 +
 drivers/staging/lustre/lustre/libcfs/libcfs_lock.c |  192 +
 drivers/staging/lustre/lustre/libcfs/libcfs_mem.c  |  205 +
 .../staging/lustre/lustre/libcfs/libcfs_string.c   |  647 +++
 .../staging/lustre/lustre/libcfs/linux/linux-cpu.c | 1085 +++++
 .../lustre/libcfs/linux/linux-crypto-adler.c       |  144 +
 .../lustre/libcfs/linux/linux-crypto-crc32.c       |  149 +
 .../lustre/libcfs/linux/linux-crypto-crc32pclmul.c |  193 +
 .../lustre/lustre/libcfs/linux/linux-crypto.c      |  305 ++
 .../lustre/lustre/libcfs/linux/linux-curproc.c     |  339 ++
 .../lustre/lustre/libcfs/linux/linux-debug.c       |  264 ++
 .../staging/lustre/lustre/libcfs/linux/linux-fs.c  |  113 +
 .../lustre/lustre/libcfs/linux/linux-lock.c        |   38 +
 .../staging/lustre/lustre/libcfs/linux/linux-mem.c |   87 +
 .../lustre/lustre/libcfs/linux/linux-module.c      |  183 +
 .../lustre/lustre/libcfs/linux/linux-prim.c        |  259 ++
 .../lustre/lustre/libcfs/linux/linux-proc.c        |  580 +++
 .../lustre/lustre/libcfs/linux/linux-sync.c        |   35 +
 .../lustre/lustre/libcfs/linux/linux-tcpip.c       |  664 +++
 .../lustre/lustre/libcfs/linux/linux-tracefile.c   |  275 ++
 .../lustre/lustre/libcfs/linux/linux-tracefile.h   |   48 +
 .../lustre/lustre/libcfs/linux/linux-utils.c       |   75 +
 drivers/staging/lustre/lustre/libcfs/lwt.c         |  266 ++
 drivers/staging/lustre/lustre/libcfs/module.c      |  498 +++
 drivers/staging/lustre/lustre/libcfs/nidstrings.c  |  867 ++++
 drivers/staging/lustre/lustre/libcfs/prng.c        |  139 +
 drivers/staging/lustre/lustre/libcfs/tracefile.c   | 1195 ++++++
 drivers/staging/lustre/lustre/libcfs/tracefile.h   |  340 ++
 .../staging/lustre/lustre/libcfs/upcall_cache.c    |  462 ++
 drivers/staging/lustre/lustre/libcfs/watchdog.c    |  516 +++
 drivers/staging/lustre/lustre/libcfs/workitem.c    |  475 +++
 drivers/staging/lustre/lustre/llite/Makefile       |   13 +
 drivers/staging/lustre/lustre/llite/dcache.c       |  675 +++
 drivers/staging/lustre/lustre/llite/dir.c          | 1978 +++++++++
 drivers/staging/lustre/lustre/llite/file.c         | 3196 ++++++++++++++
 drivers/staging/lustre/lustre/llite/llite_capa.c   |  661 +++
 drivers/staging/lustre/lustre/llite/llite_close.c  |  412 ++
 .../staging/lustre/lustre/llite/llite_internal.h   | 1578 +++++++
 drivers/staging/lustre/lustre/llite/llite_lib.c    | 2424 +++++++++++
 drivers/staging/lustre/lustre/llite/llite_mmap.c   |  507 +++
 drivers/staging/lustre/lustre/llite/llite_nfs.c    |  319 ++
 drivers/staging/lustre/lustre/llite/llite_rmtacl.c |  301 ++
 drivers/staging/lustre/lustre/llite/lloop.c        |  869 ++++
 drivers/staging/lustre/lustre/llite/lproc_llite.c  | 1397 ++++++
 drivers/staging/lustre/lustre/llite/namei.c        | 1279 ++++++
 drivers/staging/lustre/lustre/llite/remote_perm.c  |  333 ++
 drivers/staging/lustre/lustre/llite/rw.c           | 1307 ++++++
 drivers/staging/lustre/lustre/llite/rw26.c         |  586 +++
 drivers/staging/lustre/lustre/llite/statahead.c    | 1722 ++++++++
 drivers/staging/lustre/lustre/llite/super25.c      |  226 +
 drivers/staging/lustre/lustre/llite/symlink.c      |  192 +
 drivers/staging/lustre/lustre/llite/vvp_dev.c      |  547 +++
 drivers/staging/lustre/lustre/llite/vvp_internal.h |   62 +
 drivers/staging/lustre/lustre/llite/vvp_io.c       | 1175 +++++
 drivers/staging/lustre/lustre/llite/vvp_lock.c     |   85 +
 drivers/staging/lustre/lustre/llite/vvp_object.c   |  186 +
 drivers/staging/lustre/lustre/llite/vvp_page.c     |  558 +++
 drivers/staging/lustre/lustre/llite/xattr.c        |  578 +++
 drivers/staging/lustre/lustre/lmv/Makefile         |    5 +
 drivers/staging/lustre/lustre/lmv/lmv_fld.c        |   88 +
 drivers/staging/lustre/lustre/lmv/lmv_intent.c     |  328 ++
 drivers/staging/lustre/lustre/lmv/lmv_internal.h   |  159 +
 drivers/staging/lustre/lustre/lmv/lmv_obd.c        | 2734 ++++++++++++
 drivers/staging/lustre/lustre/lmv/lproc_lmv.c      |  239 ++
 drivers/staging/lustre/lustre/lov/Makefile         |    9 +
 .../staging/lustre/lustre/lov/lov_cl_internal.h    |  820 ++++
 drivers/staging/lustre/lustre/lov/lov_dev.c        |  533 +++
 drivers/staging/lustre/lustre/lov/lov_ea.c         |  334 ++
 drivers/staging/lustre/lustre/lov/lov_internal.h   |  322 ++
 drivers/staging/lustre/lustre/lov/lov_io.c         |  967 +++++
 drivers/staging/lustre/lustre/lov/lov_lock.c       | 1253 ++++++
 drivers/staging/lustre/lustre/lov/lov_log.c        |  278 ++
 drivers/staging/lustre/lustre/lov/lov_merge.c      |  218 +
 drivers/staging/lustre/lustre/lov/lov_obd.c        | 2923 +++++++++++++
 drivers/staging/lustre/lustre/lov/lov_object.c     |  942 +++++
 drivers/staging/lustre/lustre/lov/lov_offset.c     |  267 ++
 drivers/staging/lustre/lustre/lov/lov_pack.c       |  677 +++
 drivers/staging/lustre/lustre/lov/lov_page.c       |  235 +
 drivers/staging/lustre/lustre/lov/lov_pool.c       |  682 +++
 drivers/staging/lustre/lustre/lov/lov_request.c    | 1551 +++++++
 drivers/staging/lustre/lustre/lov/lovsub_dev.c     |  211 +
 drivers/staging/lustre/lustre/lov/lovsub_io.c      |   55 +
 drivers/staging/lustre/lustre/lov/lovsub_lock.c    |  485 +++
 drivers/staging/lustre/lustre/lov/lovsub_object.c  |  170 +
 drivers/staging/lustre/lustre/lov/lovsub_page.c    |   72 +
 drivers/staging/lustre/lustre/lov/lproc_lov.c      |  304 ++
 drivers/staging/lustre/lustre/lvfs/Makefile        |    6 +
 drivers/staging/lustre/lustre/lvfs/fsfilt.c        |  138 +
 drivers/staging/lustre/lustre/lvfs/fsfilt_ext3.c   |  761 ++++
 drivers/staging/lustre/lustre/lvfs/lvfs_lib.c      |  173 +
 drivers/staging/lustre/lustre/lvfs/lvfs_linux.c    |  295 ++
 drivers/staging/lustre/lustre/mdc/Makefile         |    5 +
 drivers/staging/lustre/lustre/mdc/lproc_mdc.c      |  183 +
 drivers/staging/lustre/lustre/mdc/mdc_internal.h   |  180 +
 drivers/staging/lustre/lustre/mdc/mdc_lib.c        |  564 +++
 drivers/staging/lustre/lustre/mdc/mdc_locks.c      | 1229 ++++++
 drivers/staging/lustre/lustre/mdc/mdc_reint.c      |  489 +++
 drivers/staging/lustre/lustre/mdc/mdc_request.c    | 2752 ++++++++++++
 drivers/staging/lustre/lustre/mgc/Makefile         |    5 +
 drivers/staging/lustre/lustre/mgc/libmgc.c         |  166 +
 drivers/staging/lustre/lustre/mgc/lproc_mgc.c      |   68 +
 drivers/staging/lustre/lustre/mgc/mgc_internal.h   |   75 +
 drivers/staging/lustre/lustre/mgc/mgc_request.c    | 1863 ++++++++
 drivers/staging/lustre/lustre/obdclass/Makefile    |   13 +
 drivers/staging/lustre/lustre/obdclass/acl.c       |  546 +++
 drivers/staging/lustre/lustre/obdclass/capa.c      |  401 ++
 .../staging/lustre/lustre/obdclass/cl_internal.h   |  121 +
 drivers/staging/lustre/lustre/obdclass/cl_io.c     | 1753 ++++++++
 drivers/staging/lustre/lustre/obdclass/cl_lock.c   | 2304 ++++++++++
 drivers/staging/lustre/lustre/obdclass/cl_object.c | 1155 +++++
 drivers/staging/lustre/lustre/obdclass/cl_page.c   | 1605 +++++++
 drivers/staging/lustre/lustre/obdclass/class_obd.c |  691 +++
 drivers/staging/lustre/lustre/obdclass/debug.c     |  124 +
 drivers/staging/lustre/lustre/obdclass/dt_object.c | 1055 +++++
 drivers/staging/lustre/lustre/obdclass/genops.c    | 1855 ++++++++
 drivers/staging/lustre/lustre/obdclass/idmap.c     |  474 +++
 drivers/staging/lustre/lustre/obdclass/linkea.c    |  194 +
 .../lustre/lustre/obdclass/linux/linux-module.c    |  430 ++
 .../lustre/lustre/obdclass/linux/linux-obdo.c      |  222 +
 .../lustre/lustre/obdclass/linux/linux-sysctl.c    |  445 ++
 drivers/staging/lustre/lustre/obdclass/llog.c      |  966 +++++
 drivers/staging/lustre/lustre/obdclass/llog_cat.c  |  833 ++++
 .../staging/lustre/lustre/obdclass/llog_internal.h |   98 +
 .../staging/lustre/lustre/obdclass/llog_ioctl.c    |  427 ++
 drivers/staging/lustre/lustre/obdclass/llog_lvfs.c |  862 ++++
 drivers/staging/lustre/lustre/obdclass/llog_obd.c  |  319 ++
 drivers/staging/lustre/lustre/obdclass/llog_osd.c  | 1323 ++++++
 drivers/staging/lustre/lustre/obdclass/llog_swab.c |  402 ++
 drivers/staging/lustre/lustre/obdclass/llog_test.c | 1087 +++++
 .../staging/lustre/lustre/obdclass/local_storage.c |  855 ++++
 .../staging/lustre/lustre/obdclass/local_storage.h |   76 +
 .../lustre/lustre/obdclass/lprocfs_jobstats.c      |  575 +++
 .../lustre/lustre/obdclass/lprocfs_status.c        | 2599 ++++++++++++
 drivers/staging/lustre/lustre/obdclass/lu_object.c | 2209 ++++++++++
 drivers/staging/lustre/lustre/obdclass/lu_ref.c    |   50 +
 drivers/staging/lustre/lustre/obdclass/lu_ucred.c  |  107 +
 .../lustre/lustre/obdclass/lustre_handles.c        |  263 ++
 .../staging/lustre/lustre/obdclass/lustre_peer.c   |  218 +
 drivers/staging/lustre/lustre/obdclass/md_attrs.c  |  202 +
 .../lustre/lustre/obdclass/md_local_object.c       |  459 ++
 drivers/staging/lustre/lustre/obdclass/mea.c       |  112 +
 .../staging/lustre/lustre/obdclass/obd_config.c    | 1899 +++++++++
 drivers/staging/lustre/lustre/obdclass/obd_mount.c | 1321 ++++++
 .../lustre/lustre/obdclass/obd_mount_server.c      | 1783 ++++++++
 drivers/staging/lustre/lustre/obdclass/obdo.c      |  362 ++
 .../staging/lustre/lustre/obdclass/statfs_pack.c   |   75 +
 drivers/staging/lustre/lustre/obdclass/uuid.c      |   82 +
 drivers/staging/lustre/lustre/obdecho/Makefile     |    5 +
 drivers/staging/lustre/lustre/obdecho/echo.c       |  679 +++
 .../staging/lustre/lustre/obdecho/echo_client.c    | 3217 ++++++++++++++
 .../staging/lustre/lustre/obdecho/echo_internal.h  |   47 +
 drivers/staging/lustre/lustre/obdecho/lproc_echo.c |   55 +
 drivers/staging/lustre/lustre/osc/Makefile         |    7 +
 drivers/staging/lustre/lustre/osc/lproc_osc.c      |  715 ++++
 drivers/staging/lustre/lustre/osc/osc_cache.c      | 3002 +++++++++++++
 .../staging/lustre/lustre/osc/osc_cl_internal.h    |  679 +++
 drivers/staging/lustre/lustre/osc/osc_dev.c        |  261 ++
 drivers/staging/lustre/lustre/osc/osc_internal.h   |  210 +
 drivers/staging/lustre/lustre/osc/osc_io.c         |  836 ++++
 drivers/staging/lustre/lustre/osc/osc_lock.c       | 1663 ++++++++
 drivers/staging/lustre/lustre/osc/osc_object.c     |  275 ++
 drivers/staging/lustre/lustre/osc/osc_page.c       |  926 ++++
 drivers/staging/lustre/lustre/osc/osc_quota.c      |  332 ++
 drivers/staging/lustre/lustre/osc/osc_request.c    | 3668 ++++++++++++++++
 drivers/staging/lustre/lustre/ptlrpc/Makefile      |   23 +
 drivers/staging/lustre/lustre/ptlrpc/client.c      | 3059 +++++++++++++
 drivers/staging/lustre/lustre/ptlrpc/connection.c  |  248 ++
 drivers/staging/lustre/lustre/ptlrpc/events.c      |  595 +++
 drivers/staging/lustre/lustre/ptlrpc/gss/Makefile  |    8 +
 drivers/staging/lustre/lustre/ptlrpc/gss/gss_api.h |  179 +
 .../staging/lustre/lustre/ptlrpc/gss/gss_asn1.h    |   84 +
 .../staging/lustre/lustre/ptlrpc/gss/gss_bulk.c    |  512 +++
 .../lustre/lustre/ptlrpc/gss/gss_cli_upcall.c      |  447 ++
 drivers/staging/lustre/lustre/ptlrpc/gss/gss_err.h |  193 +
 .../lustre/lustre/ptlrpc/gss/gss_generic_token.c   |  285 ++
 .../lustre/lustre/ptlrpc/gss/gss_internal.h        |  526 +++
 .../staging/lustre/lustre/ptlrpc/gss/gss_keyring.c | 1424 +++++++
 .../staging/lustre/lustre/ptlrpc/gss/gss_krb5.h    |  163 +
 .../lustre/lustre/ptlrpc/gss/gss_krb5_mech.c       | 1786 ++++++++
 .../lustre/lustre/ptlrpc/gss/gss_mech_switch.c     |  359 ++
 .../staging/lustre/lustre/ptlrpc/gss/gss_pipefs.c  | 1252 ++++++
 .../staging/lustre/lustre/ptlrpc/gss/gss_rawobj.c  |  242 ++
 .../lustre/lustre/ptlrpc/gss/gss_svc_upcall.c      | 1099 +++++
 .../staging/lustre/lustre/ptlrpc/gss/lproc_gss.c   |  219 +
 drivers/staging/lustre/lustre/ptlrpc/gss/sec_gss.c | 2916 +++++++++++++
 drivers/staging/lustre/lustre/ptlrpc/import.c      | 1613 +++++++
 drivers/staging/lustre/lustre/ptlrpc/layout.c      | 2396 +++++++++++
 drivers/staging/lustre/lustre/ptlrpc/llog_client.c |  354 ++
 drivers/staging/lustre/lustre/ptlrpc/llog_net.c    |   75 +
 drivers/staging/lustre/lustre/ptlrpc/llog_server.c |  466 ++
 .../staging/lustre/lustre/ptlrpc/lproc_ptlrpc.c    | 1401 ++++++
 drivers/staging/lustre/lustre/ptlrpc/niobuf.c      |  728 ++++
 drivers/staging/lustre/lustre/ptlrpc/nrs.c         | 1790 ++++++++
 drivers/staging/lustre/lustre/ptlrpc/nrs_crr.c     |   40 +
 drivers/staging/lustre/lustre/ptlrpc/nrs_fifo.c    |  270 ++
 drivers/staging/lustre/lustre/ptlrpc/nrs_orr.c     |   37 +
 .../staging/lustre/lustre/ptlrpc/pack_generic.c    | 2575 +++++++++++
 drivers/staging/lustre/lustre/ptlrpc/pers.c        |   75 +
 drivers/staging/lustre/lustre/ptlrpc/pinger.c      |  763 ++++
 .../staging/lustre/lustre/ptlrpc/ptlrpc_internal.h |  303 ++
 .../staging/lustre/lustre/ptlrpc/ptlrpc_module.c   |  154 +
 drivers/staging/lustre/lustre/ptlrpc/ptlrpcd.c     |  827 ++++
 drivers/staging/lustre/lustre/ptlrpc/recover.c     |  357 ++
 drivers/staging/lustre/lustre/ptlrpc/sec.c         | 2465 +++++++++++
 drivers/staging/lustre/lustre/ptlrpc/sec_bulk.c    |  881 ++++
 drivers/staging/lustre/lustre/ptlrpc/sec_config.c  | 1233 ++++++
 drivers/staging/lustre/lustre/ptlrpc/sec_gc.c      |  250 ++
 drivers/staging/lustre/lustre/ptlrpc/sec_lproc.c   |  198 +
 drivers/staging/lustre/lustre/ptlrpc/sec_null.c    |  464 ++
 drivers/staging/lustre/lustre/ptlrpc/sec_plain.c   | 1021 +++++
 drivers/staging/lustre/lustre/ptlrpc/service.c     | 3128 ++++++++++++++
 drivers/staging/lustre/lustre/ptlrpc/wirehdr.c     |   47 +
 drivers/staging/lustre/lustre/ptlrpc/wiretest.c    | 4474 ++++++++++++++++++++
 drivers/staging/ozwpan/ozcdev.c                    |    2 +
 drivers/staging/rtl8192e/rtllib_softmac.c          |    5 +-
 drivers/staging/rtl8192u/ieee80211/dot11d.c        |   14 +-
 drivers/staging/rtl8192u/ieee80211/dot11d.h        |   10 +-
 drivers/staging/rtl8192u/ieee80211/ieee80211.h     |   94 +-
 .../staging/rtl8192u/ieee80211/ieee80211_crypt.c   |    4 +-
 .../staging/rtl8192u/ieee80211/ieee80211_crypt.h   |    2 +-
 .../rtl8192u/ieee80211/ieee80211_crypt_ccmp.c      |   14 +-
 .../rtl8192u/ieee80211/ieee80211_crypt_tkip.c      |    8 +-
 .../rtl8192u/ieee80211/ieee80211_crypt_wep.c       |    4 +-
 drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c  |   34 +-
 .../staging/rtl8192u/ieee80211/ieee80211_softmac.c |   78 +-
 drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c  |   26 +-
 .../staging/rtl8192u/ieee80211/rtl819x_BAProc.c    |  106 +-
 .../staging/rtl8192u/ieee80211/rtl819x_HTProc.c    |   82 +-
 drivers/staging/rtl8192u/ieee80211/rtl819x_Qos.h   |   10 +-
 .../staging/rtl8192u/ieee80211/rtl819x_TSProc.c    |   30 +-
 drivers/staging/rtl8192u/r8190_rtl8256.c           |   18 +-
 drivers/staging/rtl8192u/r8190_rtl8256.h           |   10 +-
 drivers/staging/rtl8192u/r8192U.h                  |    4 +-
 drivers/staging/rtl8192u/r8192U_core.c             |  202 +-
 drivers/staging/rtl8192u/r8192U_dm.c               |   48 +-
 drivers/staging/rtl8192u/r8192U_wx.c               |   34 +-
 drivers/staging/rtl8192u/r819xU_cmdpkt.c           |   24 +-
 drivers/staging/rtl8192u/r819xU_cmdpkt.h           |    6 +-
 drivers/staging/rtl8192u/r819xU_firmware.c         |    6 +-
 drivers/staging/rtl8192u/r819xU_phy.c              |   90 +-
 drivers/staging/rtl8192u/r819xU_phy.h              |   30 +-
 drivers/staging/sb105x/sb_pci_mp.c                 |   34 +-
 drivers/staging/slicoss/slicoss.c                  |   18 +-
 drivers/staging/speakup/varhandlers.c              |   17 +-
 drivers/staging/ti-soc-thermal/ti-thermal-common.c |   30 +-
 drivers/staging/ti-soc-thermal/ti_soc_thermal.txt  |    1 +
 drivers/staging/usbip/usbip_event.c                |    2 +-
 drivers/staging/vme/devices/vme_user.c             |    6 +-
 drivers/staging/vme/devices/vme_user.h             |   12 +-
 drivers/staging/vt6656/tether.h                    |   10 -
 drivers/staging/vt6656/tmacro.h                    |    6 -
 drivers/staging/wlags49_h2/wl_cs.c                 |   13 +-
 drivers/staging/wlags49_h2/wl_cs.h                 |    4 +-
 drivers/staging/wlags49_h2/wl_main.c               |    3 +-
 drivers/staging/wlan-ng/prism2sta.c                |    3 +-
 672 files changed, 261739 insertions(+), 3393 deletions(-)
 create mode 100644 drivers/staging/lustre/Kconfig
 create mode 100644 drivers/staging/lustre/Makefile
 create mode 100644 drivers/staging/lustre/TODO
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/bitmap.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/curproc.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_cpu.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_crypto.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_fail.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_hash.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_heap.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_ioctl.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_kernelcomm.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_prim.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_private.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_string.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_time.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/libcfs_workitem.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/kp30.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/libcfs.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-bitops.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-cpu.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-crypto.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-fs.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-lock.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-mem.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-prim.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-tcpip.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/linux-types.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/linux/portals_compat25.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/lucache.h
 create mode 100644 drivers/staging/lustre/include/linux/libcfs/params_tree.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/api-support.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/api.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/lib-lnet.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/lib-types.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/linux/api-support.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/linux/lib-lnet.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/linux/lib-types.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/linux/lnet.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/lnet-sysctl.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/lnet.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/lnetctl.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/lnetst.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/ptllnd.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/ptllnd_wire.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/socklnd.h
 create mode 100644 drivers/staging/lustre/include/linux/lnet/types.h
 create mode 100644 drivers/staging/lustre/lnet/Kconfig
 create mode 100644 drivers/staging/lustre/lnet/Makefile
 create mode 100644 drivers/staging/lustre/lnet/klnds/Makefile
 create mode 100644 drivers/staging/lustre/lnet/klnds/o2iblnd/Makefile
 create mode 100644 drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c
 create mode 100644 drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h
 create mode 100644 drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c
 create mode 100644 drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd_modparams.c
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/Makefile
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/socklnd.c
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/socklnd.h
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/socklnd_cb.c
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/socklnd_lib-linux.c
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/socklnd_lib-linux.h
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/socklnd_modparams.c
 create mode 100644 drivers/staging/lustre/lnet/klnds/socklnd/socklnd_proto.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/Makefile
 create mode 100644 drivers/staging/lustre/lnet/lnet/acceptor.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/api-errno.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/api-ni.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/config.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/lib-eq.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/lib-md.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/lib-me.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/lib-move.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/lib-msg.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/lib-ptl.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/lo.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/module.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/peer.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/router.c
 create mode 100644 drivers/staging/lustre/lnet/lnet/router_proc.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/Makefile
 create mode 100644 drivers/staging/lustre/lnet/selftest/brw_test.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/conctl.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/conrpc.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/conrpc.h
 create mode 100644 drivers/staging/lustre/lnet/selftest/console.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/console.h
 create mode 100644 drivers/staging/lustre/lnet/selftest/framework.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/module.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/ping_test.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/rpc.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/rpc.h
 create mode 100644 drivers/staging/lustre/lnet/selftest/selftest.h
 create mode 100644 drivers/staging/lustre/lnet/selftest/timer.c
 create mode 100644 drivers/staging/lustre/lnet/selftest/timer.h
 create mode 100644 drivers/staging/lustre/lustre/Kconfig
 create mode 100644 drivers/staging/lustre/lustre/Makefile
 create mode 100644 drivers/staging/lustre/lustre/fid/Makefile
 create mode 100644 drivers/staging/lustre/lustre/fid/fid_handler.c
 create mode 100644 drivers/staging/lustre/lustre/fid/fid_internal.h
 create mode 100644 drivers/staging/lustre/lustre/fid/fid_lib.c
 create mode 100644 drivers/staging/lustre/lustre/fid/fid_request.c
 create mode 100644 drivers/staging/lustre/lustre/fid/fid_store.c
 create mode 100644 drivers/staging/lustre/lustre/fid/lproc_fid.c
 create mode 100644 drivers/staging/lustre/lustre/fld/Makefile
 create mode 100644 drivers/staging/lustre/lustre/fld/fld_cache.c
 create mode 100644 drivers/staging/lustre/lustre/fld/fld_handler.c
 create mode 100644 drivers/staging/lustre/lustre/fld/fld_index.c
 create mode 100644 drivers/staging/lustre/lustre/fld/fld_internal.h
 create mode 100644 drivers/staging/lustre/lustre/fld/fld_request.c
 create mode 100644 drivers/staging/lustre/lustre/fld/lproc_fld.c
 create mode 100644 drivers/staging/lustre/lustre/include/cl_object.h
 create mode 100644 drivers/staging/lustre/lustre/include/dt_object.h
 create mode 100644 drivers/staging/lustre/lustre/include/interval_tree.h
 create mode 100644 drivers/staging/lustre/lustre/include/ioctl.h
 create mode 100644 drivers/staging/lustre/lustre/include/lclient.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lprocfs_status.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_acl.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_common.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_compat25.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_debug.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_dlm.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_fsfilt.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_handles.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_intent.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_lib.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_lite.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_log.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_net.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_patchless_compat.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_quota.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lustre_user.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lvfs.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/lvfs_linux.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/obd.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/obd_class.h
 create mode 100644 drivers/staging/lustre/lustre/include/linux/obd_support.h
 create mode 100644 drivers/staging/lustre/lustre/include/lprocfs_status.h
 create mode 100644 drivers/staging/lustre/lustre/include/lu_object.h
 create mode 100644 drivers/staging/lustre/lustre/include/lu_ref.h
 create mode 100644 drivers/staging/lustre/lustre/include/lu_target.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/libiam.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/liblustreapi.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/ll_fiemap.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/lustre_build_version.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/lustre_idl.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/lustre_lfsck_user.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/lustre_user.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre/lustreapi.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_acl.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_capa.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_cfg.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_debug.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_disk.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_dlm.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_eacl.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_export.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_fid.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_fld.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_fsfilt.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_ha.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_handles.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_idmap.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_import.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_lib.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_linkea.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_lite.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_log.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_mdc.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_mds.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_mdt.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_net.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_param.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_quota.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_req_layout.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_sec.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_update.h
 create mode 100644 drivers/staging/lustre/lustre/include/lustre_ver.h
 create mode 100644 drivers/staging/lustre/lustre/include/lvfs.h
 create mode 100644 drivers/staging/lustre/lustre/include/md_object.h
 create mode 100644 drivers/staging/lustre/lustre/include/obd.h
 create mode 100644 drivers/staging/lustre/lustre/include/obd_cache.h
 create mode 100644 drivers/staging/lustre/lustre/include/obd_cksum.h
 create mode 100644 drivers/staging/lustre/lustre/include/obd_class.h
 create mode 100644 drivers/staging/lustre/lustre/include/obd_lov.h
 create mode 100644 drivers/staging/lustre/lustre/include/obd_ost.h
 create mode 100644 drivers/staging/lustre/lustre/include/obd_support.h
 create mode 100644 drivers/staging/lustre/lustre/lclient/glimpse.c
 create mode 100644 drivers/staging/lustre/lustre/lclient/lcommon_cl.c
 create mode 100644 drivers/staging/lustre/lustre/lclient/lcommon_misc.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/interval_tree.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/l_lock.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_extent.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_flock.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_inodebits.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_internal.h
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_lib.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_lock.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_plain.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_pool.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_request.c
 create mode 100644 drivers/staging/lustre/lustre/ldlm/ldlm_resource.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/Makefile
 create mode 100644 drivers/staging/lustre/lustre/libcfs/crc32-pclmul_asm.S
 create mode 100644 drivers/staging/lustre/lustre/libcfs/debug.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/fail.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/hash.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/heap.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/kernel_user_comm.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/libcfs_cpu.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/libcfs_lock.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/libcfs_mem.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/libcfs_string.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-cpu.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-crypto-adler.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-crypto-crc32.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-crypto-crc32pclmul.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-crypto.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-curproc.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-debug.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-fs.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-lock.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-mem.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-module.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-prim.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-sync.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-tcpip.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-tracefile.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-tracefile.h
 create mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-utils.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/lwt.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/module.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/nidstrings.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/prng.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/tracefile.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/tracefile.h
 create mode 100644 drivers/staging/lustre/lustre/libcfs/upcall_cache.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/watchdog.c
 create mode 100644 drivers/staging/lustre/lustre/libcfs/workitem.c
 create mode 100644 drivers/staging/lustre/lustre/llite/Makefile
 create mode 100644 drivers/staging/lustre/lustre/llite/dcache.c
 create mode 100644 drivers/staging/lustre/lustre/llite/dir.c
 create mode 100644 drivers/staging/lustre/lustre/llite/file.c
 create mode 100644 drivers/staging/lustre/lustre/llite/llite_capa.c
 create mode 100644 drivers/staging/lustre/lustre/llite/llite_close.c
 create mode 100644 drivers/staging/lustre/lustre/llite/llite_internal.h
 create mode 100644 drivers/staging/lustre/lustre/llite/llite_lib.c
 create mode 100644 drivers/staging/lustre/lustre/llite/llite_mmap.c
 create mode 100644 drivers/staging/lustre/lustre/llite/llite_nfs.c
 create mode 100644 drivers/staging/lustre/lustre/llite/llite_rmtacl.c
 create mode 100644 drivers/staging/lustre/lustre/llite/lloop.c
 create mode 100644 drivers/staging/lustre/lustre/llite/lproc_llite.c
 create mode 100644 drivers/staging/lustre/lustre/llite/namei.c
 create mode 100644 drivers/staging/lustre/lustre/llite/remote_perm.c
 create mode 100644 drivers/staging/lustre/lustre/llite/rw.c
 create mode 100644 drivers/staging/lustre/lustre/llite/rw26.c
 create mode 100644 drivers/staging/lustre/lustre/llite/statahead.c
 create mode 100644 drivers/staging/lustre/lustre/llite/super25.c
 create mode 100644 drivers/staging/lustre/lustre/llite/symlink.c
 create mode 100644 drivers/staging/lustre/lustre/llite/vvp_dev.c
 create mode 100644 drivers/staging/lustre/lustre/llite/vvp_internal.h
 create mode 100644 drivers/staging/lustre/lustre/llite/vvp_io.c
 create mode 100644 drivers/staging/lustre/lustre/llite/vvp_lock.c
 create mode 100644 drivers/staging/lustre/lustre/llite/vvp_object.c
 create mode 100644 drivers/staging/lustre/lustre/llite/vvp_page.c
 create mode 100644 drivers/staging/lustre/lustre/llite/xattr.c
 create mode 100644 drivers/staging/lustre/lustre/lmv/Makefile
 create mode 100644 drivers/staging/lustre/lustre/lmv/lmv_fld.c
 create mode 100644 drivers/staging/lustre/lustre/lmv/lmv_intent.c
 create mode 100644 drivers/staging/lustre/lustre/lmv/lmv_internal.h
 create mode 100644 drivers/staging/lustre/lustre/lmv/lmv_obd.c
 create mode 100644 drivers/staging/lustre/lustre/lmv/lproc_lmv.c
 create mode 100644 drivers/staging/lustre/lustre/lov/Makefile
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_cl_internal.h
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_dev.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_ea.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_internal.h
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_io.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_lock.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_log.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_merge.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_obd.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_object.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_offset.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_pack.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_page.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_pool.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lov_request.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lovsub_dev.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lovsub_io.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lovsub_lock.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lovsub_object.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lovsub_page.c
 create mode 100644 drivers/staging/lustre/lustre/lov/lproc_lov.c
 create mode 100644 drivers/staging/lustre/lustre/lvfs/Makefile
 create mode 100644 drivers/staging/lustre/lustre/lvfs/fsfilt.c
 create mode 100644 drivers/staging/lustre/lustre/lvfs/fsfilt_ext3.c
 create mode 100644 drivers/staging/lustre/lustre/lvfs/lvfs_lib.c
 create mode 100644 drivers/staging/lustre/lustre/lvfs/lvfs_linux.c
 create mode 100644 drivers/staging/lustre/lustre/mdc/Makefile
 create mode 100644 drivers/staging/lustre/lustre/mdc/lproc_mdc.c
 create mode 100644 drivers/staging/lustre/lustre/mdc/mdc_internal.h
 create mode 100644 drivers/staging/lustre/lustre/mdc/mdc_lib.c
 create mode 100644 drivers/staging/lustre/lustre/mdc/mdc_locks.c
 create mode 100644 drivers/staging/lustre/lustre/mdc/mdc_reint.c
 create mode 100644 drivers/staging/lustre/lustre/mdc/mdc_request.c
 create mode 100644 drivers/staging/lustre/lustre/mgc/Makefile
 create mode 100644 drivers/staging/lustre/lustre/mgc/libmgc.c
 create mode 100644 drivers/staging/lustre/lustre/mgc/lproc_mgc.c
 create mode 100644 drivers/staging/lustre/lustre/mgc/mgc_internal.h
 create mode 100644 drivers/staging/lustre/lustre/mgc/mgc_request.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/Makefile
 create mode 100644 drivers/staging/lustre/lustre/obdclass/acl.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/capa.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/cl_internal.h
 create mode 100644 drivers/staging/lustre/lustre/obdclass/cl_io.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/cl_lock.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/cl_object.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/cl_page.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/class_obd.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/debug.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/dt_object.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/genops.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/idmap.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/linkea.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/linux/linux-obdo.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/linux/linux-sysctl.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_cat.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_internal.h
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_ioctl.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_lvfs.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_obd.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_osd.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_swab.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/llog_test.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/local_storage.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/local_storage.h
 create mode 100644 drivers/staging/lustre/lustre/obdclass/lprocfs_jobstats.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/lu_object.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/lu_ref.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/lu_ucred.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/lustre_handles.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/lustre_peer.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/md_attrs.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/md_local_object.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/mea.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/obd_config.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/obd_mount.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/obd_mount_server.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/obdo.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/statfs_pack.c
 create mode 100644 drivers/staging/lustre/lustre/obdclass/uuid.c
 create mode 100644 drivers/staging/lustre/lustre/obdecho/Makefile
 create mode 100644 drivers/staging/lustre/lustre/obdecho/echo.c
 create mode 100644 drivers/staging/lustre/lustre/obdecho/echo_client.c
 create mode 100644 drivers/staging/lustre/lustre/obdecho/echo_internal.h
 create mode 100644 drivers/staging/lustre/lustre/obdecho/lproc_echo.c
 create mode 100644 drivers/staging/lustre/lustre/osc/Makefile
 create mode 100644 drivers/staging/lustre/lustre/osc/lproc_osc.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_cache.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_cl_internal.h
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_dev.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_internal.h
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_io.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_lock.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_object.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_page.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_quota.c
 create mode 100644 drivers/staging/lustre/lustre/osc/osc_request.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/Makefile
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/client.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/connection.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/events.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/Makefile
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_api.h
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_asn1.h
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_bulk.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_cli_upcall.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_err.h
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_generic_token.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_internal.h
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_keyring.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_krb5.h
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_krb5_mech.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_mech_switch.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_pipefs.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_rawobj.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/gss_svc_upcall.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/lproc_gss.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/gss/sec_gss.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/import.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/layout.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/llog_client.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/llog_net.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/llog_server.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/lproc_ptlrpc.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/niobuf.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/nrs.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/nrs_crr.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/nrs_fifo.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/nrs_orr.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/pack_generic.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/pers.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/pinger.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/ptlrpc_internal.h
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/ptlrpcd.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/recover.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/sec.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/sec_bulk.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/sec_config.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/sec_gc.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/sec_lproc.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/sec_null.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/sec_plain.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/service.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/wirehdr.c
 create mode 100644 drivers/staging/lustre/lustre/ptlrpc/wiretest.c
Merging char-misc/char-misc-next (f722406 Linux 3.10-rc1)
$ git merge char-misc/char-misc-next
Already up-to-date.
Merging bcon/master (e284f34 netconsole: s/syslogd/cancd/ in documentation)
$ git merge 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 Documentation/networking/netconsole.txt
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master a9310e4] 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 tmem/linux-next
Already up-to-date.
Merging writeback/writeback-for-next (ed84825 Negative (setpoint-dirty) in bdi_position_ratio())
$ git merge 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 arm-dt/devicetree/arm-next
Already up-to-date.
Merging hwspinlock/linux-next (8b37fcf hwspinlock: add MAINTAINERS entries)
$ git merge hwspinlock/linux-next
Already up-to-date.
Merging pinctrl/for-next (e5182b8 Merge branch 'devel' into for-next)
$ git merge pinctrl/for-next
Auto-merging drivers/pinctrl/sirf/pinctrl-prima2.c
Merge made by the 'recursive' strategy.
 .../bindings/pinctrl/marvell,dove-pinctrl.txt      |  49 +-
 drivers/pinctrl/Makefile                           |   3 +-
 drivers/pinctrl/mvebu/pinctrl-dove.c               | 244 +++++-
 drivers/pinctrl/pinctrl-abx500.c                   |  30 +-
 drivers/pinctrl/pinctrl-at91.c                     |   7 +-
 drivers/pinctrl/pinctrl-coh901.c                   |   6 -
 drivers/pinctrl/pinctrl-exynos5440.c               |   5 -
 drivers/pinctrl/pinctrl-lantiq.c                   |   3 +-
 drivers/pinctrl/pinctrl-mxs.c                      |   2 -
 drivers/pinctrl/pinctrl-samsung.c                  |   5 -
 drivers/pinctrl/pinctrl-single.c                   |   3 +-
 drivers/pinctrl/pinctrl-u300.c                     |   1 -
 drivers/pinctrl/pinctrl-xway.c                     |   4 -
 drivers/pinctrl/sirf/Makefile                      |   5 +
 drivers/pinctrl/sirf/pinctrl-atlas6.c              | 947 ++++++++++++++++++++
 .../{pinctrl-sirf.c => sirf/pinctrl-prima2.c}      | 949 +--------------------
 drivers/pinctrl/sirf/pinctrl-sirf.c                | 873 +++++++++++++++++++
 drivers/pinctrl/sirf/pinctrl-sirf.h                | 116 +++
 drivers/pinctrl/spear/pinctrl-plgpio.c             |   7 +-
 drivers/pinctrl/vt8500/pinctrl-wm8750.c            |   2 +-
 drivers/pinctrl/vt8500/pinctrl-wmt.c               |   6 +-
 include/linux/pinctrl/pinconf-generic.h            |  12 +-
 22 files changed, 2235 insertions(+), 1044 deletions(-)
 create mode 100644 drivers/pinctrl/sirf/Makefile
 create mode 100644 drivers/pinctrl/sirf/pinctrl-atlas6.c
 rename drivers/pinctrl/{pinctrl-sirf.c => sirf/pinctrl-prima2.c} (50%)
 create mode 100644 drivers/pinctrl/sirf/pinctrl-sirf.c
 create mode 100644 drivers/pinctrl/sirf/pinctrl-sirf.h
Merging vhost/linux-next (0107b9b x86: uaccess s/might_sleep/might_fault/)
$ git merge vhost/linux-next
Resolved 'drivers/vhost/test.c' using previous resolution.
Auto-merging kernel/sched/core.c
Auto-merging include/linux/sched.h
Auto-merging drivers/vhost/test.c
CONFLICT (content): Merge conflict in drivers/vhost/test.c
Auto-merging arch/tile/include/asm/uaccess.h
Auto-merging arch/microblaze/include/asm/uaccess.h
Automatic merge failed; fix conflicts and then commit the result.
$ git commit -v -a
[master 6bb73f6] Merge remote-tracking branch 'vhost/linux-next'
$ git diff -M --stat --summary HEAD^..
 arch/arm64/include/asm/uaccess.h      |  4 ++--
 arch/frv/include/asm/uaccess.h        |  4 ++--
 arch/m32r/include/asm/uaccess.h       | 12 ++++++------
 arch/microblaze/include/asm/uaccess.h |  6 +++---
 arch/mn10300/include/asm/uaccess.h    |  4 ++--
 arch/powerpc/include/asm/uaccess.h    | 16 ++++++++--------
 arch/tile/include/asm/uaccess.h       |  2 +-
 arch/x86/include/asm/uaccess_64.h     |  2 +-
 drivers/vhost/test.c                  | 12 +++++++-----
 include/asm-generic/uaccess.h         | 10 +++++-----
 include/linux/sched.h                 |  1 +
 kernel/sched/core.c                   | 24 ++++++++++++++++++++++++
 12 files changed, 62 insertions(+), 35 deletions(-)
Merging memblock/memblock-kill-early_node_map (7bd0b0f memblock: Reimplement memblock allocation using reverse free area iterator)
$ git merge memblock/memblock-kill-early_node_map
Already up-to-date.
Merging remoteproc/for-next (b977785 remoteproc: fix kconfig dependencies for VIRTIO)
$ git merge remoteproc/for-next
Already up-to-date.
Merging rpmsg/for-next (397944d rpmsg: fix kconfig dependencies for VIRTIO)
$ git merge rpmsg/for-next
Already up-to-date.
Merging irqdomain/irqdomain/next (560aa53 irqdomain: document the simple domain first_irq)
$ git merge irqdomain/irqdomain/next
Auto-merging kernel/irq/irqdomain.c
Merge made by the 'recursive' strategy.
 kernel/irq/irqdomain.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
Merging gpio/gpio/next (08ffb22 gpio: grgpio: Add irq support)
$ git merge gpio/gpio/next
Already up-to-date.
Merging gpio-lw/for-next (352a2d5 gpio/omap: ensure gpio context is initialised)
$ git merge gpio-lw/for-next
Merge made by the 'recursive' strategy.
 drivers/gpio/gpio-omap.c | 48 +++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 45 insertions(+), 3 deletions(-)
Merging gen-gpio/for_next (f4c5405 gpio: update gpio Chinese documentation)
$ git merge gen-gpio/for_next
Already up-to-date.
Merging mailbox/dbx500-prcmu-mailbox (c497eba mailbox: fix invalid use of sizeof in mailbox_msg_send())
$ git merge mailbox/dbx500-prcmu-mailbox
Auto-merging drivers/remoteproc/Kconfig
Auto-merging drivers/mailbox/mailbox-omap2.c
Auto-merging drivers/mailbox/mailbox-omap1.c
Removing arch/arm/plat-omap/mailbox.c
Removing arch/arm/plat-omap/include/plat/mailbox.h
Auto-merging arch/arm/mach-omap2/omap_hwmod_44xx_data.c
Auto-merging arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
Auto-merging arch/arm/mach-omap2/omap_hwmod_2430_data.c
Auto-merging arch/arm/mach-omap2/omap_hwmod_2420_data.c
Auto-merging arch/arm/mach-omap2/devices.c
Auto-merging arch/arm/mach-omap2/Makefile
Auto-merging arch/arm/configs/omap1_defconfig
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/mailbox/dbx500-mailbox.txt |  27 +
 arch/arm/configs/omap1_defconfig                   |   3 +-
 arch/arm/mach-omap1/Makefile                       |   4 -
 arch/arm/mach-omap2/Makefile                       |   3 -
 arch/arm/mach-omap2/devices.c                      |  13 +-
 arch/arm/mach-omap2/omap_hwmod_2420_data.c         |  12 +
 arch/arm/mach-omap2/omap_hwmod_2430_data.c         |  11 +
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c         |  11 +
 arch/arm/mach-omap2/omap_hwmod_44xx_data.c         |  13 +
 arch/arm/plat-omap/Kconfig                         |  16 -
 arch/arm/plat-omap/Makefile                        |   3 -
 arch/arm/plat-omap/include/plat/mailbox.h          | 105 ----
 arch/arm/plat-omap/mailbox.c                       | 435 --------------
 drivers/cpufreq/highbank-cpufreq.c                 |   2 +-
 drivers/mailbox/Kconfig                            |  41 ++
 drivers/mailbox/Makefile                           |   5 +
 drivers/mailbox/mailbox-dbx500.c                   | 648 +++++++++++++++++++++
 .../mailbox.c => drivers/mailbox/mailbox-omap1.c   |  90 ++-
 .../mailbox.c => drivers/mailbox/mailbox-omap2.c   | 330 +++++------
 drivers/mailbox/mailbox.c                          | 552 ++++++++++++++++++
 drivers/mailbox/mailbox_internal.h                 |  70 +++
 drivers/mailbox/pl320-ipc.c                        |   2 +-
 drivers/remoteproc/Kconfig                         |   3 +-
 drivers/remoteproc/omap_remoteproc.c               |  36 +-
 drivers/staging/tidspbridge/Kconfig                |   3 +-
 drivers/staging/tidspbridge/core/_tiomap.h         |   2 +-
 drivers/staging/tidspbridge/core/chnl_sm.c         |   8 +-
 drivers/staging/tidspbridge/core/io_sm.c           |   5 +-
 drivers/staging/tidspbridge/core/tiomap3430.c      |   6 +-
 drivers/staging/tidspbridge/core/tiomap3430_pwr.c  |   6 +-
 drivers/staging/tidspbridge/core/tiomap_io.c       |   9 +-
 .../tidspbridge/include/dspbridge/host_os.h        |   2 +-
 include/linux/mailbox.h                            |  52 +-
 include/linux/pl320-ipc.h                          |  17 +
 include/linux/platform_data/mailbox-dbx500.h       |  12 +
 include/linux/platform_data/mailbox-omap.h         |  53 ++
 36 files changed, 1766 insertions(+), 844 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mailbox/dbx500-mailbox.txt
 delete mode 100644 arch/arm/plat-omap/include/plat/mailbox.h
 delete mode 100644 arch/arm/plat-omap/mailbox.c
 create mode 100644 drivers/mailbox/mailbox-dbx500.c
 rename arch/arm/mach-omap1/mailbox.c => drivers/mailbox/mailbox-omap1.c (64%)
 rename arch/arm/mach-omap2/mailbox.c => drivers/mailbox/mailbox-omap2.c (50%)
 create mode 100644 drivers/mailbox/mailbox.c
 create mode 100644 drivers/mailbox/mailbox_internal.h
 create mode 100644 include/linux/pl320-ipc.h
 create mode 100644 include/linux/platform_data/mailbox-dbx500.h
 create mode 100644 include/linux/platform_data/mailbox-omap.h
Merging arm-soc/for-next (a0cdbee Merge branch 'fixes' into for-next)
$ git merge arm-soc/for-next
Merge made by the 'recursive' strategy.
 arch/arm/arm-soc-for-next-contents.txt | 14 ++++++++++++++
 drivers/clk/tegra/clk-tegra20.c        | 11 ++++++++---
 2 files changed, 22 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/arm-soc-for-next-contents.txt
Merging bcm2835/for-next (31880c3 Linux 3.9-rc6)
$ git merge bcm2835/for-next
Already up-to-date.
Merging cortex/for-next (4477ca4 ARM: ARMv7-M: Allow the building of new kernel port)
$ git merge cortex/for-next
Auto-merging arch/arm/mm/Makefile
Auto-merging arch/arm/mm/Kconfig
Auto-merging arch/arm/kernel/traps.c
Auto-merging arch/arm/kernel/setup.c
Auto-merging arch/arm/kernel/entry-header.S
Auto-merging arch/arm/kernel/entry-common.S
Auto-merging arch/arm/include/asm/glue-cache.h
Auto-merging arch/arm/Makefile
Auto-merging arch/arm/Kconfig
Merge made by the 'recursive' strategy.
 arch/arm/Kconfig                   |   4 +-
 arch/arm/Kconfig-nommu             |   2 +-
 arch/arm/Makefile                  |   1 +
 arch/arm/include/asm/assembler.h   |  17 +++-
 arch/arm/include/asm/cputype.h     |  12 ++-
 arch/arm/include/asm/glue-cache.h  |  27 +++++++
 arch/arm/include/asm/glue-df.h     |   8 ++
 arch/arm/include/asm/glue-proc.h   |   9 +++
 arch/arm/include/asm/irqflags.h    |  22 ++++--
 arch/arm/include/asm/ptrace.h      |   4 +
 arch/arm/include/asm/system_info.h |   1 +
 arch/arm/include/asm/v7m.h         |  44 +++++++++++
 arch/arm/include/uapi/asm/ptrace.h |  35 +++++++--
 arch/arm/kernel/Makefile           |   8 +-
 arch/arm/kernel/entry-common.S     |   4 +
 arch/arm/kernel/entry-header.S     | 124 +++++++++++++++++++++++++++++
 arch/arm/kernel/entry-v7m.S        | 143 +++++++++++++++++++++++++++++++++
 arch/arm/kernel/head-nommu.S       |  10 ++-
 arch/arm/kernel/setup.c            |  17 +++-
 arch/arm/kernel/traps.c            |   8 ++
 arch/arm/mm/Kconfig                |  21 ++++-
 arch/arm/mm/Makefile               |   2 +
 arch/arm/mm/cache-nop.S            |  50 ++++++++++++
 arch/arm/mm/nommu.c                |   7 ++
 arch/arm/mm/proc-v7m.S             | 157 +++++++++++++++++++++++++++++++++++++
 25 files changed, 711 insertions(+), 26 deletions(-)
 create mode 100644 arch/arm/include/asm/v7m.h
 create mode 100644 arch/arm/kernel/entry-v7m.S
 create mode 100644 arch/arm/mm/cache-nop.S
 create mode 100644 arch/arm/mm/proc-v7m.S
Merging ep93xx/ep93xx-for-next (7ec4429 Merge branch 'ep93xx-fixes' into ep93xx-for-next)
$ git merge ep93xx/ep93xx-for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging imx-mxs/for-next (4a09469 Merge branch 'mxs/dt' into for-next)
$ git merge imx-mxs/for-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/clock/imx6sl-clock.txt     |  10 +
 arch/arm/Kconfig.debug                             |  13 +-
 arch/arm/boot/dts/Makefile                         |   4 +-
 arch/arm/boot/dts/imx27-phytec-phycore.dts         | 109 +++
 arch/arm/boot/dts/imx27.dtsi                       |  11 +
 arch/arm/boot/dts/imx28-cfa10036.dts               |  15 +-
 arch/arm/boot/dts/imx28-cfa10049.dts               |   4 +-
 arch/arm/boot/dts/imx28-m28evk.dts                 |  14 +-
 arch/arm/boot/dts/imx28.dtsi                       |  33 +
 arch/arm/boot/dts/imx51.dtsi                       |  23 +
 arch/arm/boot/dts/imx53-m53evk.dts                 | 259 +++++++
 arch/arm/boot/dts/imx53-qsb.dts                    |   9 +
 arch/arm/boot/dts/imx53-tx53.dtsi                  | 122 ++++
 arch/arm/boot/dts/imx53.dtsi                       | 211 +++++-
 arch/arm/boot/dts/imx6dl-sabreauto.dts             |   1 +
 arch/arm/boot/dts/imx6dl.dtsi                      |  34 +
 arch/arm/boot/dts/imx6q-sabreauto.dts              |   1 +
 arch/arm/boot/dts/imx6q.dtsi                       |   2 -
 arch/arm/boot/dts/imx6qdl-sabreauto.dtsi           |  22 +
 arch/arm/boot/dts/imx6qdl.dtsi                     |   9 +-
 arch/arm/boot/dts/imx6sl-evk.dts                   |  74 ++
 arch/arm/boot/dts/imx6sl.dtsi                      | 779 +++++++++++++++++++++
 arch/arm/include/debug/imx-uart.h                  |  10 +
 arch/arm/mach-imx/Kconfig                          |  19 +
 arch/arm/mach-imx/Makefile                         |   1 +
 arch/arm/mach-imx/clk-imx51-imx53.c                |  46 +-
 arch/arm/mach-imx/clk-imx6q.c                      |  20 +-
 arch/arm/mach-imx/clk-imx6sl.c                     | 270 +++++++
 arch/arm/mach-imx/clk.c                            |  35 +
 arch/arm/mach-imx/clk.h                            |   3 +
 arch/arm/mach-imx/common.h                         |   2 +
 arch/arm/mach-imx/hardware.h                       |   1 +
 arch/arm/mach-imx/headsmp.S                        |  12 +
 arch/arm/mach-imx/imx25-dt.c                       |   2 +
 arch/arm/mach-imx/imx27-dt.c                       |   2 +
 arch/arm/mach-imx/imx31-dt.c                       |   2 +
 arch/arm/mach-imx/imx51-dt.c                       |   2 +
 arch/arm/mach-imx/mach-imx53.c                     |  17 +-
 arch/arm/mach-imx/mach-imx6q.c                     |  36 +-
 arch/arm/mach-imx/mach-imx6sl.c                    |  51 ++
 arch/arm/mach-imx/mm-imx1.c                        |   2 +-
 arch/arm/mach-imx/mm-imx21.c                       |   2 +-
 arch/arm/mach-imx/mm-imx25.c                       |   2 +-
 arch/arm/mach-imx/mm-imx27.c                       |   2 +-
 arch/arm/mach-imx/mm-imx3.c                        |   4 +-
 arch/arm/mach-imx/mm-imx5.c                        |   3 +-
 arch/arm/mach-imx/platsmp.c                        |  14 +
 arch/arm/mach-imx/system.c                         |  47 +-
 include/dt-bindings/clock/imx6sl-clock.h           | 148 ++++
 49 files changed, 2412 insertions(+), 102 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/imx6sl-clock.txt
 create mode 100644 arch/arm/boot/dts/imx53-m53evk.dts
 create mode 100644 arch/arm/boot/dts/imx53-tx53.dtsi
 create mode 100644 arch/arm/boot/dts/imx6sl-evk.dts
 create mode 100644 arch/arm/boot/dts/imx6sl.dtsi
 create mode 100644 arch/arm/mach-imx/clk-imx6sl.c
 create mode 100644 arch/arm/mach-imx/mach-imx6sl.c
 create mode 100644 include/dt-bindings/clock/imx6sl-clock.h
Merging ixp4xx/next (19f949f Linux 3.8)
$ git merge ixp4xx/next
Already up-to-date.
Merging msm/for-next (1df357a Merge branch 'msm-defconfig' into for-next)
$ git merge msm/for-next
Already up-to-date!
Merge made by the 'recursive' strategy.
Merging mvebu/for-next (2edd102 Merge branch 'mvebu/dt' into for-next)
$ git merge mvebu/for-next
Auto-merging arch/arm/boot/dts/Makefile
Merge made by the 'recursive' strategy.
 arch/arm/boot/dts/Makefile                         |  2 +
 arch/arm/boot/dts/armada-370-db.dts                |  1 +
 arch/arm/boot/dts/armada-370-mirabox.dts           |  1 +
 arch/arm/boot/dts/armada-370-rd.dts                |  1 +
 arch/arm/boot/dts/armada-370-xp.dtsi               |  4 +
 arch/arm/boot/dts/armada-370.dtsi                  |  2 +-
 arch/arm/boot/dts/armada-xp-db.dts                 |  1 +
 arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts   |  3 +
 arch/arm/boot/dts/armada-xp.dtsi                   |  2 +-
 arch/arm/boot/dts/dove-cubox.dts                   | 51 +++++++++++-
 arch/arm/boot/dts/kirkwood-dreamplug.dts           |  1 +
 .../arm/boot/dts/kirkwood-guruplug-server-plus.dts |  2 +
 arch/arm/boot/dts/kirkwood-mplcec4.dts             |  2 +-
 arch/arm/boot/dts/kirkwood-sheevaplug-common.dtsi  | 97 ++++++++++++++++++++++
 arch/arm/boot/dts/kirkwood-sheevaplug-esata.dts    | 40 +++++++++
 arch/arm/boot/dts/kirkwood-sheevaplug.dts          | 45 ++++++++++
 arch/arm/boot/dts/kirkwood-topkick.dts             |  1 +
 arch/arm/boot/dts/kirkwood.dtsi                    |  4 +
 arch/arm/configs/kirkwood_defconfig                |  5 +-
 arch/arm/configs/mvebu_defconfig                   |  1 +
 arch/arm/mach-kirkwood/Kconfig                     |  7 ++
 arch/arm/mach-kirkwood/Makefile                    |  1 +
 arch/arm/mach-kirkwood/board-dt.c                  |  4 +
 arch/arm/mach-kirkwood/board-sheevaplug.c          | 27 ++++++
 arch/arm/mach-kirkwood/common.c                    |  6 --
 arch/arm/mach-kirkwood/common.h                    |  5 ++
 arch/arm/mach-kirkwood/ts219-setup.c               |  2 +-
 arch/arm/mach-mvebu/armada-370-xp.c                |  7 --
 arch/arm/mach-orion5x/common.c                     |  7 --
 arch/arm/plat-orion/include/plat/common.h          |  1 +
 30 files changed, 305 insertions(+), 28 deletions(-)
 create mode 100644 arch/arm/boot/dts/kirkwood-sheevaplug-common.dtsi
 create mode 100644 arch/arm/boot/dts/kirkwood-sheevaplug-esata.dts
 create mode 100644 arch/arm/boot/dts/kirkwood-sheevaplug.dts
 create mode 100644 arch/arm/mach-kirkwood/board-sheevaplug.c
Merging renesas/next (c482a65 Merge branch 'heads/soc-sh73a0' into next)
$ git merge renesas/next
Recorded preimage for 'arch/arm/mach-shmobile/board-lager.c'
Resolved 'arch/arm/mach-shmobile/board-armadillo800eva.c' using previous resolution.
Resolved 'arch/arm/mach-shmobile/board-bockw.c' using previous resolution.
Resolved 'arch/arm/mach-shmobile/setup-r8a7740.c' using previous resolution.
Resolved 'drivers/leds/Kconfig' using previous resolution.
Resolved 'drivers/pinctrl/sh-pfc/Kconfig' using previous resolution.
Removing include/linux/platform_data/leds-renesas-tpu.h
Auto-merging drivers/pwm/Kconfig
Auto-merging drivers/pinctrl/sh-pfc/Kconfig
CONFLICT (content): Merge conflict in drivers/pinctrl/sh-pfc/Kconfig
CONFLICT (modify/delete): drivers/leds/leds-renesas-tpu.c deleted in renesas/next and modified in HEAD. Version HEAD of drivers/leds/leds-renesas-tpu.c left in tree.
Auto-merging drivers/leds/Makefile
Auto-merging drivers/leds/Kconfig
CONFLICT (content): Merge conflict in drivers/leds/Kconfig
Auto-merging arch/arm/mach-shmobile/setup-sh73a0.c
Auto-merging arch/arm/mach-shmobile/setup-sh7372.c
Auto-merging arch/arm/mach-shmobile/setup-r8a7740.c
CONFLICT (content): Merge conflict in arch/arm/mach-shmobile/setup-r8a7740.c
Auto-merging arch/arm/mach-shmobile/setup-emev2.c
Auto-merging arch/arm/mach-shmobile/board-mackerel.c
Auto-merging arch/arm/mach-shmobile/board-lager.c
CONFLICT (content): Merge conflict in arch/arm/mach-shmobile/board-lager.c
Auto-merging arch/arm/mach-shmobile/board-kzm9g.c
Auto-merging arch/arm/mach-shmobile/board-kzm9d.c
Auto-merging arch/arm/mach-shmobile/board-bockw.c
CONFLICT (content): Merge conflict in arch/arm/mach-shmobile/board-bockw.c
Auto-merging arch/arm/mach-shmobile/board-armadillo800eva.c
CONFLICT (content): Merge conflict in arch/arm/mach-shmobile/board-armadillo800eva.c
Auto-merging arch/arm/mach-shmobile/Kconfig
Auto-merging arch/arm/boot/dts/Makefile
Automatic merge failed; fix conflicts and then commit the result.
$ git rm -f drivers/leds/leds-renesas-tpu.c
drivers/leds/leds-renesas-tpu.c: needs merge
rm 'drivers/leds/leds-renesas-tpu.c'
$ git commit -v -a
Recorded resolution for 'arch/arm/mach-shmobile/board-lager.c'.
[master 290d6f7] Merge remote-tracking branch 'renesas/next'
$ git diff -M --stat --summary HEAD^..
 .../interrupt-controller/renesas,intc-irqpin.txt   |   13 +
 .../devicetree/bindings/timer/renesas,timer.txt    |   45 +
 arch/arm/boot/dts/Makefile                         |    1 +
 .../boot/dts/r8a7740-armadillo800eva-reference.dts |   45 +
 arch/arm/boot/dts/r8a7740.dtsi                     |  117 +
 arch/arm/boot/dts/r8a7779.dtsi                     |   17 +
 arch/arm/boot/dts/sh73a0-kzm9g-reference.dts       |   86 +
 arch/arm/boot/dts/sh73a0.dtsi                      |   11 +
 arch/arm/configs/armadillo800eva_defconfig         |    2 +-
 arch/arm/configs/bockw_defconfig                   |   16 +-
 arch/arm/configs/kzm9g_defconfig                   |    3 +
 arch/arm/mach-shmobile/Kconfig                     |   19 +-
 arch/arm/mach-shmobile/Makefile                    |    3 +-
 arch/arm/mach-shmobile/board-ap4evb.c              |  132 +-
 arch/arm/mach-shmobile/board-ape6evm.c             |   17 +-
 .../board-armadillo800eva-reference.c              |  213 ++
 arch/arm/mach-shmobile/board-armadillo800eva.c     |  168 +-
 arch/arm/mach-shmobile/board-bockw.c               |   80 +-
 arch/arm/mach-shmobile/board-bonito.c              |   47 +-
 arch/arm/mach-shmobile/board-kota2.c               |  178 +-
 arch/arm/mach-shmobile/board-kzm9d.c               |    2 +-
 arch/arm/mach-shmobile/board-kzm9g-reference.c     |    3 -
 arch/arm/mach-shmobile/board-kzm9g.c               |  196 +-
 arch/arm/mach-shmobile/board-lager.c               |   44 +-
 arch/arm/mach-shmobile/board-mackerel.c            |  171 +-
 arch/arm/mach-shmobile/board-marzen.c              |   12 +-
 arch/arm/mach-shmobile/clock-r8a73a4.c             |  375 ++-
 arch/arm/mach-shmobile/clock-r8a7740.c             |   12 +-
 arch/arm/mach-shmobile/clock-r8a7778.c             |  156 +-
 arch/arm/mach-shmobile/clock-r8a7779.c             |    4 +-
 arch/arm/mach-shmobile/clock-r8a7790.c             |  238 +-
 arch/arm/mach-shmobile/clock-sh73a0.c              |  106 +-
 arch/arm/mach-shmobile/cpuidle-r8a7740.c           |   62 +
 arch/arm/mach-shmobile/include/mach/clock.h        |    8 +-
 arch/arm/mach-shmobile/include/mach/irqs.h         |    5 +
 arch/arm/mach-shmobile/include/mach/r8a7740.h      |  495 +--
 arch/arm/mach-shmobile/include/mach/r8a7778.h      |    3 +
 arch/arm/mach-shmobile/include/mach/sh7372.h       |  391 ---
 arch/arm/mach-shmobile/include/mach/sh73a0.h       |  373 +--
 arch/arm/mach-shmobile/intc-r8a7740.c              |   24 +-
 arch/arm/mach-shmobile/pm-r8a7740.c                |  165 +-
 arch/arm/mach-shmobile/setup-emev2.c               |    2 -
 arch/arm/mach-shmobile/setup-r8a73a4.c             |    2 -
 arch/arm/mach-shmobile/setup-r8a7740.c             |   77 +-
 arch/arm/mach-shmobile/setup-r8a7778.c             |   99 +-
 arch/arm/mach-shmobile/setup-r8a7779.c             |   19 +-
 arch/arm/mach-shmobile/setup-r8a7790.c             |   37 +-
 arch/arm/mach-shmobile/setup-sh7372.c              |   24 +-
 arch/arm/mach-shmobile/setup-sh73a0.c              |  143 +-
 arch/arm/mach-shmobile/sleep-r8a7740.S             |   57 +
 drivers/clocksource/sh_cmt.c                       |  108 +-
 drivers/clocksource/sh_tmu.c                       |   96 +-
 drivers/gpio/gpio-rcar.c                           |    2 +-
 drivers/irqchip/irq-renesas-intc-irqpin.c          |    4 +
 drivers/irqchip/irq-renesas-irqc.c                 |   12 +-
 drivers/leds/Kconfig                               |   12 -
 drivers/leds/Makefile                              |    1 -
 drivers/leds/leds-renesas-tpu.c                    |  337 --
 drivers/pinctrl/sh-pfc/Kconfig                     |   13 +-
 drivers/pinctrl/sh-pfc/Makefile                    |    2 +
 drivers/pinctrl/sh-pfc/core.c                      |   22 +-
 drivers/pinctrl/sh-pfc/core.h                      |    4 +
 drivers/pinctrl/sh-pfc/pfc-r8a7740.c               | 1923 +++++++----
 drivers/pinctrl/sh-pfc/pfc-r8a7778.c               | 2630 +++++++++++++++
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c               |  485 ++-
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c               | 3543 ++++++++++++++++++++
 drivers/pinctrl/sh-pfc/pfc-sh7372.c                | 1652 ++++++---
 drivers/pinctrl/sh-pfc/pfc-sh73a0.c                |  742 ++--
 drivers/pinctrl/sh-pfc/sh_pfc.h                    |    4 +-
 drivers/pwm/Kconfig                                |    7 +
 drivers/pwm/Makefile                               |    1 +
 drivers/pwm/pwm-renesas-tpu.c                      |  462 +++
 include/linux/irqchip.h                            |    4 +
 include/linux/platform_data/gpio-rcar.h            |    4 +-
 include/linux/platform_data/leds-renesas-tpu.h     |   14 -
 include/linux/platform_data/pwm-renesas-tpu.h      |   18 +
 76 files changed, 12753 insertions(+), 3867 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
 create mode 100644 Documentation/devicetree/bindings/timer/renesas,timer.txt
 create mode 100644 arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts
 create mode 100644 arch/arm/mach-shmobile/board-armadillo800eva-reference.c
 create mode 100644 arch/arm/mach-shmobile/cpuidle-r8a7740.c
 create mode 100644 arch/arm/mach-shmobile/sleep-r8a7740.S
 delete mode 100644 drivers/leds/leds-renesas-tpu.c
 create mode 100644 drivers/pinctrl/sh-pfc/pfc-r8a7778.c
 create mode 100644 drivers/pinctrl/sh-pfc/pfc-r8a7790.c
 create mode 100644 drivers/pwm/pwm-renesas-tpu.c
 delete mode 100644 include/linux/platform_data/leds-renesas-tpu.h
 create mode 100644 include/linux/platform_data/pwm-renesas-tpu.h
Merging samsung/for-next (f722406 Linux 3.10-rc1)
$ git merge samsung/for-next
Already up-to-date.
Merging tegra/for-next (c1be5a5 Linux 3.9)
$ git merge tegra/for-next
Already up-to-date.
Merging dma-mapping/dma-mapping-next (c1be5a5 Linux 3.9)
$ git merge dma-mapping/dma-mapping-next
Already up-to-date.
Merging pwm/for-next (affb923 pwm: lpc32xx: Don't change PWM_ENABLE bit in lpc32xx_pwm_config)
$ git merge pwm/for-next
Already up-to-date.
Merging dma-buf/for-next (b89e356 dma-buf: Add debugfs support)
$ git merge dma-buf/for-next
Already up-to-date.
Merging userns/for-next (78008c4 proc: Restrict mounting the proc filesystem)
$ git merge 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 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 signal/for-next
Already up-to-date.
Merging clk/clk-next (fa079b9 clk: sun5i: Add compatibles for Allwinner A13)
$ git merge clk/clk-next
Merge made by the 'recursive' strategy.
 .../devicetree/bindings/clock/silabs,si5351.txt    |   5 +
 Documentation/devicetree/bindings/clock/sunxi.txt  | 117 +--------
 .../bindings/clock/sunxi/sun4i-a10-gates.txt       |  93 +++++++
 .../bindings/clock/sunxi/sun5i-a13-gates.txt       |  58 +++++
 arch/powerpc/platforms/Kconfig.cputype             |   1 +
 drivers/clk/Kconfig                                |   7 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/clk-ppc-corenet.c                      | 280 +++++++++++++++++++++
 drivers/clk/clk-si5351.c                           |  74 +++++-
 drivers/clk/clk-si5351.h                           |   1 +
 drivers/clk/clk.c                                  |  70 +++---
 drivers/clk/sunxi/clk-sunxi.c                      |  31 ++-
 drivers/clk/ux500/abx500-clk.c                     |   8 +-
 include/linux/platform_data/si5351.h               |  18 ++
 14 files changed, 606 insertions(+), 158 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/sunxi/sun4i-a10-gates.txt
 create mode 100644 Documentation/devicetree/bindings/clock/sunxi/sun5i-a13-gates.txt
 create mode 100644 drivers/clk/clk-ppc-corenet.c
Merging random/dev (b980955 random: fix locking dependency with the tasklist_lock)
$ git merge 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 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 scsi-post-merge/merge-base:master (65112dc Merge git://git.samba.org/sfrench/cifs-2.6)
Merging akpm-current/current (e0fd9af Merge tag 'rdma-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband)
$ git merge akpm-current/current
Already up-to-date.
$ git clone -s -l -n -q . ../rebase-tmp
$ cd ../rebase-tmp
$ git checkout -b akpm remotes/origin/akpm/master
Switched to a new branch 'akpm'
$ git rebase --onto master remotes/origin/akpm/master-base
First, rewinding head to replay your work on top of it...
Applying: drivers/block/xsysace.c: fix id with missing port-number
Applying: rapidio: make enumeration/discovery configurable
Applying: rapidio: add enumeration/discovery start from user space
Applying: rapidio: documentation update for enumeration changes
Applying: fat: fix possible overflow for fat_clusters
Applying: wait: fix false timeouts when using wait_event_timeout()
Applying: mm: mmu_notifier: re-fix freed page still mapped in secondary MMU
Applying: mm-mmu_notifier-re-fix-freed-page-still-mapped-in-secondary-mmu-fix
Applying: ocfs2: unlock rw lock if inode lock failed
Applying: drivers/video: implement a simple framebuffer driver
Applying: mm: memcg: remove incorrect VM_BUG_ON for swap cache pages in uncharge
Applying: hfs: avoid crash in hfs_bnode_create
Applying: CPU hotplug: provide a generic helper to disable/enable CPU hotplug
Applying: cpu-hotplug-provide-a-generic-helper-to-disable-enable-cpu-hotplug-fix
Applying: cpu-hotplug-provide-a-generic-helper-to-disable-enable-cpu-hotplug-fix-fix
Applying: reboot: rigrate shutdown/reboot to boot cpu
Applying: shm-fix-null-pointer-deref-when-userspace-specifies-invalid-hugepage-size-fix
Applying: rapidio/tsi721: fix bug in MSI interrupt handling
Applying: mm compaction: fix of improper cache flush in migration code
Applying: kernel/audit_tree.c:audit_add_tree_rule(): protect `rule' from kill_rules()
Applying: ipcsem-fix-semctl-getzcnt-fix
Applying: ipcsem-fix-semctl-getncnt-fix
Applying: MAINTAINERS: update Hyper-V file list
Applying: kmsg: honor dmesg_restrict sysctl on /dev/kmsg
Applying: kmsg-honor-dmesg_restrict-sysctl-on-dev-kmsg-fix
Applying: drivers/char/random.c: fix priming of last_data
Applying: random: fix accounting race condition with lockless irq entropy_count update
Applying: sound/soc/codecs/si476x.c: don't use 0bNNN
Applying: x86: make 'mem=' option to work for efi platform
Applying: audit: fix mq_open and mq_unlink to add the MQ root as a hidden parent audit_names record
Applying: drm/fb-helper: don't sleep for screen unblank when an oops is in progress
Applying: cyber2000fb: avoid palette corruption at higher clocks
Applying: posix_cpu_timer: consolidate expiry time type
Applying: posix_cpu_timers: consolidate timer list cleanups
Applying: posix_cpu_timers: consolidate expired timers check
Applying: selftests: add basic posix timers selftests
Applying: posix-timers: correctly get dying task time sample in posix_cpu_timer_schedule()
Applying: posix_timers: Fix racy timer delta caching on task exit
Applying: drivers/infiniband/core/cm.c: convert to using idr_alloc_cyclic()
Applying: configfs: use capped length for ->store_attribute()
Applying: ipvs: change type of netns_ipvs->sysctl_sync_qlen_max
Applying: lockdep: introduce lock_acquire_exclusive/shared helper macros
Applying: lglock: update lockdep annotations to report recursive local locks
Applying: block: restore /proc/partitions to not display non-partitionable removable devices
Applying: watchdog: trigger all-cpu backtrace when locked up and going to panic
Applying: clear_refs: sanitize accepted commands declaration
Applying: clear_refs: introduce private struct for mm_walk
Applying: pagemap: introduce pagemap_entry_t without pmshift bits
Applying: pagemap-introduce-pagemap_entry_t-without-pmshift-bits-v4
Applying: mm: soft-dirty bits for user memory changes tracking
Applying: pagemap: prepare to reuse constant bits with page-shift
Applying: mm/thp: use the correct function when updating access flags
Applying: mm, memcg: don't take task_lock in task_in_mem_cgroup
Applying: mm: remove free_area_cache
Applying: mm: remove compressed copy from zram in-memory
Applying: mm-remove-compressed-copy-from-zram-in-memory-fix
Applying: mm/page_alloc.c: fix watermark check in __zone_watermark_ok()
Applying: include/linux/mmzone.h: cleanups
Applying: include-linux-mmzoneh-cleanups-fix
Applying: mm: memmap_init_zone() performance improvement
Applying: drop_caches: add some documentation and info message
Applying: drivers/usb/gadget/amd5536udc.c: avoid calling dma_pool_create() with NULL dev
Applying: mm/dmapool.c: fix null dev in dma_pool_create()
Applying: memcg: debugging facility to access dangling memcgs
Applying: memcg-debugging-facility-to-access-dangling-memcgs-fix
Applying: mm: add vm event counters for balloon pages compaction
Applying: err.h: IS_ERR() can accept __user pointers
Applying: dump_stack: serialize the output from dump_stack()
Applying: dump_stack-serialize-the-output-from-dump_stack-fix
Applying: panic: add cpu/pid to warn_slowpath_common in WARNING printk()s
Applying: panic-add-cpu-pid-to-warn_slowpath_common-in-warning-printks-fix
Applying: smp: Give WARN()ing when calling smp_call_function_many()/single() in serving irq
Applying: backlight: atmel-pwm-bl: remove unnecessary platform_set_drvdata()
Applying: backlight: ep93xx: remove unnecessary platform_set_drvdata()
Applying: backlight: lp8788: remove unnecessary platform_set_drvdata()
Applying: backlight: pcf50633: remove unnecessary platform_set_drvdata()
Applying: drivers/leds/leds-ot200.c: fix error caused by shifted mask
Applying: lib/bitmap.c: speed up bitmap_find_free_region
Applying: lib-bitmapc-speed-up-bitmap_find_free_region-fix
Applying: binfmt_elf.c: use get_random_int() to fix entropy depleting
Applying: init: remove permanent string buffer from do_one_initcall()
Applying: autofs4: allow autofs to work outside the initial PID namespace
Applying: autofs4: translate pids to the right namespace for the daemon
Applying: rtc: rtc-88pm80x: remove unnecessary platform_set_drvdata()
Applying: drivers/rtc/rtc-v3020.c: remove redundant goto
Applying: drivers/rtc/interface.c: fix checkpatch errors
Applying: drivers/rtc/rtc-at32ap700x.c: fix checkpatch error
Applying: drivers/rtc/rtc-at91rm9200.c: include <linux/uaccess.h>
Applying: drivers/rtc/rtc-cmos.c: fix whitespace related errors
Applying: drivers/rtc/rtc-davinci.c: fix whitespace warning
Applying: drivers/rtc/rtc-ds1305.c: add missing braces around sizeof
Applying: drivers/rtc/rtc-ds1374.c: fix spacing related issues
Applying: drivers/rtc/rtc-ds1511.c: fix issues related to spaces and braces
Applying: drivers/rtc/rtc-ds3234.c: fix whitespace issue
Applying: drivers/rtc/rtc-fm3130.c: fix whitespace related issue
Applying: drivers/rtc/rtc-m41t80.c: fix spacing related issue
Applying: drivers/rtc/rtc-max6902.c: remove unwanted spaces
Applying: drivers/rtc/rtc-max77686.c: remove space before semicolon
Applying: drivers/rtc/rtc-max8997.c: remove space before semicolon
Applying: drivers/rtc/rtc-mpc5121.c: remove space before tab
Applying: drivers/rtc/rtc-msm6242.c: use pr_warn
Applying: drivers/rtc/rtc-mxc.c: fix checkpatch error
Applying: drivers/rtc/rtc-omap.c: include <linux/io.h> instead of <asm/io.h>
Applying: drivers/rtc/rtc-pcf2123.c: remove space before tabs
Applying: drivers/rtc/rtc-pcf8583.c: move assignment outside if condition
Applying: drivers/rtc/rtc-rs5c313.c: include <linux/io.h> instead of <asm/io.h>
Applying: drivers/rtc/rtc-rs5c313.c: fix spacing related issues
Applying: drivers/rtc/rtc-v3020.c: fix spacing issues
Applying: drivers/rtc/rtc-vr41xx.c: fix spacing issues
Applying: drivers/rtc/rtc-x1205.c: fix checkpatch issues
Applying: rtc: rtc-88pm860x: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-ab3100: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-ab8500: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-at32ap700x: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-at91rm9200: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-at91sam9: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-au1xxx: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-bfin: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-bq4802: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-coh901331: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-da9052: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-da9055: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-davinci: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-dm355evm: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-ds1302: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-ep93xx: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-jz4740: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-lp8788: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-lpc32xx: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-ls1x: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-m48t59: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-max8925: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-max8998: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-mc13xxx: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-msm6242: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-mxc: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-nuc900: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-pcap: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-pm8xxx: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-s3c: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-sa1100: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-sh: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-spear: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-stmp3xxx: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-twl: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-vr41xx: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-vt8500: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-m48t86: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-puv3: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-rp5c01: remove unnecessary platform_set_drvdata()
Applying: rtc: rtc-tile: remove unnecessary platform_set_drvdata()
Applying: reiserfs: fix deadlock with nfs racing on create/lookup
Applying: fat: additions to support fat_fallocate
Applying: fat-additions-to-support-fat_fallocate-fix
Applying: idr: print a stack dump after ida_remove warning
Applying: idr-print-a-stack-dump-after-ida_remove-warning-fix
Applying: mwave: fix info leak in mwave_ioctl()
Applying: rapidio/switches: remove tsi500 driver
Applying: drivers/parport/share.c: use kzalloc
Applying: drivers/w1/slaves/w1_ds2408.c: add magic sequence to disable P0 test mode
Applying: drivers-w1-slaves-w1_ds2408c-add-magic-sequence-to-disable-p0-test-mode-fix
Applying: relay: fix timer madness
Applying: aio: reqs_active -> reqs_available
Applying: aio: percpu reqs_available
Applying: generic dynamic per cpu refcounting
Applying: aio: percpu ioctx refcount
Applying: aio: use xchg() instead of completion_lock
Applying: block: prep work for batch completion
Applying: block-prep-work-for-batch-completion-fix-2
Applying: block-prep-work-for-batch-completion-fix-3
Applying: block-prep-work-for-batch-completion-fix-3-fix
Applying: block-prep-work-for-batch-completion-fix-99
Applying: block-aio-batch-completion-for-bios-kiocbs-fix
Applying: block, aio: batch completion for bios/kiocbs
Applying: virtio-blk: convert to batch completion
Applying: mtip32xx: convert to batch completion
Applying: aio: fix kioctx not being freed after cancellation at exit time
Applying: lib: add weak clz/ctz functions
Applying: decompressor: add LZ4 decompressor module
Applying: lib: add support for LZ4-compressed kernel
Applying: kbuild: fix for updated LZ4 tool with the new streaming format
Applying: arm: add support for LZ4-compressed kernel
Applying: arm: Remove enforced Os flag for LZ4 decompressor
Applying: x86: add support for LZ4-compressed kernel
Applying: x86, doc: Add LZ4 magic number for the new compression
Applying: lib: add lz4 compressor module
Applying: lib-add-lz4-compressor-module-fix
Applying: crypto: add lz4 Cryptographic API
Applying: crypto-add-lz4-cryptographic-api-fix
Applying: scripts/sortextable.c: fix building on non-Linux systems
Applying: seccomp: add generic code for jitted seccomp filters.
Applying: ARM: net: bpf_jit: make code generation less dependent on struct sk_filter.
Applying: ARM: bpf_jit: seccomp filtering: fixup merge conflict
Applying: ARM: net: bpf_jit: add support for jitted seccomp filters.
Applying: bpf: add comments explaining the schedule_work() operation
$ cd ../next
$ git fetch -f ../rebase-tmp akpm:akpm/master
From ../rebase-tmp
 + d04ea1c...8c9a4aa akpm       -> akpm/master  (forced update)
$ rm -rf ../rebase-tmp
Merging akpm/master (8c9a4aa bpf: add comments explaining the schedule_work() operation)
$ git merge --no-ff akpm/master
Removing drivers/rapidio/switches/tsi500.c
Merge made by the 'recursive' strategy.
 Documentation/cgroups/memory.txt                   |  16 +
 .../bindings/video/simple-framebuffer.txt          |  25 +
 Documentation/filesystems/proc.txt                 |   7 +-
 Documentation/rapidio/rapidio.txt                  | 128 ++++-
 Documentation/rapidio/sysfs.txt                    |  17 +
 Documentation/sysctl/vm.txt                        |  33 +-
 Documentation/vm/pagemap.txt                       |   3 +-
 Documentation/vm/soft-dirty.txt                    |  36 ++
 Documentation/x86/boot.txt                         |   7 +-
 MAINTAINERS                                        |   9 +-
 arch/Kconfig                                       |  17 +
 arch/arm/Kconfig                                   |   2 +
 arch/arm/boot/compressed/.gitignore                |   1 +
 arch/arm/boot/compressed/Makefile                  |   3 +-
 arch/arm/boot/compressed/decompress.c              |   4 +
 arch/arm/boot/compressed/piggy.lz4.S               |   6 +
 arch/arm/mm/mmap.c                                 |   2 -
 arch/arm/net/bpf_jit_32.c                          |  93 +++-
 arch/arm64/mm/mmap.c                               |   2 -
 arch/mips/mm/mmap.c                                |   2 -
 arch/powerpc/mm/mmap_64.c                          |   2 -
 arch/powerpc/net/bpf_jit_comp.c                    |   4 +
 arch/s390/mm/mmap.c                                |   4 -
 arch/s390/net/bpf_jit_comp.c                       |   4 +
 arch/sparc/kernel/sys_sparc_64.c                   |   2 -
 arch/sparc/net/bpf_jit_comp.c                      |   4 +
 arch/tile/mm/mmap.c                                |   2 -
 arch/x86/Kconfig                                   |   2 +
 arch/x86/boot/compressed/Makefile                  |   6 +-
 arch/x86/boot/compressed/misc.c                    |   4 +
 arch/x86/ia32/ia32_aout.c                          |   2 -
 arch/x86/include/asm/e820.h                        |   2 +
 arch/x86/include/asm/pgtable.h                     |  24 +-
 arch/x86/include/asm/pgtable_types.h               |  12 +
 arch/x86/kernel/e820.c                             |  72 ++-
 arch/x86/mm/mmap.c                                 |   2 -
 arch/x86/net/bpf_jit_comp.c                        |   4 +
 arch/x86/platform/efi/efi.c                        |  15 +-
 block/blk-core.c                                   |  32 +-
 block/blk-flush.c                                  |   5 +-
 block/blk-lib.c                                    |   3 +-
 block/blk.h                                        |   3 +-
 block/genhd.c                                      |   2 +-
 crypto/Kconfig                                     |  16 +
 crypto/Makefile                                    |   2 +
 crypto/lz4.c                                       | 106 ++++
 crypto/lz4hc.c                                     | 106 ++++
 drivers/block/blockconsole.c                       |   5 +-
 drivers/block/drbd/drbd_bitmap.c                   |   3 +-
 drivers/block/drbd/drbd_worker.c                   |   9 +-
 drivers/block/drbd/drbd_wrappers.h                 |   9 +-
 drivers/block/floppy.c                             |   3 +-
 drivers/block/mtip32xx/mtip32xx.c                  |  86 ++--
 drivers/block/mtip32xx/mtip32xx.h                  |   8 +-
 drivers/block/pktcdvd.c                            |   9 +-
 drivers/block/swim3.c                              |   2 +-
 drivers/block/virtio_blk.c                         |  31 +-
 drivers/block/xen-blkback/blkback.c                |   3 +-
 drivers/block/xsysace.c                            |   3 +-
 drivers/char/mwave/tp3780i.c                       |   1 +
 drivers/char/random.c                              |  54 ++-
 drivers/gpu/drm/drm_fb_helper.c                    |   8 +
 drivers/infiniband/core/cm.c                       |   5 +-
 drivers/leds/leds-ot200.c                          |  14 +-
 drivers/md/bcache/alloc.c                          |   3 +-
 drivers/md/bcache/btree.c                          |   3 +-
 drivers/md/bcache/debug.c                          |   3 +-
 drivers/md/bcache/io.c                             |   6 +-
 drivers/md/bcache/journal.c                        |   9 +-
 drivers/md/bcache/movinggc.c                       |   3 +-
 drivers/md/bcache/request.c                        |   9 +-
 drivers/md/bcache/request.h                        |   3 +-
 drivers/md/bcache/super.c                          |  11 +-
 drivers/md/bcache/writeback.c                      |   8 +-
 drivers/md/dm-bufio.c                              |   9 +-
 drivers/md/dm-cache-target.c                       |   3 +-
 drivers/md/dm-crypt.c                              |   3 +-
 drivers/md/dm-io.c                                 |   2 +-
 drivers/md/dm-snap.c                               |   3 +-
 drivers/md/dm-thin.c                               |   3 +-
 drivers/md/dm-verity.c                             |   3 +-
 drivers/md/dm.c                                    |   8 +-
 drivers/md/faulty.c                                |   3 +-
 drivers/md/md.c                                    |   9 +-
 drivers/md/multipath.c                             |   3 +-
 drivers/md/raid1.c                                 |  12 +-
 drivers/md/raid10.c                                |  18 +-
 drivers/md/raid5.c                                 |  15 +-
 drivers/parport/share.c                            |   3 +-
 drivers/rapidio/Kconfig                            |  20 +
 drivers/rapidio/Makefile                           |   3 +-
 drivers/rapidio/devices/tsi721.c                   |  12 +
 drivers/rapidio/rio-driver.c                       |   8 +
 drivers/rapidio/rio-scan.c                         | 190 +++-----
 drivers/rapidio/rio-sysfs.c                        |  45 ++
 drivers/rapidio/rio.c                              | 246 +++++++++-
 drivers/rapidio/rio.h                              |  13 +-
 drivers/rapidio/switches/Kconfig                   |   7 -
 drivers/rapidio/switches/Makefile                  |   1 -
 drivers/rapidio/switches/tsi500.c                  |  78 ---
 drivers/rtc/interface.c                            |  18 +-
 drivers/rtc/rtc-88pm80x.c                          |   1 -
 drivers/rtc/rtc-88pm860x.c                         |   1 -
 drivers/rtc/rtc-ab3100.c                           |   1 -
 drivers/rtc/rtc-ab8500.c                           |   2 -
 drivers/rtc/rtc-at32ap700x.c                       |  22 +-
 drivers/rtc/rtc-at91rm9200.c                       |   4 +-
 drivers/rtc/rtc-at91sam9.c                         |  19 +-
 drivers/rtc/rtc-au1xxx.c                           |   2 -
 drivers/rtc/rtc-bfin.c                             |   1 -
 drivers/rtc/rtc-bq4802.c                           |   2 -
 drivers/rtc/rtc-cmos.c                             |   6 +-
 drivers/rtc/rtc-coh901331.c                        |   5 +-
 drivers/rtc/rtc-da9052.c                           |   2 -
 drivers/rtc/rtc-da9055.c                           |   2 -
 drivers/rtc/rtc-davinci.c                          |  13 +-
 drivers/rtc/rtc-dm355evm.c                         |   1 -
 drivers/rtc/rtc-ds1302.c                           |   2 -
 drivers/rtc/rtc-ds1305.c                           |  32 +-
 drivers/rtc/rtc-ds1374.c                           |  11 +-
 drivers/rtc/rtc-ds1511.c                           |  93 ++--
 drivers/rtc/rtc-ds3234.c                           |   2 +-
 drivers/rtc/rtc-ep93xx.c                           |   2 -
 drivers/rtc/rtc-fm3130.c                           |   2 +-
 drivers/rtc/rtc-jz4740.c                           |   3 -
 drivers/rtc/rtc-lp8788.c                           |   2 -
 drivers/rtc/rtc-lpc32xx.c                          |   3 -
 drivers/rtc/rtc-ls1x.c                             |   2 -
 drivers/rtc/rtc-m41t80.c                           |   2 +-
 drivers/rtc/rtc-m48t59.c                           |   1 -
 drivers/rtc/rtc-m48t86.c                           |   2 -
 drivers/rtc/rtc-max6902.c                          |   6 +-
 drivers/rtc/rtc-max77686.c                         |   2 +-
 drivers/rtc/rtc-max8925.c                          |   7 +-
 drivers/rtc/rtc-max8997.c                          |   2 +-
 drivers/rtc/rtc-max8998.c                          |   6 +-
 drivers/rtc/rtc-mc13xxx.c                          |   4 -
 drivers/rtc/rtc-mpc5121.c                          |   2 +-
 drivers/rtc/rtc-msm6242.c                          |  15 +-
 drivers/rtc/rtc-mxc.c                              |   7 +-
 drivers/rtc/rtc-nuc900.c                           |   2 -
 drivers/rtc/rtc-omap.c                             |   4 +-
 drivers/rtc/rtc-pcap.c                             |  13 +-
 drivers/rtc/rtc-pcf2123.c                          |  10 +-
 drivers/rtc/rtc-pcf8583.c                          |   3 +-
 drivers/rtc/rtc-pm8xxx.c                           |   2 -
 drivers/rtc/rtc-puv3.c                             |   1 -
 drivers/rtc/rtc-rp5c01.c                           |  12 +-
 drivers/rtc/rtc-rs5c313.c                          |  18 +-
 drivers/rtc/rtc-s3c.c                              |   9 +-
 drivers/rtc/rtc-sa1100.c                           |   8 +-
 drivers/rtc/rtc-sh.c                               |   2 -
 drivers/rtc/rtc-spear.c                            |   1 -
 drivers/rtc/rtc-stmp3xxx.c                         |  13 +-
 drivers/rtc/rtc-tile.c                             |   2 -
 drivers/rtc/rtc-twl.c                              |   1 -
 drivers/rtc/rtc-v3020.c                            |  18 +-
 drivers/rtc/rtc-vr41xx.c                           |  12 +-
 drivers/rtc/rtc-vt8500.c                           |   2 -
 drivers/rtc/rtc-x1205.c                            |  33 +-
 drivers/target/target_core_iblock.c                |   6 +-
 drivers/target/target_core_pscsi.c                 |   3 +-
 drivers/usb/gadget/amd5536udc.c                    |   4 +-
 drivers/video/Kconfig                              |  17 +
 drivers/video/Makefile                             |   1 +
 drivers/video/backlight/atmel-pwm-bl.c             |   2 -
 drivers/video/backlight/ep93xx_bl.c                |   1 -
 drivers/video/backlight/lp8788_bl.c                |   1 -
 drivers/video/backlight/pcf50633-backlight.c       |   2 -
 drivers/video/cyber2000fb.c                        |   3 +
 drivers/video/simplefb.c                           | 234 +++++++++
 drivers/w1/slaves/w1_ds2408.c                      |  30 ++
 fs/aio.c                                           | 430 +++++++++++-----
 fs/autofs4/autofs_i.h                              |   4 +-
 fs/autofs4/dev-ioctl.c                             |  16 +-
 fs/autofs4/inode.c                                 |  33 +-
 fs/autofs4/waitq.c                                 |  16 +-
 fs/binfmt_aout.c                                   |   2 -
 fs/binfmt_elf.c                                    |  23 +-
 fs/bio-integrity.c                                 |   3 +-
 fs/bio.c                                           |  63 ++-
 fs/btrfs/check-integrity.c                         |  14 +-
 fs/btrfs/compression.c                             |   6 +-
 fs/btrfs/disk-io.c                                 |   6 +-
 fs/btrfs/extent_io.c                               |  12 +-
 fs/btrfs/inode.c                                   |  13 +-
 fs/btrfs/raid56.c                                  |   9 +-
 fs/btrfs/scrub.c                                   |  18 +-
 fs/btrfs/volumes.c                                 |   5 +-
 fs/buffer.c                                        |   3 +-
 fs/configfs/file.c                                 |   2 +-
 fs/direct-io.c                                     |  20 +-
 fs/drop_caches.c                                   |   2 +
 fs/ext4/page-io.c                                  |   3 +-
 fs/f2fs/data.c                                     |   2 +-
 fs/f2fs/segment.c                                  |   3 +-
 fs/fat/file.c                                      | 108 ++++-
 fs/fat/inode.c                                     |  69 ++-
 fs/gfs2/lops.c                                     |   3 +-
 fs/gfs2/ops_fstype.c                               |   3 +-
 fs/hfs/bnode.c                                     |   6 +-
 fs/hfsplus/wrapper.c                               |   3 +-
 fs/jfs/jfs_logmgr.c                                |   4 +-
 fs/jfs/jfs_metapage.c                              |   6 +-
 fs/logfs/dev_bdev.c                                |   8 +-
 fs/mpage.c                                         |   2 +-
 fs/nfs/blocklayout/blocklayout.c                   |  17 +-
 fs/nilfs2/segbuf.c                                 |   3 +-
 fs/ocfs2/cluster/heartbeat.c                       |   4 +-
 fs/ocfs2/file.c                                    |   2 +-
 fs/proc/kmsg.c                                     |  10 +-
 fs/proc/task_mmu.c                                 | 140 ++++--
 fs/reiserfs/inode.c                                |   9 +-
 fs/xfs/xfs_aops.c                                  |   3 +-
 fs/xfs/xfs_buf.c                                   |   3 +-
 include/asm-generic/pgtable.h                      |  22 +
 include/linux/aio.h                                |  25 +-
 include/linux/audit.h                              |  26 +-
 include/linux/balloon_compaction.h                 |   7 +
 include/linux/batch_complete.h                     |  23 +
 include/linux/bio.h                                |  38 +-
 include/linux/blk_types.h                          |   4 +-
 include/linux/blkdev.h                             |  12 +-
 include/linux/cpu.h                                |  14 +
 include/linux/decompress/unlz4.h                   |  10 +
 include/linux/err.h                                |  10 +-
 include/linux/fs.h                                 |   2 +-
 include/linux/hardirq.h                            |   5 +
 include/linux/lockdep.h                            |  92 +---
 include/linux/lz4.h                                |  87 ++++
 include/linux/memcontrol.h                         |   9 +-
 include/linux/mm_types.h                           |   3 -
 include/linux/mmzone.h                             |  20 +-
 include/linux/percpu-refcount.h                    | 114 +++++
 include/linux/posix-timers.h                       |  16 +-
 include/linux/rio.h                                |  18 +-
 include/linux/rio_drv.h                            |   1 +
 include/linux/sched.h                              |   2 -
 include/linux/seccomp.h                            |  18 +
 include/linux/swap.h                               |   9 +-
 include/linux/syslog.h                             |   4 +-
 include/linux/vm_event_item.h                      |   7 +-
 include/linux/wait.h                               |  16 +-
 include/net/ip_vs.h                                |   8 +-
 init/Kconfig                                       |  34 +-
 init/main.c                                        |   3 +-
 ipc/mqueue.c                                       |   2 +
 ipc/sem.c                                          |   6 +-
 ipc/shm.c                                          |   4 +-
 kernel/audit.h                                     |   1 +
 kernel/audit_tree.c                                |   1 +
 kernel/auditsc.c                                   |  12 +-
 kernel/cpu.c                                       |  27 +-
 kernel/fork.c                                      |   4 -
 kernel/lglock.c                                    |  12 +-
 kernel/panic.c                                     |   5 +-
 kernel/posix-cpu-timers.c                          | 395 ++++++---------
 kernel/printk.c                                    |  91 ++--
 kernel/relay.c                                     |  14 +-
 kernel/seccomp.c                                   |  33 +-
 kernel/smp.c                                       |  11 +-
 kernel/sys.c                                       |  29 +-
 kernel/watchdog.c                                  |  10 +-
 lib/Kconfig                                        |  13 +
 lib/Makefile                                       |   8 +-
 lib/bitmap.c                                       |  23 +-
 lib/clz_ctz.c                                      |  58 +++
 lib/decompress.c                                   |   5 +
 lib/decompress_unlz4.c                             | 187 +++++++
 lib/dump_stack.c                                   |  47 +-
 lib/idr.c                                          |   7 +-
 lib/lz4/Makefile                                   |   3 +
 lib/lz4/lz4_compress.c                             | 443 +++++++++++++++++
 lib/lz4/lz4_decompress.c                           | 326 +++++++++++++
 lib/lz4/lz4defs.h                                  | 156 ++++++
 lib/lz4/lz4hc_compress.c                           | 539 +++++++++++++++++++++
 lib/percpu-refcount.c                              | 251 ++++++++++
 mm/Kconfig                                         |  12 +
 mm/balloon_compaction.c                            |   2 +
 mm/bounce.c                                        |  12 +-
 mm/dmapool.c                                       |   5 +-
 mm/huge_memory.c                                   |   6 +-
 mm/memcontrol.c                                    | 217 ++++++++-
 mm/migrate.c                                       |   3 +-
 mm/mmap.c                                          |  32 +-
 mm/mmu_notifier.c                                  |  79 ++-
 mm/mremap.c                                        |   2 +-
 mm/nommu.c                                         |   4 -
 mm/page_alloc.c                                    |  11 +-
 mm/page_io.c                                       |  43 +-
 mm/util.c                                          |   1 -
 mm/vmstat.c                                        |   9 +-
 net/netfilter/ipvs/ip_vs_ctl.c                     |   4 +-
 scripts/Makefile.lib                               |   5 +
 sound/soc/codecs/si476x.c                          |   6 +-
 tools/include/tools/be_byteshift.h                 |  34 +-
 tools/include/tools/le_byteshift.h                 |  34 +-
 tools/testing/selftests/Makefile                   |   1 +
 tools/testing/selftests/timers/Makefile            |   8 +
 tools/testing/selftests/timers/posix_timers.c      | 221 +++++++++
 usr/Kconfig                                        |   9 +
 301 files changed, 6201 insertions(+), 1720 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/video/simple-framebuffer.txt
 create mode 100644 Documentation/vm/soft-dirty.txt
 create mode 100644 arch/arm/boot/compressed/piggy.lz4.S
 create mode 100644 crypto/lz4.c
 create mode 100644 crypto/lz4hc.c
 delete mode 100644 drivers/rapidio/switches/tsi500.c
 create mode 100644 drivers/video/simplefb.c
 create mode 100644 include/linux/batch_complete.h
 create mode 100644 include/linux/decompress/unlz4.h
 create mode 100644 include/linux/lz4.h
 create mode 100644 include/linux/percpu-refcount.h
 create mode 100644 lib/clz_ctz.c
 create mode 100644 lib/decompress_unlz4.c
 create mode 100644 lib/lz4/Makefile
 create mode 100644 lib/lz4/lz4_compress.c
 create mode 100644 lib/lz4/lz4_decompress.c
 create mode 100644 lib/lz4/lz4defs.h
 create mode 100644 lib/lz4/lz4hc_compress.c
 create mode 100644 lib/percpu-refcount.c
 create mode 100644 tools/testing/selftests/timers/Makefile
 create mode 100644 tools/testing/selftests/timers/posix_timers.c