1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
|
# Kernel patches configuration file
# vim: set ts=8 sw=8 noet:
#
# There are three kinds of rules (see guards.1 for details):
# +symbol include this patch if symbol is defined; otherwise exclude.
# -symbol exclude this patch if symbol is defined; otherwise include.
# - exclude this patch.
#
# Using symbols means that an entirely different source tree will be
# generated depending on which symbols are defined. This used to be
# a good thing when arch-specific patches contained conflicts with other
# patches, but we now have a policy that patches must build everywhere.
# The result is a unified source tree that allows us to do neat things
# like ship kernel module packages. Creating a divergent tree breaks
# these # so you'd better have an extraordinary reason for using them.
# For example, the openSUSE 10.3 kernel uses them for segregating the
# -rt patches until they can be integrated completely, and these are
# only applied at the very end of the series.
#
# The most common use in recent kernels is to disable a patch with a
# username as the symbol to indicate responsbility. Another use is
# to check in a patch for testing, but have it disabled in all but your
# own build environment.
########################################################
# latest standard kernel patches
# DO NOT MODIFY THEM!
# Send separate patches upstream if you find a problem.
########################################################
patches.kernel.org/patch-2.6.16.18
patches.kernel.org/patch-2.6.16.18-19
patches.kernel.org/patch-2.6.16.19-20
patches.kernel.org/patch-2.6.16.20-21
patches.kernel.org/patch-2.6.16.21-22
patches.kernel.org/patch-2.6.16.22-23
patches.kernel.org/patch-2.6.16.23-24
patches.kernel.org/patch-2.6.16.24-25
patches.kernel.org/patch-2.6.16.25-26
patches.kernel.org/patch-2.6.16.26-27
patches.kernel.org/patch-2.6.16.27-28
patches.kernel.org/patch-2.6.16.28-29
patches.kernel.org/patch-2.6.16.29-30
patches.kernel.org/patch-2.6.16.30-31
patches.kernel.org/patch-2.6.16.31-32
patches.kernel.org/patch-2.6.16.32-33
patches.kernel.org/patch-2.6.16.33-34
patches.kernel.org/patch-2.6.16.34-35
patches.kernel.org/patch-2.6.16.35-36
patches.kernel.org/patch-2.6.16.36-37
patches.kernel.org/patch-2.6.16.37-38
patches.kernel.org/patch-2.6.16.38-39
patches.kernel.org/patch-2.6.16.39-40
patches.kernel.org/patch-2.6.16.40-41
patches.kernel.org/patch-2.6.16.41-42
patches.kernel.org/patch-2.6.16.42-43
patches.kernel.org/patch-2.6.16.43-44
patches.kernel.org/patch-2.6.16.44-45
patches.kernel.org/patch-2.6.16.45-46
patches.kernel.org/revert-one-2.6.16.46.patch
patches.kernel.org/patch-2.6.16.46-47
patches.kernel.org/revert-fix-crash-on-input-device-removal.patch
patches.kernel.org/patch-2.6.16.47-48
patches.kernel.org/patch-2.6.16.48-49
patches.kernel.org/patch-2.6.16.49-50
patches.kernel.org/revert-disallow-rh0-by-default.patch
patches.kernel.org/patch-2.6.16.50-51
patches.kernel.org/patch-2.6.16.51-52
patches.kernel.org/patch-2.6.16.52-53
patches.kernel.org/revert-ide-clear-bmdma-status-in-ide_intr-for-ichx-controllers.patch
patches.kernel.org/patch-2.6.16.53-54
patches.kernel.org/revert-md-fix-resync-speed-calculation-for-restarted-resyncs.patch
patches.kernel.org/export-radix_tree_preload.diff
patches.kernel.org/patch-2.6.16.54-55
patches.kernel.org/revert-convert-snd-page-alloc-proc-file-to-use-seq_file.patch
patches.kernel.org/revert-snd_mem_proc_read-convert-to-list_for_each_entry.patch
patches.kernel.org/patch-2.6.16.55-56
patches.kernel.org/patch-2.6.16.56-57
patches.kernel.org/revert-aacraid-fix-security-hole.patch
patches.kernel.org/patch-2.6.16.57-58
patches.kernel.org/patch-2.6.16.58-59
patches.kernel.org/patch-2.6.16.59-60
patches.fixes/setuid-dumpable-wrongdir
########################################################
# kbuild/module infrastructure fixes
########################################################
patches.fixes/modpost-segfault-fix.diff
patches.fixes/git-kbuild.patch
patches.fixes/git-kbuild-cscope.patch
patches.fixes/remove-MODULE_PARM
patches.suse/error-implicit-function-declaration.patch
patches.suse/enable-intermodule.patch
patches.fixes/kbuild-ppc64-make-rpm
########################################################
#
# packaging-specific patches (tweaks for autobuild,
# CONFIG_SUSE_KERNEL, config/version tracking and other
# stuff like that ...).
#
########################################################
patches.rpmify/offsets_h-dirname.patch
patches.rpmify/rpm-kernel-config
patches.suse/sles-version
patches.rpmify/buildhost
patches.rpmify/cloneconfig.diff
patches.rpmify/suse-extmod-legacy
patches.rpmify/default-configuration
patches.rpmify/build-timestamp
patches.rpmify/fix-separate-compilation-with-preconf-kernel.diff
patches.rpmify/extmod-fix
patches.fixes/arch-ext-mod.diff
patches.rpmify/symtypes.diff
patches.rpmify/supported-flag
patches.suse/warn-vermagic.diff
patches.rpmify/build_with_-fpreserve-function-arguments.diff
########################################################
# Simple export additions/removals
########################################################
patches.fixes/missing-exports.diff
patches.fixes/export-symbols-gpl
patches.suse/export-ip_dev_find
patches.suse/export-touch_nmi_watchdog
patches.fixes/duplicate-exports.diff
patches.fixes/strstrip.patch
########################################################
# Scheduler / Core
########################################################
patches.suse/export-HZ
+andrea patches.suse/dynamic-timeslice
patches.fixes/value_computed_not_used-fix
patches.suse/multi-core-sched-opt
patches.fixes/scheduler-wakeup-no-starvation
patches.suse/sched-starvation-rt
patches.fixes/sched-fix-group-power-for-allnodes_domains.4.patch
patches.fixes/sched-group-exclusive
patches.suse/smtnice-disable
patches.suse/sysctl-add-affinity_load_balancing
patches.fixes/fix_pacct_incorrect_records.patch
patches.fixes/pacct-add-pacct_struct.patch
patches.fixes/pacct-avoid-reference-to-last-thread.patch
patches.fixes/pacct-delayed-process-accounting.patch
patches.suse/acct-eop-hook
patches.suse/pagg.patch
patches.suse/pagg-numatools
patches.suse/delayacct
patches.suse/delayacct_memleak.patch
patches.fixes/delayacct-documentation-fix.patch
patches.suse/csa-taskstats
patches.fixes/hrtimer-opt
patches.fixes/hrtimers-check-relative-timeouts-for-overflow.patch
patches.fixes/calc-load-opt
patches.fixes/fix-the-link-count-for-proc-pid-task.patch
patches.fixes/proc_link_count_fix.diff
patches.suse/get_options-to-allow-a-hypenated-range-for-isolcpus.patch
patches.fixes/init_isolcpus.diff
patches.fixes/remove-lock_cpu_hotplug
patches.fixes/workqueue_cpu_deadlock-fix.diff
patches.fixes/fix-signal-exit-curr_target-race
patches.fixes/softlockup-false-alarm
patches.suse/rcu-scale
patches.suse/rcu-remote
patches.fixes/fs-fix-remove_arg_zero.patch
patches.fixes/use-simple_read_from_buffer_in_kernel.diff
patches.suse/cpuset-cleanup-not-not-operators.patch
- patches.suse/cpuset-use-combined-atomic_inc_return-calls.patch
patches.suse/cpuset-memory-spread-basic-implementation.patch
patches.suse/cpuset-memory-spread-page-cache-implementation-and-hooks.patch
patches.suse/cpuset-memory-spread-slab-cache-filesys.patch
patches.suse/cpuset-memory-spread-slab-cache-format.patch
patches.suse/cpuset-memory-spread-slab-cache-implementation.patch
patches.suse/cpuset-memory-spread-slab-cache-optimizations.patch
patches.suse/cpuset-memory-spread-slab-cache-hooks.patch
patches.fixes/cpuset-top_cpuset-tracks-hotplug-changes-to-cpu_online_map.patch
patches.fixes/cpuset-memory-migration-interaction.patch
patches.fixes/cpuset-oom
patches.fixes/avoid_ABBA_deadlock_in_cpuset.patch
+pavel patches.fixes/swsusp-mysqld
patches.fixes/per-cpu-enough-room
patches.suse/mapped-base
patches.arch/s390-mapped-base.patch
patches.fixes/per-cpu-irqs-in-generic-irq-setup
patches.fixes/proc-readdir-race-fix.patch
patches.fixes/fix-bug-in-taskstats-racing-with-signal-stats.patch
patches.fixes/futex-restartable-futex_wait.patch
patches.fixes/task_files-exec-race.patch
patches.fixes/aux-at_vector_size.patch
patches.fixes/taskstats-fix-alignment.patch
patches.fixes/do_IRQ-always-check-for-IRQ_DISABLED
patches.fixes/clear-tif_syscall_trace-on-ptrace_detach
patches.fixes/avoid-posix-cpu-timers-deadlock
patches.fixes/switch_uid-sigqueue_alloc-race-oops
patches.fixes/switch_uid-sigqueue_alloc-race-signal-accounting
patches.fixes/proc_pid_readdir-regression-fix.patch
patches.fixes/tty_ops_null_vul
patches.fixes/ptrace_stop-fix-race
patches.fixes/ptrace_signal
patches.fixes/ptrace-fix-wrong-SIGTRAP
patches.fixes/avoid-tasklist_lock-in-do_tkill.patch
patches.suse/rwlocks-enable-interrupts
########################################################
# Architecture-specific patches. These used to be all
# at the end of series.conf, but since we don't do
# conditional builds anymore, there's no point.
########################################################
########################################################
# ia64
########################################################
# 4096 CPU support patch
patches.arch/ia64-zombie_tasks
patches.arch/stack-limit
patches.arch/ia64-sn2-user-MMIO-migration
patches.arch/ia64-sn2-hwperf-get_nearest_node_objdata
patches.arch/ia64-sn2-hwperf-topology_show
patches.arch/ia64-validate-pci_mmap_legacy
patches.arch/ia64-validate-pci_mmap_page_range
patches.arch/ia64-topology-reclaim_distance.patch
patches.arch/ia64-sn2-hwperf-topology-nearest-node
patches.arch/ia64-export-node-to-cpu-mask.patch
patches.arch/ia64-sn2-remove-obsolete-SAL-feature-bit
patches.arch/ia64-mca_asm-set_kernel_registers
patches.arch/ia64-fp-rate-limit
patches.arch/ia64-acpi-cpufreq-PAL_GET_PSTATE_TYPE_INSTANT
patches.arch/ia64-ioremap_page_range
patches.fixes/ia64_cpufreq_PDC.patch
patches.fixes/altix-asic-workarounds
patches.arch/altix-acpi-1
patches.arch/altix-acpi-2
patches.arch/altix-acpi-3
patches.arch/altix-acpi-4
patches.arch/altix-acpi-5
patches.arch/altix-acpi-6
patches.arch/altix-acpi-7
patches.arch/altix-acpi-9
patches.fixes/mca-recovery
patches.arch/ia64-mce-output
patches.arch/ia64-mca_drv-montecito
+142320 patches.suse/dmiscan-4-ia64
patches.fixes/ia64-put-user-size
patches.fixes/sn2-ptc-check-platform
patches.arch/ia64-sn2-tioce_provider
patches.fixes/tioce-bus-fixup
patches.arch/ia64-ptrace-lockup-fix
patches.arch/ia64-sn2-xpc-disconnecting-callout
patches.arch/ia64-fix-wrong-iomem-on-sgi
patches.fixes/fix_biarch_compatibity_issue_in_process_event_connector.patch
patches.fixes/fix_ia64_unaligned_access_in_process_event_connector.patch
patches.arch/ia64-perfmon-fix
patches.arch/ia64-skip-clock-calibration
patches.arch/ia64-perfmon-fix-2
patches.arch/ia64-dont-unwind-running-tasks.patch
# bug 42353
# still needed, see comment for hugetlb stuff above
# patches.fixes/hugetlb-page-fault-ia32-amd64-ia64
patches.fixes/sn-max-node-count-1
patches.fixes/sn-max-node-count-2
patches.fixes/sn-max-node-count-3
patches.fixes/sn-max-node-count-4
patches.fixes/sn-hwperf-geoid-to-cnode-loop
patches.fixes/sn-scan-pcdp
patches.fixes/iosapic-move-irq
patches.arch/tollhouse-hp
patches.fixes/show-mem
patches.fixes/resume-init
patches.fixes/memcpy-mck
patches.fixes/sles10-latest.acpi-prt-support-2
patches.fixes/cve-2006-3635
patches.arch/add-user-mode
# bug 292240
patches.arch/sn_hwperf_cpuinfo_fix.diff
patches.arch/ia64-flush_icache.patch
patches.arch/ia64-acpi-a1-opregion.patch
# bug 291878
patches.arch/ia64-rom-bios-copy
patches.arch/ia64-allow-ipi-in-timer-loop
patches.arch/sn-tlb-flush-ipi
patches.arch/ia64-pal_halt
patches.arch/ia64-sn-xpc-fix
patches.arch/ia64-kernel-unaligned-fix
patches.arch/ia64-trim-show-mem
patches.arch/ia64-mm-tlb-flush-avoid
patches.arch/ia64-sn-mmtimer-increase-number-of-timers-per-node
# 4096 support patches
patches.arch/ia64-patch_nr_cpus_4096
patches.arch/ia64-count-reched-interrupts
# 344696
patches.fixes/fix-memless-headless-boot-failure
patches.arch/ia64-rwlocks-enable-interrupts
########################################################
# i386
########################################################
patches.arch/acpi-ignore-bad-names
patches.arch/i386-Force-data-segment-to-be-4K-aligned
patches.arch/i386-mpparse.diff
patches.arch/microcode-quiet
patches.arch/i386-kexec-apic-ack
patches.arch/i386-modern-apic
patches.arch/i386-amd-core-parsing
patches.arch/i386-optiplex745reboot.patch
patches.arch/i386-apic-up
patches.arch/i386-default-max-mp-busses
patches.arch/i386-prefer-tsc
patches.arch/i386-profile-pc
patches.arch/i386-mmconfig-flush
patches.arch/i386-fix-tsc-selection
+sles patches.suse/apic-timer-irq-delivery-dl760
patches.suse/x86-pae-64bit-resource-fix
patches.arch/i386-hpet-lost-interrupts-fix.patch
patches.arch/i386-no-tsc-with-C3
patches.arch/i386-monotonic_clock_hpet-fix.patch
patches.fixes/x86-fix-kernel-panic-not-syncing-IO-APIC+timer-doesnt-work
########################################################
# x86_64
########################################################
patches.arch/x86_64-nmi-watchdog-timeout
patches.arch/x86_64-hotadd-pud
patches.arch/x86_64-gart-relax
patches.arch/x86_64-kexec-interrupt-ack
patches.arch/x86_64-compat-nr-syscalls
patches.arch/acpi-fix-memory-hotadd-for-x86_64
patches.arch/x86_64-rename-node
patches.arch/x86_64-hotadd-reserve
patches.arch/x86_64-srat-hotadd-reserve
patches.arch/x86_64-empty-pxm
patches.arch/x86_64-memmap-alloc
patches.arch/x86_64-clear-apic
patches.arch/x86_64-mce-nmi-watchdog
patches.arch/x86_64-hpet-drift
patches.arch/x86_64-sync-rdtsc
patches.arch/x86_64-increase-nodemap
patches.arch/x86_64-avoid-ebda
patches.arch/x86_64-fix-die_lock-nesting
patches.arch/x86_64-add-nmi_exit-to-die_nmi
patches.arch/x86_64-nommu-warning
patches.arch/x86_64-hotadd-fixes
patches.arch/x86_64-empty-node0
patches.arch/x86_64-bad-addr-boundary
patches.arch/x86_64-compat-stack-rnd
patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch
patches.arch/kexec-x86_64-numa-fix-reserve_bootmem
patches.arch/x86_64-kdump-bootmem-fix
patches.arch/x86_64-call-function-single-export
patches.arch/x86_64-Align-data-segment-to-PAGE_SIZE-boundary.diff
patches.arch/x86_64-swsusp-avoid-saving-non-RAM-pages
patches.arch/x86_64-hpet-lost-interrupts-fix.patch
patches.arch/amd-core-parsing
patches.arch/rename-e820-mapped
patches.arch/x86_64-memory_hotplug-acpi_memhotplug_update.patch
patches.arch/x86_64-memory_hotplug-add_memory_fix.patch
patches.arch/x86_64-memory_hotplug-hotadd-memory-update-userctr.patch
patches.arch/x86_64-memory_hotplug-kernel_mapping_fix.patch
patches.arch/x86_64-memory_hotplug-srat_cleanup.patch
patches.arch/x86_64-fpu-corruption
patches.arch/x86_64-monotonic-clock
patches.arch/dmi_early_init.patch
patches.arch/x86_64-nmi_disable_default.patch
patches.arch/x86_64-nmi_switch_off_properly.patch
patches.arch/x86-amd-core-ids
patches.arch/x86-fam10-mtrr
patches.arch/x86_64-node-from-local-apic
patches.arch/x86-amd-fam10-mwait
patches.arch/i386-amd-fam10-mce
patches.arch/x86-fam10-cpuid
patches.arch/x86_64-cpa-flush-all
patches.arch/x86_64-make-gart-ptes-uncacheable
patches.arch/x86_64-no-tsc-with-C3
patches.suse/calgary-iommu-backport.diff
patches.arch/x86_64_calgary_detect_loop.patch
patches.arch/x86_64-apic-large-dest
patches.arch/mmconfig-testbit
patches.arch/fam10-oprofile
patches.arch/x86_64-vmware-tsc-timekeeping
patches.arch/x86_64-mce-loop
patches.fixes/report-max-nr-banks.patch
patches.arch/x86_64-core2-string
patches.arch/x86_64-misc-mm-init-fixes
patches.arch/x86_64-sync-rdtsc-with-fence.patch
patches.fixes/ignore_lost_ticks
patches.arch/x86_64-aperture_detect_amd_correctly.patch
patches.fixes/fix-string-ops.diff
patches.arch/x86_64-fix-noapic-option.patch
patches.arch/x86_64-workaround-smi-in-tsc-calibration.patch
########################################################
# x86_64/i386 biarch
########################################################
patches.arch/tune-generic
patches.arch/stack-random-large
patches.fixes/fix-hpet-operation-on-32-bit-nvidia-platforms
patches.fixes/fix-hpet-operation-on-64-bit-nvidia-platforms
patches.fixes/fix_hpet_init_race.patch
patches.fixes/slab-node0
patches.arch/woodcrest-oprofile-all-counters.patch
patches.arch/woodcrest-oprofile-new-intel-cpus.patch
patches.arch/mark-unwind-info-for-signal-trampolines-in-vdsos.patch
patches.arch/lagrange-feature
patches.arch/disable-apic-error
patches.arch/e820-all-mapped
patches.arch/x86_64-fix-page-align-in-e820-allocator
patches.arch/mcfg-e820
patches.arch/mcfg-check-more-busses
patches.suse/cpuid-4.patch
patches.fixes/x86-Fam11h-optimisations
patches.arch/penryn-oprofile-update.patch
patches.arch/oprofile-op_model_athlon.c-support-for-amd-family-10h-barcelona-performance-counters.patch
patches.arch/x86-clear-df-before-calling-signal-handler.patch
patches.arch/x86-nosmp-implies-noapic.patch
########################################################
# powerpc
########################################################
patches.suse/ppc-fno-ivopts.patch
patches.suse/suse-ppc-nvram-transfer-size.patch
patches.suse/suse-ppc-legacy-io.patch
patches.arch/ppc-tumbler-active_state.patch
patches.suse/suse-ppc-pmac_zilog.USE_CTRL_O_SYSRQ.patch
patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch
patches.arch/ppc32-cflags.patch
patches.arch/ppc-iptables-slabdebug-alignment.patch
patches.suse/suse-ppc32-mol.patch
patches.suse/suse-ppc32-mol-kbuild.patch
patches.suse/suse-ppc32-mol-alloc_h-virt_to_phys.patch
patches.suse/suse-ppc32-mol-sheep-eth_hdr.patch
patches.suse/suse-ppc32-mol-sk_alloc.patch
patches.suse/suse-ppc32-mol-gas-macro.patch
patches.suse/suse-ppc32-mol-verify_area.patch
patches.drivers/ppc64-adb
patches.suse/suse-ppc64-branding
patches.arch/ppc-mdelay-badness.patch
patches.arch/ppc-pci-fixup_resource.patch
patches.arch/ppc64-xmon-autobacktrace.patch
patches.arch/ppc64-xmon-dmesg-printing.patch
patches.suse/suse-ppc-xmon-dump-raw.patch
patches.arch/ppc-spidernet-duplicate-symbol.patch
patches.arch/ppc-cell-hvc-rtas-console.patch
patches.arch/ppc-cell-no-numa.patch
patches.arch/ppc-cell-platform-detection.patch
patches.arch/ppc-iseries-systemid.patch
patches.arch/ppc-iseries-irq-256max.patch
patches.arch/ppc-iseries-vio-uevent.patch
patches.arch/ppc-kdump-veth-register.patch
patches.arch/ppc-kdump-boot-cpu-id.patch
patches.arch/ppc-kdump-shutdown-interrupts.patch
patches.arch/ppc-kdump-image-rm-static.patch
patches.arch/ppc-kdump-soft-reset.patch
patches.arch/ppc-kdump-xmon-stop-cpu.patch
patches.arch/ppc-kdump-clear-and-EOI-IPI.patch
patches.arch/ppc-kdump-iommu-init-fix.patch
patches.arch/ppc-kdump-incorrect_might_sleep_in__get_user-put_user.patch
patches.arch/ppc-kdump-disable-eeh-and-numa.patch
patches.arch/ppc-kdump-soft-reset-64bit-mode.patch
patches.arch/ppc-kdump-numa.patch
patches.arch/ppc-poison_percpu.patch
patches.arch/ppc-task-accounting.patch
patches.arch/ppc-prom_panic-trap.patch
patches.arch/ppc-hvc_console-init-race.patch
patches.arch/ppc-protect-remove_proc_entry.patch
patches.arch/ppc-device-tree-dupnodes.patch
patches.arch/ppc-pseries-lparcfg-1.7.patch
patches.arch/ppc-pseries-rtas-mtcr-bug.patch
patches.arch/ppc-pseries-rtas-suspend.patch
patches.arch/ppc-oprofile_call.patch
patches.arch/ppc-970mp-oprofile-num_pmcs.patch
patches.arch/ppc-update_gtod-race.patch
patches.arch/ppc-eeh-device-remove-fix.patch
patches.arch/ppc-eeh-mutex.patch
patches.arch/ppc-eeh-remove-exports.patch
patches.arch/ppc-eeh-printing-cleanup.patch
patches.arch/ppc-eeh-decr-failcount.patch
patches.arch/ppc-eeh-message-disambig.patch
patches.arch/ppc-eeh-mem_init_done.patch
patches.arch/ppc-eeh-increment-counter.patch
patches.arch/ppc-eeh-print-loc-code.patch
patches.arch/ppc-macio_do_read_reg8.patch
patches.fixes/ignore-aix-disk-label.patch
patches.arch/ppc-hcall-stats.patch
patches.arch/ppc-power6-pvr.patch
patches.arch/ppc-power6-align.patch
patches.arch/ppc-power6-fpscr.patch
patches.arch/ppc-power6-ibm-extended-frequency-properties.patch
patches.arch/ppc-power6-ibm_client_arch.patch
patches.arch/ppc-power6-oprofile.patch
patches.arch/ppc-power6-le_prctl.patch
patches.arch/ppc-power6-prctl_process.patch
patches.arch/ppc-power6-partition-modes.patch
patches.arch/ppc-power6-ebus.patch
patches.arch/ppc-power6-ebus-unique_location.patch
patches.arch/ppc-pci-mmap-memory-region.patch
patches.arch/ppc-hugetlb_get_unmapped_area-bugon.patch
patches.arch/ppc-kprobes-flush_icache_range.patch
patches.arch/ppc-h_cede_dedicated-idle.patch
patches.arch/ppc-at-syscalls.patch
patches.arch/ppc-eeh-mark-slot-failure.patch
patches.arch/ppc-eeh-reset-loop.patch
patches.arch/ppc-os-term-panic_timeout.patch
patches.drivers/ppc-power6-ehea.patch
patches.drivers/ehea_0080.01-0080-02_sles10_2.6.16.60-0.6.patch
patches.drivers/ehea_0080-02-0080-03
patches.arch/ppc-stolen-time.patch
patches.arch/ppc-pseries-rpaphp-pci-device_node_name.patch
patches.arch/ppc-pcie.patch
patches.arch/ppc-msi-power-abstraction.patch
patches.arch/ppc-rtas-msi.patch
patches.arch/ppc-msi-firmware-enable.patch
patches.arch/ppc-eeh-power4-early_enable_eeh.patch
patches.arch/ppc-eeh-node-status-okay.patch
patches.arch/ppc-pseries-pmu-lpar-init.patch
patches.arch/ppc-oprofile-970mp.patch
patches.arch/ppc-validate-irq-sp.patch
patches.arch/ppc-iseries-viocd-softlockup.patch
patches.arch/ppc-iseries-viocd-audio_ioctl.patch
patches.arch/ppc-atomic_dec_if_positive.patch
patches.arch/ppc-plpar_hcall_raw.patch
patches.arch/ppc-SLBshadow.patch
patches.arch/ppc-tce-dma-4gb.patch
patches.fixes/ppc-fpu-corruption-fix.diff
patches.arch/ppc-kexec-VRMA.patch
patches.arch/ppc-oprofile-power5plusplus.patch
patches.arch/ppc-pci_iounmap.patch
patches.arch/ppc-pci-hostbridge-window.patch
patches.arch/ppc-missing-dma_window-property.patch
patches.arch/ppc-fp-alignment-faults.patch
patches.arch/ppc-pseries-rtas_ibm_suspend_me.patch
patches.arch/ppc-power6-dedicated-idle.patch
patches.arch/ipr-sata-iseries-insw.patch
patches.arch/ppc-slb-shadow-buffer.patch
patches.arch/ppc-floppy-ppc64_isabridge_dev.patch
patches.arch/ppc-zimage-link-at-64k.patch
patches.arch/ppc-dedicated_idle_sleep.patch
patches.arch/ppc-slb_size_from_devicetree.patch
patches.arch/ppc-dlpar-cpu-irq.patch
patches.arch/ppc-clear-ri-bit.patch
patches.arch/ppc-eeh-use-device-endpoint.patch
patches.arch/ppc-dabr-multiple-threads.patch
patches.arch/ppc-clock_gettime-nanoseconds.patch
patches.suse/delayacct-scaled-cpu.patch
########################################################
# s390, IBM patches first
########################################################
patches.arch/s390-base-01-october2005.diff
patches.arch/s390-base-02-october2005.diff
patches.arch/s390-base-03-october2005.diff
patches.arch/s390-base-04-october2005.diff
patches.arch/s390-base-05-october2005.diff
patches.arch/s390-base-06-october2005.diff
patches.arch/s390-base-07-october2005.diff
patches.arch/s390-base-08-october2005.diff
patches.arch/s390-base-09-october2005.diff
patches.arch/s390-base-10-october2005.diff
patches.arch/s390-base-11-october2005.diff
patches.arch/s390-base-12-october2005.diff
patches.arch/s390-base-13-october2005.diff
patches.arch/s390-base-14-october2005.diff
patches.arch/s390-base-15-october2005.diff
patches.arch/s390-base-16-october2005.diff
patches.arch/s390-base-17-october2005.diff
patches.arch/s390-base-18-october2005.diff
patches.arch/s390-base-19-october2005.diff
patches.arch/s390-base-20-october2005.diff
patches.arch/s390-base-21-october2005.diff
patches.arch/s390-base-22-october2005.diff
patches.arch/s390-base-23-october2005.diff
patches.arch/s390-01-01-october2005.diff
patches.arch/s390-01-02-october2005.diff
# s390-01-03 rejected upstream
patches.arch/s390-01-04-october2005.diff
patches.arch/s390-qeth-vipa-fix
patches.arch/s390-02-02-october2005.diff
patches.arch/s390-02-03-october2005.diff
patches.arch/s390-02-04-october2005.diff
patches.arch/s390-02-05-october2005.diff
patches.arch/s390-02-06-october2005.diff
patches.arch/s390-02-07-october2005.diff
patches.arch/s390-02-08-october2005.diff
patches.arch/s390-02-09-october2005.diff
patches.arch/s390-02-10-october2005.diff
# s390-02-11 under review
patches.arch/s390-02-12-october2005.diff
patches.arch/s390-02-13-october2005.diff
patches.arch/s390-02-14-october2005.diff
patches.arch/s390-02-15-october2005.diff
patches.arch/s390-02-16-october2005.diff
patches.arch/s390-02-18-october2005.diff
patches.arch/s390-02-19-october2005.diff
# s390-02-20 already fixed in s390-02-05
patches.arch/s390-03-01-october2005.diff
patches.arch/s390-03-02-october2005.diff
patches.arch/s390-03-03-october2005.diff
patches.arch/s390-03-04-october2005.diff
patches.arch/s390-04-01-october2005.diff
patches.arch/s390-05-01-october2005.diff
patches.arch/s390-05-02-october2005.diff
patches.arch/s390-05-03-october2005.diff
patches.arch/s390-05-04-october2005.diff
patches.arch/s390-05-05-october2005.diff
patches.arch/s390-05-06-october2005.diff
patches.arch/s390-05-07-october2005.diff
patches.arch/s390-06-01-october2005.diff
patches.arch/s390-06-02-october2005.diff
patches.arch/s390-06-03-october2005.diff
patches.arch/s390-06-04-october2005.diff
patches.arch/s390-06-05-october2005.diff
patches.arch/s390-06-06-october2005.diff
patches.arch/s390-07-01-october2005.diff
patches.arch/s390-07-02-october2005.diff
patches.arch/s390-07-03-october2005.diff
patches.arch/s390-07-04-october2005.diff
patches.arch/s390-07-05-october2005.diff
patches.arch/s390-07-06-october2005.diff
patches.arch/s390-07-07-october2005.diff
patches.arch/s390-07-08-october2005.diff
patches.arch/s390-07-09-october2005.diff
patches.arch/s390-07-10-october2005.diff
patches.arch/s390-07-11-october2005.diff
patches.arch/s390-07-12-october2005.diff
patches.arch/s390-07-13-october2005.diff
patches.arch/s390-07-14-october2005.diff
patches.arch/s390-zfcp-statistics.diff
patches.arch/s390-zfcp-statistic-disclaimer.diff
patches.arch/s390-zfcp-statistic-offline-oops.diff
patches.arch/s390-08-01-october2005.diff
patches.arch/s390-08-02-october2005.diff
patches.arch/s390-08-03-october2005.diff
patches.arch/s390-08-04-october2005.diff
patches.arch/s390-08-05-october2005.diff
patches.arch/s390-08-06-october2005.diff
patches.arch/s390-08-07-october2005.diff
patches.arch/s390-08-08-october2005.diff
patches.arch/s390-08-09-october2005.diff
patches.arch/s390-08-10-october2005.diff
patches.arch/s390-08-11-october2005.diff
patches.arch/s390-08-12-october2005.diff
patches.arch/s390-08-13-october2005.diff
patches.arch/s390-08-14-october2005.diff
patches.arch/s390-08-15-october2005.diff
patches.arch/s390-08-17-october2005.diff
patches.arch/s390-08-18-october2005.diff
patches.arch/s390-08-19-october2005.diff
patches.arch/s390-08-20-october2005.diff
patches.arch/s390-08-21-october2005.diff
patches.arch/s390-08-22-october2005.diff
patches.arch/s390-08-23-october2005.diff
patches.arch/s390-08-24-october2005.diff
patches.arch/s390-09-01-october2005.diff
patches.arch/s390-09-02-october2005.diff
patches.arch/s390-09-03-october2005.diff
patches.arch/s390-09-04-october2005.diff
patches.arch/s390-09-05-october2005.diff
patches.arch/s390-09-06-october2005.diff
patches.arch/s390-10-01-october2005.diff
patches.arch/s390-10-02-october2005.diff
patches.arch/s390-10-03-october2005.diff
patches.arch/s390-10-04-october2005.diff
patches.arch/s390-10-05-october2005.diff
patches.arch/s390-10-06-october2005.diff
patches.arch/s390-10-07-october2005.diff
patches.arch/s390-10-08-october2005.diff
patches.arch/s390-11-01-october2005.diff
patches.arch/s390-11-02-october2005.diff
patches.arch/s390-11-03-october2005.diff
patches.arch/s390-11-04-october2005.diff
patches.arch/s390-11-05-october2005.diff
patches.arch/s390-11-06-october2005.diff
patches.arch/s390-11-07-october2005.diff
patches.arch/s390-11-08-october2005.diff
patches.arch/s390-11-09-october2005.diff
patches.arch/s390-11-10-october2005.diff
patches.arch/s390-11-11-october2005.diff
patches.arch/s390-11-12-october2005.diff
patches.arch/s390-14-01-october2005.diff
patches.arch/s390-14-02-october2005.diff
patches.arch/s390-14-03-october2005.diff
patches.arch/s390-14-04-october2005.diff
patches.arch/s390-14-05-october2005.diff
patches.arch/s390-14-06-october2005.diff
patches.arch/s390-14-07-october2005.diff
# New SP1 features
patches.arch/s390-esl-v2.diff
patches.arch/s390-cmm2-v3-october2005.diff
patches.arch/s390-cmm2-v3-v4.diff
patches.arch/s390-dasd_erplog-v1.diff
patches.arch/s390-prng-v3.diff
patches.arch/s390-prng-v3-v4.diff
patches.arch/s390-qeth_qdio_perf_switch-v1.diff
patches.arch/s390-reipl_dump-v2.diff
patches.arch/s390-zfcp_lat_stat-v1.diff
patches.arch/s390-kprobes
patches.arch/s390-kprobes-bugon-fix
patches.arch/s390-kprobes-enh.diff
patches.arch/s390-hypfs_vm-v1.diff
patches.arch/s390-crypto-tape-v2.diff
patches.arch/s390-14-08-october2005.diff
patches.arch/s390-14-09-october2005.diff
patches.arch/s390-14-10-october2005.diff
patches.arch/s390-14-11-october2005.diff
patches.arch/s390-14-12-october2005.diff
patches.arch/s390-15-01-october2005.diff
patches.arch/s390-15-02-october2005.diff
patches.arch/s390-15-03-october2005.diff
patches.arch/s390-15-04-october2005.diff
patches.arch/s390-15-05-october2005.diff
patches.arch/s390-15-06-october2005.diff
patches.arch/s390-15-07-october2005.diff
patches.arch/s390-15-08-october2005.diff
patches.arch/s390-15-09-october2005.diff
patches.arch/s390-15-10-october2005.diff
patches.arch/s390-15-11-october2005.diff
patches.arch/s390-15-12-october2005.diff
patches.arch/s390-15-13-october2005.diff
patches.arch/s390-15-14-october2005.diff
patches.arch/s390-15-15-october2005.diff
patches.arch/s390-15-16-october2005.diff
patches.arch/s390-15-17-october2005.diff
patches.arch/s390-16-01-october2005.diff
patches.arch/s390-16-02-october2005.diff
patches.arch/s390-16-03-october2005.diff
patches.arch/s390-16-04-october2005.diff
patches.arch/s390-16-05-october2005.diff
patches.arch/s390-16-06-october2005.diff
patches.arch/s390-16-07-october2005.diff
patches.arch/s390-16-08-october2005.diff
patches.arch/s390-16-09-october2005.diff
patches.arch/s390-16-10-october2005.diff
patches.arch/s390-16-11-october2005.diff
patches.arch/s390-16-12-october2005.diff
patches.arch/s390-16-13-october2005.diff
patches.arch/s390-16-14-october2005.diff
patches.arch/s390-16-15-october2005.diff
patches.arch/s390-16-16-october2005.diff
patches.arch/s390-16-17-october2005.diff
patches.arch/s390-16-18-october2005.diff
patches.arch/s390-16-19-october2005.diff
patches.arch/s390-16-20-october2005.diff
patches.arch/s390-16-21-october2005.diff
patches.arch/s390-17-01-october2005.diff
patches.arch/s390-17-02-october2005.diff
patches.arch/s390-17-03-october2005.diff
# s390-17-04 moved after the SCSI fixes
patches.arch/s390-17-05-october2005.diff
patches.arch/s390-17-06-sles10.diff
# Temporarily disabled, breaks kABI
patches.arch/s390-17-07-october2005.diff
patches.arch/s390-17-08-october2005.diff
patches.arch/s390-17-09-october2005.diff
patches.arch/s390-17-10-october2005.diff
patches.arch/s390-17-11-october2005.diff
patches.arch/s390-17-12-october2005.diff
patches.arch/s390-17-12-october2005-fix.diff
patches.arch/s390-18-01-october2005.diff
patches.arch/s390-18-02-october2005.diff
patches.arch/s390-18-03-october2005.diff
patches.arch/s390-18-05-october2005.diff
patches.arch/s390-18-06-october2005.diff
patches.arch/s390-18-07-october2005.diff
patches.arch/s390-18-08-october2005.diff
patches.arch/s390-18-09-october2005.diff
patches.arch/s390-20-01-october2005.diff
patches.arch/s390-20-02-october2005.diff
patches.arch/s390-20-03-october2005.diff
patches.arch/s390-20-04-october2005.diff
patches.arch/s390-20-05-october2005.diff
patches.arch/s390-20-06-october2005.diff
patches.arch/s390-20-07-october2005.diff
patches.arch/s390-20-08-october2005.diff
patches.arch/s390-20-09-october2005.diff
patches.arch/s390-20-10-october2005.diff
patches.arch/s390-20-11-october2005.diff
patches.arch/s390-20-12-october2005.diff
patches.arch/s390-20-13-october2005.diff
patches.arch/s390-20-14-october2005.diff
# New SP2 features
patches.arch/s390-01-kernel_nss.diff
patches.arch/s390-02-cpu_degredation.diff
patches.arch/s390-03-qeth_sg.diff
patches.arch/s390-04-vmur.diff
patches.arch/s390-05-zfcp_adapter_statistics.diff
patches.arch/s390-06-cio_dynamic_chpid_reconfiguration.diff
patches.arch/s390-07-af_iucv.diff
patches.arch/s390-08-etr.diff
patches.arch/s390-compound_private-v1.diff
patches.arch/s390-09-cpu-node-affinity.diff
patches.arch/s390-10-large_page-v4.diff
patches.suse/s390-fno-ivopts.patch
patches.arch/s390-raw-device
patches.arch/s390-scsi-backport-fixes
patches.arch/s390-qdio-alignment-fix.diff
patches.arch/s390-kprobes-ilen.patch
patches.arch/s390-02-qeth_hsi_layer2-v1.diff
patches.arch/s390-04-stsi-v1.diff
patches.arch/s390-01-sha512-v2.diff
patches.arch/s390-03-qdio_qeth_2ports-v1.diff
patches.arch/s390-21-01-october2005.diff
patches.arch/s390-21-02-october2005.diff
patches.arch/s390-21-03-october2005.diff
patches.arch/s390-21-04-october2005.diff
patches.arch/s390-21-05-october2005.diff
patches.arch/s390-21-06-october2005.diff
patches.arch/s390-21-07-october2005.diff
patches.arch/s390-21-08-october2005.diff
patches.arch/s390-21-09-october2005.diff
patches.arch/s390-21-10-october2005.diff
patches.arch/s390-21-11-october2005.diff
patches.arch/s390-21-12-october2005.diff
patches.arch/s390-21-13-october2005.diff
patches.arch/s390-21-14-october2005.diff
patches.arch/s390-21-15-october2005.diff
patches.arch/s390-21-16-october2005.diff
patches.arch/s390-21-17-october2005.diff
patches.arch/s390-21-18-october2005.diff
patches.arch/s390-21-19-october2005.diff
patches.arch/s390-22-01-october2005.diff
patches.arch/s390-22-02-october2005.diff
patches.arch/s390-22-03-october2005.diff
patches.arch/s390-22-04-october2005.diff
patches.arch/s390-22-05-october2005.diff
patches.arch/s390-23-01-october2005.diff
patches.arch/s390-23-02-october2005.diff
patches.arch/s390-23-03-october2005.diff
patches.arch/s390-23-04-october2005.diff
patches.arch/s390-23-05-october2005.diff
patches.arch/s390-23-06-october2005.diff
patches.arch/s390-23-07-october2005.diff
patches.arch/s390-23-08-october2005.diff
+hare patches.arch/s390-23-09-october2005.diff
patches.arch/s390-23-10-october2005.diff
+hare patches.arch/s390-23-11-october2005.diff
patches.arch/s390-23-12-october2005.diff
patches.arch/s390-24-01-october2005.diff
patches.arch/s390-24-02-october2005.diff
patches.arch/s390-25-01-ipl_from_file_fix.patch
patches.arch/s390-25-02-cio_idset.patch
patches.arch/s390-25-03-dasd-handle-inclomplete-disk-geometry-data.patch
patches.arch/s390-25-04-cio_device_detach.patch
patches.arch/s390-25-05-cio_refcount.patch
patches.arch/s390-25-06-cio_cm_enable.patch
patches.arch/s390-25-07-cio_wait4io.patch
patches.arch/s390-25-08-qdio_shutdown.patch
patches.arch/s390-25-09-cio_fix_refcount_problem_in_crw_handling.patch
patches.arch/s390-25-10-ptrace-cve-2008-1514.patch
patches.arch/s390-25-11-lcs_zero_cpa.patch
patches.arch/s390-25-12-qdio-hsi-asynch-full.patch
patches.arch/s390-26-01-qeth-recover-iff-up.patch
patches.arch/s390-26-02-qeth-tso.patch
patches.arch/s390-26-03-qeth-osncheck.patch
# special patch for the S390 buildservers
+jbl patches.fixes/libfs-dcache_readdir-lseek-remove.diff
########################################################
# VM/FS patches
########################################################
patches.fixes/sparsemem-incorrectly-calculates-section-number.patch
patches.suse/unmap_vmas-lat
+notyet patches.fixes/dont-writeback-fd-bdev-inodes.patch
+andrea patches.suse/silent-stack-overflow
patches.fixes/do_anonymous_page-race
patches.fixes/oom-warning
patches.fixes/oom-child-kill-fix.patch
+andrea patches.fixes/account-reserved-pages
patches.suse/bootmem-warning
# patches.suse/mm-implement-swap-prefetching.patch
# patches.suse/mm-implement-swap-prefetching-tweaks.patch
# patches.suse/mm-implement-swap-prefetching-tweaks-2.patch
# patches.suse/mm-implement-swap-prefetching-default-y.patch
# patches.suse/mm-swap-prefetch-magnify.patch
patches.suse/shmall-bigger
patches.suse/oom-too-early-1
patches.suse/oom-too-early-2
patches.fixes/hugetlb-reservation
patches.fixes/hugetlb-reservation-2
patches.fixes/meminfo-HugePages_Rsvd-wrap.patch
patches.fixes/fix-incorrect-hugepage-interleaving.patch
patches.fixes/make-swappiness-safer-to-use.patch
patches.suse/drain-node-pages-latency
patches.suse/cache_reap-latency
patches.fixes/invalidate_complete_page-race-fix.patch
patches.fixes/invalidate_complete_page2.patch
patches.fixes/invalidate_page_non_destructive
patches.fixes/invalidate-truncate-race.patch
patches.fixes/invalidate-truncate-race-compat.patch
patches.fixes/invalidate-truncate-race-fix.patch
patches.fixes/invalidate-truncate-race-assert.patch
patches.fixes/mmap-mtime.patch
patches.fixes/set_page_dirty_lock_race
patches.fixes/truncate-soft-lockup
patches.fixes/grab-swap-token-oops
patches.fixes/uncached-allocator
patches.fixes/genalloc-uncached-mspec-fix
patches.fixes/add-do_no_pfn.patch
patches.fixes/throttle_vm_writeout-deadlock.patch
patches.suse/zone-slab-reclaim.diff
patches.fixes/drain_node_page-drain-pages-in-batch-units.patch
patches.fixes/mm-kmalloc_node-correct-node.patch
patches.fixes/nr_anon
patches.fixes/copy-atomic-non-zeroing-prepare
patches.fixes/copy-atomic-non-zeroing-i386
patches.suse/fs-may_iops.diff
patches.suse/fs-knows-MAY_APPEND.diff
patches.suse/generic-acl.diff
patches.suse/tmpfs-acl.diff
patches.suse/osync-error
patches.suse/fat-o-flush
patches.fixes/inotify-lock-avoidance-with-parent-watch-status-in-dentry.patch
patches.fixes/inotify-lock-avoidance-with-parent-watch-status-in-dentry-fix-2.patch
patches.fixes/umount-prune_one_dentry-fix.diff
patches.suse/more-follow-link-recursions
patches.fixes/inotify-emit-delete
patches.fixes/kernel-block-event-03.patch
patches.fixes/remount-no-shrink-dcache
patches.fixes/dcache-race-during-umount
patches.fixes/readahead_window_fix.diff
patches.fixes/readahead_size_fix.diff
patches.fixes/loop-barriers
patches.fixes/loop-barriers2
patches.fixes/loop_early_wakeup_fix.diff
patches.fixes/dio-completion-fix
patches.fixes/bdev-imapping-race.diff
patches.suse/delayed-atime-3
patches.suse/delayed-atime-fix.diff
patches.fixes/invalidate_bdev-speedup-with-no-pagecache.diff
patches.suse/bh-cache-option
patches.fixes/igrab_should_check_for_i_clear.patch
patches.fixes/fsync-block-hint
patches.fixes/unique-i_ino.patch
- patches.fixes/unique-i_ino-tmpfs.patch
patches.fixes/debugfs-fixes.diff
patches.fixes/dio_should_wait-zab1.patch
patches.fixes/make_generated_ino_int.diff
patches.fixes/condense-output-of-show_free_areas.patch
patches.fixes/assign-task_struct.exit_code-before-taskstats_exit.patch
patches.fixes/mincore-pte-fixes.patch
patches.suse/mm-madvise-mmap_sem-scale.patch
patches.fixes/ramdisk-2.6.23-corruption_fix.diff
- patches.fixes/tmpfs-restore-missing-clear_highpage
patches.fixes/hugetlb-get_user_pages-corruption.patch
patches.fixes/hugetlb-get_user_pages-corruption-fix2.patch
patches.fixes/allow-filesystems-to-manually-d_move-inside-of-rename
patches.fixes/read_pages-fix.patch
patches.suse/mm-page_mkwrite.patch
patches.suse/mm-remove-zero_page.patch
patches.suse/mm-zero_page-get_user_pages.patch
# bug 283002
patches.fixes/add-zone-flags
patches.fixes/oom-serialize
patches.fixes/oom-kill-mm-locking-fix
patches.fixes/oom-improve-select_bad_process
patches.fixes/oom-less-memdie
patches.fixes/oom-fix-constraint-deadlock
patches.fixes/oom-improve-numa
patches.fixes/oom-stop-useless-vm-trashing
patches.fixes/limit-shrink-zone-scanning
patches.fixes/oom-fix-parallel-dumps
patches.fixes/oom-read-write-deadlock
patches.fixes/limit-reclaim-if-enough-pages-freed
patches.fixes/fix-X_OK-with-acl
patches.fixes/mm-generic-write-leak.patch
patches.fixes/mm-generic-write-leak-fix.patch
patches.fixes/xip-ZERO_PAGE-fix.patch
patches.fixes/xip-fix-for-highmem.patch
patches.fixes/grab_cache_nowait-honor-numa.diff
patches.suse/xpmem-block-cow.patch
patches.fixes/scan-all-dirty-inodes-on-sync
patches.fixes/mm-slab-add-gfpthisnode
patches.fixes/dio-zero-struct-dio-with-kzalloc
patches.fixes/fix-max_map_count-check
patches.fixes/remove-suid-bits-on-truncate
patches.fixes/dio-add-error-var.patch
patches.fixes/mm-anon_vma_prepare-locking.patch
# S/390 hugetlb support
patches.arch/s390-large_pte_type-v3.diff
########################################################
# Block Layer
########################################################
patches.suse/readahead-tune
patches.fixes/cfq-atomic-flags
# when enabling the two bottom fixes, the first must be removed
patches.fixes/cfq-backport-2.6.17-rc5-git
patches.fixes/cfq-performance-updates
patches.fixes/cfq-idle-timer
patches.fixes/cfq-busy-rr-fairness
patches.fixes/cfq-dont-set-batching
patches.fixes/cfq-clear-seek-values
patches.fixes/cfq-drop-dead-cic-fix
patches.fixes/cfq-make-idle-be-lowest
patches.fixes/elevator-trim-ioc
patches.fixes/elevator-switch-race
patches.suse/blkq-adjust-max-segments.diff
patches.fixes/blk-phys-segment-accounting
patches.suse/remove-relayfs.diff
patches.suse/blktrace.diff
patches.suse/loop-MS_LOOP_NO_AOPS
########################################################
# nfsacl protocol (agruen)
########################################################
+agruen patches.suse/nfsacl-client-cache-CHECK.diff
patches.fixes/nfs-acl-caching.diff
########################################################
# misc small fixes
########################################################
patches.fixes/avoid-kbd-msg
patches.suse/connector-read-mostly
patches.fixes/connector-time-include
patches.fixes/nfsv4-MAXNAME-fix.diff
# Translate LF to CRLF instead of LFCR
patches.fixes/serial_console
patches.fixes/add-slab_is_available-routine-for-boot-code.patch
patches.suse/matroxfb-yast-1024x768.patch
patches.fixes/ntty-fix-the-PPTP-hangs.patch
########################################################
# ACPI patches
########################################################
patches.suse/initramfs-before-acpi.patch
patches.suse/acpi_dsdt_initrd_initramfs
patches.suse/acpi-oldboot
patches.fixes/acpi-no-search
patches.arch/acpi_show_errors
patches.arch/acpi_show_errors-fix
patches.arch/acpi_handler_warning
patches.arch/acpi_export_syms
patches.fixes/acpi_ref_count.patch
patches.fixes/acpi_power_manageable_msg.patch
patches.arch/acpi_irq_derive_suppress_msg.patch
patches.arch/acpi_suppress_aetime.patch
patches.fixes/acpi-cpuindex
patches.fixes/acpi_remove_cpu_hotplug_exception.patch
patches.fixes/acpi_osl_atomics.patch
patches.suse/acpi-hotkeys-extra.diff
patches.arch/acpi_asus_update_0_30
patches.arch/acpi_asus_strict_model_check.patch
patches.arch/acpi_asus_init_fixups.patch
patches.suse/acpi_sony_init_fixups.patch
patches.arch/acpi_ibm_notify.patch
patches.fixes/acpi_thinkpad_r40e.patch
patches.arch/acpi_T60_ultrabay.patch
patches.fixes/acpi_ibm_dock_fix_not_present.patch
patches.fixes/acpi_battery_hotplug_fix.patch
patches.fixes/acpi-nolapic
patches.arch/acpi_processor_exit_acpi_off
patches.fixes/acpi_implicit_return_mem_leak.patch
patches.fixes/acpi_use_pkg_count.patch
patches.fixes/kdump-i386-boot-cpu-physical-apicid-fix-take2.patch
patches.fixes/use-loff_t-proc_dir_entry-size
patches.fixes/acpipnp-dma-resource-setup-fix.patch
patches.fixes/apic_fix_suspend.patch
patches.arch/acpi_package_object_support.patch
patches.arch/acpi_c2_timer_workaround.patch
patches.arch/acpi_disable_stray_gpe.patch
patches.arch/acpi-nehalem-deep-cstates.diff
# happens because of Vista hook on recent HP machines
patches.arch/acpi_thermal_check_critical_temp.patch
# Video driver updates
patches.arch/acpi_backport_video.c.patch
patches.arch/acpi_find_bcl_support.patch
patches.arch/acpi_thinkpad_brightness_fix.patch
patches.arch/acpi_video_ignore_devices_snd.patch
patches.arch/acpi_video_corruption.patch
patches.drivers/matroxfb-rectify-jitter-g450-g550-cumulative.patch
# Dock support
patches.arch/acpi_ibm_remove_dock.patch
patches.arch/acpi_kobject_uvent_var.patch
patches.arch/acpi_dock_backport.patch
patches.arch/acpi_notify_work_queue.patch
patches.arch/acpi_disable_gpe_warning.patch
# CPUFREQ
patches.fixes/powernow-fix-1
patches.fixes/powernow-fix-2
patches.fixes/powernow-fix-3
patches.fixes/cpufreq_sysfs_max_override.patch
patches.fixes/cpufreq_PPC_zero.patch
patches.fixes/cpufreq_dont_call_ppc_on_init.patch
patches.fixes/cpufreq_hide_zero_freq_msg.patch
patches.fixes/cpufreq_fix_limited_on_battery.patch
patches.fixes/cpufreq_ppc_boot_option.patch
patches.drivers/powernow-amd-fam10
patches.fixes/amd-powernow-hwpstates
patches.drivers/powernow-ext-mask
patches.fixes/ondemand-workqueue
patches.arch/powernowk8_family_freq_from_fiddid.patch
patches.drivers/x86_64_cpufreq_powernow-k8.patch
patches.arch/x86_cpufreq_pstate-sw-acpi-core.diff
patches.arch/x86_cpufreq_pstate-sw-acpi-cpufreq.diff
patches.arch/x86_cpufreq-pstate-sw-speedstep-centrino.diff
patches.arch/x86_cpufreq-pstate-sw-pdc-changes.diff
patches.arch/x86_cpufreq-pstate-sw-fix_1.patch
patches.arch/x86_cpufreq-pstate-sw-fix_2.patch
patches.arch/acpica-psd.patch
patches.fixes/eliminate-cpufreq_userspace-scaling_setspeed-deadlock.patch
patches.fixes/cpufreq-fix-ondemand-deadlock.patch
patches.arch/x86_introdce_ida_cpuinfo_processor_feature.patch
patches.arch/x86_cpufreq-add-support-for-freq-perf_registers.patch
patches.arch/cpufreq_acpi_driver_fixes.patch
# EC fixes
patches.fixes/acpi_ec_dummy.patch
patches.fixes/acpi_fix_ec_issue.patch
# resume/suspend ACPI funcs
+trenn patches.fixes/acpi_suspend_invoke_prepare.patch
patches.fixes/acpi_invoke_suspend_funcs.patch
patches.fixes/acpi_battery_resume.patch
patches.fixes/acpi_force-fan-active.patch
patches.fixes/acpi_power_dont_cache_state.patch
patches.fixes/psmouse-fiddle-with-reset.patch
patches.fixes/acpi_pcie_bridges_cid_check.patch
patches.arch/ia64_acpi_unalignments.patch
patches.fixes/acpi-remove-memhotplug-error
+ak patches.fixes/ec-enable-interrupts
+thoenig patches.suse/asus-lcd-fix
patches.fixes/acpi-get-pci-rootbridge-handle
patches.fixes/pm-ordering-fix.patch
patches.arch/x86_64-dos-with_ptrace.patch
########################################################
# xAPIC - Intel Nehalem
########################################################
patches.arch/xapic_4_vs_8_bit.patch
patches.arch/xapic_check_apic_version.patch
# Only for Nehalem also:
patches.arch/x86_use_broadcast_IPI_instead_of_serial_IPI.patch
# other APIC things ####
patches.arch/apic_cmdline_workaround_fix.patch
# enhance idle loop
patches.arch/acpi_idle_do_not_busy_loop.patch
########################################################
# Suse specific stuff
########################################################
# TIOCGDEV - suse special
patches.fixes/tiocgdev
########################################################
# Networking, IPv6
########################################################
patches.fixes/ipv6-init-fail-cleanup
patches.suse/ioat-1.6.patch
patches.suse/ioat-1.6-license.patch
patches.suse/ioat_dma_enable_irq_before_pending.patch
patches.drivers/ioatdma-add-the-unisys-i-oat-pci-vendor-device-id.patch
patches.suse/tcp-proc-listen
patches.fixes/ipv6-inet6_csk_xmit-leak
patches.fixes/ipv6-add-addr-install-dstentry
patches.fixes/ipv6-no-autoconf
patches.fixes/disallow-rh0-by-default.patch
patches.fixes/ipv6_rh_processing_fix
patches.fixes/bridge-module-get-put.patch
patches.fixes/tcp-saner-thash_entries-default.patch
patches.fixes/tcp-send-ACKs-each-2nd-received-segment.patch
patches.fixes/icmp6_redirect_fix
patches.fixes/only-offload-copies-for-tcp-when-there-will-be-a-context-switch.patch
patches.fixes/fix-more-per-cpu-typos.patch
patches.suse/netdev_watchdog_debug.patch
patches.fixes/ipv6_defer_initialization.patch
# IPv6 default address selection
patches.suse/IPV6-order-addresses-by-scope
patches.suse/IPV6-Use-ipv6_addr_src_scope-for-link-address-sorting
patches.suse/IPV6-ADDRCONF-Check-payload-length-for-IFA_LOCAL-attribute
patches.suse/IPV6-ADDRCONF-Allow-user-space-to-specify-address-lifetime
patches.suse/IPV6-ADDRCONF-Do-not-verify-an-address-with-infinity-lifetime
patches.suse/IPV6-The-ifa-lock-is-a-BH-lock
patches.fixes/rfc4193_addrconf.patch
patches.fixes/add-tcp_slow_start_after_idle-sysctl.patch
patches.fixes/sit-add-missing-kfree_skb
patches.fixes/ipv6-disallow-assigning-invalid-addresses.patch
patches.fixes/ipv6-dont-forward-unspec-src.patch
########################################################
# These patches are from the netfilter team, and
# are required to tag IPsec packets for packet
# filtering purposes.
########################################################
# These seem to be merged in 2.6.16
+perex patches.suse/netfilter-02-output-hooks
+perex patches.suse/netfilter-03-input-hooks
+perex patches.suse/netfilter-04-policy-lookup
+perex patches.suse/netfilter-05-policy-checks
+perex patches.suse/netfilter-06-policy-match
# Not sure if needed anymore; please test
+perex patches.suse/netfilter-hooks-checksum
patches.suse/netfilter-ipv4options
patches.suse/netfilter-ipt_LOG-mac
patches.fixes/fix-skb-nf_bridge-lifetime-issues.patch
patches.fixes/nf_bridge-header-size
patches.fixes/nf_nat_snmp_basic-fix-a-range-check-in-nat-for-SNMP
########################################################
#
# Device drivers
#
########################################################
patches.drivers/lpfc-8.1.2-update
patches.drivers/lpfc-8.1.3-update
patches.drivers/lpfc-8.1.4-update
patches.drivers/lpfc-8.1.5-update
patches.drivers/lpfc-8.1.6-update
patches.drivers/lpfc-8.1.7-update
patches.drivers/lpfc-8.1.8-update
patches.drivers/lpfc-8.1.9-update
patches.drivers/lpfc-8.1.10-update
patches.drivers/lpfc-8.1.11-sles-update
patches.drivers/lpfc-ioctl-segfault-fix
patches.drivers/lpfc-fix-pcix-ident
patches.drivers/lpfc-8.1.10.9-update
patches.drivers/lpfc-8.1.10.12-update
patches.drivers/lpfc-8.2.0.11-update
patches.drivers/lpfc-8.2.0.16-update
patches.drivers/lpfc-8.2.0.18-update
patches.drivers/lpfc-8.2.0.19-update
patches.drivers/lpfc-8.2.0.20-update
patches.drivers/lpfc-8.2.0.21-update
patches.drivers/lpfc-8.2.0.22-update
patches.drivers/lpfc-fix-flags-type
patches.drivers/snsc-powerdown-events
patches.drivers/sgi-ioc4-detect-variant.patch
patches.drivers/ide-acpi-support
patches.drivers/fix-b44-checks
patches.drivers/b44-fix_mac_address
patches.drivers/b44-phy-fix
patches.drivers/pcmcia-fix-yenta_TI-XX12
+oneukum patches.suse/parport_debug.patch
patches.fixes/request_irq-remove-warnings-from-irq-probing.patch
patches.fixes/fusion-nat-consumption-fix
patches.fixes/dvb-pinnacle-sat
patches.fixes/ipmi-startup-race
patches.fixes/ipmi-schedule
patches.fixes/ipmi-unload-crash
patches.fixes/ipmi-register-ports.patch
patches.fixes/ipmi-ipmi_msghandler.c-fix-a-memory-leak.patch
patches.drivers/ipmi-allow-daemon-override.patch
patches.fixes/ipmi-fix-default-io-search.patch
patches.fixes/ipmi-watchdog-handle-panic-properly.patch
patches.fixes/ipmi-change-device-node-ordering-to-reflect-probe-order.patch
patches.fixes/rtc-no-irq.patch
patches.drivers/w83627ehf-detect.diff
patches.fixes/device_bind.patch
patches.fixes/x86_64-hangcheck_timer-fix.patch
# FATE #302666, 335381
patches.drivers/ioc4-sp2-update
patches.fixes/pcie_reset_state.patch
patches.fixes/media-video-cx88-reduce-excessive-logging.patch
patches.fixes/tpm-write-data-types.patch
########################################################
# Storage
########################################################
patches.fixes/scsi-execute-in-context-api
patches.drivers/scsi-backport-common
patches.drivers/scsi-backport-midlayer
patches.drivers/scsi-backport-drivers
patches.drivers/scsi-backport-aacraid
patches.drivers/aacraid-vpd-support
patches.drivers/aacraid-improve-error-handling
patches.drivers/aacraid-sp2-update
patches.drivers/scsi-backport-aic7xxx
patches.drivers/scsi-backport-ibmvscsi
patches.drivers/ibmvscsis.patch
patches.suse/scsi-ibmvscsi-hcall.patch
patches.drivers/ibmvscsi-dlpar-empty-adapter.patch
patches.drivers/ibmvscsi-slave_configure.patch
patches.drivers/ibmvscsi-migration-login.patch
patches.drivers/ibmvscsi-change_queue_depth.patch
patches.fixes/cdrom-fix-open
+sles patches.fixes/bigsmp-floppy-apic
### libata/ide
patches.drivers/scsi-backport-remove-sata
patches.drivers/libata-add-ata-drivers
patches.drivers/libata-interrupt-zero.patch
patches.drivers/libata-acpi-upstream
patches.drivers/libata-acpi-update
patches.drivers/libata-docs.patch
patches.drivers/libata-initialize-variables.patch
patches.suse/ide-probe-delay
patches.fixes/ide-noflush
# ahci dynamic link powersaving, FATE#151355
patches.drivers/libata-ps-ata-macros
patches.drivers/libata-ps-implement-port-list
patches.drivers/libata-ps-export-counting-fns
patches.drivers/libata-ps-add-ready-counting-fn
patches.drivers/libata-ps-implement-update_scontrol
patches.drivers/libata-ps-implement-ps
patches.drivers/libata-ps-implement-ps-timer
patches.drivers/libata-ps-implement-std-callbacks
patches.drivers/libata-ps-convert-ahci
patches.drivers/libata-ps-implement-ahci-portstop-ps
patches.drivers/libata-add-devid-5337-to-sata_via
patches.drivers/libata-ahci-improve-spurious-irq-reporting
patches.drivers/libata-fix-port-action-in-perdev-action-mask
patches.drivers/libata-ahci-dont-enter-slumber-on-powerdown
patches.drivers/libata-ps-make-sure-linkps-stays-out-of-the-way
patches.drivers/libata-sata_vsc-kill-MSI-support
patches.drivers/ati-sb600-ide-support.patch
patches.fixes/pci-quirk-acer-aspire-dma33
patches.drivers/libata-ahci-fix-ahci_thaw
patches.drivers/libata-fix-jmicron-quirk
patches.drivers/libata-pata_amd-fix-cable-detection
patches.drivers/libata-add-sb600-ahci-quirk
patches.drivers/libata-clear-TF-before-IDENTIFYing
patches.drivers/libata-add-waits-for-govault
patches.drivers/libata-sata_sil-ignore-and-clear-spurious-IRQs-while-executing-commands-by-polling
patches.drivers/libata-jmicron-match-class-instead-of-function-nr
patches.drivers/libata-add-missing-PM-callbacks
patches.drivers/libata-ahci-RAID-mode-SATA-patch-for-Intel-ICH9M
patches.drivers/libata-blacklist-FUJITSU-MHT2060BH-for-NCQ
patches.drivers/libata-hardreset-on-SERR_INTERNAL
patches.drivers/libata-sata_sil24-pci_id-for-adaptec-1220SA
patches.drivers/libata-implement-HDIO_GET_IDENTITY
patches.drivers/libata-ide-via-add-PCI-IDs
patches.drivers/libata-ahci-ignore-interr-on-SB600
patches.drivers/libata-add-lkcd-hook
patches.suse/libata-pata_sl82c105-reset-delay.patch
patches.drivers/libata-add-pata_dma-kernel-parameter
patches.drivers/libata-sata_via-add-PCI-IDs
patches.drivers/libata-sata_via-kill-SATA_PATA_SHARING
patches.drivers/libata-sata_sil24-fix-IRQ-clearing-race-on-IRQ_WOC
patches.drivers/libata-fix-spindown
patches.drivers/ide-pnp-driver-unregister-fix
patches.drivers/ide-via82cxxx-cable-detect-fix
patches.drivers/ide-backport-hpt366-from-devel
patches.drivers/ide-hpt366-fix-302n-oops
patches.drivers/ide-atiixp-sb600-has-only-one-port
patches.drivers/ide-atiixp-fix-cable-detection
patches.drivers/ide-clear-bmdma-status-in-ide_intr-for-ICHx-controllers
patches.drivers/ide-cd-end-of-media-error-fix
patches.drivers/ide-cd-quiet-cap-read
patches.drivers/ide-cd-confused
patches.fixes/ide-acpi-fix-get_dev_handle
patches.drivers/it821x-dma-bug
patches.fixes/it821x-dma-bug
patches.drivers/sis5513-support-sis-965l
patches.drivers/libata-intel-tolapai
patches.drivers/libata-ide-add-support-for-sb700
patches.drivers/libata-sata_nv-disable-ADMA
patches.drivers/libata-tape-fix
patches.drivers/libata-ahci-add-support-for-NVs
patches.drivers/libata-ahci-ati-resume-fix
patches.drivers/libata-result-tf-bugfix
patches.drivers/libata-ahci-sb600-workarounds
patches.drivers/cdrom-dont-check-PLAY_AUDIO-in-count_tracks
patches.drivers/libata-lba28-off-by-one
patches.fixes/cdrom-fix-invalid-block-size.diff
### end of libata/ide
patches.drivers/scsi-sas-sp1-transport-class-update
patches.drivers/scsi-sas-sp1-sas-include
patches.drivers/scsi-sas-sp1-libsas-include
patches.drivers/scsi-sas-sp1-libsas-common
patches.drivers/scsi-backport-aic94xx
patches.drivers/scsi-sas-sp1-aic94xx-update
patches.drivers/scsi-backport-ipr-update
patches.drivers/scsi-backport-fc-fixes
patches.drivers/scsi-backport-netlink-messages
patches.drivers/ide_scsi-allow-it-to-be-used-for-non-cd-only.patch
patches.drivers/scsi-backport-megaraid
patches.drivers/megaraid-firmware-timeout
patches.drivers/scsi-backport-qla2xxx
patches.drivers/qla2xxx-sp1-update
patches.drivers/qla2xxx-support-54xx
patches.fixes/qla2xxx-avoid-duplicate-pci_disable_device
patches.drivers/qla2xxx-8.02.00-k5-update
patches.drivers/qla2xxx-8.02.00-k6-update
patches.drivers/qla2xxx-8.02.00-k6-to-8.02.00-k6-SLES10.2-00
patches.drivers/qla2xxx-8.02.00-k6-SLES10.2-00-to-8.02.00-k6-SLES10.2-02
patches.drivers/qla2xxx-eeh-handler
patches.drivers/qla2xxxx-8.02.00-k6-SLES10.2-02-1-to-8.02.00-k6-SLES10-05
patches.drivers/qla2xxx-relogin-regression
patches.suse/qla3xxx.diff
patches.drivers/qla3xxx-v2.03.00-k4-SLES10-SP2
patches.drivers/qla4xxx-sp1-update
patches.drivers/qla4xxx-5.01.00-d7-update
patches.drivers/qla4xxx-sp2-update
patches.drivers/qla4xxx-5.01.02-d1-5.01.02-d2
patches.drivers/qla4xxx-5.01.02-d2-5.01.02-d3
patches.drivers/qla4xxx-5.01.02-d3-5.01.02-d4
patches.drivers/qla4xxx-5.01.02-d4-SLES10.2-00-5.01.02-d4-SLES10.2-01
patches.drivers/qla2xxx-disable-local-interrupts-polling.patch
patches.fixes/qla2xxx-fix-queuecommand-panic
patches.drivers/scsi-backport-cciss.patch
patches.drivers/cciss_01_reformat_device_id_table.patch
patches.drivers/cciss_02_nr_cmds.patch
patches.drivers/cciss_03_ref_driver.patch
patches.drivers/cciss_04_e500.patch
patches.drivers/cciss_05_2tb_support.patch
patches.drivers/cciss_06_p600_dma.patch
patches.drivers/cciss_07_open_fix.patch
patches.drivers/cciss_08_sector_size.patch
patches.drivers/cciss_09_cleanup_int_mode.patch
patches.drivers/cciss_10_diskstat.patch
patches.drivers/cciss_11_3614.patch
patches.drivers/cciss_12_rm_revalidate_allvol.patch
patches.drivers/cciss_13_gt_16_ld.patch
patches.drivers/cciss_14_fix_for_2tb.patch
patches.drivers/cciss_15_flush_on_shutdown.patch
patches.drivers/cciss-device-symlink.patch
patches.drivers/cciss-fix-2tb-for-cluster
patches.drivers/cciss-panic-on-reboot
patches.drivers/cciss-sp2-update
patches.drivers/aic94xx-load-external-firmware
patches.drivers/aic94xx-fix-fw-leak.patch
patches.drivers/aic94xx-RTA-handler
patches.drivers/aic94xx-dont-eat-query-task-results
patches.drivers/libsas-remove-initiator-aborted
patches.drivers/libsas-add-dev-reset-to-eh
patches.drivers/libsas-abort-sas-task-deferral
patches.drivers/libsas-sata-support
patches.drivers/aic94xx-defer-task-abort
patches.drivers/aic94xx-abort-task-failed-fallthrough
patches.drivers/aic94xx-fix-ddb-scb-init
patches.drivers/aic94xx-lock-ddb-access
patches.drivers/aic94xx-update-version-number
patches.drivers/aic94xx-sp2-update
patches.drivers/aic79xx-29320lpe.patch
patches.drivers/aic79xx-use-dma-required-mask
patches.drivers/aic7xxx-sp2-update
# Remaining SCSI patches (garloff)
patches.suse/scsi-scan-inq-ppc64-dflt
patches.fixes/scsi-scan-limit-luns-seqscan-16k
patches.fixes/scsi-scan-blist-update
patches.fixes/cdrom-timeout-in-msec
patches.suse/scsi-scan-tolerate-pq3-cosmetic
patches.suse/scsi-scan-logging
patches.fixes/sdev-timeout-retries-update
patches.fixes/use-unchecked_isa_dma-in-sd_revalidate_disk
patches.suse/st-ioctl-idlun-support
patches.drivers/scsi-backport-mpt-fusion
patches.drivers/scsi-sas-sp1-mpt-fusion-update
patches.fixes/mpt-dont-return-DID_BUS_BUSY
patches.fixes/mpt-increase-sge-size-for-fc
patches.fixes/mpt-unstick-error-recovery
patches.fixes/mpt-sort-volumes-ascending
patches.fixes/mpt-dont-read-only-devices
patches.fixes/scsi-missing-iomem-cast
patches.fixes/scsi-sdev-initialisation-block-race
patches.fixes/scsi-abort-eh-cmds
patches.fixes/scsi-sdev-resurrect
patches.fixes/scsi-sdev-fixup-slave-destroy
patches.fixes/scsi_run_queue-recursion.patch
patches.fixes/fc_transport_optional_remove
patches.fixes/scsi-transport-fc-scan-timeout
patches.fixes/fc_transport-check-portstate-before-scan
patches.fixes/gdth-set-max_sectors
patches.fixes/scsi-set-correct-resid
patches.drivers/ips-soft-lockup
patches.arch/symbios-eeh-recovery.patch
patches.fixes/symbios-set-FE_ISTAT1.patch
patches.fixes/kill-driver-update-warning
patches.drivers/scsi-throttle-SG_DXFER_TO_FROM_DEV-warning-better
patches.arch/s390-17-04-october2005.diff
patches.fixes/scsi-reset-resid
patches.fixes/proc-scsi-scsi-fix.diff
patches.fixes/megaraid_mbox-dell-cerc-support
patches.drivers/fusion-pci-ids-3.04.06-suse
patches.drivers/fusion-sles10sp2-3.04.06-suse
patches.drivers/fusion-sp2-ioport-free
patches.fixes/fc_transport-remove-targets-on-host-remove
patches.drivers/fc_transport-add-8GBit
patches.fixes/scsi-eh-start_unit-retry.patch
patches.fixes/scsi-kill-failfast-requests
patches.drivers/megaraid_sas-3.15-update
patches.drivers/3ware-sp2-update
patches.drivers/areca-update-1.20.00.14
patches.drivers/megaraid-2.20.5.2
patches.drivers/aic94xx-remove-scsi-scan-host
patches.fixes/st-use-default-handler-for-sg
patches.fixes/st-fixup-set-blksize
patches.drivers/mptbase-reset-ioc-initiator-after-pci-resume.patch
patches.drivers/fusion-36GB-data-corruption
patches.drivers/3ware-9.5.0.1-update
patches.drivers/fusion-missing-raid-targets
patches.drivers/mptsas-dont-remove-targets
patches.fixes/mptbase-oops-on-mptctl-load
patches.fixes/scsi-use-correct-buffer-size
patches.drivers/aic79xx-core-fixes
patches.drivers/aic79xx-disable-qas
patches.fixes/sg-fixup-transfer-size
patches.fixes/fc_transport-simplify-user-scan
patches.fixes/megaraid_sas-suspend-fix
patches.fixes/3w-xxxx-dma-corruption-fix.patch
patches.fixes/fc_transport-8GBit-display-fix
patches.fixes/libsas-finish-cmd
patches.fixes/aic94xx-eh-fixes
patches.fixes/sym2-free-luntbl
patches.fixes/ips-revert-mdelay
patches.fixes/scsi-scan-handle-pq1-devices
patches.fixes/scsi-add-host-error-code-reset
# mmc/memmorycardreader tree backport
patches.suse/mmcbackport1_removeold.patch
patches.suse/mmcbackport2_addskel.patch
patches.suse/mmcbackport3_addcore.patch
patches.suse/mmcbackport4_addcard.patch
patches.suse/mmcbackport5_addhost.patch
patches.suse/mmcbackport6_adaptcore.patch
patches.suse/mmcbackport7_adapthost.patch
patches.suse/mmcbackport8_adaptcard.patch
patches.suse/mmcbackport9_adaptconfigs.patch
patches.suse/mmcbackportA_latestupstreamfixes.patch
patches.suse/mmcbackportAA_smallreleasefix.patch
patches.suse/mmcbackportB2_ricohquirk_v2.patch
# bnc#362850
patches.fixes/sd_liberal_28_sense_invalid.diff
########################################################
# Network
########################################################
patches.drivers/tg3-update-v3.69c
patches.drivers/tg3-update-v3.71b
patches.drivers/tg3-update-v3.85e
patches.drivers/tg3-update-v3.86
patches.drivers/tg3-update-v3.86b
patches.fixes/tulip-quad-NIC-ifdown
patches.suse/prism-defaultmac
patches.suse/nameif-track-rename.patch
patches.suse/rtnetlink-atomic2.patch
patches.suse/bonding-workqueue
patches.suse/bonding-bh-locking
patches.fixes/bonding-fix-bridged-bonding.patch
patches.suse/sk_clone.patch
patches.drivers/r8169-update-2.6.24
patches.drivers/r8169-backport-2.6.24
patches.fixes/r8169-fix-oops-in-r8169_get_mac_version
patches.drivers/sky2-1.10-update
patches.drivers/bnx2-update-1.5.1c
patches.drivers/bnx2-update-1.5.4b
patches.drivers/bnx2-update-1.5.5b
patches.drivers/bnx2-update-1.6.7c
patches.drivers/bnx2x-0.40.15.patch
patches.drivers/bnx2x-1.42.3.patch
# fix a oops on unload still active isdn drivers
# TODO: send upstream
patches.fixes/i4l-nullpointer-fix
patches.drivers/isdn_pcmcia_cardbus_irq
patches.fixes/avm-fix-capilib-locking
patches.fixes/ISDN-Fix-data-access-out-of-array-bounds
patches.fixes/ISDN-i4l-Fix-DLE-handling-for-i4l-audio
patches.drivers/e1000-update-7.6.9.1
patches.drivers/e1000-disable-l1aspm.patch
patches.drivers/e100-ignore-bad-eeprom
patches.drivers/e100-pci-err-recovery.patch
patches.drivers/ibmveth-flexbuf.patch
patches.drivers/ibmveth-large-frames.patch
patches.drivers/ibmveth-large-mtu.patch
patches.drivers/ibmveth-fixup-pool_deactivate.patch
patches.drivers/ibmveth-cpu-dlpar.patch
patches.drivers/netxen.patch
patches.drivers/netxen-1.patch
patches.drivers/netxen-gso.patch
patches.drivers/netxen-3.4.8.patch
patches.drivers/netxen.free-irq-on-removal.patch
patches.drivers/netxen.jumbo-frame-ping.patch
patches.drivers/netxen.ethtool.patch
patches.drivers/netxen-insmod.patch
patches.drivers/netxen-rmmod.patch
patches.drivers/netxen_version.fix
patches.drivers/netxen-driver-update.patch
patches.drivers/netxen-i386-single-port-borkage.patch
patches.fixes/netxen-endian-fix.diff
patches.drivers/netxen_fw_load.patch
patches.drivers/netxen_version.fix-2
patches.drivers/netxen-failover.patch
patches.drivers/netxen-2.6.23.patch
# Latest net/ieee80211 patches submitted upstream
patches.drivers/ieee802.11-2
patches.drivers/ieee802.11-4
patches.drivers/ieee802.11-6
patches.drivers/ieee802.11-7
patches.drivers/ieee802.11-8
patches.drivers/ieee802.11-9
patches.drivers/ieee802.11-10
patches.drivers/ieee802.11-11
patches.drivers/ieee802.11-12
patches.drivers/ieee802.11-13
patches.fixes/ieee80211-orinoco_ap_workaround.diff
# Intel wireless updates that go with the above.
patches.drivers/ipw2100-update
patches.drivers/ipw2200-update
patches.drivers/ipw2200-hwcrypto-off
patches.drivers/ipw2200-wep-fix
patches.fixes/prism54-we19.patch
patches.fixes/prism54-we19-wpa.patch
patches.drivers/d-link-dge-530t-should-use-the-skge-driver.patch
patches.drivers/ixgb-consistent-dma-mask
patches.drivers/ixgb-eeh.patch
patches.fixes/3c59x-collision-handle
patches.fixes/tulip-down-race
patches.fixes/bonding-suppress-duplicate-packets.diff
patches.fixes/bonding-packet-drop-checks-in-hwaccel-rx-path.diff
patches.fixes/bonding_support_carrier_state_for_master
patches.fixes/bonding_no_addrconf_for_bond_slaves
patches.suse/bonding-arp-validation.patch
patches.fixes/bonding-jiffies.patch
patches.fixes/bonding-convert-miimon-to-new-locking.patch
patches.fixes/bonding-fix-event-handling.patch
patches.fixes/natsemi-long-cable-fix
patches.fixes/forcedeth_suspendresume.patch
patches.fixes/xfrm-endless-loop
patches.fixes/atalk_sendmsg-crash.patch
patches.fixes/net-llc-fixup
# new forcedeth driver (fate #302620)
+jikos patches.drivers/forcedeth-driver-2622.diff
+jikos patches.drivers/forcedeth-new-integ.diff
+jikos patches.drivers/forcedeth-fix-backport.diff
+jikos patches.drivers/forcedeth-new-rmv-old-pciids.diff
patches.drivers/forcedeth-mcp6x-update.patch
patches.fixes/forcedeth-mac-address-corrected
patches.fixes/forcedeth-mac-address-correct
patches.fixes/forcedeth-mac-address-fix
# new s2io driver (fate #302602, #302664)
patches.drivers/s2io-update-2.0.25.1
patches.drivers/s2io-backport-2.0.25.1
# 340462, FATE #302393
patches.drivers/myri10ge_1.3.1
patches.drivers/chelsio_t3
patches.drivers/chelsio_t3-updates
patches.drivers/igb-1.0.8
patches.drivers/ixgbe-1.1.21.patch
patches.fixes/ixgbe-ethtool-fix
patches.fixes/ixgbe-ethtool-test-fix
patches.fixes/sbni_ioctl-missing-capability-checks
########################################################
# iSCSI
########################################################
patches.drivers/scsi-backport-open-iscsi
patches.drivers/open-iscsi-svn.diff
patches.drivers/open-iscsi-sp2-update
patches.drivers/iscsitarget
patches.drivers/iscsitarget-align-with-open-iscsi.patch
patches.drivers/iscsitarget-svn.diff
patches.drivers/iscsitarget-0.4.15-update
patches.fixes/iscsi-netware-fix
########################################################
# PCI and PCI hotplug
########################################################
patches.fixes/pci-fix-problems-with-msi-x-on-ia64.patch
# Greg does not want this patch applied now after RC1
# is out, he also wants to see it in mainline first.
# See the internal kernel discussion on the subject
# "Cardbus cards hidden, fixup parent subordinate# carefully"
# for more information.
+bk patches.fixes/yenta-fixup-parent-subordinate-carefully
# from 2.6.17
patches.drivers/pci-0004-quirk-for-IBM-Dock-II-cardbus-controllers.patch
patches.drivers/pci-0026-quirk-for-asus-a8v-and-a8v-delux-motherboards.patch
patches.drivers/pci-0027-make-MSI-quirk-inheritable-from-the-pci-bus.patch
patches.drivers/pci-0029-resource-address-mismatch.patch
patches.drivers/pci-0031-Cardbus-cards-hidden-needs-pci-assign-busses-to-fix.patch
patches.drivers/pci-0032-Move-pci_dev_put-outside-a-spinlock.patch
patches.drivers/pci-0041-Provide-a-boot-parameter-to-disable-MSI.patch
patches.drivers/pci-hotplug-sn-fix-cleanup-on-hotplug-removal-of-ppb.patch
patches.drivers/pci-delete-ACPI-hook-from-pci_set_power_state.patch
patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch
patches.fixes/pci-turn-pci_fixup_video-into-generic-for-embedded-vga.patch
patches.fixes/acpiphp-fix-ibm-hotplug-oops.patch
patches.fixes/shpchp_serialization_fix.patch
patches.fixes/shpchp_hotplug_parameters_fix.patch
patches.fixes/shpchp-remove-cmd_busy.patch
patches.drivers/pciehp-ia64-make-pci-express-support-selectable.patch
patches.drivers/pciehp-fix-programming-hotplug-parameters.patch
patches.drivers/pciehp-replace-pci_find_slot-with-pci_get_slot.patch
patches.drivers/pciehp-add-missing-pci_dev_put.patch
patches.drivers/pciehp-fix-wrong-return-value.patch
patches.drivers/pciehp-fix-improper-info-messages.patch
patches.drivers/pciehp-add-missing-locking.patch
patches.drivers/pciehp-remove-unnecessary-pci_disable_msi.patch
patches.drivers/pciehp-remove-unnecessary-free_irq.patch
patches.drivers/pcie-pm-quirk.patch
patches.fixes/pci-pcieport-driver-remove-invalid-warning-message.patch
patches.drivers/pci-quirk-1k-i-o-space-iobl_adr-fix-on-p64h2.patch
patches.drivers/ati-rs400_200-480-disable-msi
patches.drivers/pci-hotplug-acpiphp-remove-hot-plug-parameter-write-to-pci-host-bridge.patch
patches.drivers/pci-hotplug-acpiphp-avoid-acpiphp-cannot-get-bridge-info-pci-hotplug-failure.patch
patches.fixes/msi-save-restore-for-suspend-resume.patch
patches.fixes/acpi_pci_hotplug_poweroff.patch
patches.drivers/pci-set-power-at-enable
# from 2.6.18
patches.drivers/pci-initialize-struct-pci_dev.error_state.patch
# from 2.6.21
patches.drivers/pci-add-selected_regions-funcs.patch
# from 2.6.23, pci hotplug fixes
patches.drivers/pci-skip-isa-ioresource-alignment-on-some-systems.patch
patches.drivers/pci-use-_crs-for-pci-resource-allocation.patch
patches.drivers/pci-modify-pci-bridge-control-isa-flag-for-clarity.patch
# from 2.6.24
patches.drivers/pci-msi_intx_disable_bug-quirk
# from 2.6.22
patches.drivers/pci-express-aer-backport.patch
patches.drivers/pci-express-aer-aerdriver-off.patch
patches.drivers/pci-express-aer-documentation
patches.drivers/acpiphp-scan-slots-under-the-nested-p2p-bridge.patch
patches.fixes/fix-ia64-sn-msi-support
patches.arch/ia64-sn2-irq_fixup
patches.arch/ia64-fix-irqpoll
patches.drivers/pci-fix-ati-msi-quirk.patch
# from 2.6.24
patches.fixes/acpiphp_ibm-remove-get-device-information-failures.patch
# from 2.6.25
patches.drivers/pci-express-aer-only-pcie.patch
patches.drivers/pci-express-aer-OSC-only-pcie.patch
patches.drivers/pci-express-aer-check-for-any-CID.patch
patches.drivers/pci-express-aer-OSC-only-on-root-bridges.patch
patches.drivers/pci-express-aer-silence-_OSC.patch
# from 2.6.26
patches.drivers/pci-add-norom-boot-param.patch
########################################################
# sysfs / driver core
########################################################
# make debugging easier
patches.drivers/sysfs-crash-debugging.patch
patches.fixes/sysfs-check-for-existing-dir
patches.fixes/wait_for_sysfs_population.diff
# EXPORT_SYMBOL_GPL_FUTURE
patches.drivers/clean-up-module.c-symbol-searching-logic.patch
patches.drivers/export_symbol_gpl_future.patch
patches.drivers/export_symbol_gpl_future-rcu.patch
patches.drivers/export_symbol_gpl_future-usb.patch
patches.fixes/increase-firmware-loader-timeout.patch
patches.fixes/fix-sys-devices-system-node-node0-meminfo-from-having-anonpages-wrapped.patch
patches.suse/dmi-based-module-autoloading.patch
patches.fixes/sysfs-allow-sysdev_class-add-attributes
patches.fixes/sysfs_drop_dentry-fix-condition
patches.fixes/sysfs-fix-s_dentry-race
########################################################
# USB
########################################################
# make debugging easier
patches.drivers/always-announce-new-usb-devices.patch
# from 2.6.17
patches.drivers/usb-0037-Pegasus-Linksys-USBVPN1-support-cleanup.patch
patches.drivers/usb-0058-cypress_m8-add-support-for-the-Nokia-ca42-version-2-cable.patch
patches.drivers/usb-0059-PL2303-and-TIOCMIWAIT.patch
patches.drivers/usb-0060-support-for-USB-to-serial-cable-from-Speed-Dragon-Multimedia.patch
patches.drivers/usb-0072-add-support-for-Creativelabs-Silvercrest-USB-keyboard.patch
patches.drivers/usb-0076-cp2101-add-new-device-IDs.patch
patches.drivers/usb-0077-ftdi_sio-add-Icom-ID1-USB-product-and-vendor-ids.patch
patches.drivers/usb-0080-serial-add-navman-driver.patch
patches.drivers/usb-unplug-usbkb-from-hub.patch
patches.drivers/usb-add-driver-for-funsoft-usb-serial-device.patch
patches.drivers/usb-add-raritan-kvm-usb-dongle-to-the-hid_quirk_noget-blacklist.patch
patches.drivers/hci_usb-ISOC-blacklist.patch
# from 2.6.20
patches.drivers/usb-funsoft-hwinfo.patch
patches.drivers/usb-berry_charge.patch
patches.fixes/usb_acm_spin_req.patch
patches.fixes/visor_write_race.patch
patches.fixes/usb_nvidia_2gb_erratum.patch
# from 2.6.21
patches.drivers/usb-edgeport-epic-support.patch
patches.drivers/usb-serial-fix-edgeport-regression-on-non-epic-devices.patch
patches.fixes/unusual14cd.patch
patches.fixes/bug-257303_bt_final.patch
# 339743
patches.fixes/microtek_hal.diff
# 336850
patches.fixes/usb_336850.diff
patches.fixes/usb-use-proper-defines-for-config_usb_net_rndis_host-in-hub.c.patch
# from 2.6.23
patches.drivers/usb-add-usb_device_and_interface_info.patch
# from 2.6.24
patches.drivers/usb-airprime-option-2.6.24.patch
patches.drivers/usb-sierra-2.6.24.patch
# from 2.6.25
patches.fixes/usb-ehci-fixes-for-broken-amd-hardware.patch
# 380796
patches.fixes/usb_cdc_acm_throttle_fix.patch
# 406957
patches.suse/receipt_printer_usblp_quirk.diff
########################################################
# I2C
########################################################
patches.drivers/i2c-piix4-add-support-for-sb700.patch
patches.fixes/i2c-piix4-be-quiet-with-HT1000.patch
patches.drivers/i2c-nforce2-support-for-MCP51-and-MCP55.patch
patches.drivers/i2c-nforce2-support-for-MCP61-and-MCP65.patch
########################################################
# Input & Console
########################################################
patches.suse/bootsplash
patches.fixes/fbcon-scrollback-garbage.patch
patches.fixes/console_utf8_compose_chars
patches.fixes/console_utf8_copynpaste
+SLRS patches.suse/SLRS-kbdhook
patches.fixes/usb-hid-dead-mouse
patches.fixes/usb-hid-ppc-ibmkbd-noget.patch
patches.fixes/usblcd.patch
patches.fixes/drm-i915-fix-i965-secured-batchbuffer-usage.patch
patches.drivers/wacom-update-1.46.patch
patches.fixes/input-dmi-match-hp-force-release.patch
##########################################################
# Bluetooth
##########################################################
patches.fixes/bluetooth-setsockopt-leak.diff
##########################################################
# Sound
##########################################################
patches.drivers/alsa-git-post-2.6.16-rc1-git6
patches.drivers/alsa-dmx6fire-fix
patches.drivers/alsa-bt848-winfast-tv2000xp-fix
patches.drivers/alsa-ad1816a-trigger-fix
patches.drivers/alsa-ppc-screamer-endian-workaround
patches.drivers/sound-oss-kconfig-fix
patches.drivers/alsa-ice1712-delta1010lt-spdif-fix
patches.drivers/alsa-ice1712-delta1010lt-spdif-fix2
patches.drivers/alsa-fix-enable-option-check
patches.drivers/alsa-pause-ioctl-fix
patches.drivers/alsa-virmidi-sleep-in-atomic
patches.drivers/alsa-fix-cs4236-typo
patches.drivers/alsa-disconnect-return-enodev
patches.drivers/alsa-cs5535-delay-fix
patches.drivers/alsa-emu10k1-audigy4-sb0400
patches.drivers/alsa-fix-emu10k1-null-reference
patches.drivers/alsa-fix-vx-memory-leak
patches.drivers/alsa-bt87x-add-blacklist
patches.drivers/alsa-make-control-suspend-aware
patches.drivers/alsa-fix-memleaks
patches.drivers/alsa-ac97-static-volume
patches.drivers/alsa-ac97-static-volume-fix
patches.drivers/alsa-nm256-fix-lockup
patches.drivers/alsa-ac97-cleanup-obsolete-workaround
patches.drivers/alsa-ice1712-module-option-typo-fix
patches.drivers/alsa-ice1712-aureon-enum-fix
patches.drivers/alsa-ice1712-dmx6fire-switch-fix
patches.drivers/alsa-maestro3-misc-fixes
patches.drivers/alsa-cs4281-probe-fix
patches.drivers/alsa-usbmixer-resolution-fix
# post-code10-RC2
patches.drivers/alsa-thinkpad41p-add-blacklist
patches.drivers/alsa-control-warning-fix
# SLES10-SP1 patches
patches.drivers/alsa-sp1-misc-fixes
patches.drivers/alsa-sp1-pci-quirk
patches.drivers/alsa-sp1-intel8x0-update
patches.drivers/alsa-sp1-via82xx-update
patches.drivers/alsa-sp1-atiixp-update
patches.drivers/alsa-sp1-hda-update
patches.drivers/alsa-sp1-usb-audio-update
patches.drivers/alsa-sp1-beta2-hda-fixes
patches.drivers/alsa-sp1-beta2-usbaudio-fixes
patches.drivers/alsa-sp1-beta4-sound-core-fix
patches.drivers/alsa-sp1-beta4-sound-pci-fix
patches.drivers/alsa-sp1-beta4-ac97-fix
patches.drivers/alsa-sp1-beta4-hda-fix
patches.drivers/alsa-sp1-beta4-usbaudio-fix
patches.drivers/alsa-sp1-beta5-hda-fix
patches.drivers/alsa-sp1-beta5-misc-fix
patches.drivers/alsa-sp1-beta6-pci-fix
patches.drivers/alsa-sp1-beta6-hda-fix
# post SP1 fixes
patches.drivers/alsa-post-sp1-hda-analog-update
patches.drivers/alsa-post-sp1-hda-conexant-fixes
patches.drivers/alsa-post-sp1-hda-sigmatel-pin-fix
patches.fixes/alsa-convert-snd-page-alloc-proc-file-to-use-seq_file
patches.drivers/alsa-emu10k1-spdif-mem-fix
patches.drivers/alsa-post-sp1-hda-stac-error-fix
patches.drivers/alsa-post-sp1-hda-probe-blacklist
patches.drivers/alsa-post-sp1-hda-robust-probe
patches.drivers/alsa-sp2-hp-alc262-fix
patches.drivers/alsa-sp2-hp-alc888-add
patches.drivers/alsa-sp2-hp-alc262-fix2
patches.drivers/alsa-sp2-big-hda-update
patches.drivers/alsa-sp2-hda-more-fixes
patches.drivers/alsa-sp2-beta2-hda-hdmi-fix
patches.drivers/alsa-sp2-beta2-cx5045-spdif-fix
patches.drivers/alsa-sp2-beta2-hda-misc-fixes
patches.drivers/alsa-sp2-beta3-hda-fixes
patches.drivers/alsa-sp2-beta3-ad1883
patches.drivers/alsa-sp2-beta3-ad1984a-mobile
patches.drivers/alsa-sp2-beta3-more-hda-fixes
patches.drivers/alsa-sp2-beta4-hda-fixes
patches.fixes/fix-maestro3-unload.patch
# post SP2
patches.drivers/alsa-post-sp2-hp2133-mic-fix
patches.drivers/alsa-post-sp2-realtek-auto-resume-fix
patches.drivers/alsa-post-sp2-realtek-more-fixes
patches.drivers/alsa-post-sp2-alc663-fsc-fix
patches.drivers/alsa-post-sp2-atihdmi-add
patches.drivers/alsa-post-sp2-intel-dg33-add
patches.drivers/alsa-post-sp2-hda-resume-broken-bios-fix
patches.drivers/alsa-post-sp2-hp-mobile-add
patches.fixes/sound-ensure-device-number-is-valid-in-snd_seq_oss_sync_make_info
########################################################
# Other driver fixes
########################################################
patches.fixes/parport-mutex
+rw patches.fixes/serial8250_console_write-ier
# suse-2.4 compatible crypto loop driver
patches.suse/twofish-2.6
patches.fixes/0002-sbp2-prevent-unloading-of-1394-low-level-driver.patch
patches.fixes/0005-ohci1394-log-physical-posted-write-errors.patch
patches.fixes/0015-ohci1394-cleanup-the-Unexpected-PCI-resource-length-warning.patch
patches.drivers/disable-edac.patch
patches.fixes/hdaps-backport.diff
patches.drivers/nozomi.patch
patches.fixes/sis-agp20070226.patch
patches.fixes/usb-hid-ncr-no-init-reports.patch
patches.fixes/serial-8250-backup-timer
patches.fixes/serial-8250-backup-timer-2
patches.fixes/serial-8250-backup-timer-2-deadlock-fix
patches.fixes/serial-8250-backup-timer-force
- patches.fixes/fix-serial-8250-UART_BUG_TXEN-test
patches.fixes/serial-remove-unconditional-enable-of-TX-irq-for-console
patches.fixes/serial-8250-add-locking-to-console-write-function
patches.fixes/8250-sysrq-deadlock-fix
patches.fixes/shared_irq_8250.patch
patches.fixes/shared_irq_serial_pnp.patch
patches.fixes/i8042-reentry
patches.fixes/icom-irq_number-size.patch
patches.fixes/icom-pcie-device_id.patch
patches.suse/8250-sysrq-ctrl_o.patch
patches.fixes/fix-the-graphic-corruption-issue-on-ia64-machines.patch
patches.fixes/legacy-pty-count-kernel-parm.patch
patches.drivers/ich10-chipset-support.patch
patches.fixes/fix-ioc4-refcounting.patch
########################################################
# device-mapper
########################################################
patches.fixes/dm-blk_cleanup_queue.diff
patches.fixes/dm-snapshot-fix-origin_write-pe-submission.patch
patches.fixes/dm-snapshot-replace-sibling-list.patch
patches.fixes/dm-snapshot-fix-pending-pe-ref.patch
patches.fixes/dm-snapshot-fix-invalidation.patch
patches.fixes/dm-mirror-inconsistent-recovery-fix.diff
patches.fixes/dm-tidy-mdptr.diff
patches.fixes/dm-table-store-md.diff
patches.fixes/dm-store-geometry.diff
patches.fixes/dm-snapshot-unify-chunk_size.diff
patches.fixes/idr_replace.diff
patches.fixes/dm-use-idr_replace.diff
patches.fixes/dm-idr_pre_get-ordering.diff
patches.fixes/dm-use-spinlock.diff
patches.fixes/dm-DMF_FREEING.diff
patches.fixes/dm-proper-refcounting.diff
patches.fixes/dm-module-refcount.diff
patches.fixes/dm-initialize-ordering.diff
patches.fixes/dm-mirror-sector-size-fix.diff
patches.fixes/dm-mirror-refactor-context.diff
patches.fixes/dm-mirror-bitset_size-fix.diff
patches.fixes/dm-mirror-sync_count-fix.diff
patches.fixes/dm-kcopyd-error-accumulation-fix.patch
patches.fixes/dm-table-split_args-handle-no-input.diff
patches.fixes/dm-prevent-removal-if-open.diff
patches.fixes/dm-fix-alloc_dev-error_path.patch
patches.fixes/dm-snapshot-fix-metadata-error-handling.patch
patches.fixes/dm-snapshot-fix-metadata-writing-when-suspending.patch
patches.fixes/dm-snapshot-tidy_snapshot_map.diff
patches.fixes/dm-snapshot-tidy_pending_complete.diff
patches.fixes/dm-snapshot-add_workqueue.diff
patches.fixes/dm-snapshot-tidy_pe_ref_counting.diff
patches.fixes/dm-snapshot-fix_free_pending_exception.diff
patches.fixes/dm-suspend-resume-events
patches.fixes/dm-use-private-biosets.diff
patches.fixes/dm-fix-find_device-race.diff
patches.fixes/dm-suspend-error-path.diff
patches.fixes/dm-mirror-wait-for-io-suspend.diff
patches.fixes/dm-io-bi_max_vecs-fix.diff
patches.fixes/dm-mirror-sync_search-on-resume.diff
# patches below are not upstream
patches.fixes/dm_check_device_area.diff
patches.fixes/dm-merge-max_hw_sector.diff
patches.fixes/dm-snapshot-release-memory-if-invalid.patch
patches.fixes/dm-mpath-default-to-scsi-err-handler.patch
patches.fixes/bio-sense-data.patch
patches.fixes/dm-mpath-hw-handler-sense-data.patch
# dm-netlink
patches.drivers/dm_netlink_part1.diff
patches.drivers/dm_netlink_part2.diff
patches.drivers/dm_netlink_part3.diff
patches.fixes/dm-netlink-fixes
# Additional hardware handlers
patches.fixes/dm-mpath-hp-sw.patch
patches.fixes/dm-mpath-rdac.patch
patches.fixes/rdac_ds4000_failover.patch
patches.fixes/dm-mpath-rdac-fixups
patches.fixes/dm-queue-flag-cluster
patches.fixes/dm-mpath-revalidate-disk.patch
patches.fixes/dm-fix-page_len-parameter-for-MODE-SELECT-10-command
patches.fixes/dm-rename-function
patches.fixes/dm-extract-pg_init-functionality
patches.fixes/dm-add-private-info-for-endio
patches.fixes/dm-retry-mode-select
patches.fixes/dm-inquiry-to-get-current-owner
patches.fixes/dm-commonize-inquiry-get-functionality
patches.fixes/dm-serialize-mode-selects
patches.fixes/dm-made-MODE_SELECT_10-default
patches.fixes/dm-submit-MODE-SELECTs-per-lun
patches.fixes/dm-Cleancp
patches.fixes/dm-mpath-conditionally-update-devsize
patches.fixes/dm-mpath-add-status-callback
patches.fixes/dm-mpath-rdac-avt-support
patches.fixes/dm-mpath-ioctl-support
patches.fixes/dm-store-md-name
patches.fixes/dm-improve-message-consistency
patches.fixes/dm-rename-struct-path
patches.fixes/dm-mpath-log-device-name
patches.fixes/dm-mpath-add-pg-init-retries
patches.fixes/dm-mpath-backport-rdac-fixes
patches.fixes/dm-mpath-backport-hp-sw-fixes
patches.fixes/dm-mpath-implement-hwh-workqueue
patches.fixes/dm-mpath-alua
patches.fixes/dm-mpath-implement-hwh-controller
patches.fixes/dm-raid1-backport
patches.fixes/dm-mpath-check-for-valid-pgpath
patches.fixes/dm-mpath-pg_timeout.patch
patches.fixes/dm-mpath-fallback-mode_select-for-rdac
patches.fixes/dm-table-switch-to-readonly
patches.suse/dm-mpath-null-pgs
patches.suse/dm-mpath-no-partitions-feature
########################################################
# md/raid
########################################################
patches.fixes/md-queue-flag-cluster
patches.fixes/md-noisy-shutdown
patches.fixes/md-barrier-fixes
patches.fixes/md-faulty-count-fix
patches.fixes/md-bitmap-ffz
patches.suse/md-interface-fixes
patches.fixes/md-clean-unplug
patches.fixes/md-v1-add-fix
patches.fixes/md-raid1-handle-read-error
patches.fixes/md_raid1_barrier_fix
patches.fixes/md-idle-test
+neilb patches.fixes/md-raid1-failfast
patches.fixes/md-uevent
########################################################
# KDB v4.4 - KDB has to apply before XFS
########################################################
patches.suse/kdb-common
patches.suse/kdb-i386
patches.suse/kdb-ia64
patches.suse/kdb-x86_64
patches.suse/kdb-x86_64-longjmp
patches.suse/x86_64-kdebug-events
patches.suse/x86_64-smp-kdb-stop
patches.fixes/kdb-missing-export.diff
patches.fixes/kdb-fix-kdump-entering-die
patches.arch/x86_64-kdb-vector
patches.suse/kdb-build-fix
patches.suse/scsi-kdb-scsi_cmnd.patch
patches.fixes/fix-8250-kdb
patches.suse/kdb-backport-1
patches.suse/kdb-backport-2
########################################################
# NFS
########################################################
patches.suse/register_sysctl_path
patches.suse/nfs-sysctl
patches.suse/nfsd-sysctl
patches.suse/fs-sysctl-register-convert
patches.fixes/nfs-directio-drop-semaphore
patches.fixes/nfs-rename-zap-inode
patches.fixes/sunrpc-restart-delay-fix
patches.fixes/nfs-getxattr-length.diff
patches.fixes/nfs4-setclientid
patches.fixes/nfs4-open-delegated
patches.fixes/compat_sys_nfsservctl-access_ok.patch
patches.fixes/nfs4-acl-listattr-fix.diff
patches.fixes/disable-nfsv4-posix-acl-hack.diff
patches.fixes/nfs-revalidate-race
patches.fixes/nfsd-setuser-fix
patches.fixes/nfsd-putrootfh-dont-setuser
patches.fixes/nfsd-ref-fhandle-problem
patches.fixes/nfsd-path-release-fix
patches.fixes/nfsd-set-user-fix
patches.fixes/nfsd-dmapi-aware
patches.fixes/nfsd-type-3-fh
patches.fixes/nfsv4-setclientid
patches.fixes/nfsd-auth-properly
patches.fixes/nfs-xdr-fencepost
patches.fixes/nfs-mkpipe-refcnt-dentry
patches.fixes/nfs-pipefs-busy-inodes
patches.fixes/nfs-truncate-race
patches.suse/knfsd-add-per-operation-server-stats
patches.suse/nfs-aio-dio
patches.fixes/nfs-tcp-reconnect-on-error
patches.fixes/nfs-lock-warning-removal
patches.fixes/nfs-jiffie-wrap
patches.fixes/nfs-page-revalidation-bug
patches.fixes/nfs-readdir-timestamp
patches.fixes/nfsd-gss-memleak
patches.fixes/nfs-fix-release-page-race
patches.fixes/nfs-osync-error-return
patches.fixes/nfs-enospc
patches.fixes/nfs4-fix-bad-semaphore-release
patches.fixes/nfs4-lock-release-fix
patches.fixes/rpc-no-paranoia
patches.fixes/sunrpc-randomize-xids
patches.suse/nfs-display-sec-flavour.diff
patches.fixes/nfs-name-len-limit
patches.fixes/nfs-remove-bogus-cache-change-attribute-check.diff
patches.fixes/nfsacl-retval.diff
patches.fixes/nfs-direct-io-fix-1
patches.fixes/nfs-direct-io-fix-2
patches.fixes/nfs-more-random-port
patches.fixes/knfsd4-fix-byte-range-lock-oops
# bug 283002
patches.fixes/oom-nfs_create_request-deadlock
patches.fixes/nfs-osync-on-error
patches.fixes/nfsd-ocfs2-corruption-on-shutdown
patches.fixes/nfs-prevent-unwanted-cache-invalidation
patches.fixes/nfs-respect-signals-in-blocking-locks
patches.fixes/nfs-fix-cache-consistency
patches.fixes/nfs-acl-not-soft.patch
########################################################
# lockd + statd
#
# This is essentially what we had since SLES9, broken up
########################################################
# lockd changes - all kinds of code cleanup
# and support for name based host lookups:
patches.suse/lockd-max-hosts-dynamic
patches.suse/lockd-01-VFS-Fix-__posix_lock_file-copy-of-private-lock-ar.patch
patches.suse/lockd-02-NLM-nlm_alloc_call-should-not-immediately-fail-on-s.patch
patches.suse/lockd-03-lockd-Don-t-expose-the-process-pid-to-the-NLM-serve.patch
patches.suse/lockd-04-SUNRPC-eliminate-rpc_call.patch
patches.suse/lockd-05-lockd-clean-up-nlmsvc_lock.patch
patches.suse/lockd-06-lockd-simplify-nlmsvc_grant_blocked.patch
patches.suse/lockd-07-lockd-make-nlmsvc_lock-use-only-posix_lock_file.patch
patches.suse/lockd-08-locks-remove-unused-posix_block_lock.patch
patches.suse/lockd-09-locks-lockd-fix-race-in-nlmsvc_testlock.patch
patches.suse/lockd-10-NFSD4-return-conflict-lock-without-races.patch
patches.suse/lockd-11-lockd-Remove-FL_LOCKD-flag.patch
patches.suse/lockd-12-lockd-posix_test_lock-should-not-call-locks_copy_.patch
patches.suse/lockd-13-lockd-Fix-server-side-lock-blocking-code.patch
patches.suse/lockd-14-lockd-Add-refcounting-to-struct-nlm_block.patch
patches.suse/lockd-15-lockd-Clean-up-of-the-server-side-GRANTED-code.patch
patches.suse/lockd-16-lockd-Make-nlmsvc_create_block-use-nlmsvc_lookup_.patch
patches.suse/lockd-17-lockd-Make-lockd-use-rpc_new_client-instead-of-rp.patch
patches.suse/lockd-18-lockd-stop-abusing-file_lock_list.patch
patches.suse/lockd-19-lockd-Fix-Oopses-due-to-list-manipulation-errors.patch
patches.suse/lockd-20-NLM-nlmclnt_cancel_callback-should-accept-NLM_LCK_D.patch
patches.suse/lockd-21-NLM-Simplify-client-locks.patch
patches.suse/lockd-22-NLM-Fix-nlmclnt_test-to-not-copy-private-part-of-lo.patch
patches.suse/lockd-23-NLM-Add-nlmclnt_release_call.patch
patches.suse/lockd-24-lockd-Add-helper-for-_RES-callbacks.patch
patches.suse/lockd-25-lockd-Fix-a-typo-in-nlmsvc_grant_release.patch
patches.suse/lockd-26-lockd-blocks-should-hold-a-reference-to-the-nlm_fil.patch
patches.suse/lockd-27-LOCKD-nlmsvc_traverse_blocks-return-is-unused.patch
patches.suse/lockd-28-LOCKD-Make-nlmsvc_traverse_shares-return-void.patch
patches.suse/lockd-29-VFS-fs-locks.c-cleanup-locks_insert_block.patch
patches.suse/lockd-30-VFS-fs-locks.c-NFSD4-add-race_free-posix_lock_fil.patch
patches.suse/lockd-31-locks-don-t-panic.patch
patches.suse/lockd-32-NLM-Fix-reclaim-races.patch
patches.suse/lockd-33-Return-error-in-case-flock_lock_file-failure.patch
patches.suse/lockd-34-locks-don-t-unnecessarily-fail-posix-lock-operati.patch
patches.suse/lockd-35-locks-don-t-do-unnecessary-allocations.patch
patches.suse/lockd-36-locks-clean-up-locks_remove_posix.patch
patches.suse/lockd-37-vfs-add-lock-owner-argument-to-flush-operation.patch
patches.suse/lockd-38-VFS-Allow-caller-to-determine-if-BSD-or-posix-locks.patch
patches.suse/lockd-39-NLM-NFSv4-Don-t-put-UNLOCK-requests-on-the-wire-unl.patch
patches.suse/lockd-40-VFS-Add-support-for-the-FL_ACCESS-flag-to-flock_loc.patch
patches.suse/lockd-41-NLM-NFSv4-Wait-on-local-locks-before-we-put-RPC-cal.patch
patches.suse/lockd-42-NLM-lockd-remove-b_done.patch
patches.suse/lockd-43-LOCKD-Fix-a-deadlock-in-nlm_traverse_files.patch
patches.suse/lockd-44-knfsd-hide-use-of-lockd-s-h_monitored-flag.patch
patches.suse/lockd-45-knfsd-consolidate-common-code-for-statd-lockd-no.patch
patches.suse/lockd-46-knfsd-when-looking-up-a-lockd-host-pass-hostname.patch
patches.suse/lockd-47-knfsd-lockd-introduce-nsm_handle.patch
patches.suse/lockd-48-knfsd-misc-minor-fixes-indentation-changes.patch
patches.suse/lockd-49-knfsd-lockd-Make-nlm_host_rebooted-use-the-nsm_h.patch
patches.suse/lockd-50-knfsd-lockd-make-the-nsm-upcalls-use-the-nsm_han.patch
patches.suse/lockd-51-knfsd-lockd-make-the-hash-chains-use-a-hlist_nod.patch
patches.suse/lockd-52-knfsd-lockd-Change-list-of-blocked-list-to-list_.patch
patches.suse/lockd-53-knfsd-change-nlm_file-to-use-a-hlist.patch
patches.suse/lockd-54-knfsd-lockd-make-nlm_traverse_-more-flexible.patch
patches.suse/lockd-55-knfsd-lockd-Add-nlm_destroy_host.patch
patches.suse/lockd-56-knfsd-simplify-nlmsvc_invalidate_all.patch
patches.suse/lockd-57-knfsd-lockd-optionally-use-hostnames-for-identif.patch
patches.suse/lockd-58-knfsd-make-nlmclnt_next_cookie-SMP-safe.patch
patches.suse/lockd-59-knfsd-match-GRANTED_RES-replies-using-cookies.patch
patches.suse/lockd-60-knfsd-export-nsm_local_state-to-user-space-via-sy.patch
patches.suse/lockd-61-knfsd-lockd-fix-use-of-h_nextrebind.patch
patches.suse/lockd-62-knfsd-lockd-fix-refount-on-nsm.patch
patches.suse/lockd-63-knfsd-Fix-bug-in-recent-lockd-patches-that-can-ca.patch
patches.suse/lockd-64-knfsd-Allow-lockd-to-drop-replies-as-appropriate.patch
patches.suse/lockd-65-NLM-Fix-double-free-in-__nlm_async_call.patch
patches.suse/lockd-66-locks-trivial-removal-of-unnecessary-parentheses.patch
patches.suse/lockd-67-locks-create-posix-to-flock-helper-functions.patch
patches.suse/lockd-68-NLM-Shrink-the-maximum-request-size-of-NLM4-request.patch
patches.suse/lockd-69-locks-make-lock-release-private-data-before-retur.patch
patches.suse/lockd-70-locks-give-posix_test_lock-same-interface-as-lock.patch
patches.suse/lockd-71-locks-factor-out-generic-filesystem-switch-from-tes.patch
patches.suse/lockd-72-locks-factor-out-generic-filesystem-switch-from-set.patch
patches.suse/lockd-73-locks-allow-vfs-posix-_lock_file-to-return-conflic.patch
patches.suse/lockd-74-locks-add-lock-cancel-command.patch
patches.suse/lockd-75-locks-add-fl_grant-callback-for-asynchronous-lock-r.patch
patches.suse/lockd-76-lockd-save-lock-state-on-deferral.patch
patches.suse/lockd-77-lockd-handle-fl_grant-callbacks.patch
patches.suse/lockd-78-lockd-pass-cookie-in-nlmsvc_testlock.patch
patches.suse/lockd-79-lockd-handle-test_lock-deferrals.patch
patches.suse/lockd-80-lockd-always-preallocate-block-in-nlmsvc_lock.patch
patches.suse/lockd-81-lockd-add-code-to-handle-deferred-lock-requests.patch
patches.suse/lockd-82-locks-fix-F_GETLK-regression-failure-to-find-confl.patch
patches.suse/lockd-83-NLM-don-t-use-CLONE_SIGHAND-in-nlmclnt_recovery.patch
patches.suse/lockd-84-locks-clean-up-lease_alloc.patch
patches.suse/lockd-85-locks-share-more-common-lease-code.patch
patches.suse/lockd-86-locks-rename-lease-functions-to-reflect-locks.c-con.patch
patches.suse/lockd-87-locks-provide-a-file-lease-method-enabling-cluster.patch
patches.suse/lockd-88-locks-export-setlease-to-filesystems.patch
patches.suse/lockd-89-locks-make-posix_test_lock-interface-more-consist.patch
patches.suse/lockd-90-locks-fix-vfs_test_lock-comment.patch
patches.suse/lockd-91-rename-setlease-to-generic_setlease.patch
patches.suse/lockd-92-use-mutex-instead-of-semaphore.diff
patches.suse/lockd-93-fix-circular-lock-dependency.diff
patches.suse/lockd-94-Convert-NFSv4-to-new-lock-interface.patch
# kernel statd:
patches.suse/sunrpc-register-multiple
patches.suse/lockd-switchable-statd
patches.suse/lockd-kernel-statd-sp2
patches.suse/lockd-suse-config
patches.fixes/statd-regular-gc
patches.fixes/lockd-chroot-fix
patches.fixes/locks-avoid-deadlock
# patches.suse/lockd-max-hosts-dynamic
# patches.suse/lockd-h_monitored
# patches.suse/lockd-consolidate-notify
# patches.suse/lockd-host-lookup-name
# patches.suse/lockd-nsm-handle
# patches.suse/lockd-cleanup
# patches.suse/lockd-nsm-reboot
# patches.suse/lockd-nsm-upcalls
# patches.suse/lockd-host-list
# patches.suse/lockd-traverse-rewrite
# patches.suse/lockd-nlm-destroy-host
# patches.suse/lockd-invalidate-all
# patches.suse/lockd-use-hostnames
# patches.suse/lockd-atomic-cookies
# patches.suse/lockd-grant-cookies
# patches.suse/lockd-nsm_local_state
# patches.suse/lockd-force-rebind-fix
# patches.suse/lockd-block-list
# patches.suse/lockd-file-list
# patches.suse/lockd-nlm_block-grab-file-reference
# patches.suse/sunrpc-register-multiple
# patches.suse/lockd-switchable-statd
# patches.suse/lockd-kernel-statd
# patches.suse/lockd-suse-config
# patches.fixes/lockd-find-block-fix
# patches.fixes/lockd-async-callback
# patches.fixes/statd-refcount-fix
# patches.fixes/statd-regular-gc
# patches.fixes/statd-more-bugs
# FATE #304989
patches.suse/nfs-unshared-supers
patches.suse/sunrpc-shared-transport
########################################################
# cifs and smbfs patches
########################################################
patches.drivers/smbfs-sendqueue-backoff
patches.drivers/smbfs-request-counting
patches.fixes/sles10-cifs-fix-for-find-writeable-file-oops-AND-avoid-rename-delete-hang.patch
patches.suse/cifs-upgrade-1.45
patches.suse/cifs-upgrade-1.50c.patch
- patches.fixes/cifs-incomplete-recv.patch
patches.fixes/cifs-fix-remote-buffer-overflow.diff
patches.fixes/cifs-fix-openfilelist-corruption
patches.fixes/cifs-fix-looping-during-reconnect
patches.fixes/cifs-fix-race-due-to-slow-oplocks
patches.fixes/cifs-fix-potential-data-corruption
patches.fixes/fix-asn1-ber-decoding
patches.fixes/cifs-fix-compiler-warning-on-64bit
patches.fixes/cifs-fix-O_APPEND-on-directio-mounts
########################################################
# ext3
########################################################
+agruen patches.suse/ext3-register-filesystem-lifo
patches.suse/ext3-barrier-default
patches.fixes/fix-ext3-kmalloc-flags-with-journal-handle.diff
patches.fixes/ext3_readdir_use_generic_readahead.diff
patches.fixes/jbd-2.6.16-1-realloc_freed_fix.diff
patches.fixes/jbd-2.6.16-2-refile_nodirty_fix.diff
patches.suse/ext2-fsync-err
patches.fixes/ext3-ordered-problem
patches.fixes/jbd-orderedwrite-fix.diff
patches.suse/ext3-online-resize-fix.diff
patches.fixes/jbd-fix-race-between-free-buffer-and-commit-trasanction.patch
patches.fixes/ext2-avoid-printk-flood-with-dir-corruption
patches.fixes/ext3-avoid-printk-flood-with-dir-corruption
########################################################
# reiser
########################################################
patches.arch/ppc-reiserfs-cc-optimize.patch
patches.suse/reiserfs-iosize-hotfix
patches.suse/reiserfs-barrier-default
patches.suse/reiserfs-nobarrier-fsync
patches.suse/reiserfs-bkl-inversion
patches.fixes/reiserfs-transaction-overflow
patches.fixes/reiserfs-procfs-slashes.diff
patches.suse/reiserfs-periodic-flush-latency
patches.suse/reiserfs-writepage-hole-extend
patches.fixes/reiserfs-fix-transaction-overflowing.diff
patches.fixes/reiserfs-eliminate-min-window.diff
patches.suse/reiserfs-fix-is_reusable-check.diff
patches.suse/reiserfs-clean-up-bitmap-bh-ref.diff
patches.suse/reiserfs-reorganize-bitmap.diff
patches.suse/reiserfs-on-demand-bitmaps.diff
patches.suse/reiserfs-fix-bitmap-deref.diff
patches.fixes/reiserfs-journal-use-error-codes.diff
patches.fixes/reiserfs-only-fail-ro-mount-with-open-transactions.diff
patches.fixes/reiserfs-generic-open.diff
patches.fixes/reiserfs-vs-8115.diff
patches.fixes/reiserfs-fix-vs-13060.diff
patches.fixes/reiserfs-readahead-fix.diff
patches.fixes/reiserfs-change_generation_on_update_sd.diff
patches.fixes/reiserfs-signedness-fixes.diff
patches.fixes/reiserfs-fix-large-fs.diff
patches.fixes/reiserfs-fault-in-pages.patch
patches.suse/reiserfs-mount-count
patches.fixes/reiserfs-do-not-add-save-links-for-O_DIRECT-writes
patches.fixes/reiserfs-fix-nopack-check
patches.fixes/reiserfs-unpack-tails-on-quota-files.patch
patches.fixes/reiserfs-commit-ids-unsigned-ints
########################################################
# xfs
########################################################
patches.xfs/xfs-bhv-modules
patches.xfs/xfs-kdb-module
patches.xfs/dmapi-enable
patches.xfs/dmapi_src_drop2
patches.xfs/dmapi-xfs-event-mask-fix
patches.xfs/dmapi-license
patches.xfs/xfs-linux-melb-25106a-xfs-per-cpu-sb-counters
patches.xfs/xfs-include
patches.xfs/xfs-kern-25683a-chash-doublelink
patches.xfs/xfs-remove-unneeded-defines-and-symbols
patches.xfs/xfs-kern-25062a-access_find_exported_dentry_via_op_vector
patches.xfs/xfs-kern-25086a-no_longer_propagate_ms_noatime
patches.xfs/xfs-kern-25122a-cleanup_the_use_of_zones_slabs
patches.xfs/xfs-kern-25123a-fix_a_mutex_destroy_diagnostic
patches.xfs/xfs-kern-25184a-make_headers_compile_for_more_compiler_variants
patches.xfs/xfs-kern-25170a-spread_xfs_inode_cache
patches.xfs/xfs-kern-25214a-add_support_for_hotplug_cpus_to_the_percpu_superblock
patches.xfs/xfs-kern-25232a-uuid_endianess_fix
patches.xfs/xfs-kern-25238a-calls_to_xlog_vec_set_type
patches.xfs/xfs-kern-25258a-use_xfs_vtoi_and_xfs_vfstom
patches.xfs/xfs-kern-25310a-use_xfs_vfstom
patches.xfs/xfs-kern-25311a-prep_for_writepages_code
patches.xfs/xfs-kern-25312a-add_xfs_map_buffer_helper
patches.xfs/xfs-kern-25338a-use_atomic_bit_operations_to_avoid_overflow
patches.xfs/xfs-kern-25354a-additional_mount_time_superblock_validation_checks
patches.xfs/xfs-kern-207390a-prepare_for_in_core_extent_changes
patches.xfs/xfs-kern-207393a-multi-level_in_core_file_extents
patches.xfs/xfs-kern-25358a-dynamically_allocate_local_kiocb_structures
patches.xfs/xfs-kern-25359a-dynamically_allocate_xfs_dir2_put_args_t
patches.xfs/xfs-kern-25360a-reduce_complexity_in_xfs_trans_init
patches.xfs/xfs-kern-25361a-take_a_dentry_structure_off_the_stack
patches.xfs/xfs-kern-207407a-export_xfs_bmap_search_multi_extents
patches.xfs/xfs-kern-25369a-dynamically_allocate_vattr
patches.xfs/xfs-kern-25370a-reduce_xfs_bmapi_stack_use
patches.xfs/xfs-kern-25371a-reduce_dmapi_stack_use
patches.xfs/xfs-kern-25372a-reduce_stack_usage_within_xfs_bmapi
patches.xfs/xfs-kern-25377a-remove_unused_macros_types
patches.xfs/xfs-kern-25378a-switch_names_for_address_space_ops
patches.xfs/xfs-kern-25379a-switch_names_for_file_operations
patches.xfs/xfs-kern-25381a-switch_names_for_inode_operations
patches.xfs/xfs-kern-25382a-switch_names_for_sb_quotactl_operations
patches.xfs/xfs-kern-207634a-fix_assert_for_inline_incore_extents
patches.xfs/xfs-kern-25420a-dynamically_allocate_the_xfs_dinode_core_t
patches.xfs/xfs-kern-25423a-revert_kiocb_and_vattr_stack_changes
patches.xfs/xfs-kern-207866a-fix_new_xfs_bmap_search_multi_extents
patches.xfs/xfs-kern-25474a-complete_transition_away_from_linvfs_naming
patches.xfs/xfs-kern-25476a-correct_dquot_reservation_for_link_transation
patches.xfs/xfs-kern-25477a-fix_infinite_loop_with_corrupt_inode_in_bulkstat
patches.xfs/xfs-kern-25480a-cleanup_references_to_i_sem
patches.xfs/xfs-kern-25481a-consitent_names
patches.xfs/xfs-kern-25482a-fix_for_vn_count_assert_enospc
patches.xfs/xfs-kern-25483a-flush_and_invalidate_dirty_pages_at_start_of_direct_read
patches.xfs/xfs-kern-25484a-endianess_annotations_for_xfs_dir2_data_hdr_structure
patches.xfs/xfs-kern-25485a-endianess_annotations_for_xfs_dir2_free_hdr_t
patches.xfs/xfs-kern-25486a-endianess_annotations_for_xfs_dir2_leaf_bests_p
patches.xfs/xfs-kern-25487a-endianess_annotations_for_xfs_dir2_leaf_tail_t
patches.xfs/xfs-kern-25489a-endianess_annotations_for_xfs_dir2_data_unused_t
patches.xfs/xfs-kern-25490a-endianess_annotations_for_xfs_dir2_data_unused_tag_p
patches.xfs/xfs-kern-25491a-endianess_annotations_for_xfs_dir2_block_tail_t
patches.xfs/xfs-kern-25492a-endianess_annotations_for_xfs_dir2_leaf_hdr_t
patches.xfs/xfs-kern-25493a-endianess_annotations_for_xfs_dir2_leaf_entry_t
patches.xfs/xfs-kern-25494a-endianess_annotations_for_xfs_dir2_data_entry_tag_p
patches.xfs/xfs-kern-25495a-endianess_annotations_for_xfs_da_blkinfo_t
patches.xfs/xfs-kern-25496a-remove_bogus_int_get_on_u8_variables_in_xfs_dir2_blockc
patches.xfs/xfs-kern-25497a-endianess_annotations_for_xfs_attr_leaf_hdr_t
patches.xfs/xfs-kern-25498a-endianess_annotations_for_xfs_attr_leaf_entry_t
patches.xfs/xfs-kern-25499a-endianess_annotations_for_xfs_attr_leaf_name_local_t
patches.xfs/xfs-kern-25500a-endianess_annotations_for_xfs_attr_leaf_name_remote_t
patches.xfs/xfs-kern-25501a-endianess_annotations_for_xfs_attr_shortform_t
patches.xfs/xfs-kern-25502a-store_xfs_attr_sf_sort_in_native_endian
patches.xfs/xfs-kern-25503a-store_xfs_attr_inactive_list_t_in_native_endian
patches.xfs/xfs-kern-25504a-endianess_annotations_for_xfs_da_node_entry_t
patches.xfs/xfs-kern-25505a-endianess_annotations_for_xfs_da_node_hdr_t
patches.xfs/xfs-kern-25506a-remove_bogus_int_get_for_u8_variables_in_xfs_dir_leafc
patches.xfs/xfs-kern-25509a-fix_compiler_warning_from_xfs_file_compat_invis_ioctl_prototype
patches.xfs/xfs-kern-208069a-fixing_kdbs_xrwtrc_command
patches.xfs/xfs-kern-208088a-fix_conflict_between_dio_writes_conversion_and_concurrent_truncate
patches.xfs/xfs-kern-25527a-explain_the_race_closed_by_the_addition_of_vn_iowait
patches.xfs/xfs-kern-25528a-fix_xfsidbgc_build_issues
patches.xfs/xfs-kern-25529a-fixup_naming_inconsistencies
patches.xfs/xfs-kern-25535a-reenable_noikeep_by_default
patches.xfs/xfs-kern-25537a-fix_dmapi_build_by_exporting_vfs_from_sb
patches.xfs/xfs-kern-25539a-fix_typos
patches.xfs/xfs-kern-25590a-fix_ioctl32_compiler_warnings
patches.xfs/xfs-kern-208488a-inode_chunk_allocation_to_try_allocating_contiguous
patches.xfs/xfs-kern-208490a-remove_unused_xfs_bmap_do_search_extents
patches.xfs/xfs-kern-208491a-cleanup_comment
patches.xfs/xfs-kern-25632a-implement_the_silent_parameter_to_fill_super
#removed per bnc#392449 - nfbrown # patches.xfs/xfs-kern-25633a-make_project_quota_return_consistent_error_code
patches.xfs/xfs-kern-25634a-reenable_write_barriers_by_default
patches.xfs/xfs-kern-25675a-fix_superblock_validation_regression
patches.xfs/xfs-kern-25676a-fix_nonblock_mode_regression
patches.xfs/xfs-kern-25687a-fix_an_inode_useafterfree_durin_an_unpin
patches.xfs/xfs-kern-25726a-fix_inode_allocation_alignment_to_stripe_boundaries
patches.xfs/xfs-kern-25742a-fix_mishandled_write_barriers_with_remountro
patches.xfs/xfs-kern-209226a-add_parameters_to_xfs_bmapi
patches.xfs/xfs-kern-25806a-endianess_annotations_for_xfs_dir2_data_entry_t
patches.xfs/xfs-kern-25807a-endianess_annotations_for_xfs_dir_leaf_hdr_t
patches.xfs/xfs-kern-25808a-endianess_annotations_for_xfs_dir_leaf_entry_t
patches.xfs/xfs-kern-25811a-fix_a_project_quota_space_accounting_leak_on_rename
patches.xfs/xfs-kern-209633a-remove_ATTR_DMI_asserts
patches.xfs/xfs-kern-209807a-fix_size_argument_in_kmem_free
patches.xfs/xfs-kern-25902a-fix_a_metadata_buffer_refcount_leak
patches.xfs/xfs-kern-25921a-fix_a_comment_typo
patches.xfs/xfs-kern-25922a-fix_a_noatime_regression_when_updating_inode_atime_with_mmap
patches.xfs/xfs-kern-25986a-add_degframentation_exclusion_support
patches.xfs/xfs-kern-210801a-fix_out-of-order_locking_of_AGF
patches.xfs/xfs-kern-26011a-fix_32bit_and_64bit_inode_and_efi_ondisk
patches.xfs/xfs-kern-26040a-fix_inode_dirty_in_xfs_iunpin
patches.xfs/xfs-kern-26044a-over_zealous_with_doing_endian_conversions
patches.xfs/xfs-kern-26068a-merge_back_use_of_slabspreading_memory_allocation_flag
patches.xfs/xfs-kern-26069a-invalidate_page_loses_its_return_code
patches.xfs/xfs-kern-26070a-get_block_is_replaced_by_get_blocks
patches.xfs/xfs-kern-26071a-merge_back_a_new_include_and_gfp_nowait_mem_alloc
patches.xfs/xfs-kern-26073a-percpu_api_changes
patches.xfs/xfs-kern-26074a-merge_back_the_splice_support_code
patches.xfs/xfs-kern-26075a-merge_back_the_const_struct_file_operations_change
patches.xfs/xfs-kern-26077a-fix_mismerge
patches.xfs/xfs-kern-26082a-small_xfs_init_rwsem_cleanup
patches.xfs/xfs-kern-26094a-drop_use_of_m_writeio_blocks_when_zeroing
patches.xfs/xfs-kern-26095a-getattr_can_return_an_error_code
patches.xfs/xfs-kern-26096a-shutdown_the_filesystem_if_all_device_paths_have_gone
patches.xfs/xfs-kern-26097a-fix_a_buffer_refcount_leak_in_dir2_code
patches.xfs/xfs-kern-26099a-make_the_pflags_test_set_wrappers_more_legible
patches.xfs/xfs-kern-26100a-start_writeout_earlier_on_last_close
patches.xfs/xfs-kern-26101a-fix_a_typo_in_a_header_file_comment
patches.xfs/xfs-kern-26102a-remove_dead_code_from_come_bulkstat_paths
patches.xfs/xfs-kern-26103a-portability_changes_remove_prdev
patches.xfs/xfs-kern-26104a-minor_cleanup_to_dmapi_mount_path
patches.xfs/xfs-kern-26105a-statvfs_component_of_directory_project_quota_support
patches.xfs/xfs-kern-26106a-resolve_a_namespace_collision_on_vfs_vfsops
patches.xfs/xfs-kern-26107a-resolve_a_namespace_collision_on_vnode_vnodeops
patches.xfs/xfs-kern-26108a-resolve_a_namespace_collision_on_remaining_vtypes
patches.xfs/xfs-kern-26109a-cleanup_a_missed_porting_conversion_and_freezing
patches.xfs/xfs-kern-26110a-remove_unused_parameter_from_di2xflags_routine
patches.xfs/xfs-kern-26111a-fix_up_debug_code_so_that_bulkstat_wont_generate_thousands_of_fsstress_warnings
patches.xfs/xfs-kern-26112a-fix_a_kdb_command_name_conflict
patches.xfs/xfs-kern-26182a-fix_mismerge_of_the_fs_writable_cleanup_patch
patches.xfs/xfs-kern-211382a-fix_nused_counter
patches.xfs/xfs-kern-26200a-remove_a_nolongerused_variable
patches.xfs/xfs-kern-26201a-fix_broken_const_use_inside_local_suffix_strtoul_routine
patches.xfs/xfs-kern-26246a-remove_dead_code_from_our_local_tree
patches.xfs/xfs-kern-26247a-remove_unnecessary_local_from_open_exec_dmapi_path
patches.xfs/xfs-kern-26248a-push_some_common_code_out_of_write_path_into_core_xfs
patches.xfs/xfs-kern-26249a-remove_an_incorrect_use_of_unlikely
patches.xfs/xfs-kern-26250a-remove_unneeded_conditional_code_on_nfs_export_interface
patches.xfs/xfs-kern-26251a-remove_version_1_directory_code
patches.xfs/xfs-kern-26252a-backport_a_trimmed_down_26_radixtree
patches.xfs/xfs-kern-26259a-missed_a_header_in_the_v1_directory_purge
patches.xfs/xfs-kern-26274a-kill_direct_access_to_count_in_valusema
patches.xfs/xfs-kern-26286a-map_efscorrupted_to_an_actual_error_codexfs-kern-26286a-map_efscorrupted_to_an_actual_error_code
patches.xfs/xfs-kern-26293a-link_on_directory_is_banned_in_vfs
patches.xfs/xfs-kern-26298a-inode_vnode_conversion
patches.xfs/xfs-kern-26299a-remove_unused_behaviour_lock
patches.xfs/xfs-kern-26300a-undo_bhv_lock
patches.xfs/xfs-kern-26310a-add_xfs_dir_getdents_export_for_dmapi
patches.xfs/xfs-kern-26319a-reduce_size_of_xfs_trans_t_structure
patches.xfs/xfs-kern-26320a-fix_xfsidbg_build_after_removal_of_unused_xfs_trans_fields
patches.xfs/xfs-kern-26321a-build_fix_for_nondebug_builds_with_kdb_enabled
patches.xfs/xfs-kern-26339a-remove_a_couple_of_nolongerused_macros
patches.xfs/xfs-kern-26343a-remove_redundant_directory_checks_from_inode_link_operation
patches.xfs/xfs-kern-26344a-update_flush_method_prototype
patches.xfs/xfs-kern-26345a-back_out_flush_prototype_change
patches.xfs/xfs-kern-26347a-fix_race_condition_with_link_in_d_instantiate
patches.xfs/xfs-kern-26363a-fix_realtime_subvolume_expansion
patches.xfs/xfs-kern-26364a-rework_code_snippets_to_remove_gcc_warnings
patches.xfs/xfs-kern-26366a-fixup_whitespace_damage_in_log_write_remove_final_warning
patches.xfs/xfs-kern-26395a-pass_inode_to_xfs_ioc_space
patches.xfs/xfs-kern-26396a-improve_xfsbufd_delayed_write_submission_patterns_after_blktrace_analysis
patches.xfs/xfs-kern-26406a-cleanup_some_item_format_structures
patches.xfs/xfs-kern-26492a-move_xfs_ioc_getversion_to_main_multiplexer
patches.xfs/xfs-kern-26550a-edian_swap_xfs_disk_dquot_t_values
patches.xfs/xfs-kern-26551a-fix_rounding_bug_in_xfs_free_file_space
patches.xfs/xfs-kern-26552a-fix_sparse_warning
patches.xfs/xfs-kern-26553a-endianess_annotation_for_xfs_agfl_t
patches.xfs/xfs-kern-26556a-endianess_annotations_for_xfs_inobt_rec_t
patches.xfs/xfs-kern-26557a-remove_left_over_int_comments_in_alloc
patches.xfs/xfs-kern-26558a-add_xfs_btree_check_lptr_disk_endian_conversion
patches.xfs/xfs-kern-26559a-endianess_annotations_for_xfs_bmbt_ptr_t
patches.xfs/xfs-kern-26560a-endianess_annotate_xfs_bmap_broot_ptr_addr
patches.xfs/xfs-kern-26561a-endianess_annotations_for_xfs_bmbt_key
patches.xfs/xfs-kern-26562a-use_null_for_pointer_initialisation_instead_of_zerocasttoptr
patches.xfs/xfs-kern-26563a-remove_bhv_lookup
patches.xfs/xfs-kern-26564a-remove_accidentally_reintroduced_vfs_unmount_flag
patches.xfs/xfs-kern-26565a-update_xfs_for_i_blksize_removal_from_generic_inode_structure
patches.xfs/xfs-kern-26583a-add_ea_list_callbacks_for_xfs_kernel_use
patches.xfs/xfs-kern-26601a-ensure_we_specify_the_type_of_bulkstat_call_we_will_issue
patches.xfs/xfs-kern-26602a-rework_dmapi_bulkstat_calls_to_directly_extract_inline_attributes
patches.xfs/xfs-kern-26603a-when_issuing_metadata_readahead_submit_bio_with_reada_not_read
patches.xfs/xfs-kern-26605a-fix_remount_vs_no_barrier_options
patches.xfs/xfs-kern-26606a-drop_unneeded_endian_conversion_in_bulkstat
patches.xfs/xfs-kern-26607a-increase_the_size_of_the_buffer_holding_the_local_inode_cluster_list
patches.xfs/xfs-kern-26622a-fix_a_barrier_related_shutdown_on_quota_enabled_mounts
patches.xfs/xfs-kern-26627a-ensure_xlog_state_do_callback_does_not_report_spurious_warnings_on_ramdisks
patches.xfs/xfs-kern-26628a-remove_last_bulkstat_falsepositives_with_debug_kernels
patches.xfs/xfs-kern-26629a-ensure_bulkstat_from_an_invalid_inode_number_returns_einval
patches.xfs/xfs-kern-26639a-pass_file_mode_on_dmapi_remove_events
patches.xfs/xfs-kern-26743a-fix_xfs_free_extent_related_null_pointer_dereference
patches.xfs/xfs-kern-26746a-remove_a_couple_of_unused_buf_macros
patches.xfs/xfs-kern-26747a-remove_unused_iop_abort_log_item_operation
patches.xfs/xfs-kern-26749a-remove_several_macros_that_are_no_longer_used
patches.xfs/xfs-kern-26800a-add_a_debug_flag_for_large_than_one_page_allocations
patches.xfs/xfs-kern-26801a-be_more_defensive_with_page_flags
patches.xfs/xfs-kern-26802a-improve_error_handling_for_the_zerofsblock_extent_detection_code
patches.xfs/xfs-kern-26803a-add_a_greedy_allocation_interface_allocating_within_a_min_max_size_range
patches.xfs/xfs-kern-26804a-remove_a_nolongercorrect_debug_assert_from_dio_completion_handling
patches.xfs/xfs-kern-26805a-minor_code_rearranging_and_cleanup
patches.xfs/xfs-kern-26806a-fix_a_porting_botch_on_the_realtime_subvol_growfs_code_path
patches.xfs/xfs-kern-26807a-add_lock_annotations_to_xfs_trans_update_ail_and_xfs_trans_delete_ail
patches.xfs/xfs-kern-26815a-fixes_the_leak_in_reservation_space_because_we_werent_ungranting_space
patches.xfs/xfs-kern-26859a-dynamicly_scale_direntbufsz_based_on_the_user_buflen
patches.xfs/xfs-kern-26864a-955006_dmapi_set_get_remove_attribute_returns_einval_instead_of_efaultbad
patches.xfs/xfs-kern-26865a-update_atime_sec
patches.xfs/xfs-kern-26866a-break_the_loop_on_formatter_error
patches.xfs/xfs-kern-26869a-break_the_loop_on_efault_formatter_error
patches.xfs/xfs-kern-26887a-fix_char_size_overflow_in_bmap_alloc_call
patches.xfs/xfs-kern-26892a-strnlen_user_fix
patches.xfs/xfs-kern-26894a-prevent_free_space_oversubscription_and_xfssyncd_looping
patches.xfs/xfs-kern-26898a-fix_abba_deadlock_between_i_mutex_and_iolock
patches.xfs/xfs-kern-26907a-fix_kmem_zalloc_greedy_warnings_on_64_bit_platforms
patches.xfs/xfs-kern-26908a-minor_cleanup_from_dio_locking_fix
patches.xfs/xfs-kern-26910a-reduce_endian_flipping_in_alloc_btree
patches.xfs/xfs-kern-26911a-standardize_on_one_sema_init_macro
patches.xfs/xfs-kern-26920a-fix_xfs_splice_write
patches.xfs/xfs-kern-26925a-collapse_sv_init_and_init_sv_into_just_the_one_interface
patches.xfs/xfs-kern-26934a-fix_a_bad_pointer_dereference_in_the_quota_statvfs_handling
patches.xfs/xfs-kern-26964a-really_fix_use_after_free_in_xfs_iunpin
patches.xfs/xfs-kern-26983a-minor_fixes_in_kmem_zalloc_greedy
patches.xfs/xfs-kern-26984a-make_ino_validation_checks_consistent_in_bulkstat
patches.xfs/xfs-kern-26985a-remove_redundant_code
patches.xfs/xfs-kern-26986a-fix_infinite_loop_in_xfs_bulksta
patches.xfs/xfs-kern-27062a-do_endian_conversion_of_the_ondisk_generation_number
patches.xfs/xfs-kern-27192a-merge_up_to_2618
patches.xfs/xfs-kern-27195a-brought_in_a_static_change_by_mistake
patches.xfs/xfs-kern-27196a-linux_crashes_on_boot_with_xfsdmapi_and_xfs_trace_is_on
patches.xfs/xfs-kern-27200a-keep_lockdep_happy
patches.xfs/xfs-kern-27231a-rename_uio_read_to_xfs_uio_read
patches.xfs/xfs-kern-27315a-956664_invisible_ops_should_not_change_atime
patches.xfs/xfs-kern-27325a-merge_up_to_2619rc3
patches.xfs/xfs-kern-27358a-clean_up_i_flags_and_i_flags_lock_handling
patches.xfs/xfs-kern-27359a-prevent_a_deadlock_when_xfslogd_unpins_inodes
patches.xfs/xfs-kern-27398a-remove_kernel_version_macros_from_xfs_dmapi_h
patches.xfs/xfs-kern-27455a-export_xfs_iaccess
patches.xfs/xfs-kern-27457a-fix_uninitialized_br_state_and_br_startoff
patches.xfs/xfs-kern-27503a-stale_the_correct_inode_when_freeing_clusters
patches.xfs/xfs-kern-27510a-check_user_buffer_in_dm_getall_dmattr
patches.xfs/xfs-kern-27520a-make_quiet_mounts_quiet
patches.xfs/xfs-kern-27535a-fix_a_synchronous_buftarg_flush_deadlock_when_freezing
patches.xfs/xfs-kern-27551a-initialize_dt_dev_in_xfs_ip_to_stat
patches.xfs/xfs-kern-27561a-prevent_buffer_overrun_in_cmn_err
patches.xfs/xfs-kern-27565a-current_usage_of_buftarg_flags_is_incorrect
patches.xfs/xfs-kern-27585a-keep_stack_usage_down_for_4k_stacks_by_using_noinline
patches.xfs/xfs-kern-27596a-get_rid_of_old_53_61_v1_log_items
patches.xfs/xfs-kern-27602a-fix_up_old_uses_of_log_items
patches.xfs/xfs-kern-27611a-fix_xfsidbgc_compiler_warnings_on_ia64
patches.xfs/xfs-kern-27612a-reduction_global_superblock_lock_contention_near_enospc
patches.xfs/xfs-kern-27692a-fix_up_build_breakage_due_to_undefined_m_icsb_mutex
patches.xfs/xfs-kern-27696a-fix_xfs_to_include_dmapi_specific_code
patches.xfs/xfs-kern-27701a-use_struct_kvec_in_struct_uio
patches.xfs/xfs-kern-27702a-fix_sparse_warning_in_xfs_da_btreec
patches.xfs/xfs-kern-27710a-remove_unused_xflags_parameter_from_sync_routines
patches.xfs/xfs-kern-27711a-remove_flagless_mraccessf_mrupdatef
patches.xfs/xfs-kern-27712a-remove_unused_filp_from_ioctl_functions
patches.xfs/xfs-kern-27750a-workaround_log_space_issue_by_increasing_xfs_trans_push_ail_restarts
patches.xfs/xfs-kern-27792a-fix_attr2_corruption_with_btree_data_extents
patches.xfs/xfs-kern-27801a-merge_up_to_2619
patches.xfs/xfs-kern-27804a-clear_unwritten_buffer_flag_on_partial_page_invalidation
patches.xfs/xfs-kern-27805a-fix_inode_log_item_useafterfree_on_forced_shutdown
patches.xfs/xfs-kern-27894a-make_growfs_work_for_amounts_greater_than_2tb
patches.xfs/xfs-kern-27895a-fix_block_reservation_mechanism
patches.xfs/xfs-kern-27940a-fix_block_reservation_changes_for_nonsmp_systems
patches.xfs/xfs-kern-28000a-buffer-unwritten-new
patches.xfs/xfs_rollback_disable_splice_syscalls
patches.xfs/xfs_rollback_provide_gfp_nowait
patches.xfs/xfs_rollback_migrate_header
patches.xfs/xfs_rollback_get_block_changes
patches.xfs/xfs_rollback_mempool_changes
patches.xfs/xfs_rollback_const_file_ops
patches.xfs/xfs_rollback_invalidatepage_change
patches.xfs/xfs_rollback_2618_changes
patches.xfs/xfs_rollback_2619_changes
patches.xfs/xfs_rollback_const_aops.patch
patches.xfs/xfs-linux-melb_xfs-kern_28011a_Fix-DMAPI-bulkstat-block-count-units
patches.xfs/xfs-kern-27315a-invisible-operations-should-not-change-atime.patch
patches.xfs/dmapi-28087a-generate-dmapi-destroy-event-for-removing-files-without-attributes-set.patch
patches.xfs/xfs-kern-28329a-make-xfs_dm_sync_by_handle-really-sync-data.patch
patches.xfs/dmapi-28121a-do-not-hold-dm_session_lock-while-calling-create_proc_read_entry-and-remove_proc_entry.patch
patches.xfs/dmapi-28328a-sleeping-in-atomic-in-dmapi.patch
patches.xfs/undefined-behavior-calling-dm_path_to_hdl-if-path-longer-2000.patch
+remove-277793 patches.fixes/xfs-barrier-test
patches.xfs/xfs-kern_27999a_Re-initialize_the_per-cpu_superblock_counters_after_recovery.patch
patches.xfs/xfs-kern_28010a_Ensure-a-frozen-filesystem-has-a-clean-log.patch
patches.xfs/xfs-kern_28035a_Ensure-a-frozen-filesystem-has-a-clean-log-cleanup.patch
patches.xfs/xfs-kern_28013a_Zero-correct-range-in-xfs_iozero.patch
patches.xfs/xfs-kern_28021a_Fix-Assertion-in-xfs_attr_shortform_remove.patch
patches.xfs/xfs-kern_28231a_Propogate-return-codes-from-flush-routines.patch
patches.xfs/xfs-kern_28319a_Fix-race-condition-in-xfs_write.patch
patches.xfs/xfs-kern_28322a_Null-files-fixes.patch
patches.xfs/xfs-kern_28641a_Make-hole-punching-at-EOF-atomic.patch
patches.xfs/xfs-kern_28440a_Fix-race-in-xfs_write-bw-dmapi-callout-and-direct-IO-checks.patch
patches.xfs/xfs-kern_28566a_Sleeping-with-the-ilock-waiting-for-IO-completion-is-bad.patch
patches.xfs/xfs-kern_28567a_Fix-use-after-free-during-log-unmount.patch
patches.xfs/xfs-kern_28652a_Lazy-Superblock-Counters.patch
patches.xfs/xfs-kern_28653a_Fix-the-transaction-flags-to-make-lazy-superblock-counters-work.patch
patches.xfs/xfs-kern_28657a_Write-at-EOF-may-not-update-filesize-correctly.patch
patches.xfs/xfs-kern_28773a_xfs_bmapi-fails-to-update-the-previous-extent-pointer.patch
patches.xfs/xfs-kern_28774a_Flush-the-block-device-before-closing-it-on-unmount.patch
patches.xfs/xfs-kern_28775a_Block-on-unwritten-extent-conversion-during-synchronous-direct-IO.patch
patches.xfs/xfs-kern_28777a_Handle-null-returned-from-xfs_vtoi-in-xfs_setfilesize.patch
patches.xfs/xfs-kern_28796a_Apply-transaction-delta-counts-atomically-to-incore-counters.patch
patches.xfs/xfs-kern_28797a_Map-unwritten-extents-correctly-for-IO-completion-processing.patch
patches.xfs/xfs-kern_28856a_Log-the-agf_length-change-in-xfs_growfs_data_private.patch
patches.xfs/xfs-kern_28862a_Prevent-deadlock-when-flushing-inodes-on-unmount.patch
patches.xfs/xfs-kern_28865a_Prevent-ENOSPC-from-aborting-transactions-that-need-to-succeed.patch
patches.xfs/xfs-kern_28225a_Invalidate-quotacheck-when-mounting-without-a-particular-quota-type.patch
patches.xfs/xfs-kern_28866a_cleanup_inode_extent_size_hint_extraction.patch
patches.xfs/xfs-kern_28889a_Use-do_div-on-64-bit-types.patch
patches.xfs/xfs-kern_28943a_Cancel-transactions-on-xfs_itruncate_start-error.patch
patches.xfs/xfs-kern_29084a_DMAPI-probe-punch-hole.patch
patches.xfs/xfs-kern_29100a_Compat-ioctl-handler-for-XFS_IOC_FSGEOMETRY_V1.patch
patches.xfs/xfs-kern_29101a_Compat-ioctl-handler-for-handle-operations.patch
patches.xfs/xfs-kern_29102a_Fix-XFS_IOC_FSBULKSTAT-and-XFS_IOC_FSINUMBERS-in-compat-mode.patch
patches.xfs/xfs-kern_29169a_dmapi_ioctl_should_return_negative_errors.patch
patches.xfs/xfs-kern_29167a_Allow_punching_holes_to_free_space_when_at_ENOSPC.patch
patches.xfs/xfs-kern_29211a_hole_not_shown_at_EOF_when_extent_hint_or_reserved_space.patch
patches.xfs/xfs-kern_29096a_Concurrent-Multi-File-Data-Streams.patch
patches.xfs/xfs-kern_29098a_Quota-inode-has-no-parent.patch
patches.xfs/Support-for-Concurrent-Multi-File-Data-Streams-on-2.6.16-kernels.patch
patches.xfs/xfs-kern_29174a_Flush_data_on_setattr.patch
patches.xfs/xfs-kern_29303a_Set-filestreams-object-timeout-to-something-sane.patch
patches.xfs/xfs-kern_29306a_Export-the-filestreams-trace-buffer-for-modularised-debugging-setups.patch
patches.xfs/xfs-kern_28227a_Fix-quotaon-syscall-failures-for-group-enforcement-requests.patch
patches.xfs/xfs-kern_28272a_Fix-uquota-and-oquota-enforcement-problems.patch
patches.xfs/xfs-kern_29354a_Fix-nasty-quota-hashtable-allocation-bug.patch
patches.xfs/xfs-kern_29486a_default-ikeep-mount-option-for-dmapi.patch
patches.xfs/xfs-kern_29510a_Fix-filestreams-on-32-bit-boxes.patch
patches.xfs/xfs-kern_29649a_Ensure_filesize_is_logged_with_sync_writes.patch
patches.xfs/xfs-kern_29675a_Make_sync_wait_for_file_size_updates.patch
patches.xfs/xfs-kern_29757a_get_bulkall-could-return-incorrect-inode-stat.patch
patches.xfs/xfs-kern_29914a_bulkstat-should-report-unlinked-referenced-inodes.patch
patches.xfs/xfs-kern_29840a_fix_infinite_loop_in_bulkstat.patch
patches.xfs/xfs-kern_29860a_Avoid_race_in_sync_inodes.patch
patches.xfs/xfs-kern_29871a_turn_off_XBF_ASYNC_flag_before_reading_superblock.patch
patches.xfs/xfs-kern_30701a_Ensure-a-btree-insert-returns-a-valid-cursor.patch
patches.xfs/xfs-kern_31033a_Fix-fsync-b0rkage.patch
patches.xfs/xfs-fix-xfs_file_close-proto
patches.xfs/xfs-kern_30143a_Fixed-a-few-bugs-in-xfs_buf_associate_memory.patch
patches.xfs/xfs-kern_30220a_vn_iowait-fix.patch
patches.xfs/xfs-kern_31332a_fix-extent-corruption-in-xfs_iext_irec_compact_full.patch
patches.xfs/xfs-kern_31338a_Convert-ASSERTs-to-XFS_WANT_CORRUPTED_GOTOs.patch
patches.xfs/xfs-kern_31342a_Always-reset-btree-cursor-after-an-insert.patch
patches.xfs/xfs-kern_31357a_use-minleft-when-allocating-in-xfs_bmbt_split.patch
patches.xfs/xfs-kern_31358a_Restore-the-lowspace-extent-allocator-algorithm.patch
patches.xfs/xfs-kern_31359a_Allow-xfs_bmbt_split-to-fallback-to-the-lowspace-allocator-algorithm.patch
patches.xfs/xfs-random-generation.diff
patches.xfs/xfs-431372_quota_fix_wake_up_race.patch
########################################################
# OCFS2 and patches to enable userspace clustering
########################################################
patches.suse/ocfs2-1.4-git-branch.diff
patches.suse/ocfs2-1.4-git-7bb92e14e916d3045829aa113cc356aee3857cd9
patches.suse/ocfs2-1.4-git-cd88829ce87cf2cbc018db9f1d6c9e3946e6547a
patches.fixes/ocfs2-1.4-git-e8888dec9ebdee907dcb533d4aa456b578cd3f0b
patches.fixes/ocfs2-1.4-git-cc496c940a412d6cc58200fbb46fccc0aecdb352
patches.fixes/ocfs2-1.4-git-aab346802bf060db2e0ebb1c9896d97100521814
patches.fixes/ocfs2-1.4-git-57a8c76ebe4d23a32e406cfdfe2e9af29a3bba5e
patches.fixes/ocfs2-1.4-git-f913db1be23108942d706d34f69e7dcd879d6735
patches.fixes/ocfs2-1.4-git-7c622428f345e42055cec9396d0958c8119a0271
patches.fixes/ocfs2-1.4-git-4cbebb25e08fd64552dd3979b41235251fed98e5
patches.fixes/ocfs2-1.4-git-d420ca1c13b1bd90221d010b4511e721f1ed4432
patches.fixes/ocfs2-1.4-git-c8921bbb3126dc31acf46cf9aad6916a865f6604
patches.fixes/ocfs2-1.4-git-643549ba174da6799c8a52f052238a150145e4f9
patches.fixes/ocfs2-1.4-git-c586973aca2273f60970140d634c563acdf5fdc6
patches.fixes/ocfs2-1.4-git-d0cd95a833a1aa743a8d70a7ab55f7b6a534fc44
patches.fixes/ocfs2-1.4-git-cc97832835eb6b7d9139a6bd584cf2e238b0ec6b
patches.fixes/ocfs2-1.4-git-d372180b344c1689ca2ad4ba6e625e820ce09461
patches.fixes/ocfs2-1.4-git-b39a707346292cc75da96637eba1547fc86bf19d
patches.fixes/ocfs2-1.4-git-828f7a8ce7e10da82e07c63666456abae940ece3
patches.fixes/ocfs2-1.4-git-34e075ae3759eb35fd55fc9bec0dd931f4593f5c
patches.fixes/ocfs2-1.4-git-a36b52d8a87bb0c403f04662632cadc060eeaf8b
patches.fixes/ocfs2-1.4-git-d7286674956633f57e37e63865beb041e2e4b76c
patches.fixes/ocfs2-1.4-git-2915d4c1d175701d0d64c76136029153c4f53316
patches.fixes/ocfs2-1.4-git-eb8500aa8a5c97d4c270328176910a4f0220fda7
patches.fixes/ocfs2-1.4-git-147a86674d626522a59f986764dd1a2b22cdddaa
patches.fixes/ocfs2-1.4-git-174f54db9af7c67a1afaa947aed934b9c80f588c
patches.fixes/ocfs2-1.4-git-7d59abcc84dd9d5d106da48d6639144f90d3716a
patches.fixes/ocfs2-1.4-git-fae3cce1b4c583700e9737017a1d164c4393295f
patches.fixes/ocfs2-1.4-git-22cfd903bc46722f1b44def35a13dae8ea5ebab1
patches.fixes/ocfs2-1.4-git-2f9fe09ecad2a74cec3c6e73bbed2e9906822ea5
patches.fixes/ocfs2-1.4-git-65a8143912a884424628881f2cbf9d940861c20e
patches.fixes/ocfs2-1.4-git-014643e31ef9e535173246d392ca9c958629ee9b
patches.fixes/ocfs2-1.4-git-8eb3021d691deb50c397ad1ca4e31efa71dcca1c
patches.fixes/ocfs2-1.4-git-89fa349c17eae2a06423b08f7e215e861ed05a7a
patches.fixes/ocfs2-1.4-git-ea68eb33305c034ee31a4dc0174e782d6f20a43c
patches.fixes/ocfs2-1.4-git-6fd133e945eeeb94013e269424f463df412b2384
patches.fixes/ocfs2-1.4-git-73078b04f07694c5ce8a500defd9cb3d8aa780f4
patches.suse/ocfs2-no-kmem_cache_zalloc
patches.fixes/ocfs2-1.4-git-ffae48e79e56fe63589049a0bf3512bcbf7a4327
patches.suse/ocfs2-configfs-depend-fixes
patches.fixes/ocfs2-1.4-git-95bd0768f44f8a4cb6b4de8235eeeed8b933621f
patches.fixes/ocfs2-1.4-git-defb840569ccce71ce8d2bfcb5a1d5a27bda8a69
patches.fixes/ocfs2-1.4-git-27e7132609bd61b9faeb00a07f6c6f0faa40d286
patches.fixes/ocfs2-1.4-git-aaf22e90761d5309d4c451ba8c8621892d2daebe
patches.fixes/ocfs2-1.4-git-e192847a01546c0b6ecefdd2268e06f258ff460a
patches.fixes/ocfs2-1.4-git-76e34d536b868c98fbc7fe0cee832073545367e1
patches.fixes/ocfs2-1.4-git-8b3b7a7a75bdf5e16635670f3e806d44116298e0
patches.fixes/ocfs2-1.4-git-80824336a41d1fc82eecd15896fa77e27afdd09a
patches.fixes/ocfs2-1.4-git-7f60a3a3db5ece42ee60f0790e834b7d96b4cc86
patches.fixes/ocfs2-1.4-git-34e63f1e13909d97f8d0281ba38c46f347496e02
patches.fixes/ocfs2-1.4-git-a227efc0320a7e49dc731cad52bf023d3e286531
patches.fixes/ocfs2-1.4-git-5fcc4de4b01d95a33f157cec0d229d83c83022ee
patches.fixes/ocfs2-1.4-git-94a21b0e56de449874e4f4ebf9684d10385a6040
patches.fixes/ocfs2-1.4-git-62adc333788e2f2f043a52fcb407feda9775c728
patches.fixes/ocfs2-1.4-git-86c88f735ea8f91897333b35584212571ab93d97
patches.fixes/ocfs2-1.4-git-bd945b84a24d3602a6eb7dbe85fb6560df8e67a0
patches.fixes/ocfs2-1.4-git-f922955d99ef972235bd0c1fc236c5ddbb368611
patches.fixes/ocfs2-1.4-git-cca5e3226e9479b6732b3a088bbe1f43046d5fd9
patches.suse/ocfs2-1.4-makefiles.diff
patches.suse/ocfs2-1.4-git-version.diff
patches.suse/ocfs2-01-event-driven-quorum.diff
patches.suse/ocfs2-01-event-driven-quorum-node-number-fix
patches.suse/ocfs2-02-introduce-generic-heartbeat-resource.diff
patches.suse/ocfs2-03-split-disk-heartbeat-out.diff
patches.suse/ocfs2-04-add-hb-registration.diff
patches.suse/ocfs2-05-actually-free-hb-set.diff
patches.suse/ocfs2-06-per-resource-events.diff
patches.suse/ocfs2-06-per-resource-events-fixes
patches.suse/ocfs2-06-per-resource-events-dlm
patches.suse/ocfs2-07-per-resource-membership.diff
patches.suse/ocfs2-08-o2net-refcounted-disconnect.diff
patches.suse/ocfs2-09-add-check-node-status.diff
patches.suse/ocfs2-10-add-heartbeat_mode.diff
patches.suse/ocfs2-11-user-heartbeat.diff
patches.suse/ocfs2-11-user-heartbeat-list
patches.suse/ocfs2-12-incorporate-disk-heartbeat.diff
patches.suse/ocfs2-13-fix-quorum-work.diff
########################################################
# Autofs5 support
########################################################
patches.suse/autofs4-2.6.16-v5-update.patch
########################################################
# Other filesystem driver patches
########################################################
patches.fixes/fat-2.6.20-direct_IO_fix.diff
patches.fixes/udf-readahead-fix.diff
patches.fixes/udf-cleanup-processing-virtual-partitions.diff
patches.fixes/udf-fix-vat-version-check.diff
patches.fixes/udf-recognize-vat-file-type.diff
patches.fixes/udf-handle-vat-in-icb.diff
patches.fixes/udf-mark-pseudooverwrite-ro.diff
patches.fixes/initramfs-fix-cpio-hardlink-check.patch
patches.fixes/fs-permit-filesystem-to-perform-statfs-with-a-known-root-dentry.patch
patches.fixes/dnotify-close-race.diff
patches.fixes/dnotify-close-race-kabi.diff
patches.fixes/flock_close_race.diff
patches.fixes/aio_dio_use_after_free.diff
patches.fixes/aio_dio_readahead_fault.diff
patches.fixes/aio-barrier-fix.diff
patches.fixes/vfs-fix-lookup-on-deleted-directory.patch
########################################################
# Security / Audit (not AppArmor)
# Security fixes go in the section where the problem
# is being addressed.
########################################################
patches.suse/security-cap-def
patches.suse/security-disabled-optimize-cap-default
patches.suse/audit_capp.patch
patches.suse/audit-unterminated-string.diff
patches.fixes/audit-oops-removing-watch.diff
patches.fixes/audit_ipc-octal.patch
patches.fixes/fix-kauditd_thread-return-value
patches.fixes/audit-stop-deadlock-from-signals
########################################################
# LKCD
########################################################
patches.suse/lkcd.patch
patches.suse/lkcd-prevent-needless-rebuild
patches.suse/lkcd-UP-warning-fix
patches.suse/lkcd-spinlock-fix
patches.suse/lkcd-typo-fix
patches.suse/lkcd-kfree-fix
+tj patches.suse/lkcd-ata_piix-polling
+tj patches.suse/lkcd-sata_vsc-dump-cleanup
patches.suse/lkcd-netdev-parse-fix
patches.suse/lkcd-compile-warning-fix
patches.suse/lkcd-handle_holey_pgdats.patch
patches.suse/lkcd-GFP_COMP
patches.suse/lkcd-dump-all-slab
patches.suse/lkcd-crash-with-invalid-DUMPDEV
patches.suse/lkcd-do-not-access-memory-hole
patches.suse/lkcd-dont-lose-one-page
patches.fixes/lkcd-remove-addrcheck
patches.fixes/lkcd-re-enable-valid_phys_addr_range
patches.suse/lkcd-support-large-minor-number
patches.fixes/lkcd-oops-on-saving-dump
########################################################
# IA64 kexec/kdump
########################################################
patches.arch/ia64-kexec-kdump
patches.arch/ia64-kexec-permutations
patches.arch/ia64-kexec-crash-nonzero-offset
patches.arch/ia64-kexec-tidyup
patches.arch/ia64-kexec-fix-not-initialised
patches.arch/ia64-kexec-avoid-migration-of-already-disabled-irqs.patch
patches.arch/ia64-setting-up-saved_max_pfn.diff
patches.arch/ia64-fix-zero-vmcore.patch
patches.arch/ia64-kexec-platform_kernel_launch_event-is-noop-on.patch
patches.arch/ia64-reinitialize-acpi-tables.patch
patches.arch/ia64-sn_set_cpu_number
patches.arch/ia64-dont-set-cpu0-number-twice
patches.arch/ia64-kexec-fix-saved_max_pfn
patches.arch/ia64-kexec-min_low_pfn-and-max_low_pfn-calcultion-fix.patch
patches.arch/ia64-check-TIO-errors-on-shub2
patches.arch/ia64-fix-mca-kdump-bug-in-kdump_init_notifier.patch
patches.arch/ia64-fix-kdump-on-init
patches.arch/ia64-kdump-hpzx1-ioc-workaround
patches.suse/kexec-sysfs
patches.arch/ia64-kernel-hangup-in-kdump-on-INIT
patches.suse/kdump-dump_after_notifier.patch
patches.arch/ia64-dont-reserve-crashkernel-above-4G
# more IA64-specific patches (relying on those above)
patches.arch/ia64-fix-model-name
patches.arch/ia64-improve-mca-recovery
patches.arch/ia64-pal-spec-updates
patches.arch/ia64-update--processor_info-features
patches.arch/ia64-sn-bte-error-timer-fix
patches.arch/ia64-sn-bte-error-return-status-fix
patches.arch/ia64-nofault-fix
patches.arch/ia64-mca-salinfo-fix
patches.arch/ia64-TLB-check-fix
patches.arch/ia64-improve-mca-rendevous
patches.arch/ia64-multi-mca-fix
patches.arch/ia64-mca-psr.ic-fix
patches.arch/ia64-sn-toggle-CPE-interrupts
patches.arch/ia64-mca-reduce-bootmem
patches.arch/ia64-reduce-bootmem
patches.arch/ia64-correct-pernodesize
patches.arch/ia64-membind-memoryless
patches.arch/ia64-unattended-kdb.diff
########################################################
# Other patches for debugging
########################################################
patches.suse/crasher-26.diff
########################################################
# kprobes
########################################################
patches.fixes/sles10_kprobes_backport.patch
patches.suse/kprobes-page-fault-notifier
########################################################
# longer cmdline for some archs as in 2.6.20 -mm tree
########################################################
patches.suse/dynamic-kernel-command-line-common.patch
patches.suse/dynamic-kernel-command-line-alpha.patch
patches.suse/dynamic-kernel-command-line-arm.patch
patches.suse/dynamic-kernel-command-line-arm26.patch
patches.suse/dynamic-kernel-command-line-cris.patch
patches.suse/dynamic-kernel-command-line-frv.patch
patches.suse/dynamic-kernel-command-line-h8300.patch
patches.suse/dynamic-kernel-command-line-i386.patch
patches.suse/dynamic-kernel-command-line-ia64.patch
patches.suse/dynamic-kernel-command-line-m32r.patch
patches.suse/dynamic-kernel-command-line-m68k.patch
patches.suse/dynamic-kernel-command-line-m68knommu.patch
patches.suse/dynamic-kernel-command-line-mips.patch
patches.suse/dynamic-kernel-command-line-parisc.patch
patches.suse/dynamic-kernel-command-line-powerpc.patch
patches.suse/dynamic-kernel-command-line-ppc.patch
patches.suse/dynamic-kernel-command-line-s390.patch
patches.suse/dynamic-kernel-command-line-sh.patch
patches.suse/dynamic-kernel-command-line-sh64.patch
patches.suse/dynamic-kernel-command-line-sparc.patch
patches.suse/dynamic-kernel-command-line-sparc64.patch
patches.suse/dynamic-kernel-command-line-um.patch
patches.suse/dynamic-kernel-command-line-v850.patch
patches.suse/dynamic-kernel-command-line-x86_64.patch
patches.suse/dynamic-kernel-command-line-xtensa.patch
patches.fixes/add_reset_devices
patches.suse/fix-edd-code-misparsing-cmdline
patches.arch/i386-2048-byte-command-line.patch
patches.arch/ia64-2048-byte-command-line.patch
patches.arch/x86_64-2048-byte-command-line.patch
########################################################
# update crypto for IPv6 certification
########################################################
patches.suse/IPV6_ADDRCONF_Use_our_standard_algorithm_for_randomized_ifid
patches.suse/SUNRPCRPCSEC_GSS-remove-unnecessary-kmalloc-of-a-checksum
patches.suse/SUNRPCRPCSEC_GSS_spkm3_import_contexts_using_NID_cast5_cbc
patches.suse/SUNRPCRPCSEC_GSS_spkm3-fix_config_dependencies
patches.suse/CRYPTO_twofish_Use_rol32-ror32_where_appropriate
patches.suse/CRYPTO_api_Align_tfm_context_as_wide_as_possible
patches.suse/CRYPTO_all_Use_kzalloc_where_possible
patches.suse/CRYPTO_all_Add_missing_cra_alignmask
patches.suse/CRYPTO_tcrypt_Fix_key_alignment
patches.suse/CRYPTO_aes_Fixed_array_boundary_violation
patches.suse/Bug_fixes_and_cleanup_for_the_BSD_Secure_Levels_LSM
patches.suse/RPCSEC_GSS_fix_leak_in_krb5_code_caused_by_superfluous_kmalloc
patches.suse/x86_VIA_C7_CPU_flags
patches.suse/introduce_WARN_ON_ONCE_cond
patches.suse/CRYPTO_khazad_Use_32-bit_reads_on_key
patches.suse/CRYPTO_digest_Add_alignment_handling
patches.suse/CRYPTO_aes-i586_Get_rid_of_useless_function_wrappers
patches.suse/CRYPTO_digest_Remove_unnecessary_zeroing_during_init
patches.suse/CRYPTO_all_Pass_tfm_instead_of_ctx_to_algorithms
patches.suse/CRYPTO_padlock_Rearrange_context_structure_to_reduce_code_size
patches.suse/CRYPTO_api_Fixed_incorrect_passing_of_context_instead_of_tfm
patches.suse/CRYPTO_api_Added_cra_init-cra_exit
patches.suse/CRYPTO_api_Removed_const_from_cra_name-cra_driver_name
patches.suse/CRYPTO_api_Allow_replacement_when_registering_new_algorithms
patches.suse/CRYPTO_tcrypt_Return_EAGAIN_from_module_init
patches.suse/CRYPTO_tcrypt_Speed_benchmark_support_for_digest_algorithms
patches.suse/CRYPTO-aes-Add-wrappers-for-assembly-routines
patches.suse/CRYPTO_tcrypt_Forbid_tcrypt_from_being_built-in
patches.suse/CRYPTO_padlock_Fix_alignment_after_aes_ctx_rearrange
patches.suse/CRYPTO_api_Fixed_crypto_tfm_context_alignment
patches.suse/CRYPTO_twofish_Split_out_common_c_code
patches.suse/CRYPTO_twofish_Fix_the_priority
patches.suse/CRYPTO_twofish_i586_assembly_version
patches.suse/CRYPTO_twofish_x86-64_assembly_version
patches.suse/CRYPTO_api_Rename_crypto_alg_get_to_crypto_mod_get
patches.suse/CRYPTO_api_Add_crypto_alg_reference_counting
patches.suse/CRYPTO_api_Split_out_low-level_API
patches.suse/CRYPTO_api_Add_template_registration
patches.suse/CRYPTO_api_Added_event_notification
patches.suse/CRYPTO_api_Add_cryptomgr
patches.suse/CRYPTO_api_Allow_algorithm_lookup_by_type
patches.suse/CRYPTO_api_Added_spawns
patches.suse/CRYPTO_sha_Add_module_aliases_for_sha1_sha256
patches.suse/CRYPTO_api_Add_missing_accessors_for_new_crypto_alg_fields
patches.suse/CRYPTO_padlock_Get_rid_of_padlock-generic.c
patches.suse/CRYPTO_padlock_Add_compatibility_alias_after_rename
patches.suse/CRYPTO_padlock_Update_private_header_file
patches.suse/CRYPTO_padlock_Driver_for_SHA1_SHA256_algorithms
patches.suse/CRYPTO_padlock-sha_Make_2_functions_static
patches.suse/CRYPTO_padlock_Helper_module_padlock.ko
patches.suse/CRYPTO_padlock-sha_TFMs_dont_need_to_be_static
patches.suse/CRYPTO_crc32c_Fix_unconventional_setkey_usage
patches.suse/CRYPTO_api_Get_rid_of_flags_argument_to_setkey
patches.suse/CRYPTO_digest_Store_temporary_digest_in_tfm
patches.suse/CRYPTO_tcrypt_Use_test_hash_for_crc32c
patches.suse/CRYPTO_cipher_Removed_special_IV_checks_for_ECB
patches.suse/CRYPTO_api_Add_common_instance_initialisation_code
patches.suse/CRYPTO_api_Added_asynchronous_flag
patches.suse/CRYPTO_s390_Added_missing_driver_name_and_priority
patches.suse/CRYPTO_api_Added_crypto_alloc_base
patches.suse/CRYPTO_api_Feed_flag_directly_to_crypto_yield
patches.suse/CRYPTO_api_Added_crypto_type_support
patches.suse/CRYPTO_cipher_Added_encrypt_one-decrypt_one
patches.suse/CRYPTO_scatterwalk_Prepare_for_block_ciphers
patches.suse/CRYPTO_cipher_Added_block_cipher_type
patches.suse/CRYPTO_cipher_Added_block_ciphers_for_CBC-ECB
patches.suse/CRYPTO_padlock_Added_block_cipher_versions_of_CBC-ECB
patches.suse/CRYPTO_s390_Added_block_cipher_versions_of_CBC-ECB
patches.suse/CRYPTO_tcrypt_Use_block_ciphers_where_applicable
patches.suse/BLOCK_cryptoloop_Use_block_ciphers_where_applicable
patches.suse/BLOCK_dm-crypt_Use_block_ciphers_where_applicable
patches.suse/IPSEC_Add_compatibility_algorithm_name_support
patches.suse/IPSEC_ESP_Use_block_ciphers_where_applicable
patches.suse/SUNRPC_GSS_Use_block_ciphers_where_applicable
patches.suse/CRYPTO_users_Use_block_ciphers_where_applicable
patches.suse/CRYPTO_drivers_Remove_obsolete_block_cipher_operations
patches.suse/CRYPTO_api_Mark_parts_of_cipher_interface_as_deprecated
patches.suse/CRYPTO_digest_Added_user_API_for_new_hash_type
patches.suse/CRYPTO_hmac_Add_crypto_template_implementation
patches.suse/CRYPTO_tcrypt_Use_HMAC_template_and_hash_interface
patches.suse/IPSEC_Use_HMAC_template_and_hash_interface
patches.suse/SCTP_Use_HMAC_template_and_hash_interface
patches.suse/CRYPTO_digest_Remove_old_HMAC_implementation
patches.suse/CRYPTO_users_Use_crypto_hash_interface_instead_of_crypto_digest
patches.suse/CRYPTO_api_Add_crypto_comp_and_crypto_has
patches.suse/CRYPTO_users_Use_crypto_comp_and_crypto_has
patches.suse/CRYPTO_padlock_Convert_padlock-sha_to_use_crypto_hash
patches.suse/CRYPTO_api_Deprecate_crypto_digest_and_crypto_alg_available
patches.suse/CRYPTO_hmac_Fix_hmac_init_update_call
patches.suse/CRYPTO_hmac_Fix_error_truncation_by_unlikely
patches.suse/serpent_fix_endian_warnings
patches.suse/CRYPTO_api_fix_crypto_alloc_base_return_value
patches.suse/CRYPTO_api_Select_cryptomgr_where_needed
patches.suse/CRYPTO_api_Remove_one_too_many_semicolon
patches.suse/CRYPTO_xcbc_New_algorithm
patches.suse/CRYPTO_tcrypt_Add_test_vectors_of_AES_XCBC
patches.suse/IPSEC_Add_support_for_AES-XCBC-MAC
patches.suse/CRYPTO_xcbc_Make_needlessly_global_code_static
patches.suse/CRYPTO_api_Remove_unused_functions
patches.suse/CRYPTO_lib_some_common_128-bit_block_operations_nicely_centralized
patches.suse/CRYPTO_lib_table_driven_multiplications_in_GF_2_128
patches.suse/CRYPTO_lrw_Liskov_Rivest_Wagner_a_tweakable_narrow_block_cipher_mode
patches.suse/CRYPTO_tcrypt_LRW_test_vectors
patches.suse/CRYPTO_lrw_round__lrw_round
patches.suse/XFRM_Algorithm_lookup_using_.compat_name
patches.suse/CRYPTO_all_Check_for_usage_in_hard_IRQ_context
patches.suse/CRYPTO_tcrypt_Added_test_vectors_for_sha384-sha512
patches.suse/CRYPTO_pcbc_Add_Propagated_CBC_template
patches.suse/CRYPTO_fcrypt_Add_FCrypt_from_RxRPC
patches.suse/CRYPTO_tcrypt_Removed_vestigial_crypto_alloc_tfm_call
patches.suse/CRYPTO_api_Remove_deprecated_interface
patches.suse/CRYPTO_api_Add_type-safe_spawns
patches.suse/CRYPTO_api_Allow_multiple_frontends_per_backend
patches.suse/CRYPTO_xcbc_Use_new_cipher_interface
patches.suse/CRYPTO_camellia_Add_Kconfig_entry
patches.suse/CRYPTO_camellia_added_the_code_of_Camellia_cipher_algorithm
patches.suse/CRYPTO_camellia_added_the_testing_code_of_Camellia_cipher
patches.suse/CRYPTO_api_scatterwalk_copychunks_fails_to_advance_through_scatterlist
patches.suse/CRYPTO_tcrypt_Fix_error_checking_for_comp_allocation
patches.suse/CRYPTO_api_Use_the_right_value_when_advancing_scatterwalk_copychunks
patches.suse/CRYPTO_api_Flush_the_current_page_right_than_the_next
patches.suse/CRYPTO_api_Proc_functions_should_be_marked_as_unused
patches.suse/CRYPTO_api_Add_async_block_cipher_interface
patches.suse/CRYPTO_tcrypt_Use_async_blkcipher_interface
patches.suse/CRYPTO_templates_Pass_type-mask_when_creating_instances
patches.suse/CRYPTO_api_Add_async_blkcipher_type
patches.suse/CRYPTO_cryptomgr_Fix_parsing_of_nested_templates
patches.suse/CRYPTO_api_Do_not_remove_users_unless_new_algorithm_matches
patches.suse/CRYPTO_cryptd_Add_software_async_crypto_daemon
patches.suse/CRYPTO_cryptomgr_Fix_use_after_free
patches.suse/CRYPTO_tcrypt_Add_missing_error_check
patches.suse/CRYPTO_api_Read_module_pointer_before_freeing_algorithm
patches.suse/CRYPTO_cryptd_Fix_problem_with_cryptd_and_the_freezer
patches.suse/iscsi_crypto_compat_update
patches.suse/raw_device_max_minors_param.diff
# patches needed for DOD IPv6 certification
patches.suse/INET-Fix-incorrect-inet_sock_is_icsk-assignment
patches.suse/NETFILTER-conntrack-fix-race-condition-in-early_drop
patches.suse/wait-for-ipsec-sa-resolution-socket-contexts.patch
patches.suse/UDP6-Fix-flowi-clobbering
patches.suse/XFRM-Allow-packet-drops-during-larval-state-resolution
patches.suse/NET-Fix-IP_ADD-DROP_MEMBERSHIP-to-handle-only-connectionless
patches.suse/ipv4-esp-discard-dummy-packets-from-rfc4303.patch
patches.suse/ipv6-esp-discard-dummy-packets-from-rfc4303.patch
patches.suse/IPSEC-Make-xfrm_lookup-flags-argument-a-bit-field
patches.suse/IPSEC-Added-xfrm_decode_session_reverse-and-xfrmX_policy_check_reverse
patches.suse/IPSEC-Added-xfrm_decode_session_reverse-and-xfrmX_policy_check_reverse-kabi
patches.suse/IPSEC-Add-ICMP-host-relookup-support
patches.suse/IPSEC-Add-ICMP-host-relookup-support-kabi
patches.suse/ICMP-Restore-pskb_pull-calls-in-receive-function
patches.suse/INET-Fix-truesize-setting-in-ip_append_data
patches.suse/IPV6_MULTICAST_IF-setting-is-ignored-on-link-local-connect
patches.suse/IPSEC-Add-support-for-aes-ctr
patches.suse/lsm-dummy-secid-to-secctx.diff
patches.suse/audit-Add-auditing-to-ipsec
patches.suse/audit-Add-auditing-to-ipsec-kabi
patches.suse/audit-disable-ipsec-auditing-when-CONFIG_AUDITSYSCALL_n
patches.suse/xfrm-avoid-rejects.diff
patches.suse/fix-oopses-in-xfrm_audit_log.diff
patches.suse/kernel-panic-when-large-security-contexts-in-acquire.diff
patches.suse/xfrm-audit-hook-misplaced-in-pfkey_delete-and-xfrm_del_sa.diff
patches.suse/create-context-if-auditing-was-ever-enabled.diff
patches.suse/auditing-fix-to-include-the-netmask-and-prefix-length.diff
patches.suse/xfrm-rfc4303-compliant-auditing.patch
patches.suse/xfrm-drop-packets-when-replay-counter-would-overflow.diff
patches.suse/IPV6-Fix-IPsec-datagram-fragmentation
patches.fixes/IPv6-ICMP6-checksum-fix
patches.fixes/ESP-fix-OOB-access
patches.suse/Add-MCAST-32bit-compatibility
patches.fixes/IPSEC-Fix-catch-22-with-algorithm-IDs-above-31
patches.suse/CRYPTO-null-Allow-setkey-on-digest_null
patches.fixes/ipv6-Drop-packets-for-loopback-address-from-outside-of-the-box
########################################################
# AppArmor
########################################################
patches.apparmor/security-create.diff
patches.apparmor/remove_suid.diff
patches.apparmor/vfs-notify_change.diff
patches.apparmor/security-setattr.diff
patches.apparmor/vfs-mkdir.diff
patches.apparmor/security-mkdir.diff
patches.apparmor/vfs-mknod.diff
patches.apparmor/security-mknod.diff
patches.apparmor/vfs-symlink.diff
patches.apparmor/security-symlink.diff
patches.apparmor/security-readlink.diff
patches.apparmor/vfs-link.diff
patches.apparmor/security-link.diff
patches.apparmor/vfs-rmdir.diff
patches.apparmor/security-rmdir.diff
patches.apparmor/fix-vfs_rmdir.diff
patches.apparmor/vfs-unlink.diff
patches.apparmor/security-unlink.diff
patches.apparmor/vfs-rename.diff
patches.apparmor/security-rename.diff
patches.apparmor/vfs-setxattr.diff
patches.apparmor/security-setxattr.diff
patches.apparmor/vfs-getxattr.diff
patches.apparmor/security-getxattr.diff
patches.apparmor/vfs-listxattr.diff
patches.apparmor/security-listxattr.diff
patches.apparmor/vfs-removexattr.diff
patches.apparmor/security-removexattr.diff
patches.apparmor/unambiguous-__d_path.diff
patches.apparmor/fix-unambiguous-__d_path-369802.diff
patches.apparmor/mount-consistent-__d_path.diff
patches.apparmor/d_namespace_path.diff
patches.apparmor/__d_path-keep-connected.diff
patches.apparmor/file-handle-ops.diff
patches.apparmor/security-xattr-file.diff
patches.apparmor/parent-permission.diff
patches.apparmor/apparmor-namespacesem.diff
patches.apparmor/apparmor-audit.diff
patches.apparmor/apparmor-auditexport.diff
patches.apparmor/apparmor-main.diff
patches.apparmor/apparmor-lsm.diff
patches.apparmor/apparmor-module_interface.diff
patches.apparmor/apparmor-misc.diff
patches.apparmor/apparmor-intree.diff
patches.apparmor/apparmor-sles10-semantics.diff
patches.apparmor/apparmor-stack-secondary.diff
patches.apparmor/apparmor-fix-name-errorpath-370861.diff
patches.fixes/369802_d_path_fix.patch
patches.apparmor/apparmor_allow_null_getprocattr
########################################################
# kernel-wide security fixes
########################################################
patches.fixes/nopage-range-fix.patch
patches.fixes/Fix-ALIGN-macro
patches.fixes/check_privileges_before_setting_mount_propagation.patch
########################################################
# fuse update
########################################################
patches.suse/fuse_update.patch
########################################################
# You'd better have a good reason for adding a patch
# below here.
########################################################
# I have a good reason.
# These patches depend on patches.suse/audit_capp.patch,
# so they can't go under the VM/FS section above.
patches.fixes/inotify-parent-watched-race.diff
patches.fixes/inotify-remove-debug.diff
# PLEASE KEEP THESE PATCHES AT THE END OF series.conf
# (as all other arch specific patches should be kept at the end
# for obvious reasons.)
########################################################
# user mode linux
########################################################
### kraxels uml fixes/patches
patches.uml/uml-x11-fb
patches.uml/fix-build
patches.fixes/um-missing-exports.diff
patches.suse/uml-trace-macros.patch
patches.arch/i386-tolapai-cache
patches.suse/bootmem-reverse
patches.arch/x86_64-aperture-fallback
patches.arch/hpet-override
patches.arch/io-apic-override
########################################################
# XEN architecture, version 3
########################################################
# xen patches, from xenbits mercurial repository.
# http://xenbits.xensource.com/ext/linux-2.6-merge.hg
#
# everything named "xen3-auto-*" is auto-generated.
# PLEASE DON'T EDIT THESE PATCHES. Create fixup patches
# on top of them instead. This reduces workload when
# re-basing to a newer xen tree.
# split out patches
patches.xen/git-2efe55a9cec8418f0e0cde3dc3787a42fddc4411.patch
patches.xen/git-2a8a3d5b65e86ec1dfef7d268c64a909eab94af7.patch
patches.xen/fix-hz-suspend.patch
patches.xen/net-gso-0-base.patch
patches.xen/net-gso-1-check-dodgy.patch
patches.xen/net-gso-2-checksum-fix.patch
patches.xen/net-gso-3-fix-errorcheck.patch
patches.xen/net-gso-4-kill-warnon.patch
patches.xen/net-gso-6-linear-segmentation.patch
patches.xen/smp-alts.patch
patches.xen/tpm_plugin_2.6.17.patch
patches.xen/vsnprintf.patch
patches.xen/kasprintf.patch
# bulk stuff, new files for xen
patches.xen/xen3-auto-xen-arch.diff
patches.xen/xen3-auto-xen-drivers.diff
patches.xen/xen3-auto-include-xen-interface.diff
# kconfig bits for xen
patches.xen/xen3-auto-xen-kconfig.diff
# common code changes
patches.xen/xen3-auto-common.diff
patches.xen/xen3-auto-arch-i386.diff
patches.xen/xen3-auto-arch-x86_64.diff
# newer changeset backports
patches.xen/439-mouse-z-axis.patch
patches.xen/440-watch-kzalloc.patch
patches.xen/443-kexec-cleanup.patch
patches.xen/451-resume-race.patch
patches.xen/458-revert-419+425.patch
patches.xen/468-pae-__pte_ma.patch
patches.xen/469-pvdrv-build.patch
patches.xen/488-x86-page-io.patch
patches.xen/496-blkback-grant-unmap.patch
patches.xen/497-blkfront-resume-deadlock.patch
patches.xen/498-xenbus-deadlock.patch
patches.xen/499-sysfs-uuid-hang.patch
patches.xen/500-balloon-sysfs-name.patch
patches.xen/501-swiotlb-reduce-bouncing.patch
patches.xen/502-grant-table-free-list.patch
patches.xen/507-evtchn-rebind-on-close.patch
patches.xen/508-netfront-set_mac_address.patch
patches.xen/516-netfront-bond-arp.patch
patches.xen/519-blkback-mark-cdrom.patch
patches.xen/520-xenbus-silence-shutdown.patch
patches.xen/521-no-foreign-dev-kmem.patch
patches.xen/540-blkif-nr-segments-check.patch
patches.xen/560-x86_64-no-irq-affinity-break-msg.patch
patches.xen/572-resume-alloc-no-swap.patch
patches.xen/573-netfront-copy-recv-leak.patch
patches.xen/579-privcmd-deadlock.patch
patches.xen/582-blktap-oops.patch
patches.xen/602-netback-offline-udev-event.patch
patches.xen/609-evtchn-barriers.patch
patches.xen/652-swiotlb-size.patch
# changes outside arch/{i386,x86_64}/xen
patches.xen/xen3-fixup-kconfig
patches.xen/xen3-fixup-common
patches.xen/xen3-fixup-arch-i386
patches.xen/xen3-fixup-arch-um
patches.xen/xen3-fixup-arch-x86_64
# ports of other patches
patches.xen/xen3-revert-2.6.18
patches.xen/xen3-revert-2.6.17
patches.xen/xen3-patch-2.6.16.32-33
patches.xen/xen3-patch-2.6.16.36-37
patches.xen/xen3-patch-2.6.16.37-38
patches.xen/xen3-patch-2.6.16.57-58
patches.xen/xen3-mapped-base
patches.xen/xen3-aux-at_vector_size.patch
patches.xen/xen3-rwlocks-enable-interrupts
patches.xen/xen3-i386-profile-pc
+sles patches.xen/xen3-apic-timer-irq-delivery-dl760
patches.xen/xen3-x86-pae-64bit-resource-fix
patches.xen/xen3-x86_64-call-function-single-export
patches.xen/xen3-x86_64-memory_hotplug-add_memory_fix.patch
patches.xen/xen3-x86_64-memory_hotplug-kernel_mapping_fix.patch
patches.xen/xen3-x86-amd-fam10-mwait
patches.xen/xen3-x86-fam10-cpuid
patches.xen/xen3-x86_64-cpa-flush-all
patches.xen/xen3-x86_64-apic-large-dest
patches.xen/xen3-x86_64-core2-string
patches.xen/xen3-x86_64-sync-rdtsc-with-fence.patch
patches.xen/xen3-x86_64-fix-page-align-in-e820-allocator
patches.xen/xen3-x86-Fam11h-optimisations
+andrea patches.xen/xen3-silent-stack-overflow
patches.xen/xen3-x86_introdce_ida_cpuinfo_processor_feature.patch
patches.xen/xen3-x86_cpufreq-add-support-for-freq-perf_registers.patch
patches.xen/xen3-libata-intel-tolapai
patches.xen/xen3-sysfs-crash-debugging.patch
patches.xen/xen3-ich10-chipset-support.patch
patches.xen/xen3-dynamic-kernel-command-line-i386.patch
patches.xen/xen3-dynamic-kernel-command-line-x86_64.patch
patches.xen/xen3-i386-2048-byte-command-line.patch
patches.xen/xen3-nopage-range-fix.patch
patches.xen/xen3-io-apic-override
# bugfixes and enhancements
patches.xen/xen-no-multi-core-sched-opt
patches.xen/xen-balloon-min
patches.xen/xen-modular-blktap
patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-i386-panic-on-oops
patches.xen/xen-configurable-console
patches.xen/xen-x86_64-init-cleanup
patches.xen/xen-balloon-max-target
patches.xen/xen-x86-high_memory-early
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-consistent-nmi
patches.xen/xen-x86-no-lapic
patches.xen/xen-x86-no-ioapic-base
patches.xen/xen-blkback-bimodal-suse
patches.xen/xen-blkif-protocol-fallback-hack
patches.xen/xen-increase-loopback-devices
patches.xen/xen-blkback-cdrom
patches.xen/xen-fbfront-resize
patches.xen/xen-netfront-flip-prod
patches.xen/xen-i386-pte-free-kernel
patches.xen/xen-swiotlb-heuristics
patches.xen/xen-acpi-power-off
patches.xen/xen-x86-hidden-cpu-features
########################################################
# VMI
########################################################
patches.vmi/uml-include-fix.patch
patches.vmi/apm_disable.patch
patches.vmi/pnp_bios_disable.patch
patches.vmi/subarch-common.patch
patches.vmi/remove-asm-includes.patch
patches.vmi/vmi-makefile.patch
patches.vmi/vmi-config.patch
patches.vmi/relocatable-fixmap.patch
patches.vmi/vmi-headers.patch
patches.vmi/native-asm.patch
patches.vmi/vmi-instruction-replacement.patch
patches.vmi/smpboot-hook.patch
patches.vmi/i386-module.patch
patches.vmi/vmi-subarch.patch
patches.vmi/i386-segment.patch
patches.vmi/non-cpl0-kernel.patch
patches.vmi/non-cpl0-kernel2.patch
patches.vmi/i386-desc.patch
patches.vmi/desc_cleanup.patch
patches.vmi/kill-default-ldt.patch
patches.vmi/i386-spinlocks.patch
patches.vmi/i386-apic.patch
patches.vmi/i386-io.patch
patches.vmi/i386-processor.patch
patches.vmi/i386-system.patch
patches.vmi/i386-tlbflush.patch
patches.vmi/i386-pgalloc.patch
patches.vmi/mm-changes.patch
patches.vmi/i386-pgtable.patch
patches.vmi/pte-optimizations.patch
patches.vmi/pte-defer.patch
patches.vmi/pte-update.patch
patches.vmi/fremap-clear.patch
patches.vmi/lazy_mode_generic.patch
patches.vmi/reboot-fixes.patch
patches.vmi/timer-changes.patch
patches.vmi/8cpu-limit.patch
patches.vmi/native-pte-bug.patch
patches.vmi/vmipae-fix.patch
patches.vmi/no-idle-hz-race-fix.patch
patches.vmi/orig-eax-fix.patch
patches.vmi/lazy_mode_fix.patch
|