Home Home > GIT Browse > SLES10_SP4_BRANCH
summaryrefslogtreecommitdiff
blob: 6fc3ed4c3c0857c2847da336ea79b732ce89a9c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
# 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/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/kbuild-fix-make-incompatibility.patch
	patches.fixes/git-kbuild-cscope.patch
	patches.suse/document-kbuild-bug.patch
	patches.fixes/remove-MODULE_PARM
	patches.suse/error-implicit-function-declaration.patch
	patches.suse/enable-intermodule.patch
	patches.fixes/kbuild-ppc64-make-rpm
	patches.fixes/add-fwrapv-to-gcc-CFLAGS
	patches.fixes/add-fno-delete-null-pointer-checks.patch

	########################################################
	#
	# 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/supported-flag
	patches.suse/warn-vermagic.diff
	patches.rpmify/build_with_-fpreserve-function-arguments.diff
	patches.rpmify/sstfb-build-fix

	########################################################
	# genksyms / EXPORT_SYMBOL_GPL_FUTURE
	########################################################
	patches.fixes/kbuild-Fix-bug-in-crc-symbol-generating-of-kernel-and-modules
	patches.fixes/kbuild-fix-genksyms-build-error
	patches.fixes/kbuild-Lindent-genksyms.c
	patches.fixes/kbuild-clean-up-genksyms
	patches.drivers/clean-up-module.c-symbol-searching-logic.patch
	patches.drivers/export_symbol_gpl_future.patch
	patches.fixes/kbuild-support-for-.symtypes-files
	patches.fixes/kbuild-replace-abort-with-exit-1
	patches.fixes/kbuild-fix-genksyms-Makefile
	patches.fixes/kbuild-__extension__-support-in-genksyms-fix-unknown-CRC-warning
	patches.fixes/kbuild-apply-genksyms-changes
	patches.fixes/kbuild-fixup-genksyms-usage-getopt
	patches.fixes/kbuild-scripts-genksyms-lex.l-add-option-noinput
	patches.fixes/kbuild-genksyms-parser-fix-the-__attribute__-rule
	patches.fixes/kbuild-genksyms-Include-extern-information-in-dumps
	patches.fixes/genksyms-track-symbol-checksum-changes
	patches.fixes/genksyms-allow-to-ignore-symbol-checksum-changes
	patches.suse/genksyms-add-override-flag.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
	patches.arch/export-csum_.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.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/fix-taskstats-hang.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
	patches.fixes/setrlimit-fix-rlimit-cpu-0-cheat.patch

	patches.fixes/hrtimer-delay-to-next-tick.patch
	patches.fixes/rcu-protect-task-usage
	patches.fixes/fix-minor-signal-handling-vulnerability
	patches.fixes/fix-force_sig_info-semantics.patch
	patches.fixes/pidhash-kill-switch_exec_pids.patch
	patches.fixes/copy_process-cleanup-bad_fork_cleanup_sighand.patch
	patches.fixes/copy_process-cleanup-bad_fork_cleanup_signal.patch
	patches.fixes/revert-sys_times-optimisation.patch
	patches.fixes/do-__unhash_process-under-siglock.patch
	patches.fixes/sys_times-don-t-take-tasklist_lock.patch
	patches.fixes/proc_link_count_fix.diff
	patches.fixes/exit_notify-kill-the-wrong-capable-check.patch
	patches.fixes/copy_process-fix-clone_parent-parent_exec_id-interaction.patch

	patches.fixes/seccomp-fix-32-64-syscall-hole
	patches.fixes/CAP_FS_MASK-fixups
	patches.fixes/x86-syscall-audit-fix-32-64-hole
	patches.fixes/hugetlb-alloc_fresh_huge_page-bogus-node-loop-fix

	patches.fixes/sched-avoid-taking-rq-lock-in-wake_priority_sleep
	patches.fixes/sched-remove-staggering-of-load-balancing
	patches.fixes/sched-disable-interrupts-for-locking
	patches.fixes/sched-extract-load-calculation-from-rebalance_tick
	patches.fixes/sched-move-idle-status-calculation-into-rebalance
	patches.fixes/sched-use-softirq-for-load-balancing
	patches.fixes/sched-call-tasklet-less-frequently
	patches.fixes/sched-add-option-to-serialize-load-balancing
	patches.fixes/sched-decrease-number-of-load-balances
	patches.fixes/sched-avoid-div-in-rebalance_tick
	patches.fixes/sched-fix-next_interval-determination-in-idle_balan
	patches.fixes/altstack-avoid-copying-stack_t-as-a-structure-to-userspace

	patches.fixes/disable-CLONE_CHILD_CLEARTID-for-abnormal-exit
	patches.fixes/execve-must-clear-current-clear_child_tid
	patches.fixes/fix-pipe-null-ptr.patch
	patches.fixes/fix-NULL-pointer-deref-in-proc_sys_compare.patch
	patches.fixes/fix-RCU-list-iterator-use-of-rcu_dereference.patch
	patches.fixes/bootmem-avoid-dma32-zone-by-default.patch
	patches.fixes/move_tlb_above_DMA.patch
	patches.fixes/corename-length-increase.patch
	patches.fixes/change-next_tgid-to-use-tasklist_lock.patch
	patches.fixes/lib-crc32c-cpu-order-fix
	patches.fixes/compat-make-compat_alloc_user_space-incorporate-the-access_ok
	patches.fixes/compat-make-compat_alloc_user_space-incorporate-the-access_ok-API-fixup.patch
	patches.fixes/compat-make-compat_alloc_user_space-incorporate-the-access_ok-API-fixup-GENKSYMS.patch
	patches.fixes/do_exit-make-sure-that-we-run-with-get_fs-user_ds
	patches.fixes/posix-cpu-timers-workaround-to-suppress-the-problems-with-mt-exec
	patches.fixes/prevent-rt_sigqueueinfo-from-spoofing.patch
	patches.fixes/prevent-rt_sigqueueinfo-from-spoofing-fix.patch
	patches.fixes/next_pidmap-fix-overflow-condition.patch
	patches.fixes/pacct-fix-sighand-siglock-usage.patch
	patches.fixes/taskstats-don-t-allow-duplicate-entries-in-listener-mode
	patches.fixes/mutex-__used-is-needed-for-function-referenced-only-.patch
	patches.fixes/cpu-hotplug-release-workqueue_mutex-properly.patch

	########################################################
	# 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-sn-xpc-heartbeat-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
	patches.arch/ia64-move-SAL_CACHE_FLUSH
	patches.arch/ia64-move-SAL_CACHE_FLUSH.part2
	patches.arch/ia64-check_sal_cache_flush-fix
	patches.arch/ia64-efi-pre1.0-only-warn
	patches.arch/ia64-acpi-honor-SRAT-enable-bit
	patches.arch/ia64-arch-dma-required-mask
	patches.arch/ia64-adjust-time-interpolator-on-clock-adjustment.patch

	patches.arch/ia64-add-ptr_to_compat
	patches.arch/ia64-stack-layout
	patches.arch/ia64-sn-xpc-reconnect

	########################################################
	# 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
	patches.arch/x86-fix-hpet-lost-tick-correction-underflow.patch
	patches.arch/fix-32bit-machine-check-handler.patch
	patches.suse/cpuid_count.patch
	patches.arch/i386-hpet-drift.patch
	patches.fixes/bug-507366-fix_system_cannot_enter_S3_with_bigsmp_kernel.patch
	patches.arch/i386-ioremap-cpa-range
	patches.arch/i386-crash_dump-fix-non-pae-kdump-kernel-memory-accesses.patch
	patches.arch/i386-run-tsc-calibration-5-times.patch
	patches.arch/i386-Remove-printk-about-reboot-fixups-at-reboot
	patches.arch/get-rid-of-div_ll_X_l_rem.patch

	patches.suse/PAE-split-541510.diff
	########################################################
	# 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.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
	patches.arch/x86_64-add-TIF_RESTORE_SIGMASK.patch
	patches.arch/x86_64-add-ppoll-pselect.patch
	patches.arch/x86_64_remove_APIC_DIVISOR.diff
	patches.arch/x86_64_make_calibrate_APIC_clock_SMI-safe.diff
	patches.arch/x86_64-fpu-restore-fix.patch
	patches.arch/x86-fix-fpu-restore-from-sig.patch
	patches.arch/x86_64-fpu-fix-possible-leakage.patch
	patches.arch/x86-64-fix-FPU-corruption.patch
	patches.arch/x86_64-vdso
	patches.arch/x86_64-vsyscall-time-fix
	patches.fixes/vdso-fix-perms.patch
	patches.arch/x86_64-remove-wall-pmtimer

	patches.arch/x86_amd_SB800_SMBus_ASIC_change_SLE10SP3_v1.patch
	patches.arch/x86_64_amd_fix_hibernate_on_more_than_4GB.patch
	patches.arch/x86_amd_fix_gart_suspend.patch
	patches.arch/x86_64-add-gart-proc-iomem.patch
	patches.arch/x86_64-ia32-syscall-reg-leak
	patches.arch/x86_mce_fix_sysdev_related_cpu_offline_oops.patch
	patches.arch/x86_64-fix-apic-error-on-bootup.patch
	patches.arch/x86-64-ignore-reboot-b-option.patch
	patches.fixes/kdump-bootmap-conflict.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
	patches.fixes/extend-MCE-banks-support-for-Dunnington-N.patch
	patches.arch/x86-hpet-64bit-timer.patch
	patches.arch/acpi_early_quirk_continue.patch
	patches.arch/x86_panic_on_unrecovered_nmi.diff
	patches.arch/x86_fix_early_pci_quirk_scan.patch
	patches.fixes/bug-499664_fix_reboot_after_S3_resume.patch
	patches.arch/x86_64-L3-cache-disable
	patches.suse/bug-514846-make-oprofile-work-on-Nehalem-processors.patch
	patches.fixes/bug-499664_fix-reboot-hang-after-s3-s4-resume.patch
	patches.fixes/x86-pageattr-fix.patch
	patches.arch/64bit-version-of-machine-check-broadcast-bandaid.patch
	patches.arch/bug-507366-rework-acpi_reserve_bootmem.patch
	patches.arch/x86-Increase_MIN_GAP_to_include_randomized_stack.patch
	patches.fixes/x86-64-fix-copy_user-retval.patch
	patches.fixes/x86-replace-lock_prefix-in-futex-h
	patches.arch/x86-sanitize-user-specified-e820-memmap-values.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.drivers/ehea-fix-invalid-pointer-access.patch
	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.arch/ppc_fix_non-contiguous_numa_nodes.patch
	patches.arch/ppc-eeh-set-error_state-earlier.patch
	patches.arch/ppc-slb-resize-across-migration

	patches.suse/delayacct-scaled-cpu.patch

	patches.arch/ppc-0001-exhaustively-search-for-existing-irq-mappings.patch
	patches.arch/ppc-0002-add-virt_irq_dispose_mapping.patch
	patches.arch/ppc-0003-backport-rtas_busy_delay.patch
	patches.arch/ppc-0004-backport-of-msi-x-support-for-powerpc.patch
	patches.arch/ppc-0005-fixup-missing-interrupts-property.patch
	patches.arch/ppc-eeh-msi-x-support-pci-subsystem.patch
	patches.arch/ppc-eeh-msi-x-support-powerpc-subsystem.patch
	patches.arch/ppc-eeh-subsystem-msi-x-support.patch
	patches.arch/ppc-fix-msi-build-for-config_eeh-case.patch
	patches.arch/ppc-xmon-export-sjlj
	patches.arch/ppc-kdump-shutdownhook
	patches.arch/ppc-eeh-fundamental-reset
	patches.arch/ppc-remove-linux,device-properties

	patches.arch/powerpc-adjust-oprofile_cpu_type-version-3
	patches.arch/powerpc-oprofile-compat-pmcs.patch
	patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo
	patches.arch/powerpc-identify_cpu_after_toc.patch

	# really a generic feature, but only fully implemented for power.
	patches.arch/elf-base-platform

	patches.fixes/powerpc-keep-3-high-personality-bytes-across-exec

	########################################################
	# 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
	patches.arch/s390-23-09-october2005.diff
	patches.arch/s390-23-10-october2005.diff
	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
	patches.arch/s390-26-04-dasd_device_from_cdev_deadlock.patch
	patches.arch/s390-26-05-qeth_hsi_mcl_string.patch

	patches.arch/s390-27-01-qeth-ipv6check.patch
	patches.arch/s390-27-02-cio-ungroup-race-fix.patch
	patches.arch/s390-27-03-topology.patch
	patches.arch/s390-27-04-fix-consoles-block-panic.patch
	patches.arch/s390-27-05-qeth-layercrash.patch
	patches.arch/s390-27-06-qdio-input-processing.patch

	patches.arch/s390-28-01-iucv-cpu-hotremove.diff
	patches.arch/s390-28-02-af_iucv-msgpeek.patch
	patches.arch/s390-28-03-cio_disable_notoper.patch
	patches.arch/s390-28-04-sclp-handle-empty-evbufs.patch
	patches.arch/s390-28-05-dasd-fix-timer-add.patch

	patches.arch/s390-29-01-iucv-connect-free-path.patch

	patches.arch/s390-30-01-kernel_appldata_vtimer.patch
	patches.arch/s390-30-02-af_iucv-fix-race-msgpending.patch
	patches.arch/s390-30-03-iucv-parm-irq.patch
	patches.arch/s390-30-04-qeth-checksum.patch
	patches.arch/s390-30-05-qeth-port-isolation.patch

	# New sp3 features
	patches.arch/s390-sles10sp3-01-service-levels.patch
	# patch 2 requires patches.suse/blktrace.diff
	# patches.arch/s390-sles10sp3-02-blktrace-drvdata.patch
	patches.arch/s390-sles10sp3-03-shutdown_actions.patch
	patches.arch/s390-sles10sp3-04-call_home_data.patch
	patches.arch/s390-sles10sp3-05-qeth-hsipv6.patch
	patches.arch/s390-sles10sp3-06-thin-interrupts.patch
	# patch 7 requires patches.suse/dynamic-kernel-command-line-s390.patch
	# patches.arch/s390-sles10sp3-07-vmparm.patch
	patches.arch/s390-sles10sp3-08-zcrypt-longrandom.patch
	# patch 9 requires patches.fixes/scsi-sdev-fixup-slave-destroy
	# patches.arch/s390-sles10sp3-09-zfcp-enhanced-traces.patch
	patches.arch/s390-sles10sp3-10-dasd-eckd_write_r0.patch
	# patch 11 requires patches.suse/blktrace.diff
	# patches.arch/s390-sles10sp3-11-add_blktrace_ioctls_to_SCSI_generic_devices.patch
	# patch 12 requires patches.arch/s390-sles10sp3-07-vmparm.patch
	# patches.arch/s390-sles10sp3-12-ipl_after_dump.patch
	patches.arch/s390-sles10sp3-13-dasd_sim_handling.patch
	patches.arch/s390-sles10sp3-14-dasd-large-volume-support.patch
	patches.arch/s390-sles10sp3-15-zcrypt-new-card-ids.patch
	patches.arch/s390-sles10sp3-16-iucvterm-s390tools.patch
	patches.arch/s390-sles10sp3-17-hvc_iucv.patch
	patches.arch/s390-sles10sp3-18-af-iucv-datagram-sk.patch
	patches.arch/s390-sles10sp3-19-zfcp-queue-depth.patch

	patches.arch/s390-31-01-zfcp_unit_remove.patch
	patches.arch/s390-31-02-dasd-fail-requests-when-not-ready.patch

	patches.arch/s390-32-01-zcrypt-return-read-count.patch
	patches.arch/s390-32-02-vmxyz-kernel-parameters.patch

	patches.arch/s390-33-01-cio-retries.patch
	patches.arch/s390-33-02-cio-race.patch
	patches.arch/s390-33-03-setup-preferred-con.patch
	patches.arch/s390-33-04-af_iucv-skwait-race.patch

	patches.arch/s390-34-01-iucv-query-maxconn.patch

	patches.arch/s390-35-01-dasd-diag-for-readonly-devices.patch
	patches.arch/s390-35-02-kernel-single-step-svc0.patch
	patches.arch/s390-35-03-kernel-clear-high-regs.patch

	patches.arch/s390-36-01-tlbflush.patch
	patches.arch/s390-36-02-sclp-dump-indicator.patch
	patches.arch/s390-36-03-qeth-blkt-defaults.patch

	patches.arch/s390-37-01-zcrypt-errorhandling-of-872.patch

	patches.arch/s390-38-01-zcrypt-errormessage-for-872.patch
	patches.arch/s390-38-02-qdio-input-error.patch
	patches.arch/s390-38-03-hvc-iucv-alloc-dma.patch

	# Patch moved after patches.arch/s390-sles10sp3-07-vmparm.patch
	# patches.arch/s390-39-01-nss-add-previous-stmt.patch

	patches.arch/s390-40-01-hypfs-print-unsigned.patch
	patches.arch/s390-40-02-dasd-fix-tasklet-sleep-on-race.patch
	patches.arch/s390-40-03-smsgiucv-zvm-check.patch

	patches.arch/s390-emit-change-event-for-probe

	patches.arch/s390-41-01-cmm-unload.patch
	patches.arch/s390-41-02-zfcp-stat-feat.patch

	# Patch 42-01 requires patches.arch/s390-sles10sp3-09-zfcp-enhanced-traces.patch
	# patches.arch/s390-42-01-zfcp-port-refc-on-adisc.patch
	patches.arch/s390-42-02-zfcp-erp-timeout.patch
	# Patch 42-03 requires patches.arch/s390-17-04-october2005.diff
	# patches.arch/s390-42-03-zfcp-forced-unblock.patch
	patches.arch/s390-42-04-zfcp-forced-fail.patch
	patches.arch/s390-42-05-qeth-layerswitch.patch
	patches.arch/s390-42-06-cio-vary-chpid-00.patch
	patches.arch/s390-42-07-qeth-ipa-timeout.patch
	patches.arch/s390-42-08-qeth-w4finished-recovery.patch

	patches.arch/s390-43-01-dasd-reserve-emergency-cqr.patch
	patches.arch/s390-43-02-zfcp-link-message.patch

	patches.arch/s390-44-tlb-proc-race-v2.patch

	patches.arch/s390-45-01-dasd-fix-cqr-flags-in-erp.patch

	# patches.arch/s390-46-01-initrd.patch is moved after
	# patches.arch/s390-sles10sp3-07-vmparm.patch
	# patches.arch/s390-46-02-hyperpav-rwtd.patch is moved to after
	# patches.drivers/scsi-separate-failfast-into-multiple-bits
	patches.arch/s390-46-03-qeth-osxosm.patch
	patches.arch/s390-46-04-qeth-olm-message.patch
	patches.arch/s390-46-05-qeth-portno.patch
	# patches.arch/s390-46-06-dasd-fix-cc1-handling.patch is moved after
	# patches.arch/s390-46-02-hyperpav-rwtd.patch

	# patches.arch/s390-47-01-dasd-fix-unimplemented-diag-function.patch is moved after
	# patches.arch/s390-46-06-dasd-fix-cc1-handling.patch
	patches.arch/s390-47-02-cio-no-panic-on-unexpected-int.patch
	patches.arch/s390-47-03-cio-fix-cancel-halt-clear.patch

	patches.arch/s390-48-01-vmlogrdr-purge-after-recording-off.patch

	patches.arch/s390-49-01-qeth_vpassthru.patch
	patches.arch/s390-49-02-qeth-offline-vipa-add.patch
	patches.arch/s390-49-03-hvc-iucv-unregister.patch
	patches.arch/s390-49-04-qdio-stall-64-devices.patch

	patches.arch/s390-50-01-qdio-siga.patch
	patches.arch/s390-50-02-cio_suppress_chpid_event.patch
	patches.arch/s390-50-03-cio_fix_vary_vs_offline_race.patch
	patches.arch/s390-50-04-qeth_recovery_wait_in_open.patch

	patches.arch/s390-51-01-uaccess-sacf.patch

	patches.arch/s390-52-01-qeth-mac-in-message.patch
	patches.arch/s390-52-02-sclp-vt220-prevent-deadlock.patch

	patches.arch/s390-53-01-qeth-chpath-change.patch
	patches.arch/s390-53-02-qeth-no-ipa-in-offline.patch
	patches.arch/s390-remove-task_show_regs.patch
	patches.arch/crypto-sha-s390-reset-index-after-processing-partial-block.patch

	patches.arch/s390-54-01-tape-system-wq-deadlock.patch
	# patches.arch/s390-54-02-dasd-fix-open-offline-race.patch is moved after
	# patches.arch/s390-47-01-dasd-fix-unimplemented-diag-function.patch

	patches.arch/s390-55-01-diag10-64bit.patch

	patches.arch/s390-56-01-qdio_input_error.patch
	patches.arch/s390-56-02-crypto-prng-seed.patch

	patches.arch/s390-57-01-cio_add_timeouts.patch
	patches.arch/s390-57-02-page-referenced.patch
	patches.arch/s390-57-03-qeth-nr-out-queues.patch

	# patches.arch/s390-58-01-smp-send-stop.patch is moved after
	# patches.arch/s390-sles10sp3-12-ipl_after_dump.patch
	# patches.arch/s390-58-02-nss-initrd.patch is moved after
	# patches.arch/s390-46-01-initrd.patch
	patches.arch/s390-58-03-topology-irq.patch

	patches.arch/s390-59-01-qdio-partial_eqbs.patch

	patches.arch/s390-60-01-pfault-cpu-hotplug.patch
	patches.arch/s390-60-01-pfault-cpu-hotplug-kabi.patch

	patches.arch/s390-61-01-qdio-cq-toleration.patch
	patches.arch/s390-61-02-cio_disallow_driver_io_for_known_to_be_broken_paths.patch

	patches.arch/s390-62-01-console-panic.patch
	patches.arch/s390-62-02-af_iucv-remove-iucv-path.patch
	patches.arch/s390-62-03-qdio-error-bufnum.patch

	# patches.arch/s390-63-01-dasd-fix_fixpoint_devide_exception.patch is moved after
	# patches.arch/s390-46-02-hyperpav-rwtd.patch
	patches.arch/s390-63-02-ctcmpc-idal.patch

	patches.arch/s390-64-01-lcs-setoffline.patch
	patches.arch/s390-64-02-qeth-wake.patch

	patches.arch/s390-65-01-qeth-fix-OSA4-blkt.patch
	patches.arch/s390-65-02-zcrypt-fix_copro_cprb_check.patch

	patches.arch/s390-66-01-ap_type10_toleration.patch

	patches.arch/s390-67-01-pfault-race.patch

	# patches.arch/s390-68-01-lgr-detection.patch is moved after
	# patches.arch/s390-sles10sp3-12-ipl_after_dump.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
	patches.suse/silent-stack-overflow
	patches.suse/s390-silent-stack-overflow.patch
	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/invalidate-truncate-ocfs2-fix.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.fixes/shm-fix-shmctl-SHM_INFO-lockup

	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/debugfs-add-remove-recursive.patch
	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/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
	patches.fixes/hfsplus-fix-buffer-overflow-with-corrupt-fs
	patches.fixes/hfs-fix-namelength-memory-corruption
	patches.fixes/hfs-fix-a-potential-buffer-overflow
	patches.fixes/hfs-fix-oops-on-mount-with-corrupted-btree-extent-re.patch
	patches.fixes/hfs-fix-hfs_find_init-sb-ext_tree-null-ptr-oops.patch
	patches.fixes/hfs-add-sanity-check-for-file-name-length.patch
	patches.fixes/hfsplus-fix-potential-buffer-overflow.patch
	patches.fixes/befs-ensure-fast-symlinks-are-nul-terminated
	patches.fixes/befs-validate-length-of-long-symbolic-links

	# S/390 hugetlb support
	patches.arch/s390-large_pte_type-v3.diff
	patches.arch/s390-optimize-sske

	patches.fixes/vfs-separate-FMODE_PREAD-PWRITE.patch
	patches.fixes/seq_file-more-atomicity-in-traverse.patch
	patches.fixes/seq_file-fix-first-no-output-show.patch
	patches.fixes/seq_file-move-traverse.patch
	patches.fixes/seq_file-fix-long-lseek.patch
	patches.fixes/seq_file-fix-pread.patch
	patches.fixes/add-seq_cpumask-seq_nodemask.patch
	patches.fixes/smp_affinity-use-seq-files.patch

 	# FATE 302190 - backport oom debugging
 	patches.suse/sysctl-allow-zero-ctl-name.diff
 	patches.suse/sysctl-ctl-unnumbered.diff
 	patches.suse/sysctl-add-task-memory-dump.diff
	patches.suse/sysctl-oom-kill-interval.diff

	patches.fixes/mm-madvise-fix.patch
	patches.fixes/inotify-coalesce-event.patch

	patches.fixes/mm-mempolicy-refcount-fix.patch
	patches.suse/mm-mmap-min-addr.patch

	patches.fixes/vfs-drop-caches-inversion-fix
	patches.fixes/mm-set_mempolicy-einval-fix.patch
	patches.fixes/mm-mempolicy-fix-fallback.patch

	patches.fixes/epoll-wait-fix
	patches.fixes/epoll_wait-check_all_possible_events.patch
	patches.fixes/epoll-dont-lose-events.patch

	patches.fixes/fs-new-inode-i_state-corruption-fix.patch
	patches.fixes/fs-i_state-lock-memorder.patch
	patches.fixes/fix-lookup_follow-on-automount-symlinks
	patches.suse/mm-migrate_to_node-with-cpuset-fix.patch
	patches.fixes/oldmem-no-saved_max_pfn-check.patch
	patches.fixes/fix_maps_race.patch
	patches.fixes/aio-check-for-multiplication-overflow-in-do_io_submit
	patches.fixes/avoid-pgoff-overflow-in-remap_file_pages
	patches.fixes/mm-stop-kswapd-s-infinite-loop-at-high-order-allocat.patch
	patches.fixes/setup_per_zone_pages_min-overflow-fix.patch
	patches.fixes/fix-user-xattr-permission-check-for-sticky-dirs
	patches.fixes/debugfs_remove_corruption.diff
	patches.fixes/mac-partition-table-fix.patch
	patches.fixes/ldm-partition-table-fix.patch
	patches.fixes/osf-partition-table-fix.patch
	patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops
	patches.fixes/ldm-fix-oops-on-corrupted-partition-table.patch
	patches.fixes/Fix-for-buffer-overflow-in-ldm_frag_add-not-sufficie.patch
	patches.fixes/proc-avoid-information-leaks-to-non-privileged-proce.patch
	patches.fixes/mm-avoid-wrapping-vm_pgoff-in-mremap.patch
	patches.fixes/vm-fix-vm_pgoff-wrap-in-stack-expansion.patch
	patches.fixes/vm-fix-vm_pgoff-wrap-in-upward-expansion.patch
	patches.fixes/validate-size-of-efi-guid-partition-entries.patch
	patches.fixes/vm-dirty-bytes
	patches.fixes/hugetlb-interleave-mpol-refcount-fix.patch

	########################################################
	# IPC patches
	########################################################
	patches.fixes/sys_semctl-fix-kernel-stack-leakage
	patches.fixes/ipc-initialize-structure-memory-to-zero-for-compat-functions
	patches.fixes/ipc-shm-fix-information-leak-to-userland

	########################################################
	# 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/cfq-rdac-deadlock
	patches.fixes/elevator-trim-ioc
	patches.fixes/elevator-switch-race
	patches.suse/blkq-adjust-max-segments.diff
	patches.fixes/blk-phys-segment-accounting
	patches.fixes/block-failfast-merge-fix

	patches.suse/remove-relayfs.diff
	patches.suse/blktrace.diff
	patches.suse/loop-MS_LOOP_NO_AOPS

	patches.arch/s390-sles10sp3-02-blktrace-drvdata.patch
	patches.arch/s390-sles10sp3-11-add_blktrace_ioctls_to_SCSI_generic_devices.patch
	patches.arch/s390-sles10sp3-02-blktrace-drvdata-fix.patch
	patches.arch/s390-sles10sp3-blktrace-abort.patch

	patches.fixes/blktrace-hang.patch
	patches.fixes/fix-pktcdvd-ioctl-dev_minor-range-check
	patches.fixes/bio-take-care-not-overflow-page-count-when-mapping-copying-user-data
	patches.fixes/block-check-for-proper-length-of-iov-entries-in-blk_rq_map_user_iov
	patches.fixes/cfq-fix-infinite-loop-in-cfq_preempt_queue.patch

	########################################################
	# 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
	patches.fixes/connector-delete-buggy-notification-code

	# 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
	patches.fixes/watchdog-ib700wdt-buffer-underflow
	patches.fixes/random-make-get_random_int-more-random.patch

	patches.fixes/platform-x86-asus_acpi-world-writable-procfs-files
	patches.fixes/media-video-sn9c102-world-wirtable-sysfs-files

	########################################################
	# 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/acpica-fix-alias-operator.patch

	# 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_introdce_ida_cpuinfo_processor_feature_fix.patch
	patches.arch/x86_cpufreq-add-support-for-freq-perf_registers.patch
	patches.fixes/acpi_assure_unique_processor_proc_creation.patch

	patches.arch/cpufreq_acpi_driver_fixes.patch
	patches.fixes/cpufreq_ppc_fixup.patch
	patches.arch/x86_acpi_sanity_check_cpufreq_pss_data.patch
	patches.arch/x86_cpufreq_intel_blacklist.patch
	patches.fixes/cpufreq_fix_deadlock_on_ACPI_freq_limit_event.patch
	patches.arch/x86_amd_powernow-k8-fix-indexing-issue.patch

	# x86 biarch patch, but applies better here
	patches.arch/x86_intel_use_apic_for_westmere_cores.patch
	patches.arch/x86_acpi_idle_use_broadcast_param.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

	patches.arch/acpi_fixup_slit_tables_arch_independent.patch
	patches.arch/acpi_fixup_slit_tables_arch_independent_2.patch

	patches.arch/acpi_gbl_lock_use_spinlock_instead_of_mutex.patch
	########################################################
	# xAPIC - Intel Nehalem
	########################################################
	patches.arch/xapic_4_vs_8_bit.patch
	patches.arch/xapic_check_apic_version.patch

	# other APIC things ####
	patches.arch/apic_cmdline_workaround_fix.patch	

	# enhance idle loop
	patches.arch/x86_support_tsc_keeps_running_in_c3.patch
	patches.arch/x86_nehalem_c-state_optimization.patch
	patches.arch/x86_dont_synchronize_nonstop_tsc.patch
	patches.drivers/processor_show_c_state_duration.patch

	patches.arch/x86_fix_suspend_with_lots_of_cores.patch
	# Faster gettimeofday
	patches.arch/x86_64_amd_use_tsc_if_constant.patch
	# Totally other issue, but same result (with boot param) for Intel:
	patches.arch/x86_64_ignore_tsc_cluster_check_boot_param.patch


	# i386/ACPI patch, but applies better here
	patches.fixes/bug-521842_backport-SLES10SP3-Disable-ARB_DISABLE-on-platforms.patch
	patches.fixes/x86_processor_sleep_states_adjust_blacklist.patch

	patches.arch/i386_tsc_do_not_synchronize.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/bridge-eliminate-workqueue.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
	patches.fixes/net-fix-recursive-descent-in-__scm_destroy.patch
	patches.fixes/disable-tso-and-gso-during-urg
	patches.fixes/ipv6_na_no_warn_for_local_packets.patch
	patches.fixes/net-4-bytes-kernel-memory-disclosure-in-SO_BSDCOMPAT-gsopt
	patches.fixes/fix_ip_append_data.patch
	patches.fixes/net-af_rose-x25-check-maximum-user-frame-size.patch
	patches.fixes/ip-input-clear-skbc-opts.patch
	patches.fixes/ip-input-clear-skbc-all.patch
	patches.fixes/ipv6-input-clear-skbc.patch
	patches.fixes/fix-alloc_large_system_hash-roundup.patch
	patches.fixes/ipv6-make-fragment-identifications-less-predictable.patch
	patches.fixes/ipv6-fix-NULL-dereference-in-udp6_ufo_fragment.patch

	patches.drivers/ethtool-add-support-for-large-eeproms.patch
	patches.drivers/ethtool-EEPROM-dump-no-longer-works-for-tg3-and-nats.patch
	patches.fixes/net-make-sock_sendpage-use-kernel_sendpage
	patches.fixes/udp-fix-MSG_PROBE-crash.patch

	patches.fixes/appletalk-fix-atalk_getname-leak
	patches.fixes/econet-fix-econet_getname-leak
	patches.fixes/irda-fix-irda_getname-leak
	patches.fixes/net-llc-zero-sockaddr_lcc-struct
	patches.fixes/netrom-fix-nr_getname-leak
	patches.fixes/rose-fix-rose_getname-leak

	patches.fixes/net-pkt_sched-fix-return-value-corruption-in-htb-and-tbf.patch
	patches.fixes/net-ax25-fix-signed-comparison-in-the-sockopt-handler.patch
	patches.fixes/net-make-the-copy-length-in-af_packet-sockopt-handler-unsigned.patch
	patches.fixes/tc-fix-unitialized-kernel-memory-leak
	patches.fixes/af_unix-fix-deadlock-on-connecting-to-shutdown-socket
	patches.fixes/appletalk-fix-skb-leak-when-ipddp-interface-is-not-loaded
	patches.fixes/icmp-frag-needed-on-retransmit.patch
	patches.fixes/net-sched-fix-some-kernel-memory-leaks
	patches.fixes/rose-fix-signedness-issues-wrt-digi-count
	patches.fixes/x25-prevent-crashing-when-parsing-bad-x-25-facilities
	patches.fixes/net-truncate-recvfrom-and-sendto-length-to-int_max
	patches.fixes/econet-fix-cve-2010-3848
	patches.fixes/econet-disallow-null-remote-addr-for-sendmsg-fixes-cve-2010-3849
	patches.fixes/econet-fix-cve-2010-3850
	patches.fixes/econet-do-the-correct-cleanup-after-an-unprivileged-siocsifaddr
	patches.fixes/econet-fix-crash-in-aun_incoming
	patches.fixes/tcp-fix-initcwnd-initialization.patch
+jikos	patches.fixes/tcp-add-initrcvwnd.patch
	patches.fixes/irda-prevent-integer-underflow-in-irlmp_enumdevices
	patches.fixes/tcp-slow_start_after_idle-should-influence-cwnd-valid.patch
	patches.fixes/ax25-fix-information-leak-to-userland.patch
	patches.fixes/tipc-fix-information-leak-to-userland.patch
	patches.fixes/packet-fix-information-leak-to-userland.patch
	patches.fixes/irda-validate-peer-name-and-attribute-lengths

        patches.fixes/ipv6-udp-optimise-multicast-reception
        patches.fixes/udp-multicast-rx-should-increment-snmp-sk_drops-counter-in-allocation-failures
        patches.fixes/net-add-limit-for-socket-backlog
        patches.fixes/tcp-use-limited-socket-backlog
        patches.fixes/udp-use-limited-socket-backlog
        patches.fixes/llc-use-limited-socket-backlog
        patches.fixes/x25-use-limited-socket-backlog
	patches.fixes/ipv4-match-prefsrc-when-deleting-routes.patch
	patches.fixes/ipv4-fix-route-deletion-for-IPs-on-many-subnets.patch
	patches.fixes/ipv4-remove-the-routes-on-secondary-promotion.patch
	patches.fixes/nat-dont-add-nat-extension-for-confirmed-conntracks.patch
	patches.fixes/ipv6-netfilter-ip6_tables-fix-infoleak-to-userspace.patch
	patches.fixes/tcp-fix-premature-termination-of-FIN_WAIT2-time-wait.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

	patches.fixes/atm-multiple-listens-corrupts-vcc-table
	patches.fixes/ipt_clusterip_nodebug.patch
	patches.fixes/netfilter-ebtables-enforce-cap_net_admin

	patches.suse/procps_bitmap_support.patch
	patches.suse/ip_local_reserved_ports.patch
	patches.fixes/net-optimize-berkeley-packet-filter-bpf-processing
	patches.fixes/filter-make-sure-filters-dont-read-uninitialized-memory

	########################################################
	#
	# 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/lpfc-8.2.0.43-update
	patches.drivers/lpfc-8.2.0.45-update
	patches.drivers/lpfc-8.2.0.48-update
	patches.drivers/lpfc-8.2.0.48-fix-ptr-checks
	patches.drivers/lpfc-8.2.0.48.1p-update
	patches.drivers/lpfc-8.2.0.48.2p-update
	patches.fixes/lpfc_dma_mask_hang
	patches.fixes/lpfc_heartbeat.patch
	patches.drivers/lpfc-8.2.0.85-update
	patches.drivers/lpfc-8.2.0.91-update
	patches.drivers/lpfc-8.2.0.92-update
	patches.drivers/lpfc-8.2.0.92.1p-update
	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/ipmi-fix-memory-leak-in-destroy-user.patch
	patches.drivers/ipmi-add-parameter-to-limit-cpu-usage-in-kipmid.patch
	patches.drivers/ipmi-probe-dmi-before-acpi.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
	patches.fixes/dell_rbu-scnprintf
	patches.fixes/disassociate_ctty-mem-corruption-fix.patch
	patches.fixes/skfp-fix-inverted-logic
	patches.fixes/dma-required-mask-fix
	patches.fixes/uart-txen-race.patch
	patches.fixes/dcdbas-smiread.patch
	patches.fixes/media-v3-media-av7110-check-for-negative-array-offse.patch
	patches.drivers/ipmi-don-t-grab-locks-in-run-to-completion-mode.patch
	patches.drivers/ipmi-don-t-grab-locks-in-run-to-completion-mode-kabi.patch
	patches.fixes/ipmi-fix-deadlock-in-start_next_msg.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.drivers/ibmvscsi-reply_to_unsupported_MADs
	patches.drivers/ppc-ibmvscsi-tape
	patches.drivers/ppc_ibmvscsi_fix_dynamic_request_limit.patch
	patches.drivers/ibmvscsi-send_adapter_info_before_login
	patches.drivers/ibmvscsi-enable_fast_fail
	patches.drivers/ibmvscsi-fix_module_load_hang

	patches.fixes/cdrom-fix-open
	patches.fixes/SCSI-sg-handle-class_device_create-failure-properly.patch
+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.drivers/libata-ahci-followup-srst
	patches.suse/ide-probe-delay
	patches.fixes/ide-noflush
	patches.fixes/ide-avoid-expiry-function-for-handled-request

	# 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/ide-increase-timeout-in-wait_drive_not_busy
	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.drivers/libata-fix-ata_tf_read_block-overflow
	patches.drivers/libata-scsi-rescan-update
	patches.drivers/libata-seagate-firmware-bug
	patches.drivers/libata-set-tf-flags-in-NCQ-EH-result_tf
	patches.drivers/libata-exec-internal-better-ecode
	patches.drivers/libata-eh-clear-ua
	patches.fixes/cdrom-fix-invalid-block-size.diff
	patches.drivers/libata-ahci-Withdraw-IGN_SERR_INTERNAL-for-SB800
	patches.drivers/libata-ahci-update-pi-handling
	patches.fixes/sata_promise-update-reset.patch
	patches.fixes/sata_promise-no-hotplug
	patches.drivers/libata-6gbps-message
	patches.drivers/libata-sata_sis-probe-fix
	patches.drivers/libata-sata_svw-add-ht1100-support
	patches.drivers/libata-ide-add-sb900-support
	patches.drivers/libata-ahci-add-em_buffer-attribute
	patches.drivers/libata-add_AHCI_FLAG_HONOR_PI-AMD-hudson-2-3
	patches.drivers/ahci-sata-mode-intel-patsburg.patch
	### 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-ipr-enable-msi
	patches.drivers/scsi_ipr_add_error_case.patch

	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.drivers/qla2xxx-disable-dynamic-queue-tracking
	patches.drivers/qla2xxx-8.03.00.06.10.3-k4_sles10.3-update

	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/qla4xxx-5.01.02-d4-SLES10.2-5.01.03.03.10.3-d1
	patches.drivers/qla4xxx-5.01.03.03.10.3-d1-5.01.03.03.10.3-d2
	patches.drivers/qla4xxx-5.01.03.03.10.3-d2_5.01.03.03.10.3-d4
	patches.drivers/qla4xxx-5.01.03.03.10.3-d4_5.01.03.03.10.3-d5
	patches.drivers/qla4xxx-check-NULL-cmd-and-ref-count-fix
	patches.drivers/qla4xxx-5.01.03.03.10.3-d5_5.02.03.00.10.4-d0
	patches.drivers/qla4xxx-5.02.03.00.10.4-d0_5.02.06.00.10.4-d0
	patches.drivers/qla2xxx-disable-local-interrupts-polling.patch
	patches.fixes/qla2xxx-fix-queuecommand-panic
	patches.drivers/qla2xxx-error-recovery-fixes
	patches.drivers/qla2xxx-defer-enablement-of-interrupts.patch
	patches.drivers/qla2xxx-update-portstate-host-attribute.patch
	patches.drivers/qla2xxx-sp3-beta3-update
	patches.drivers/qla2xxx-base-eeh-support
	patches.fixes/qla2xxx-vport-fix
	patches.drivers/qla2xxx-set-portstate-to-linkdown-on-no-cable
	patches.drivers/qla2xxx-properly-handle-UNDERRUN-completion-status
	patches.drivers/qla2xxx-fw-version-str-overflow
	patches.drivers/qla2xxx-sles10-sp4-update
	patches.drivers/qla2xxx-drop-reference-before-wait-for-completion

	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/cciss-dynamic-number-of-cmds.patch
	patches.drivers/cciss-sp3-update
	patches.drivers/cciss-add-scan-thread
	patches.drivers/cciss-not-accepting-io
	patches.drivers/cciss-hash-and-ignore-stale-cmds
	patches.fixes/cciss-sysfs-removed-card
	patches.drivers/cciss-pci-pm-reset
	patches.drivers/cciss-sp4-update
	patches.drivers/cciss-stars-PCI-subsystem-IDs-are-wrong
	patches.drivers/cciss-stop-looping-at-highest_lun
	patches.drivers/cciss-convert-to-list-from-hlist
	patches.drivers/cciss-remove-use_doorbell-set-to-zero
	patches.fixes/cciss-set-bit-29-for-short-tags
	patches.fixes/cciss-fix-lost-command-issue
	patches.fixes/cciss-do-not-read-from-write-only-register

	# cciss kdump fixes/workarounds
	patches.drivers/cciss_introduce_simple_mode_sp3_compat_boot_param.patch
	patches.fixes/cciss-kdump-fix.patch

	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.arch/s390-sles10sp3-09-zfcp-enhanced-traces.patch
	patches.arch/s390-42-01-zfcp-port-refc-on-adisc.patch

	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.arch/s390-42-03-zfcp-forced-unblock.patch
	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
	patches.drivers/fusion-unstick-error-recovery
	patches.drivers/aacraid-no-wce
	patches.fixes/scsi-restart-lookup-by-target
	patches.fixes/scsi-host-kzalloc-shost_data
	patches.suse/scsi-check-removed-device-for-offline
	patches.drivers/scsi-aha152x-compile-fix.patch
	patches.drivers/scsi-aha152x-pcmcia-update.patch
	patches.drivers/megaraid_sas-4.08-update
	patches.drivers/megaraid_sas-4.08-update-remove-stale-debug-message
	patches.drivers/fusion-sles10-sp3-3.04.07-suse
	patches.drivers/aacraid-sp3-update
	patches.drivers/mpt2sas-driver
	patches.fixes/block-online-disk-resize
	patches.drivers/ppc-ibmvfc-driver
	patches.drivers/brocade-bfa.patch
	patches.drivers/brocade-bfa-move-cna-includes
	patches.drivers/brocade-bfa-beta2.patch
	patches.fixes/scsi-prep_fn-dead-queue-fix
	patches.drivers/ipr-pci-eeh-permanent-failure
	patches.drivers/mptsas-106xE-32bit-fix
	patches.drivers/aacraid-24701-update
	patches.drivers/aacraid-24702-update
	patches.drivers/aacraid-26400-update
	patches.fixes/mptspi-update-dv-settings
	patches.drivers/fusion-sles10-sp4-3.04.16-suse
	patches.drivers/fusion-sles10-sp4-3.04.17-suse
	patches.drivers/fusion-sles10-sp4-genksyms-fixup
	patches.drivers/megaraid_sas-4.37-update
	patches.drivers/pmcraid-add-for-sles10sp4
	patches.drivers/pmcraid-remove-compat-dma-bit-mask-definitions
	patches.drivers/pmcraid-disable-msix.patch
	patches.drivers/ipr-update-2.3.0
	patches.drivers/ipr-update-2.3.0-fix
	patches.drivers/ipr-update-2.3.0-fix-fix
	patches.drivers/ipr-bluedarter-readd-race-workaround
	patches.drivers/mpt2sas-sp4-update
	patches.drivers/mpt2sas-driver-fails-to-recover
	patches.drivers/mpt2sas-fix-pci_request_regions-failure
	patches.drivers/mpt2sas-add-sanity-checks
	patches.drivers/mpt2sas-sanity-check-for-phy-num
	patches.fixes/mpt2sas-move-pci-save-state
	patches.fixes/mpt2sas-prevent-heap-overflows-and-unchecked-reads
        patches.fixes/mpt2sas-increase-max-hw-segments.patch
	patches.drivers/brocade-bfa-2.3.2.1.patch
	patches.drivers/brocade-bfa-remove-solaris-logging
	patches.drivers/aic94xx-update-BIOS-image
	patches.drivers/aic94xx-correct-size-argument

	patches.drivers/scsi-unblock-target-after-calling-terminate-callback
	patches.drivers/scsi-add-transport-host-byte-errors
	patches.drivers/scsi-add-support-for-new-transport-errors-to-fc-transport
	patches.drivers/scsi-separate-failfast-into-multiple-bits
	patches.arch/s390-46-02-hyperpav-rwtd.patch
	patches.arch/s390-63-01-dasd-fix_fixpoint_devide_exception.patch
	patches.arch/s390-46-06-dasd-fix-cc1-handling.patch
	patches.arch/s390-47-01-dasd-fix-unimplemented-diag-function.patch
	patches.arch/s390-54-02-dasd-fix-open-offline-race.patch
	patches.fixes/sd-no-spinup-standby-ports
	patches.fixes/scsi-reservation-conflict-after-timeout	
	patches.fixes/scsi-execute-async-kfree-fix
	patches.fixes/scsi-retry-add-to-mlqueue-for-eh
	patches.fixes/scsi-retry-alua-in-transition-ua
	patches.suse/sd-ignore-sync-errors-on-passive-paths
	patches.fixes/scsi-blank-out-reservation-conflict-printk
	patches.drivers/qla1280-eh-update
	patches.fixes/mpt-hold-off-error-recovery
	patches.fixes/mpt-fix-msgContext-in-mptctl_hp_hostinfo

	# 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
	patches.fixes/revert_sd_asc_28_liberal_check.diff
	patches.fixes/sd-NO_SENSE-fix
	patches.fixes/scsi-fixup-recovered-error
	patches.fixes/scsi-gdth-negative-offset-fix.patch
	patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io
	patches.fixes/SCSI-sd-handle-bad-lba-in-sense-information.patch
	patches.suse/sg-backport-race-fix
	patches.fixes/scsi-reservation-conflict-after-timeout2
	patches.drivers/megaraid_sas-5.25-update
	patches.fixes/scsi-gdth-integer-overflow-in-ioctl
	patches.fixes/megaraid_sas-initialisation-fix
	patches.fixes/megaraid_sas-reset-msi-x-after-kdump
	patches.fixes/sd-set-resid-correctly
	patches.suse/scsi-always-retry-on-internal-target-failure.patch

	########################################################
	# Network
	########################################################
	patches.fixes/net-drop-duplicate-assignment-in-request_sock.patch

	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.drivers/tg3-3.86b-to-3.99c.patch
	patches.drivers/tg3-fixes-a-rare-sbd-corruption-bug-on-57780-asic-rev-devices.patch
	patches.drivers/tg3-adds-50610m-phy-id-for-5785.patch
	patches.drivers/tg3-adds-apd-support-for-phys-designated-as-fet.patch
	patches.drivers/tg3-fixes-a-5785-data-corruption-bug.patch
	patches.drivers/tg3-correct-an-inverted-inline-status-bug-for-5785.patch
	patches.drivers/tg3-remove-use-of-skb_dma_map-unmap.patch
	patches.drivers/tg3-3.99c-to-3.114b.patch
	patches.drivers/tg3-fix-alignment-of-rx_offset-for-asic_rev_5701.patch
	patches.drivers/tg3-Apply-10Mbps-fix-to-all-57765-revisions.patch
	patches.drivers/tg3-Assign-correct-tx-margin-for-5719.patch
	patches.drivers/tg3-Fix-5719-internal-FIFO-overflow-problem.patch
	patches.drivers/tg3-Raise-the-jumbo-frame-BD-flag-threshold.patch
	patches.drivers/tg3-Always-turn-on-APE-features-in-mac_mode-reg.patch
	patches.drivers/tg3-ape-fix.patch
	patches.drivers/tg3-Add-support-for-selfboot-format-1-v6.patch
	patches.drivers/tg3-Fix-5719-A0-tx-completion-bug.patch
	patches.drivers/tg3-Revise-5719-internal-FIFO-overflow-solution.patch
	patches.drivers/tg3-Disable-multivec-mode-for-1-MSIX-vector.patch
	patches.drivers/tg3-Enable-mult-rd-DMA-engine-on-5719.patch
	patches.drivers/tg3-Disable-MAC-loopback-test-for-CPMU-devices.patch
	patches.drivers/tg3-Fix-loopback-tests.patch
	patches.drivers/tg3-restrict-phy-ioctl-access-when-not-netif_running.patch
	patches.drivers/tg3-fix-return-value-check-in-tg3_read_vpd.patch
	patches.drivers/tg3-Do-not-call-device_set_wakeup_enable-under-spin_.patch
	patches.drivers/tg3-Disable-unused-transmit-rings.patch
	patches.drivers/PATCH-net-next-tg3-Set-real_num_rx_queues-for-non-mu.patch

	patches.fixes/tulip-quad-NIC-ifdown
	patches.suse/prism-defaultmac
	patches.suse/nameif-track-rename.patch
	patches.suse/rtnetlink-atomic2.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.fixes/r8169-wake-up-the-phy-of-the-8168.patch
	patches.drivers/sky2-1.10-update
	patches.drivers/sky2-update-to-1.22.patch
	patches.drivers/sky2-update-to-1.22-upstream-fixes.patch

	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/bnx2-update-2.0.1.patch
	patches.drivers/bnx2-update-bnx2_com_fw_06-to-4.6.16.patch
	patches.drivers/bnx2-update-bnx2_com_fw_09-to-4.6.16.patch
	patches.drivers/bnx2-bnx2_tx_int-optimizations.patch
	patches.drivers/bnx2-no-need-to-check-before-vfreeing.patch
	patches.drivers/bnx2-fix-the-behavior-of-ethtool-when-onboot-no.patch
	patches.drivers/bnx2-return-pci_ers_result_disconnect-on-permanent-failure.patch
	patches.drivers/bnx2-zero-out-status-block-before-chip-reset.patch
	patches.drivers/bnx2-close-device-if-mtu-change-or-ring-size-change-fails.patch
	patches.drivers/bnx2-apply-broken_stats-workaround-to-5706-and-5708.patch
	patches.drivers/bnx2-report-ftq-discard-counter.patch
	patches.drivers/bnx2-refine-coalescing-parameters.patch
	patches.drivers/bnx2-use-const-on-flash_table-structure.patch
	patches.drivers/bnx2-update-version-to-2.0.2.patch
	patches.drivers/bnx2-update-firmware-to-5.0.0.j3.patch
	patches.drivers/bnx2-avoid-compiler-warnings.patch
	patches.drivers/bnx2-eeh-is-failing-with-timeout.patch
	patches.drivers/bnx2-remove-skb_dma_map-unmap-calls-from-driver.patch
	patches.drivers/bnx2-protect-tx-timeout-reset-with-rtnl_lock.patch
	patches.drivers/bnx2-dump-some-state-during-tx-timeout.patch
	patches.drivers/bnx2-print-warning-when-unable-to-allocate-the-full-skb-page-ring.patch
	patches.drivers/bnx2-read-firmware-version-from-vpd.patch
	patches.drivers/bnx2-update-version-to-2.0.3.patch
	patches.drivers/bnx2-refine-vpd-logic.patch
	patches.drivers/bnx2-reset_task-is-crashing-the-kernel.-fixing-it.patch
	patches.drivers/bnx2-fixing-a-timout-error-due-not-refreshing-tx-timers-correctly.patch
	patches.drivers/bnx2-flush-the-register-writes-which-setup-the-msi-x-table.patch
	patches.drivers/bnx2-refine-statistics-code.patch
	patches.drivers/bnx2-save-statistics-during-reset.patch
	patches.drivers/bnx2-check-bnx2_flag_using_msix-flag-when-setting-up-msix.patch
	patches.drivers/bnx2-adjust-flow-control-water-marks.patch
	patches.drivers/bnx2-allow-user-specified-multiple-advertisement-speed-values.patch
	patches.drivers/bnx2-fix-bug-when-saving-statistics.patch
	patches.drivers/bnx2-update-firmwares-and-update-version-to-2.0.8.patch
	patches.drivers/bnx2-fix-netpoll-crash.patch
	patches.drivers/bnx2-use-proper-handler-during-netpoll.patch
	patches.drivers/bnx2-fix-lost-msi-x-problem-on-5709-nics.patch
	patches.drivers/bnx2-update-version-to-2.0.9.patch
	patches.drivers/bnx2-add-prefetches-to-rx-path.patch
	patches.drivers/bnx2-fix-register-printouts-during-netev_watchdog.patch
	patches.drivers/bnx2-update-5709-mips-firmware-and-version-to-2.0.15.patch
	patches.drivers/bnx2-use-netif_carrier_off-to-prevent-timeout.patch
	patches.drivers/bnx2-fix-hang-during-rmmod-bnx2.patch
	patches.drivers/bnx2-fix-compiler-warning-in-bnx2_disable_forced_2g5.patch
	patches.drivers/bnx2-always-enable-msi-x-on-5709.patch
	patches.drivers/bnx2-dump-some-config-space-registers-during-tx-timeout.patch
	patches.drivers/bnx2-update-version-to-2.0.16.patch
	patches.drivers/bnx2-allocate-with-gfp_kernel-flag-on-rx-path-init.patch
	patches.drivers/bnx2-use-device-model-dma-api.patch
	patches.drivers/bnx2-use-proper-counter-for-net_device_stats-multicast.patch
	patches.drivers/bnx2-call-pci_enable_msix-with-actual-number-of-vectors.patch
	patches.drivers/bnx2-remove-some-unnecessary-smp_mb-in-tx-fast-path.patch
	patches.drivers/bnx2-update-version-to-2.0.17.patch
	patches.drivers/bnx2-update-firmware-to-6.0.x.patch
	patches.drivers/netdev-remove-redundant-checks-for-cap_net_admin-in-mdio-implementations.patch

	patches.drivers/bnx2x-0.40.15.patch
	patches.drivers/bnx2x-1.42.3.patch
	patches.drivers/bnx2x-update-to-1.48.105.patch
	patches.drivers/bnx2x-disable-CNIC.patch
	patches.drivers/bnx2x-casting-page-alignment.patch

	patches.drivers/bnx2x-move-bnx2x-files-to-saparate-folder.patch
	patches.drivers/bnx2x-advance-hsi-and-add-57712-hw-support.patch
	patches.drivers/bnx2x-fix-rss-enablement.patch
	patches.drivers/bnx2x-optimized-branching-in-the-bnx2x_rx_int.patch
	patches.drivers/bnx2x-remove-redundant-commands-during-error-handling.patch
	patches.drivers/bnx2x-don-t-deal-with-power-if-no-capability.patch
	patches.drivers/bnx2x-use-correct-fw-constant.patch
	patches.drivers/bnx2x-remove-unnecessary-flag.patch
	patches.drivers/bnx2x-fix-possible-deadlock-in-hc-block.patch
	patches.drivers/bnx2x-prevent-false-parity-error-in-hc-block.patch
	patches.drivers/bnx2x-update-bnx2x-version-to-1.60.00-3.patch

	patches.drivers/bnx2x-restore-appropriate-delay-during-bmac-reset.patch
	patches.drivers/bnx2x-fix-waiting-for-reset-complete-on-bcm848x3-phys.patch
	patches.drivers/bnx2x-fix-port-selection-in-case-of-e2.patch
	patches.drivers/bnx2x-clear-latch-indication-on-link-reset.patch
	patches.drivers/bnx2x-fix-resetting-bcm8726-phy-during-common-init.patch
	patches.drivers/bnx2x-do-not-enable-cl37-bam-unless-it-is-explicitly-enabled.patch
	patches.drivers/bnx2x-reset-8073-phy-during-common-init.patch
	patches.drivers/bnx2x-update-version-number-to-1.60.00-4.patch
	patches.drivers/bnx2x-lso-code-was-broken-on-be-platforms.patch
	patches.drivers/bnx2x-fixed-a-compilation-warning.patch
	patches.drivers/bnx2x-don-t-prevent-rss-configuration-in-int-x-and-msi-interrupt-modes.patch
	patches.drivers/bnx2x-registers-dump-fixes.patch
	patches.drivers/bnx2x-move-to-d0-before-clearing-msi-msi-x-configuration.patch
	patches.drivers/bnx2x-fix-the-race-on-bp-stats_pending.patch
	patches.drivers/bnx2x-update-driver-version-to-1.62.00-3.patch

	patches.drivers/benet-add-the-emulex-10g-lan-driver.patch
	patches.drivers/benet-emulex-10g-lan-driver-fixes.patch

	patches.drivers/benet-update-to-2.102.453s.patch
	patches.drivers/benet-emulex-10g-lan-driver-fixes-2
	patches.drivers/benet-emulex-fix-eeh-recovery

	patches.drivers/chelsio_t3
	patches.drivers/chelsio_t3-updates
	patches.drivers/cxgb3_update.patch
	patches.drivers/cxgb3-update-to-1.1.3-ko.patch
	patches.drivers/cxgb3-fix-gen2-pci-default-settings.patch
	patches.drivers/cxgb3-add-memory-barriers.patch
	patches.drivers/cxgb3-fix-premature-page-unmap.patch
	patches.drivers/cxgb3-parity-managment.patch

	patches.drivers/cxgb4-t4-driver.patch
	patches.drivers/cxgb4-fix-parent-device-access-in-netdev_printk.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-to-7.6.15.5.patch
	patches.drivers/e1000-disable-l1aspm.patch
	patches.drivers/e1000-ioport-free-support.patch
	patches.drivers/e1000-return-pci_ers_result_disconnect-on-permanent-error.patch
	patches.drivers/e1000-fix-bug-with-shared-interrupt-during-reset.patch
	patches.drivers/e1000-fix-powering-off-during-shutdown-backport.patch
	patches.drivers/e1000-fix-eeh-in-4-port-pcie-10-100-1000-base-tx-adapter.patch
	patches.drivers/e1000-update-mii-registers-on-link-down.patch
	patches.drivers/e1000-enhance-frame-fragment-detection.patch
	patches.drivers/e1000-remove-lpe-special-case-for-1500-mtu.patch

	patches.drivers/e1000e-update-1.0.2.1.patch
	patches.drivers/e1000e-fix-kcompat-code-for-when-config_pm-is-not-set.patch
	patches.drivers/e1000e-update-1.0.2.5.patch
	patches.drivers/e1000e-update-1.0.15.patch
	patches.drivers/e1000e-update-1.1.2.patch
	patches.drivers/e1000e-update-1.1.19.patch
	patches.drivers/e1000e-update-1.2.8.patch
	patches.drivers/e1000e-update-1.2.10.patch
	patches.drivers/e1000e-update-1.2.17.patch
	patches.drivers/e1000e-drop-e1000-pcie-devices.patch
	patches.drivers/e1000-fix-screaming-irq-on-virtual-machines.patch

	patches.drivers/e100-ignore-bad-eeprom
	patches.drivers/e100-pci-err-recovery.patch
	patches.drivers/e100-update-to-3.5.24-k3.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/ibmveth-lost-IRQ-while-closing-opening-device-leads
	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
	patches.drivers/netxen-update-to-4.0.30.patch
	patches.drivers/netxen-update-to-4.0.30-upstream-fixes.patch
	patches.drivers/netxen-enable-napi-in-dev-open.patch
	patches.drivers/netxen-firmware-lockup
	patches.drivers/netxen-handle-firmware-load-errors.patch

	# Netxen SP3->SP4 compat patches
	patches.drivers/0001-netxen-base-driver-compatibility.patch
	patches.drivers/0002-netxen-add-netxen_nic_compat.h.patch
	patches.drivers/0003-netxen-sync-sles10-upto-upstream-commit-d17334604.patch

	# Netxen backports for SP4 
	patches.drivers/0001-netxen-fix-tx-ring-accounting.patch
	patches.drivers/0002-netxen-fix-build-with-without-CONFIG_PM.patch
	patches.drivers/0003-netxen-fix-firmware-init-handshake.patch
	patches.drivers/0004-netxen-fix-the-version-code-macro.patch
	patches.drivers/0005-netxen-avoid-frequent-firmware-reset.patch
	patches.drivers/0006-netxen-fix-context-deletion-sequence.patch
	patches.drivers/0007-netxen-fix-deadlock-on-dev-close.patch
	patches.drivers/0008-netxen-fix-thermal-check-and-shutdown.patch
	patches.drivers/0009-netxen-reset-ring-consumer-during-cleanup.patch
	patches.drivers/0010-netxen-fix-coherent-dma-mask-setting.patch
	patches.drivers/0011-netxen-fix-dma-mask-update-calculation.patch
	patches.drivers/0012-netxen-remove-netxen-workqueue.patch
	patches.drivers/0013-netxen-free-napi-resources-during-detach.patch
	patches.drivers/0014-netxen-refresh-firmware-info-after-reset.patch
	patches.drivers/0015-netxen-enable-ip-addr-hashing.patch
	patches.drivers/0016-netxen-configure-interrupt-coalesce-defaults.patch
	patches.drivers/0017-netxen-annotate-dma-watchdog-setup.patch
	patches.drivers/0018-netxen-refactor-tso-code.patch
	patches.drivers/0019-netxen-Add-default-and-limit-macros-for-ring-sizes.patch
	patches.drivers/0020-netxen-clean-up-firmware-version-checks.patch
	patches.drivers/0021-netxen-refactor-net_device-setup-code.patch
	patches.drivers/0022-netxen-fix-skb-alloc-size-for-legacy-firmware.patch
	patches.drivers/0023-netxen-add-vlan-tx-acceleration-support.patch
	patches.drivers/0024-netxen-support-for-ethtool-set-ringparam.patch
	patches.drivers/0025-netxen-update-version-to-4.0.41.patch
	patches.drivers/0026-netxen-fix-CONFIG_INET-n-build.patch
	patches.drivers/0027-netxen-fix-vlan-tso-case.patch
	patches.drivers/0028-netxen-remove-unnecessary-structures.patch
	patches.drivers/0029-netxen-add-hardware-LRO-support.patch
	patches.drivers/0030-netxen-ethtool-statistics-and-control-for-LRO.patch
	patches.drivers/0031-netxen-fix-firmware-reset-logic.patch
	patches.drivers/0032-netxen-refactor-tx-dma-mapping-code.patch
	patches.drivers/0033-netxen-implement-pci-driver-shutdown.patch
	patches.drivers/0034-netxen-remove-netxen_nic_phan_reg.h.patch
	patches.drivers/0035-netxen-remove-unused-code.patch
	patches.drivers/0036-netxen-implement-generic-pcie-semaphore-functions.patch
	patches.drivers/0037-netxen-remove-netxen_nic_niu.c.patch
	patches.drivers/0038-netxen-fix-lro-buffer-allocation.patch
	patches.drivers/0039-netxen-remove-duplicate-napi_add.patch
	patches.drivers/0040-netxen-fix-infinite-loop-on-dma-mapping-failure.patch
	patches.drivers/0041-netxen-handle-firmware-load-errors.patch
	patches.drivers/0042-netxen-firmware-hang-detection.patch
	patches.drivers/0043-netxen-fix-ip-addr-hashing-after-firmware-reset.patch
	patches.drivers/0044-netxen-pre-calculate-register-addresses.patch
	patches.drivers/0045-netxen-refactor-firmware-info-code.patch
	patches.drivers/0046-netxen-update-version-to-4.0.50.patch
	patches.drivers/0047-netxen-fix-check-for-ip-addr-hashing-support.patch
	patches.drivers/0048-netxen-fix-tx-descriptor-structure.patch
	patches.drivers/0049-netxen-fix-legacy-isr-and-some-whitespace-diff.patch
	patches.drivers/0050-netxen-fix-legacy-isr-and-some-whitespace-diff.patch
	patches.drivers/0051-netxen-build-fix-for-INET-n.patch
	patches.drivers/0052-netxen-change-firmware-write-size.patch
	patches.drivers/0053-netxen-improve-pci-memory-access.patch
	patches.drivers/0054-netxen-fix-file-firmware-leak.patch
	patches.drivers/0055-netxen-fix-tx-timeout-recovery.patch
	patches.drivers/0056-netxen-update-copyright.patch
	patches.drivers/0057-netxen-fix-minor-tx-timeout-bug.patch
	patches.drivers/0058-netxen-fix-firmware-init-after-resume.patch
	patches.drivers/0059-netxen-fix-xen-build-with-CONFIG_PCI_MSI-check.patch
	patches.drivers/0060-netxen-Fix-Unlikely-x-y.patch
	patches.drivers/0061-netxen-fix-pci-bar-mapping.patch
	patches.drivers/0062-netxen-fix-ipv6_hdr-compilation.patch
	patches.drivers/0063-netxen-bridged-mode-optimizations.patch
	patches.drivers/0064-netxen-remove-sub-64-bit-mem-accesses.patch
	patches.drivers/0065-netxen-add-access-to-on-chip-memory-for-tools.patch
	patches.drivers/0066-netxen-annotate-register-windowing-code.patch
	patches.drivers/0067-netxen-separate-register-and-memory-access-lock.patch
	patches.drivers/0068-netxen-add-sysfs-entries-for-diag-tools.patch
	patches.drivers/0069-netxen-defines-for-next-revision.patch
	patches.drivers/0070-netxen-128-memory-controller-support.patch
	patches.drivers/0071-netxen-reset-sequence-changes.patch
	patches.drivers/0072-netxen-onchip-memory-access-change.patch
	patches.drivers/0073-netxen-fix-error-codes-in-for-tools-access.patch
	patches.drivers/0074-netxen-sysfs-control-for-auto-firmware-recovery.patch
	patches.drivers/0075-netxen-update-version-to-4.0.62.patch
	patches.drivers/0076-netxen-fix-i2c-init.patch
	patches.drivers/0077-netxen-fix-tx-timeout-handling-on-firmware-hang.patch
	patches.drivers/0078-netxen-avoid-undue-board-config-check.patch
	patches.drivers/0079-netxen-fix-compile-warning-on-kernel-xen.patch
	patches.drivers/0080-netxen-fix-builds-for-SYSFS-n-or-MODULES-n.patch
	patches.drivers/0081-netxen-support-for-new-firmware-file-format.patch
	patches.drivers/0082-netxen-refactor-indirect-register-access.patch
	patches.drivers/0083-netxen-add-PCI-IDs-for-new-chip.patch
	patches.drivers/0084-netxen-update-module-info.patch
	patches.drivers/0085-netxen-module-firmware-hints.patch
	patches.drivers/0086-netxen-update-version-to-4.0.65.patch
	patches.drivers/0087-netxen-fix-memory-initialization.patch
	patches.drivers/0088-netxen-fix-promisc-for-NX2031.patch
	patches.drivers/0089-netxen-fix-BOND_MODE_TLB-ALB-mode.patch
	patches.drivers/0090-netxen-remove-PCI-IDs-of-CNA-device.patch
	patches.drivers/0091-netxen-fix-debug-tools-access-for-NX2031.patch
	patches.drivers/0092-netxen-fix-failure-cases-for-fw-hang-recovery.patch
	patches.drivers/0093-netxen-protect-device-reset-by-rtnl_lock.patch
	patches.drivers/0094-netxen-fix-napi-intr-enable-check.patch
	patches.drivers/0095-netxen-fix-firmware-type-check.patch
	patches.drivers/0096-netxen-use-module-parameter-correctly.patch
	patches.drivers/0097-netxen-minor-suspend-resume-fixes.patch
	patches.drivers/0098-netxen-fix-tx-timeout-recovery.patch
	patches.drivers/0099-netxen-support-pci-error-handlers.patch
	patches.drivers/0100-netxen-fix-unified-fw-size-check.patch
	patches.drivers/0101-netxen-fix-ethtool-register-dump.patch
	patches.drivers/0102-netxen-Move-and-to-end-of-previous-line.patch
	patches.drivers/0103-netxen-fix-ethtool-link-test.patch
	patches.drivers/0104-netxen-fix-tx-ring-memory-leak.patch
	patches.drivers/0105-netxen-fix-smatch-warning.patch
	patches.drivers/0106-netxen-fix-set-mac-addr.patch
	patches.drivers/0107-netxen-update-version-to-4.0.72.patch
	patches.drivers/0108-netxen-CONFIG_PCIEAER-for-aer-support.patch
	patches.drivers/0109-netxen-fix-fw-poll-delayed-work-kill.patch
	patches.drivers/0110-netxen-use-DEFINE_PCI_DEVICE_TABLE.patch
	patches.drivers/0111-netxen-fix-endianness-read-mac-address.patch
	patches.drivers/0112-netxen-fix-endianness-intr-coalesce.patch
	patches.drivers/0113-netxen-fix-license-header.patch
	patches.drivers/0114-netxen-fix-sparse-warning.patch
	patches.drivers/0115-netxen-fix-tx-timeout-recovery-for-NX2031-chip.patch
	patches.drivers/0116-netxen-protect-resource-cleanup-by-rtnl-lock.patch
	patches.drivers/0117-netxen-use-netdev_mc_count-and-netdev_mc_empty-when-app.patch
	patches.drivers/0118-netxen-convert-driver-to-use-netdev_for_each_.patch
	patches.drivers/0119-netxen-The-driver-doesn-t-work-on-NX_P3_B1-so-cause-.patch
	patches.drivers/0120-netxen-fix-bios-version-calculation.patch
	patches.drivers/0121-netxen-fix-warning-in-ioaddr-for-NX3031-chip.patch
	patches.drivers/0122-netxen-added-sanity-check-for-pci-map.patch
	patches.drivers/0123-netxen-fix-tx-csum-status.patch
	patches.drivers/0124-netxen-update-version-to-4.0.73.patch
	patches.drivers/0125-netxen-fix-corner-cases-of-firmware-recovery.patch
	patches.drivers/0126-netxen-validate-unified-romimage.patch
	patches.drivers/0127-netxen-fix-fw-load-from-file.patch
	patches.drivers/0128-netxen-fix-interrupt-for-NX2031.patch
	patches.drivers/0129-netxen-fix-deadlock-in-aer.patch
	patches.drivers/0130-netxen-fix-register-usage.patch
	patches.drivers/0131-netxen-remove-unnecessary-size-checks.patch
	patches.drivers/0132-netxen-to-fix-onchip-memory-access.patch
	patches.drivers/0133-netxen-handle-queue-manager-access.patch
	patches.drivers/0134-netxen-Remove-unnecessary-returns-from-void-fun.patch
	patches.drivers/0135-netxen-fix-memory-leaks-in-error-path.patch
	patches.drivers/0136-netxen-fix-rcv-buffer-leak.patch
	patches.drivers/0137-netxen-fix-caching-window-register.patch
	patches.drivers/0138-netxen-fix-for-kdump.patch
	patches.drivers/0139-netxen-protect-tx-timeout-recovery-by-rtnl-lock.patch
	patches.drivers/0140-netxen-fix-tx-csum-setting.patch
	patches.drivers/0141-netxen-fix-inconsistent-lock-state.patch
	patches.drivers/0142-netxen-update-version-4.0.74.patch
	patches.drivers/0143-netxen-fix-a-race-in-netxen_nic_get_stats.patch
	patches.drivers/0144-netxen-fix-poll-implementation.patch

	patches.drivers/netxen-Fix-kdump.patch
	patches.drivers/netxen-Avoid-using-reset_devices-as-it-may-become-ob.patch

	patches.drivers/qlcnic-Qlogic-ethernet-driver-for-CNA-devices.patch
	patches.drivers/qlcnic-add-ethernet-identifier-in-board-info.patch
	patches.drivers/qlcnic-clear-device-reset-state-after-fw-recovery.patch
	patches.drivers/qlcnic-protect-resoruce-cleanup-by-rtnl-lock.patch
	patches.drivers/qlcnic-support-LED-blink-for-device-identification.patch
	patches.drivers/qlcnic-add-interrupt-diagnostic-test.patch
	patches.drivers/qlcnic-add-loopback-diagnostic-test.patch
	patches.drivers/qlcnic-use-netdev_mc_count-and-netdev_mc_empty-when-app.patch
	patches.drivers/qlcnic-convert-multiple-drivers-to-use-netdev_for_each_.patch
	patches.drivers/qlcnic-fix-tx-csum-status.patch
	patches.drivers/qlcnic-additional-driver-statistics-1.patch
	patches.drivers/qlcnic-fix-multicast-handling.patch
	patches.drivers/qlcnic-validate-unified-fw-image.patch
	patches.drivers/qlcnic-fix-bios-version-check.patch
	patches.drivers/qlcnic-remove-extra-space-from-board-names.patch
	patches.drivers/qlcnic-fix-fw-load-from-file.patch
	patches.drivers/qlcnic-handle-queue-manager-access.patch
	patches.drivers/qlcnic-update-oncard-memory-size-check.patch
	patches.drivers/qlcnic-fix-onchip-memory-access.patch
	patches.drivers/qlcnic-use-IDC-defined-timeout-value.patch
	patches.drivers/qlcnic-add-driver-debug-support.patch
	patches.drivers/qlcnic-fix-interface-attach-sequence.patch
	patches.drivers/qlcnic-fix-endianness-in-fw-validation.patch
	patches.drivers/qlcnic-update-version-to-5.0.1.patch
	patches.drivers/qlcnic-fix-set-mac-addr.patch
	patches.drivers/qlcnic-additional-driver-statistics-2.patch
	patches.drivers/qlcnic-fix-defines-as-per-IDC-document.patch
	patches.drivers/qlcnic-fix-fw-initialization-responsibility.patch
	patches.drivers/qlcnic-define-macro-for-driver-state.patch
	patches.drivers/qlcnic-fix-pci-semaphore-checks.patch
	patches.drivers/qlcnic-fix-rcv-buffer-leak.patch
	patches.drivers/qlcnic-protect-resource-access.patch
	patches.drivers/qlcnic-update-version-5.0.2.patch
	patches.drivers/qlcnic-Remove-unnecessary-returns-from-void-fun.patch
	patches.drivers/qlcnic-fix-context-cleanup.patch
	patches.drivers/qlcnic-remove-obsolete-register.patch
	patches.drivers/qlcnic-fix-caching-window-register.patch
	patches.drivers/qlcnic-cleanup-dma-mask-setting.patch
	patches.drivers/qlcnic-cleanup-unused-code.patch
	patches.drivers/qlcnic-check-IDC-version.patch
	patches.drivers/qlcnic-check-device-class.patch
	patches.drivers/qlcnic-support-quisce-mode.patch
	patches.drivers/qlcnic-add-idc-debug-registers.patch
	patches.drivers/qlcnic-fix-memory-leaks.patch
	patches.drivers/qlcnic-change-adapter-name-display.patch
	patches.drivers/qlcnic-fix-rx-bytes-statistics.patch
	patches.drivers/qlcnic-module-param-for-firmware-load-option.patch
	patches.drivers/qlcnic-fix-internal-loopback-test.patch
	patches.drivers/qlcnic-remove-unused-register.patch
	patches.drivers/qlcnic-mark-device-state-fail.patch
	patches.drivers/qlcnic-NIC-Partitioning-Add-basic-infrastructure-sup.patch
	patches.drivers/qlcnic-NIC-Partitioning-Add-non-privileged-mode-supp.patch
	patches.drivers/qlcnic-Fix-Compilation-Issue-when-CONFIG_INET-was-no.patch
	patches.drivers/qlcnic-Fix-a-bug-in-setting-up-NIC-partitioning-mode.patch
	patches.drivers/qlcnic-Bumped-up-version-number.patch
	patches.drivers/qlcnic-fix-device-soft-reset.patch
	patches.drivers/qlcnic-change-driver-description.patch
	patches.drivers/qlcnic-fix-mac-addr-print.patch
	patches.drivers/qlcnic-seperate-interrupt-for-TX.patch
	patches.drivers/qlcnic-fix-race-in-tx-stop-queue.patch
	patches.drivers/qlcnic-fix-register-access.patch
	patches.drivers/qlcnic-cleanup-skb-allocation.patch
	patches.drivers/qlcnic-handshake-with-card-after-fw-load.patch
	patches.drivers/qlcnic-fix-mac-address-mgmt.patch
	patches.drivers/qlcnic-release-device-resources-during-interface-dow.patch
	patches.drivers/qlcnic-dont-free-host-resources-during-fw-recovery.patch
	patches.drivers/qlcnic-offload-tx-timeout-recovery.patch
	patches.drivers/qlcnic-mark-context-state-freed-after-destroy.patch
	patches.drivers/qlcnic-update-version-to-5.0.6.patch
	patches.drivers/qlcnic-Remove-obsolete-code.patch
	patches.drivers/qlcnic-Add-support-for-configuring-eswitch-and-npars.patch
	patches.drivers/qlcnic-Check-FW-capability-for-TSO.patch
	patches.drivers/qlcnic-Disable-admin-tools-interface-for-VF-driver-m.patch
	patches.drivers/qlcnic-fix-pause-params-setting.patch
	patches.drivers/qlcnic-disable-tx-timeout-recovery.patch
	patches.drivers/qlcnic-fix-netdev-notifier-in-error-path.patch
	patches.drivers/qlcnic-driver-private-workqueue.patch
	patches.drivers/qlcnic-aer-support.patch
	patches.drivers/qlcnic-restore-NPAR-config-data-after-recovery.patch
	patches.drivers/qlcnic-fix-tx-csum-setting.patch
	patches.drivers/qlcnic-fix-pci-resource-leak.patch
	patches.drivers/qlcnic-fix-bandwidth-check.patch
	patches.drivers/qlcnic-fix-copyright-for-pci-searching-function.patch
	patches.drivers/qlcnic-fix-loopback-test.patch
	patches.drivers/qlcnic-fix-diag-resource-allocation.patch
	patches.drivers/qlcnic-lro-config-patch.patch
	patches.drivers/qlcnic-clean-up-qlcnic_init_pci_info.patch
	patches.drivers/qlcnic-using-too-much-stack.patch
	patches.drivers/qlcnic-fix-aer-for-virtual-func.patch
	patches.drivers/qlcnic-device-state-management-fixes-for-virtual-fun.patch
	patches.drivers/qlcnic-fix-for-setting-function-modes.patch
	patches.drivers/qlcnic-add-eswitch-statistics-support.patch
	patches.drivers/qlcnic-fix-link-status-message.patch
	patches.drivers/qlcnic-fix-link-diag-test.patch
	patches.drivers/qlcnic-turn-off-lro-when-rxcsum-is-disabled.patch
	patches.drivers/qlcnic-Use-available-error-codes.patch
	patches.drivers/qlcnic-fix-inconsistent-lock-state.patch
	patches.drivers/qlcnic-remove-unused-code.patch
	patches.drivers/qlcnic-replace-magic-numbers-with-defines.patch
	patches.drivers/qlcnic-configure-port-on-eswitch.patch
	patches.drivers/qlcnic-configure-offload-setting-on-eswitch.patch
	patches.drivers/qlcnic-support-anti-mac-spoofing.patch
	patches.drivers/qlcnic-fix-npar-state.patch
	patches.drivers/qlcnic-mark-device-state-as-failed.patch
	patches.drivers/qlcnic-fix-endiness-in-eswitch-statistics.patch
	patches.drivers/qlcnic-firmware-initialization-update.patch
	patches.drivers/qlcnic-rom-lock-recovery.patch
	patches.drivers/qlcnic-update-version-5.0.8.patch
	patches.drivers/qlcnic-eswitch-config-fixes.patch
	patches.drivers/qlcnic-support-port-vlan-id.patch
	patches.drivers/qlcnic-fix-fw-recovery-for-PF.patch
	patches.drivers/qlcnic-change-reg-name.patch
	patches.drivers/qlcnic-Fix-missing-error-codes.patch
	patches.drivers/qlcnic-Fix-driver-load-issue-in-FW-hang.patch
	patches.drivers/qlcnic-PCI-ID-addition.patch
	patches.drivers/qlcnic-fix-a-race-in-qlcnic_get_stats.patch
	patches.drivers/qlcnic-fix-poll-implementation.patch
	patches.drivers/qlcnic-backout-firmware-initialization-update.patch
	patches.drivers/qlcnic-add-api-version-in-reg-dump.patch
	patches.drivers/qlcnic-fix-mac-addr-read.patch
	patches.drivers/qlcnic-fix-for-setting-default-eswitch-config.patch
	patches.drivers/qlcnic-fix-mac-anti-spoof-policy.patch
	patches.drivers/qlcnic-fix-panic-while-using-eth_hdr.patch
	patches.drivers/qlcnic-fix-mac-override-capability.patch
	patches.drivers/qlcnic-support-mac-learning.patch
	patches.drivers/qlcnic-mac-vlan-learning-support.patch
	patches.drivers/qlcnic-add-cksum-flag.patch

	patches.drivers/qlcnic-support-vlan-rx-accleration.patch
	patches.drivers/qlcnic-vlan-lro-support.patch
	patches.drivers/qlcnic-remove-fw-version-check.patch
	patches.drivers/qlcnic-update-version-5.0.10.patch
	patches.drivers/qlcnic-dont-assume-NET_IP_ALIGN-is-2.patch
	patches.drivers/qlcnic-dont-set-skb-truesize.patch
	patches.drivers/qlcnic-return-operator-cleanup.patch
	patches.drivers/qlcnic-fix-internal-loopback-test-2.patch
	patches.drivers/qlcnic-fix-eswitch-stats.patch
	patches.drivers/qlcnic-fix-diag-register.patch
	patches.drivers/qlcnic-fix-endianess-for-lro.patch
	patches.drivers/qlcnic-fix-vlan-TSO-on-big-endian-machine.patch
	patches.drivers/qlcnic-sparse-warning-fixes.patch
	patches.drivers/qlcnic-cleanup-port-mode-setting.patch
	patches.drivers/qlcnic-set-mtu-lower-limit.patch
	patches.drivers/qlcnic-remove-dead-code.patch
	patches.drivers/qlcnic-support-quiescent-mode.patch
	patches.drivers/qlcnic-remove-private-LRO-flag.patch
	patches.drivers/qlcnic-fix-board-description.patch
	patches.drivers/qlcnic-fix-promiscous-mode-for-VF.patch
	patches.drivers/qlcnic-change-all-P3-references-to-P3P.patch
	patches.drivers/qlcnic-update-driver-version-5.0.11.patch
	patches.drivers/qlcnic-Fix-for-kdump.patch
	patches.drivers/qlcnic-Avoid-using-reset_devices-as-it-may-become-ob.patch
	patches.drivers/qlcnic-lro-module-parameter.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/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

	# new forcedeth driver
	patches.drivers/forcedeth-version-bump.patch
	patches.drivers/forcedeth_new-remove-in-driver-copy-of-net_device_stats-revert.patch
	patches.drivers/forcedeth_new-revert-replace-checksum_hw-by-checksum_partial-checksum_complete.patch
	patches.drivers/forcedeth_new-reverse-stop-using-legacy-hooks-self_test_count-get_stats_count.patch
	patches.drivers/forcedeth_new-reverse-trivial-commits-for-backport.patch
	patches.drivers/focedeth_new-remove-forcedeth.c-pci-ids.patch
	patches.drivers/forcedeth_new-integrate-into-build-system.patch
	patches.drivers/forcedeth_new-re-add-skb-dev-initialization.patch
	patches.drivers/forcedeth_new-set-name-to-forcedeth_new.patch
	patches.drivers/forcedeth_new-add-phy_power_down-parameter-leave-phy-pow.patch
	patches.drivers/forcedeth_new-new_id-support.patch
	patches.drivers/forcedeth_new-new_id-0x10DE-0x0057.patch

	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/igb-update-to-1.3.19.3.patch
	patches.drivers/igb-update-to-1.3.28.4.patch
	patches.drivers/igb-update-to-1.3.28.5.patch
	patches.drivers/igb-update-to-2.0.6.patch
	patches.drivers/igb-update-to-2.1.9.patch
	patches.drivers/igb-update-to-2.2.9.patch
	patches.drivers/igb-update-to-2.3.4.patch
	patches.drivers/igb-fix-kcompat-code-for-when-config_pm-is-not-set.patch
	patches.drivers/igb-add-support-for-Intel-I350-Gigabit-Network-Conne.patch
	patches.drivers/igb-handle-hwinit-failure-correctly.patch
	patches.drivers/igb-clear-VF_PROMISC-bits-instead-of-setting-all-oth.patch
	patches.drivers/igb-Fix-for-Alt-MAC-Address-feature-on-82580-and-lat.patch

	patches.drivers/ixgbe-update-to-2.0.34.3.patch
	patches.drivers/ixgbe-update-to-2.0.38.2.patch
	patches.drivers/ixgbe-update-to-2.0.44.13.patch
	patches.drivers/ixgbe-update-to-2.0.44.14.patch
	patches.drivers/ixgbe-update-to-2.0.62.4.patch
	patches.drivers/ixgbe-update-to-2.0.72.4.patch
	patches.drivers/ixgbe-update-to-2.0.75.7.patch
	patches.drivers/ixgbe-update-to-2.0.84.9.patch
	patches.drivers/ixgbe-update-to-2.0.84.11.patch
	patches.drivers/ixgbe-update-to-2.1.4.patch
	patches.drivers/ixgbe-update-to-3.0.12.patch
	patches.drivers/ixgbe-update-to-3.0.14.patch
	patches.drivers/ixgbe-fix-x540-phy-id-to-correct-value.patch
	patches.drivers/ixgbe-fix-x540-to-use-it-s-own-info-struct.patch

	patches.drivers/ixgbe-prevent-speculative-processing-of-descriptors.patch
	patches.drivers/ixgbe-driver-fix-hardware-errata-for-82599-devices.patch
	patches.drivers/ixgbe-only-enable-WoL-for-magic-packet-by-default.patch

	patches.drivers/ixgbevf-1.0.8.patch

	patches.fixes/sbni_ioctl-missing-capability-checks
	patches.fixes/NET-Make-skb_seq_read-unmap-the-last-fragment
	patches.fixes/net-Fix-frag_list-handling-in-skb_seq_read.patch
	patches.fixes/net-Fix-OOPS-in-skb_seq_read.patch
	patches.fixes/net-fix-skb_seq_read-returning-wrong-offset-for-page-frag-data

	# bonding
	patches.suse/bonding_upgrade_3.2.5_vanilla.patch
	patches.suse/bonding_upgrade_3.2.5_vanilla_reverts.patch
	patches.suse/bonding_upgrade_3.2.5_extra.patch
	patches.suse/bonding_upgrade_3.2.5_fixes.patch
	patches.fixes/bonding-fix-bridged-bonding.patch
	patches.fixes/bonding_fix_mii_ioctl_race.patch
	patches.fixes/bonding-remove-refcount-check.patch
	patches.fixes/bonding_fix_panic_on_rmmod.patch
	patches.fixes/bonding-jiffies2.patch
	patches.fixes/bonding-improve-elaborate-port_state-assignment.patch
	patches.fixes/bonding-802.3ad-fix-state-machine-locking.patch
	patches.fixes/bonding-dismiss-deadlock.patch
	patches.fixes/bonding-clean-up-resource-leaks.patch
	patches.fixes/bonding-propagate-mac-to-vlan-if.patch

	patches.fixes/asm-i386-add-hweight64-generic_hweight64.patch
	patches.drivers/niu-add-0.9-driver.patch
	patches.drivers/niu-Add-Sun-CP3260-ATCA-blade-support.patch

	patches.drivers/qlge-add-v1.00.00.19.patch
	patches.drivers/qlge-base-eeh-support
	patches.drivers/qlge-change-large-rx-buffer-logic-rss-hash-and-qlge_sb_pad-for-performance.patch

	patches.drivers/qlge-fixed-the-buggy-mtu-and-for-p21-older-to-p21-newer.patch
	patches.drivers/qlge-fixed-wol.patch
	patches.drivers/qlge-fixed-ethtool-t-ethx-offline-hang-issue-seen-on-vmware-and-dell.patch
	patches.drivers/qlge-make-backward-compatible-for-5.3-10.2.patch
	patches.drivers/qlge-add-ethtool-get-set-pause-parameter.patch
	patches.drivers/qlge-add-cbfc-pause-frame-counters-to-ethtool-stats.patch
	patches.drivers/qlge-added-force-coredump-to-log-file-and-dumping-64-nic-registers-to-ethtool-user-s-space.patch
	patches.drivers/qlge-fixed-the-bonding-issue-by-setting-receive-routing-bit-and-make-it-load-param.patch
	patches.drivers/qlge-delay-link-up-by-2-second-because-of-bonding-mode-modifies-the-mac-addresses-using-link-work-function.patch
	patches.drivers/qlge-adding-new-reset-functionality-to-chip-which-will-wait-till-fifo-and-management-traffic-get-flushed-out.patch
	patches.drivers/qlge-release-p22.patch

	patches.drivers/qlge-adding-new-coredump.patch
	patches.drivers/qlge-adding-missing-bonding-fixed.patch
	patches.drivers/qlge-fix-frame-routing-for-multicast-frames.patch
	patches.drivers/qlge-fix-rx-multicast-filter-settings.patch
	patches.drivers/qlge-fixed-bonding-mode-5-tlb-by-saving-current.patch
	patches.drivers/qlge-fix-firmware-mailbox-command-timeout.patch
	patches.drivers/qlge-add-dcbx-firmware-async-event-handler.patch
	patches.drivers/qlge-do-not-change-frame-routing-during-suspend.patch
	patches.drivers/qlge-new-release-p23-on-nov-9th-with-below-changes.patch


	patches.drivers/mlx4-add-v1.4.1-driver.patch
	patches.drivers/mlx4-add-v1.4.1-driver-compat.patch
	patches.drivers/mlx4-backport-fixes.patch
	patches.drivers/mlx4-map-sufficient-icm-memory-for-eqs.patch
	patches.drivers/mlx4-fix-vlan-flag-endianess-in-lro-code.patch
	patches.drivers/mlx4_core-Allocate-and-map-sufficient-ICM-memory-for-EQ-context.patch
	patches.drivers/mlx4_core-Add-40GigE-device-ID.patch
	patches.drivers/mlx4_core-Add-a-new-supported-40-GigE-device-ID.patch
	patches.drivers/mlx4-adding-cx3-device-ids.patch

	patches.drivers/brocade-bna.patch
	patches.drivers/brocade-bna-beta2.patch
	patches.drivers/brocade-bna-2.3.2.1.patch

	patches.drivers/bna-ioctl-data-buffer-fix.patch
	patches.drivers/bfa-fix-driver-load-during-system-boot-up.patch
	patches.drivers/bna-SM_ASSERT-fix.patch
	patches.drivers/bna-fix-priority-tagged-frames-acceptance-from-FCoE-.patch
	patches.drivers/bna-CNA-stream-test-fix.patch
	patches.drivers/bna-Assert-failure-fix.patch
	patches.drivers/bna-incorrect-link-down-message-fix.patch
	patches.drivers/bna-Fix-for-removing-the-module-after-ethtool-regist.patch
	patches.drivers/bna-Fix-for-system-reboot.patch


	# entropy source patches (FATE#305944)
	patches.drivers/e1000-entropy-source.patch
	patches.drivers/e1000e-entropy-source.patch
	patches.drivers/igb-entropy-source.patch
	patches.drivers/ixgbe-entropy-source.patch
	patches.drivers/tg3-entropy-source.patch
	patches.drivers/bnx2-entropy-source.patch

	patches.fixes/r8169-fix-crash-when-large-packets-are-received.patch
	patches.drivers/r8169-balance-pci_map-pci_unmap-pair.patch
	patches.drivers/r8169-use-hardware-auto-padding.patch
	patches.drivers/r8169-offical-fix-for-CVE-2009-4537-overlength-frame.patch

	patches.drivers/ibmvfc_better_relogin.patch
	patches.drivers/ibmvfc_async_first.patch
	patches.drivers/ibmvfc_fix_logo_loop2.patch
	patches.drivers/ibmvfc-fcocee-npiv-support

	patches.fixes/tipc-eth-traffic-filter
	patches.fixes/isdn-hfc_usb-fix-buf-overflow.patch
	
	patches.fixes/skb_dont_corrupt_mac_raw.patch
	patches.fixes/ipv6-always-init-structures-on-netdev-up
	patches.fixes/drivers-net-eql-c-prevent-reading-uninitialized-stack-memory
	patches.fixes/wireless-extensions-fix-kernel-heap-content-leak
	patches.fixes/wext-fix-potential-private-ioctl-memory-content-leak

	patches.drivers/net-clear-heap-allocations-for-privileged-ethtool-ac.patch
	patches.drivers/ehea-fix-speed-and-port
	patches.fixes/netfilter-ipt_CLUSTERIP-fix-buffer-overflow
	patches.fixes/inet_diag-fix-inet_diag_bc_audit.patch
	patches.fixes/bridge-netfilter-fix-information-leak.patch
	patches.fixes/netfilter-arp_tables-fix-infoleak-to-userspace.patch
	patches.fixes/netfilter-ip_tables-fix-infoleak-to-userspace.patch
	patches.fixes/net_sched-Fix-qdisc_notify.patch
	patches.fixes/econet-4-byte-infoleak-to-the-network.patch
	patches.fixes/scm-lower-SCM_MAX_FD.patch
	patches.fixes/net-Fix-soft-lockups-OOM-issues-w-unix-garbage-colle.patch
	patches.fixes/af_unix-limit-unix_tot_inflight.patch
	patches.fixes/af_unix-limit-recursion-level.patch

	patches.fixes/x25-Patch-to-fix-bug-15678-x25-accesses-fields-beyon.patch
	patches.fixes/x25-possible-skb-leak-on-bad-facilities.patch
	patches.fixes/x25-Validate-incoming-call-user-data-lengths.patch
	patches.fixes/x25-Handle-undersized-fragmented-skbs.patch
	patches.fixes/x25-Prevent-skb-overreads-when-checking-call-user-da.patch

	patches.fixes/NET-linkwatch-Handle-jiffies-wrap-around.patch
	patches.fixes/net-adding-memory-barrier-to-the-poll.patch
	patches.fixes/dl2k-tighten-ioctl-permissions
	patches.fixes/net-sock-validate-data_len-before-allocating-skb.patch
	patches.fixes/tcp-drop-syn-fin-messages.patch
	patches.fixes/Fix-race-condition-about-network-device-name-allocat.patch
	patches.drivers/be2net-Fix-EEH-error-reset-before-a-flash-dump-compl.patch

	########################################################
	# 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.drivers/iscsitarget-sp3-update
	patches.fixes/libiscsi-fix-iscsi-pool-leak.patch
	patches.drivers/libiscsi-and-qla4xxx-convert-to-new-transport-host
	patches.fixes/libiscsi-fix-nop-response-reply-and-session-cleanup.patch
	patches.fixes/libiscsi-fix-possible-null-ptr-session-command
	patches.fixes/libiscsi-dont-let-io-sit-in-queue
	patches.fixes/libiscsi-fix-data-corruption-when-target-has-to-resend
	patches.fixes/iscsi-disable-sndtimeo-when-sending-skbs
	patches.fixes/iscsi-whitespace-cleanup
	patches.fixes/libiscsi-enable-failfast-evaluation-on-error
	patches.fixes/libiscsi-update-last_recv-tracking
	patches.fixes/iscsi_tcp-update-skb-handling
	patches.fixes/libiscsi-check-suspend-bit
	patches.fixes/iscsi_tcp-Evaluate-socket-state-in-data_ready
	patches.fixes/libiscsi-don-t-increment-cmdsn-if-cmd-is-not-sent
	patches.fixes/libiscsi-handle-immediate-command-rejections
	patches.fixes/libiscsi-account-for-slower-links
	patches.fixes/iscsi_tcp-use-last_recv-to-track-xmits
	patches.fixes/iscsi-break-out-xmit-loop-on-error
	patches.fixes/libiscsi-Update-queuecommand-return-codes
	patches.fixes/iscsi_target_release_all.patch
	patches.fixes/libiscsi-Fix-recovery-slowdown-regression
	patches.fixes/libiscsi-regression-fix-header-digest-error
	patches.fixes/libiscsi-dont-run-scsi-eh-if-iscsi-task-is-making-progress
	patches.fixes/libiscsi-reset-timer-if-cmds-are-making-progress
	patches.fixes/libiscsi-handle-init-task-failures.patch

	########################################################
	# 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.arch/ppc-pci_msi_state-add-on-config_eeh.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
	patches.arch/x86_64-msi-add-missing-irq-vector.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-use-_crs-fix_mem_corruption.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
	patches.drivers/pci-pcie-portdriver-initialize-returned-value.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

	patches.arch/ia64-sn-fix-pci-attribute-propagation-bug.patch

	# bug 495971
	patches.fixes/pcie-aer-enable-after-checking-firmware-support.patch

	patches.fixes/pci-remove-msi-x-vector-limitation-from-nr_msix_devices.patch
	patches.fixes/msi-Only-keep-one-msi_desc-in-each-slab-entry.patch
	patches.suse/pci-aer-disable.patch
	patches.fixes/msi-fixup-defines

	patches.drivers/PCI-add-support-for-function-level-reset.patch
	patches.drivers/PCI-Fix-disable-IRQ-0-in-pci_reset_function.patch
	patches.drivers/PCI-Refactor-pci_reset_function.patch
	patches.drivers/PCI-Extend-pci_reset_function-to-support-PCI-Advance.patch
	patches.drivers/PCI-Speed-up-device-reset-function.patch
	patches.drivers/PCI-cleanup-Function-Level-Reset.patch
	patches.drivers/PCI-add-PCI-Advanced-Feature-Capability-defines.patch
	patches.drivers/PCI-Block-on-access-to-temporarily-unavailable-pci.patch
	patches.drivers/pci-add-link-speed-definitions.patch

	patches.drivers/pci-fix-msi-x-interrupts-after-a-pci-function-level-reset.patch
	patches.fixes/PCI-hotplug-fix-wrong-assumption-in-acpi_get_hp_hw_c.patch
	patches.fixes/PCI-EHP-msi-disable-fix.patch
	patches.drivers/pci-msi-free-vectors-on-disable.patch

	# bnc 762581 
	patches.drivers/PCI-Fix-bus-resource-assignment-on-32-bits-with-64b-.patch
	patches.drivers/PCI-fix-up-setup-bus.c-ifdef.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/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
	patches.fixes/remove_over-zealous_check_in__module_get
	patches.fixes/bus-notifier
	patches.fixes/driver-core-fix-potential-deadlock-in-driver-core.patch
	patches.fixes/net-uevent-add-ifindex
	patches.fixes/driver-core-check-start-arg-in-bus_find_device.patch

	########################################################
	# 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
	patches.fixes/usbcore-handle-devices-with-no-interfaces.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

	patches.fixes/usb-fix-sb700-usb-subsystem-hang-bug.patch
	patches.fixes/usb-fix-sb600-usb-subsystem-hang-bug.patch
	patches.fixes/usb-quirk-pll-power-down-mode.patch
	patches.fixes/usbfs-private-mutex-for-open-release-and-remove.patch
	patches.drivers/option-remove-novatel-u727-id.patch
	patches.fixes/remove_bus_powered_test.diff
	patches.suse/ti_usb_ext_2616.diff
	patches.fixes/ti_table_size2616.diff

	patches.fixes/usb-usbfs-properly-clean-up-the-as-structure-on-error-paths
	patches.fixes/usb-usbfs-only-copy-the-actual-data-received
	patches.fixes/usb-ohci-quirk-amd-prefetch-for-usb-1.1-iso-transfer.patch
	patches.fixes/usb-ehci-amd-periodic-frame-list-table-quirk.patch
	patches.fixes/fix-usb_string-overflow.patch

	########################################################
	# 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
	patches.drivers/i2c-piix4-Add-AMD-SB900-SMBus-device-ID

	########################################################
	# 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
	patches.fixes/fix-memory-corruption-in-console-selection.patch
	patches.fixes/drm-r128-add-test-for-initialisation-to-all-ioctls-that-require-it
	patches.fixes/drivers-video-sis-sis_main-c-prevent-reading-uninitialized-stack-memory
	patches.fixes/drm-radeon-kms-check-AA-resolve-registers-on-r300.patch

	########################################################
	# Char
	########################################################
	patches.drivers/mxser-01-add-mxser_new-pci_ids.patch
	patches.drivers/mxser-02-remove-it.patch
	patches.drivers/mxser-03-add-support-for-CP-114UL.patch
	patches.drivers/mxser-04-convert-large-macros-to-functions.patch
	patches.drivers/mxser-05-remove-dead-code.patch
	patches.drivers/mxser-06-add-CP-102UF-support.patch
	patches.drivers/mxser-07-ioctl-cleanup.patch
	patches.drivers/mxser-08-globals-cleanup.patch
	patches.drivers/mxser-09-prints-cleanup.patch
	patches.drivers/mxser-10-remove-predefined-isa-support.patch
	patches.drivers/mxser-11-various-cleanups.patch
	patches.drivers/mxser-12-ratelimit-ioctl-warning.patch
	patches.drivers/add-digi-neo-pcie-4-port-async-support
	patches.drivers/8250-oxsemi-backport-from-sles11sp1
	patches.drivers/8250-add-support-for-digi-ibm-pcie-2port-adapter
	patches.drivers/8250-fix-capabilities-when-changing-the-port-type
	patches.drivers/8250-add-eeh-support-for-ibm-digi-pcie-2port-adapter

	##########################################################
	# Bluetooth
	##########################################################
	patches.fixes/bluetooth-setsockopt-leak.diff
	patches.fixes/bluetooth-fix-missing-null-check

	##########################################################
	# 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.drivers/alsa-post-sp2-hp-mobile-volume-fix
	patches.drivers/alsa-post-sp2-ideapad-44khz-fix

	patches.fixes/sound-ensure-device-number-is-valid-in-snd_seq_oss_sync_make_info
	# SP3
	patches.drivers/alsa-sp3-alc262-hp-quirks
	patches.drivers/alsa-sp3-hda-amd-generic-support
	# SP4
	patches.drivers/alsa-sp4-hda-amd-generic-support-1
	patches.fixes/alsa-sound-pci-rme9652-prevent-reading-uninitialized-stack-memory
	patches.fixes/alsa-prevent-heap-corruption-in-snd_ctl_new
	patches.fixes/sound-prevent-buffer-overflow-in-oss-load_mixer_volumes
	patches.drivers/alsa-usb-fix-oops-at-disconnection

	patches.drivers/sound-oss-remove-offset-from-load_patch-callbacks
	patches.drivers/sound-oss-opl3-validate-voice-and-channel-indexes
	patches.drivers/sound-oss-make-load_patch-compatible

	########################################################
	# Misc device drivers
	########################################################
	# FATE #309770
	patches.drivers/hpilo-add-driver.patch
	patches.drivers/hpilo-Use-asm-uaccess.h-instead-of-linux-uaccess.h-wh.patch
	patches.drivers/hpilo-The-roundup-macro-wasn-t-includeable-in-2.6.16.patch
	patches.drivers/hpilo-Adjust-to-2.6.16-API.patch
	patches.drivers/hpilo-increment-version.patch
	patches.drivers/hpilo-open-close-fix.patch
	patches.drivers/hpilo-new-pci-device.patch
	patches.drivers/hpilo-reduce-frequency-of-IO-operations.patch
	patches.drivers/hpilo-staging-for-interrupt-handling.patch

	########################################################
	# 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.drivers/intel-ibexpeak-pch-support.patch
	patches.drivers/ppc-ehea-0080.03-0100.00
	patches.fixes/8250-fix-sol-hang.patch

	patches.fixes/fix-ioc4-refcounting.patch
	patches.fixes/v4l-dvb-avoid-writing-outside-array
	patches.fixes/applicom-fix-unchecked-ioctl-range


	patches.fixes/agp-zero-pages-before-sending-to-userspace
	patches.fixes/agp-fix-arbitrary-kernel-memory-write.patch
	patches.fixes/agp-fix-OOM-and-buffer-overflow.patch
	patches.drivers/ppc-saturn-serial
	patches.fixes/dvb-core-fix-dos-bug-in-ule-decapsulation-code-that-can-be-triggered-by-an-invalid
	patches.fixes/serial-fix-reading-uninitialized-stack-memory-issues
	patches.suse/bug-673343_usbcore-fix-sysfs-internal-structure-corruption.patch

	########################################################
	# New hardware support (depends on driver fixes)
	########################################################
	# bug #619715
	patches.drivers/Intel-Cougar-Point-PCH-Support.patch
	# bug #644577
	patches.drivers/Intel-Patsburg-PCH-Support.patch
	# bug #646684
	patches.drivers/Intel-Patsburg-SMBus-support.patch
	# bug #644577
	patches.drivers/x86-Intel_PBG_lpcadd.patch

	# these come here because Intel CPP patch touches hda_intel.c
	patches.drivers/alsa-sp4-hda-Enable-snoop-bit-for-AMD-controllers
	patches.drivers/alsa-sp4-hda-Use-LPIB-for-ATI-AMD-chipsets-as-default

	########################################################
	# 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-raid1-unplug-sync
	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
	patches.fixes/dm-table-upgrade-mode-race-fix
	patches.fixes/dm-mpath-separate-failfast-bits
	patches.drivers/scsi-device-handler-backport
	patches.suse/dm-update-disk-ro
	patches.suse/scsi-netlink-ml
	patches.fixes/dm-mpath-increment-pg_init_in_progress
	patches.fixes/dm-mpath-delay-retry
	patches.fixes/dm-mpath-flush-workqueues-before-suspend-completes
	patches.fixes/dm-mpath-add-mutex-to-synchronize-adding-and-flushing-work
	patches.fixes/dm-mpath-prevent-io-from-workqueue-while-suspended
	patches.fixes/dm-mpath-hold-io-until-all-pg_inits-complete
	patches.fixes/dm-mpath-wait-for-pg_init-completion-when-suspending

	patches.fixes/scsi_dh_rdac-Add-support-for-SUN-StorageTek
	patches.fixes/scsi_dh_rdac-Fix-return-code-for-sense
	patches.fixes/scsi_dh_rdac-Adding-more-debug-options
	patches.suse/scsi-dh-always-attach-sysfs
 	patches.suse/scsi-netlink-ml-module-param
	patches.fixes/scsi-dh-check-for-sdev-state-before-calling-activate
	patches.suse/scsi-dh-ignore-EEXIST-in-device_create_file
	patches.fixes/scsi-dh-rdac-add-fatbob-id
	patches.suse/scsi-dh-activate-async-update
	patches.fixes/scsi-dh-alua-handle-all-states
	patches.fixes/scsi-dh-alua-handle-tpgs-state-correctly
	patches.fixes/scsi-dh-alua-attach-to-unavailable
	patches.fixes/dm-table-fix-oops-if-request-queue-is-NULL.patch

	########################################################
	# 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
	patches.fixes/md-disable-recovery-on-faulty-degraded-array
	patches.fixes/md-raid1-handle-read-error.patch
	patches.fixes/md-super1-maxdevs-fix
	patches.fixes/md-idle-test.fix
	patches.fixes/md-super1-fixes
	patches.fixes/md-revalidate-on-run
	patches.fixes/md-read-error-deadlock
	patches.fixes/md-resync-error-deadlock

	########################################################
	# 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

	# bnc#414047 - L3: Intel requests PTFs to support multiple ACL cache per inode
	patches.suse/NFS-Add-a-new-ACCESS-rpc-call-cache-to-the-linux-nf.patch
	patches.suse/NFS-Add-a-global-LRU-list-for-the-ACCESS-cache.patch
	patches.suse/NFS-Add-an-ACCESS-cache-memory-shrinker.patch
	patches.suse/NFS-Fix-an-Oops-in-the-nfs_access_cache_shrinker.patch
	patches.suse/NFS-Fix-a-potential-race-between-umount-and-nfs_acc.patch
	patches.suse/NFS-Ensure-we-zap-only-the-access-and-acl-caches-wh.patch

	patches.fixes/svcauth-leak-fix

	patches.suse/nfs-flush-dir-on-ctime-change
	patches.suse/nfsd-creative-mtime
	patches.fixes/nfs-fix-posix-acl
	patches.fixes/sunrpc-fix-min_resvport-conflict
	patches.fixes/nfs-fix-nfs3_xdr_setaclargs
	patches.fixes/nfs-fix-race-over-nfs_deletes
	patches.fixes/nfs-fix-umount-BUG_ON
	patches.fixes/knfsd-nfsd4-fix-owner-override-on-open
	patches.fixes/knfsd-nfsd4-fix-open-permission-checking
	patches.fixes/nfs-dir-invalidate-range.fix
	patches.fixes/nfs-slot-table-alloc
	patches.fixes/nfs4-proc-lock-null-deref.patch

	patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling
	patches.fixes/nfs-call-async
	patches.fixes/nfs-wait-for-close
	patches.fixes/knfsd4-fix-open_create-permissions
	patches.fixes/knfsd4-fix-share-mode-perms
	patches.fixes/nfsd4-bug-in-read_buf
	patches.fixes/knfsd-close-race-in-d_splice_alias.patch
	patches.fixes/dcache-d_splice_alias_fix.patch
	patches.fixes/nfs-open-context-umount-race.diff
	patches.fixes/nfs-do-not-bug_on-on-flags.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

	patches.fixes/nfs-cleanup_rpc_wakeup
	patches.fixes/nfs-cleanup_rpc_wakeup_fix
	patches.fixes/nfsd4-call-underlying-fs-on-LOCKT
	patches.fixes/sunrpc-fix-soft-task-error-handling
	patches.fixes/nfs4-check-exec-permission
	patches.fixes/nfs-lock-release-lockargs
	patches.fixes/NFSv4-Fix-an-Oops-in-nfs4_free_lock_state.patch
	patches.fixes/nfs-fix-getattr-delay
	patches.fixes/nfs-fix-nfs_invalidate_page-BUG_ON
	patches.fixes/sunrpc-fix-wakeup-race
	patches.fixes/nfsd-svc-mutex
	patches.fixes/sunrpc-monotonic-expiry
	patches.fixes/sunrpc-fix-rpc_execute-race
	patches.fixes/nfsd4-fix-bad-seqid-on-lock
	patches.fixes/nfs-idmap-fix
	patches.fixes/sunrpc-call-xprt_release-from-call_verify
	patches.fixes/nfs4-acl-pages.fix
	patches.fixes/rpc-cred-test
	patches.fixes/nfsd-unlink-wcc
	patches.fixes/nfsd-laundromat-race
	patches.fixes/NFSv4-Ensure-nfs_callback_down-calls-svc_destroy.patch
	patches.fixes/NFS-fix-reference-counting-for-NFSv4-callback-thread.patch
	patches.fixes/NFS-flush-signals-before-taking-down-callback-thread.patch

	########################################################
	# 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
	patches.fixes/cifs-fix-data-corruption
	patches.fixes/cifs-fix-oops-on-second-mount
	patches.fixes/cifs-fix-multiuser-mounts
	patches.fixes/cifs-fix-buffer-overflow-in-CIFSTCon
	patches.fixes/cifs-fix-unicode-string-alignment
	patches.suse/cifs-krb-backport
	patches.suse/cifs-dfs-backport01-base
	patches.suse/cifs-dfs-backport02-fixes
	patches.suse/cifs-krb-fix-build-errors
	patches.suse/cifs-krb-no-longer-experimental
	patches.suse/cifs-dfs-no-longer-experimental
	patches.suse/cifs-dfs-backport03-mount-fixes
	patches.suse/cifs-dfs-backport04-deal-with-zero-length-iovec
	patches.suse/cifs-dfs-backport05-vfs-shrink-submounts
	patches.fixes/cifs-fix-oops-during-fsstress
	patches.fixes/cifs-fix-overflow-in-cifs_readdir
	patches.fixes/cifs-fix-overflow-in-cifs_strncpy_to_host
	patches.fixes/cifs-avoid-mode-override
	patches.fixes/cifs-fix-slab-corruption
	patches.fixes/cifs-fix-a-kernel-bug-with-remote-os-2-server-try-3
	patches.fixes/cifs-fix-bad-EAGAIN-handling-in-cifs_demultiplex_thread
	patches.fixes/cifs-ensure-credentials-match-when-using-existing-session
	patches.fixes/cifs-fix-possible-memory-corruption-in-CIFSFindNext.patch
	patches.fixes/cifs-always-do-is_path_accessible-check-in-cifs_moun.patch
	patches.fixes/cifs-add-fallback-in-is_path_accessible-for-old-serv.patch
	patches.fixes/cifs-eliminate-usage-of-kthread_stop-for-cifsd.patch

	########################################################
	# 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/jbd-fix-race-between-free-buffer-and-commit-trasanction2.patch
	patches.fixes/ext2-avoid-printk-flood-with-dir-corruption
	patches.fixes/ext3-avoid-printk-flood-with-dir-corruption
	patches.fixes/ext2_mtime_update_on_rename.diff
	patches.fixes/jbd-commit-refile-race.patch
	patches.fixes/ext3-dio-lock-inversion-fix
	patches.fixes/ext3-dio-lock-inversion-uinit-fix
	# fixes for ext3 on 16TB devices
	patches.fixes/ext3-16TB-64bit_percpu
	patches.fixes/ext3-16TB-introduce-fsblk_t
	patches.fixes/ext3-16TB-block-counting-fixes
	patches.fixes/ext3-16TB-percpu_mod_fix
	patches.fixes/ext3-16TB-percpu_mod_fix-kABI.patch

	patches.fixes/ext3_link-return-ENOENT-when-racing-with-unlink
	patches.fixes/ext23_fix_inode_table.patch
	patches.fixes/ext3-orphan-list-check-on-destroy_inode.patch
	patches.fixes/ext3-inode-deleted-from-orphan_list-on-truncate.patch
	patches.fixes/ext3-delay-discarding-freed-buffer.diff
	patches.fixes/ext3-fix-race-between-write_metadata-and-get_write_access.diff
	patches.fixes/jbd-remove_journal_head-oops-fix.diff
	patches.fixes/jbd-Issue-cache-flush-after-checkpointing.patch
	patches.fixes/jbd-validate-sb-s_first-in-journal_get_superblo.patch
	patches.fixes/ext3-dio-credit-fix

	########################################################
	# 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
	patches.fixes/reiserfs-error-lock.diff
	patches.fixes/reiserfs-prepare_error_buf-wrongly-consumens-va_arg.patch
	patches.fixes/reiserfs-remove-first_zero_hint

	########################################################
	# 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
	patches.xfs/xfs-kern_32165a_Fix-extent-list-corruption-in-xfs_iext_irec_compact_full.patch
	patches.xfs/xfs-kern_32166a_Remove-xfs_iext_irec_compact_full.patch
	patches.xfs/xfs-kern_29305a_On-demand-reaping-of-the-MRU-cache.patch
	patches.xfs/xfs-kern_PV989115_Workaround-cancel_rearming_delayed_workqueue-bug.patch
	patches.xfs/xfs-kern_30371a_Move-AIL-pushing-into-its-own-thread.patch
	patches.xfs/xfs-kern_30504a_Prevent_AIL_lock_contention_during_transaction_completion.patch
	patches.xfs/xfs-kern_30505a_Use_atomics_for_iclog_reference_counting.patch
	patches.xfs/xfs-kern_30532a_xfsaild_causing_too_many_wakeups.patch
	patches.xfs/xfs-kern_30770a_Use-a-per-iclog-callback-chain-log-to-reduce-contention-on-the-icloglock.patch
	patches.xfs/xfs-kern_30771a_Remove-the-xlog_ticket-allocator-and-replace-it-with-a-memory-zone.patch
	patches.xfs/xfs-kern_30772a_Isolate-some-debugging-to-the-debug-build.patch
	patches.xfs/xfs-kern_30773a_Fix-lock-inversion-in-forced-shutdown.patch
	patches.xfs/xfs-kern_31904a_Fix-reference-counting-race-on-log-buffers.patch
	patches.xfs/xfs-kern_313563a_add-more-checks-to-superblock-validation.patch
	patches.xfs/xfs-kern_313952a_xfs_file_last_byte-needs-to-acquire-ilock.patch
	patches.xfs/xfs-kern_PV982337_Fix-xfs-debug-printfs.patch
	patches.xfs/xfs-kern_PV982012_redirty_page_on_enospc.patch
	patches.xfs/xfs-account-for-inode-cluster-alignment-in-all-allocations
	patches.xfs/xfs-fix-race-between-directIO-buffered-using-DMAPI
	patches.xfs/xfs-make-inode-flush-at-ENSPC-synchronous
	patches.xfs/xfs_check_for_dinode_realtime_flag_corruption.patch
	patches.xfs/xfs-kern_30007a_fix-inode-allocation-latency.patch
	patches.xfs/xfs_add_xfs_fs_dirty_inode.patch
	patches.fixes/xfs-stop-re-checking-permissions-in-xfs_swapext
	patches.fixes/xfs-prevent-swapext-from-operating-on-write-only-files
	patches.fixes/xfs-reject-swapext-ioctl-on-swapfiles
	patches.fixes/xfs-prevent-reading-uninitialized-stack-memory
	patches.xfs/xfs-ensure-non-negative-f_ffree.patch
	patches.fixes/xfs_fs_geometry-fix.patch
	patches.fixes/xfs-reject-swapext-ioctl-on-swapfiles-fix
	patches.fixes/xfs-fix-memory-reclaim-recursion-deadlock-on-locked-.patch
	patches.fixes/xfs-fix-possible-memory-corruption-in-xfs_readlink

	########################################################
	# 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

	# Update to latest oracle ocfs2 1.4.git release
	#
	# These patches are numbered as they come in sequence,
	# directly from git://oss.oracle.com/git/ocfs2-1.4.git
	#
	# A few are disabled, but kept here for tracking purposes.
	patches.fixes/ocfs2-1.4-0000-ocfs2-Correctly-set-i_blocks-after-inline-dir-gets-e.patch
	patches.fixes/ocfs2-1.4-0001-ocfs2-Track-local-alloc-bits-internally.patch
	patches.fixes/ocfs2-1.4-0002-ocfs2-throttle-back-local-alloc-when-low-on-disk-spa.patch
	patches.fixes/ocfs2-1.4-0003-ocfs2-track-local-alloc-state-via-debugfs.patch
	patches.fixes/ocfs2-1.4-0004-ocfs2-Make-la_debug_mutex-static.patch
	patches.fixes/ocfs2-1.4-0005-ocfs2-Don-t-check-for-NULL-before-brelse.patch
	patches.fixes/ocfs2-1.4-0006-ocfs2-Fix-check-of-return-value-of-ocfs2_start_trans.patch
	patches.fixes/ocfs2-1.4-0007-ocfs2-Fix-checking-of-return-value-of-new_inode.patch
	patches.fixes/ocfs2-1.4-0008-ocfs2-Add-helper-clear_nlink.patch
	patches.fixes/ocfs2-1.4-0009-ocfs2-Let-inode-be-really-deleted-when-ocfs2_mknod_l.patch
	patches.fixes/ocfs2-1.4-0010-ocfs2-return-0-in-page_mkwrite-to-let-VFS-retry.patch
	patches.fixes/ocfs2-1.4-0011-ocfs2-truncate-outstanding-block-after-direct-io-fai.patch
	patches.fixes/ocfs2-1.4-0012-ocfs2-comments-typo-fix.patch
	patches.fixes/ocfs2-1.4-0013-ocfs2-fix-wake_up-in-unlock_ast.patch
	patches.fixes/ocfs2-1.4-0014-ocfs2-dlm-Fix-a-race-between-migrate-request-and-exi.patch
	patches.fixes/ocfs2-1.4-0015-ocfs2-dlm-Clean-up-errors-in-dlm_proxy_ast_handler.patch
	patches.fixes/ocfs2-1.4-0016-ocfs2-dlm-Hold-off-sending-lockres-drop-ref-message-.patch
	patches.fixes/ocfs2-1.4-0017-ocfs2-dlm-Fix-race-in-adding-removing-lockres-to-fro.patch
	patches.fixes/ocfs2-1.4-0018-ocfs2-dlm-Fix-race-during-lockres-mastery.patch
	patches.fixes/ocfs2-1.4-0019-trivial-fix-then-than-typos-in-comments-and-document.patch
	patches.fixes/ocfs2-1.4-0020-typos-fix-similar-typos-to-successfull.patch
	patches.fixes/ocfs2-1.4-0021-ocfs2-Wakeup-the-downconvert-thread-after-a-successf.patch
	patches.fixes/ocfs2-1.4-0022-ocfs2-dlm-Retract-fix-for-race-between-purge-and-mig.patch
	patches.fixes/ocfs2-1.4-0023-ocfs2-Cleanup-the-lockname-print-in-dlmglue.c.patch
	patches.fixes/ocfs2-1.4-0024-ocfs2-dlm-Use-ast_lock-to-protect-ast_list.patch
	patches.fixes/ocfs2-1.4-0025-ocfs2-dlm-Make-dlm_assert_master_handler-kill-itself.patch
	patches.fixes/ocfs2-1.4-0026-ocfs2-add-IO-error-check-in-ocfs2_get_sector.patch
-	patches.fixes/ocfs2-1.4-0027-ocfs2-hb-Expose-the-list-of-heartbeating-nodes-via-d.patch
	patches.fixes/ocfs2-1.4-0028-ocfs2-Expose-the-file-system-state-via-debugfs.patch
	patches.fixes/ocfs2-1.4-0029-ocfs2-Remove-debugfs-file-local_alloc_stats.patch
	patches.fixes/ocfs2-1.4-0030-ocfs2-Optimize-inode-allocation-by-remembering-last-.patch
	patches.fixes/ocfs2-1.4-0031-ocfs2-Allocate-inode-groups-from-global_bitmap.patch
	patches.fixes/ocfs2-1.4-0032-ocfs2-Optimize-inode-group-allocation-by-recording-l.patch
	patches.fixes/ocfs2-1.4-0033-ocfs2-dlm-Encapsulate-adding-and-removing-of-mle-fro.patch
	patches.fixes/ocfs2-1.4-0034-ocfs2-dlm-Clean-up-struct-dlm_lock_name.patch
	patches.fixes/ocfs2-1.4-0035-ocfs2-dlm-Refactor-dlm_clean_master_list.patch
	patches.fixes/ocfs2-1.4-0036-ocfs2-dlm-Create-and-destroy-the-dlm-master_hash.patch
	patches.fixes/ocfs2-1.4-0037-ocfs2-dlm-Activate-dlm-master_hash-for-master-list-e.patch
	patches.fixes/ocfs2-1.4-0038-ocfs2-dlm-Indent-dlm_cleanup_master_list.patch
	patches.fixes/ocfs2-1.4-0039-ocfs2-dlm-Track-number-of-mles.patch
	patches.fixes/ocfs2-1.4-0040-ocfs2-dlm-Improve-lockres-counts.patch
	patches.fixes/ocfs2-1.4-0041-ocfs2-dlm-dlm_set_lockres_owner-and-dlm_change_lockr.patch
	patches.fixes/ocfs2-1.4-0042-ocfs2-dlm-Show-the-number-of-lockres-mles-in-dlm_sta.patch
	patches.fixes/ocfs2-1.4-0043-ocfs2-dlm-Remove-struct-dlm_lock_name-in-struct-dlm_.patch
	patches.fixes/ocfs2-1.4-0044-ocfs2-dlm-Do-not-purge-lockres-that-is-being-migrate.patch
	patches.fixes/ocfs2-1.4-0045-ocfs2-dlm-Tweak-mle_state-output.patch
	patches.fixes/ocfs2-1.4-0046-ocfs2-recover-orphans-in-offline-slots-during-recove.patch
	patches.fixes/ocfs2-1.4-0047-ocfs2-Add-missing-iput-during-error-handling-in-ocfs.patch
	patches.fixes/ocfs2-1.4-0048-ocfs2-Hold-mmap_sem-while-calling-get_user_pages.patch
-	patches.fixes/ocfs2-1.4-0049-ocfs2-Up-version-to-1.4.2.patch
-	patches.fixes/ocfs2-1.4-0050-ocfs2-Add-.gitignore.patch
	patches.fixes/ocfs2-1.4-0051-ocfs2-update-comments-in-masklog.h.patch
	patches.fixes/ocfs2-1.4-0052-ocfs2-Use-nd_set_link.patch
	patches.fixes/ocfs2-1.4-0053-ocfs2-Correct-ordering-of-ip_alloc_sem-and-localloc-.patch
	patches.fixes/ocfs2-1.4-0054-ocfs2-Timer-to-queue-scan-of-all-orphan.patch
	patches.fixes/ocfs2-1.4-0055-ocfs2-Track-delayed-orphan-scan.patch
	patches.fixes/ocfs2-1.4-0056-ocfs2-Remove-redundant-gotos-in-ocfs2_mount_volume.patch
	patches.fixes/ocfs2-1.4-0057-ocfs2-fdatasync-should-skip-unimportant-metadata-wri.patch
	patches.fixes/ocfs2-1.4-0058-ocfs2-net-Use-wait_event-in-o2net_send_message_vec.patch
	patches.fixes/ocfs2-1.4-0059-ocfs2-Update-atime-in-splice-read-if-necessary.patch
	patches.fixes/ocfs2-1.4-0060-ocfs2-Pin-journal-head-before-accessing-jh-b_committ.patch
	patches.fixes/ocfs2-1.4-0061-ocfs2-Fix-ocfs2_osb_dump.patch
	patches.fixes/ocfs2-1.4-0062-ocfs2-Stop-orphan-scan-as-early-as-possible-during-u.patch
	patches.fixes/ocfs2-1.4-0063-ocfs2-Do-not-initialize-lvb-in-ocfs2_orphan_scan_loc.patch
	patches.fixes/ocfs2-1.4-0064-ocfs2-Disable-orphan-scanning-for-local-and-hard-ro-.patch
	patches.fixes/ocfs2-1.4-0065-ocfs2-Fixup-orphan-scan-cleanup-after-failed-mount.patch
	patches.fixes/ocfs2-1.4-0066-ocfs2-Initialize-the-cluster-we-re-writing-to-in-a-n.patch
-	patches.fixes/ocfs2-1.4-0067-ocfs2-Up-version-to-1.4.3.patch
	patches.fixes/ocfs2-1.4-0068-ocfs2-Btree-fixes.patch
	patches.fixes/ocfs2-1.4-0069-ocfs2-__ocfs2_abort-should-not-enable-panic-for-loca.patch
	patches.fixes/ocfs2-1.4-0070-ocfs2-ocfs2_write_begin_nolock-should-handle-len-0.patch
	patches.fixes/ocfs2-1.4-0071-ocfs2-dlm-Wait-on-lockres-instead-of-erroring-cancel.patch
	patches.fixes/ocfs2-1.4-0072-ocfs2-invalidate-dentry-if-its-dentry_lock-isn-t-ini.patch
-	patches.fixes/ocfs2-1.4-0073-ocfs2-Up-version-to-1.4.4.patch
	patches.fixes/ocfs2-1.4-0074-ocfs2-Call-balance_dirty_pages_ratelimited-to-initia.patch
	patches.fixes/ocfs2-1.4-0075-ocfs2-fix-sendfile-locking.patch
	patches.fixes/ocfs2-1.4-0076-ocfs2-trivial-fix-for-s-migrate-migration-in-dlmreco.patch
	patches.fixes/ocfs2-1.4-0077-ocfs2-log-the-actual-return-value-of-ocfs2_file_aio_.patch
	patches.fixes/ocfs2-1.4-0078-ocfs2-Fix-error-return-in-ocfs2_write_cluster.patch
	patches.fixes/ocfs2-1.4-0079-ocfs2-Remove-redundant-BUG_ON-in-__dlm_queue_ast.patch
	patches.fixes/ocfs2-1.4-0080-dlmglue.c-add-missed-mlog-lines.patch
	patches.fixes/ocfs2-1.4-0081-ocfs2-add-spinlock-protection-when-dealing-with-lock.patch
	patches.fixes/ocfs2-1.4-0082-ocfs2-Return-EINVAL-when-a-device-is-not-ocfs2.patch
	patches.fixes/ocfs2-1.4-0083-ocfs2-return-f_fsid-info-in-ocfs2_statfs.patch
-	patches.fixes/ocfs2-1.4-0084-ocfs2-cluster-Make-fence-method-configurable-v2.patch
	patches.fixes/ocfs2-1.4-0085-ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch
	patches.fixes/ocfs2-1.4-0086-ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch
	patches.fixes/ocfs2-1.4-0087-ocfs2-Fix-refcnt-leak-on-ocfs2_fast_follow_link-erro.patch
	patches.fixes/ocfs2-1.4-0088-ocfs2-trivial-Remove-trailing-whitespaces.patch
	patches.fixes/ocfs2-1.4-0089-ocfs2-dlm-Ignore-LVBs-of-locks-in-the-Blocked-list.patch
	patches.fixes/ocfs2-1.4-0090-ocfs2-dlm-Print-more-messages-during-lock-migration.patch
	patches.fixes/ocfs2-1.4-0091-ocfs2-dlm-Handle-EAGAIN-for-compatibility-v2.patch
	patches.fixes/ocfs2-1.4-0092-ocfs2-Fix-setting-of-OCFS2_LOCK_BLOCKED-during-bast.patch
	patches.fixes/ocfs2-1.4-0093-ocfs2-Prevent-a-livelock-in-dlmglue.patch
	patches.fixes/ocfs2-1.4-0094-ocfs2-Do-not-downconvert-if-the-lock-level-is-alread.patch
	patches.fixes/ocfs2-1.4-0095-ocfs2-Remove-overzealous-BUG_ON-during-blocked-lock-.patch
	patches.fixes/ocfs2-1.4-0096-ocfs2-Plugs-race-between-the-dc-thread-and-an-unlock.patch
	patches.fixes/ocfs2-1.4-0097-ocfs2-dlm-Remove-BUG_ON-in-dlm-recovery-when-freeing.patch
	patches.fixes/ocfs2-1.4-0098-ocfs2-Fix-contiguousness-check-in-ocfs2_try_to_merge.patch
	patches.fixes/ocfs2-1.4-0099-ocfs2-dlm-Fix-printing-of-lockname.patch
-	patches.fixes/ocfs2-1.4-0100-ocfs2-cluster-Make-o2net-connect-messages-KERN_NOTIC.patch

	patches.fixes/ocfs2-1.4-0101-ocfs2-fix-rare-stale-inode-errors-when-exporting-via.patch
	patches.fixes/ocfs2-1.4-0102-ocfs2-Add-extent-block-stealing.patch
	patches.fixes/ocfs2-1.4-0103-ocfs2-Add-current-comm-in-trace-output.patch
	patches.fixes/ocfs2-1.4-0104-ocfs2-dlm-allow-dlm-do-recovery-during-shutdown.patch
	patches.fixes/ocfs2-1.4-0105-ocfs2-Use-a-separate-masklog-for-AST-and-BASTs.patch
	patches.fixes/ocfs2-1.4-0106-ocfs2-userdlm-Add-tracing-in-userdlm.patch
-	patches.fixes/ocfs2-1.4-0107-ocfs2-Up-version-to-1.4.5.patch
	patches.fixes/ocfs2-1.4-0108-ocfs2-Disable-CATCH_BH_JBD_RACES.patch
-	patches.fixes/ocfs2-1.4-0109-ocfs2-Change-strncasecmp-to-strnicmp.patch
-	patches.fixes/ocfs2-1.4-0110-ocfs2-Up-version-to-1.4.6.patch
	patches.fixes/ocfs2-1.4-0111-ocfs2-Remove-CATCH_BH_JBD_RACES.patch
-	patches.fixes/ocfs2-1.4-0112-ocfs2-Up-version-to-1.4.7.patch
	patches.fixes/ocfs2-1.4-0113-ocfs2-Fix-a-race-in-o2dlm-lockres-mastery.patch
	patches.fixes/ocfs2-1.4-0114-o2net-log-socket-state-changes.patch
	patches.fixes/ocfs2-1.4-0115-ocfs2-dlm-Make-o2dlm-domain-join-leave-messages-KERN.patch
	patches.fixes/ocfs2-1.4-0116-fs-ocfs2-dlm-Drop-memory-allocation-cast.patch
	patches.fixes/ocfs2-1.4-0117-fs-ocfs2-dlm-Use-kstrdup.patch
	patches.fixes/ocfs2-1.4-0118-ocfs2-dlm-avoid-dlm-ast_lock-lockres-spinlock-depend.patch
	patches.fixes/ocfs2-1.4-0119-fs-ocfs2-dlm-Add-missing-spin_unlock.patch
	patches.fixes/ocfs2-1.4-0120-ocfs2-dlm-don-t-access-beyond-bitmap-size.patch
	patches.fixes/ocfs2-1.4-0121-ocfs2-dlm-Remove-BUG_ON-from-migration-in-the-rare-c.patch
	patches.fixes/ocfs2-1.4-0122-ocfs2-dlm-fix-a-dead-lock.patch
	patches.fixes/ocfs2-1.4-0123-ocfs2-fix-o2dlm-dlm-run-purgelist-rev-3.patch
	patches.fixes/ocfs2-1.4-0124-ocfs2-dlm-avoid-incorrect-bit-set-in-refmap-on-recov.patch
	patches.fixes/ocfs2-1.4-0125-ocfs2-dlm-remove-potential-deadlock-V3.patch
	patches.fixes/ocfs2-1.4-0126-o2net-Disallow-o2net-accept-connection-request-from-.patch
	patches.fixes/ocfs2-1.4-0127-ocfs2-Check-the-owner-of-a-lockres-inside-the-spinlo.patch
	patches.fixes/ocfs2-1.4-0128-ocfs2_dlmfs-Fix-math-error-when-reading-LVB.patch
	patches.fixes/ocfs2-1.4-0129-ocfs2-print-node-when-tcp-fails.patch
	patches.fixes/ocfs2-1.4-0130-ocfs2-Make-nointr-a-default-mount-option.patch
	patches.fixes/ocfs2-1.4-0131-ocfs2-Move-orphan-scan-work-to-ocfs2_wq.patch
	patches.fixes/ocfs2-1.4-0132-ocfs2-Remove-the-redundant-cpu_to_le64.patch
	patches.fixes/ocfs2-1.4-0133-ocfs2-tighten-up-strlen-checking.patch
	patches.fixes/ocfs2-1.4-0134-o2dlm-force-free-mles-during-dlm-exit.patch
	patches.fixes/ocfs2-1.4-0135-ocfs2-Don-t-walk-off-the-end-of-fast-symlinks.patch
	patches.fixes/ocfs2-1.4-0136-Ocfs2-Handle-empty-list-in-lockres_seq_start-for-dlm.patch
-	patches.fixes/ocfs2-1.4-0137-ocfs2-cluster-Create-debugfs-dir-for-heartbeat-regio.patch
-	patches.fixes/ocfs2-1.4-0138-ocfs2-cluster-Add-per-region-debugfs-file-to-show-th.patch
-	patches.fixes/ocfs2-1.4-0139-ocfs2-Up-version-to-1.4.8.patch
-	patches.fixes/ocfs2-1.4-0140-ocfs2-Tweak-workqueue-compat-code-to-handle-changes-.patch
	patches.fixes/ocfs2-1.4-0141-Ocfs2-1.4-Backport-mainline-commit-Journaling-i_flag.patch
	patches.fixes/ocfs2-1.4-0142-Ocfs2-1.4-Fix-a-compiling-error-introduced-by-backpo.patch

	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

	patches.suse/ocfs2-fix-dlm-join-breakage-from-user-hb.diff

	# dlm purge interval manipulation
	patches.suse/ocfs2-dlm-purge-less.patch

	# bnc 501563
	patches.suse/ocfs2-large_allocs_unsparse_writes.patch

        # bnc 620011
        patches.fixes/ocfs2-When-zero-extending-do-it-by-page.patch
        patches.fixes/ocfs2-Zero-the-tail-cluster-when-extending-past-i_si.patch
        patches.fixes/ocfs2-No-need-to-zero-pages-past-i_size.patch

	# bnc 633543
	patches.fixes/ocfs2-grab_cache_page-recursion-fix

	#bnc 668633
	patches.fixes/ocfs2-mkdir-credits.diff

	patches.fixes/ocfs2-serialize-unaligned-aio.patch

	########################################################
	# Autofs5 support
	########################################################
	patches.suse/autofs4-2.6.16-v5-update.patch

	#FATE 309394 (+bnc 556945, 590168)
	patches.suse/autofs4-2.6.16-v5-update-20090903.patch

	########################################################
	# FUSE
	########################################################
	patches.suse/fuse_update.patch
	patches.fixes/fuse-prevent-fuse_put_request-on-invalid-pointer

	#FATE 310648
	patches.suse/fuse-allow-kernel-read.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/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/aio-ERESTARTSYS-handling.diff
	patches.fixes/vfs-fix-lookup-on-deleted-directory.patch
	patches.fixes/ufs-fix-sun-state
	# bnc #465672 CVE-2008-4307 (must come after flock_close_race.diff)
	patches.fixes/nfs-lock-race-fix.patch
	patches.fixes/no-SIGXFSZ-on-large-file.patch
	patches.fixes/mm-dont-clear-PG_uptodate-on-truncate-invalidate.patch
	patches.fixes/fix_wrong_error_code_on_interrupted_close_syscalls.patch

	patches.drivers/proc-limits-support.patch
	patches.fixes/proc-remove-rcu_read_lock.patch
	patches.suse/introduce-FMODE_EXEC-file-flag.patch
	patches.suse/fs-proc-vmcorec-add-hook-to-read_from_oldmem-to-check-for-non-ram-pages.patch

	patches.fixes/mandatory-lock-test
	patches.fixes/nfs-open-context-race.fix
	patches.fixes/nfs-truncate-oops.fix
	patches.fixes/nfs-report-timeout.patch
	patches.fixes/jfs-don-t-allow-os2-xattr-namespace-overlap-with-others
	patches.fixes/clear-page-errors-when-issuing-read.patch
	patches.fixes/nfs-dont-decode-GETATTR-if-DELEGRETURN-returned-error.patch
	patches.fixes/aio-put_ioctx-race-fix.patch
	patches.fixes/aio-ioctx-use-after-free-fix.patch
	patches.fixes/NLM-Don-t-hang-forever-on-NLM-unlock-requests.patch
	patches.fixes/NLM-Don-t-hang-forever-on-NLM-unlock-requests-kabi.patch
	patches.fixes/balance-dirty-fix
	patches.fixes/nfs-separate-cache-revalidation.patch
	patches.fixes/nfs-congestion-fix
	patches.fixes/udf-Avoid-run-away-loop-when-partition-table-length-.patch
	patches.fixes/udf-Fortify-loading-of-sparing-table.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
	patches.fixes/auditsc-fix-leak.patch

	patches.fixes/char-tpm-fix-unitialized-usage-of-data-buffer

	########################################################
	# 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-fix_boot_panic_caused_by_offline_CPUs
	patches.arch/ia64-correct-pernodesize
	patches.arch/ia64-membind-memoryless
	patches.arch/ia64-unattended-kdb.diff

	########################################################
	# Other patches
	########################################################
	# FATE 305106, return ru_inblock/ru_oublock in getrusage
	patches.suse/io-accounting_core.patch
	patches.suse/io-accounting_rusage.patch
	patches.suse/io-accounting_taskstats.patch
	patches.suse/io-accounting_write.patch
	patches.suse/io-accounting_cifs_read_fix.patch
	patches.suse/io-accounting_nfs_read_fix.patch
	patches.suse/io-accounting_direct_io.patch
	patches.suse/io-accounting_write_cancel.patch
	patches.suse/io-accounting_read.patch
	patches.suse/io-accounting_getdelays.patch

	patches.fixes/use-totalram_pages

	# bug #650763
	patches.fixes/kexec-fix-segmentation-fault-in-kimage_add_entry.patch

	# needs to be here due to dependency on patches.suse/audit_capp.patch
	patches.suse/tty-locking-fix.patch

	# bnc#656917 / FATE#309802 with ECO
	patches.suse/pci-hotremove-sysfs

	patches.fixes/allow-executables-larger-than-2GB.patch

	patches.fixes/calibrate-jiffy-overflow

	########################################################
	# 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

	patches.arch/s390-sles10sp3-07-vmparm.patch
	patches.arch/s390-46-01-initrd.patch
	patches.arch/s390-sles10sp3-12-ipl_after_dump.patch
	patches.arch/s390-39-01-nss-add-previous-stmt.patch
	patches.arch/s390-58-01-smp-send-stop.patch
	patches.arch/s390-58-02-nss-initrd.patch
	patches.arch/s390-68-01-lgr-detection.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

	#bnc#601406
	patches.fixes/dm-crypt-table-output-change.patch
	patches.fixes/dm-crypt-dm-io-fix-panic-on-large-request
	patches.fixes/dm-crypt-fix-cloned-bio-ref-after-free
	patches.fixes/dm-crypt-fix-remove-first_clone
	patches.fixes/dm-crypt-use-smaller-bvecs-in-clones.patch
	patches.fixes/dm-crypt-use-bio_add_page.patch

	# 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-Add-ICMP-host-relookup-support
	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-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

	#fate 309537
	patches.suse/xfrm-Define-new-XFRM-netlink-auth-attribute-with-spe.patch
	patches.suse/xfrm-Store-aalg-in-xfrm_state-with-a-user-specified-.patch
	patches.suse/xfrm-Use-the-user-specified-truncation-length-in-ESP.patch
	patches.suse/xfrm-Fix-truncation-length-of-authentication-algorit.patch
	patches.suse/xfrm-ignore-aalg-truncation-kabi-change.patch

	# fixes for 440104 and 465299
	patches.fixes/sctp-add_bind_hash_locking-migrate_code.patch
	patches.fixes/sctp-unhash-endpoind.patch
	patches.fixes/SCTP-A-better-solution-to-fix-the-race-between-sctp_peeloff_and
	patches.fixes/sctp_do_not_use_stale_copy_of_sk
	patches.fixes/sctp-timers_receive_race.patch
	patches.fixes/SCTP-Correctly-set-the-length-of-sctp_assoc_change-notification
	patches.fixes/SCTP-Re-order-SCTP-initializations-to-avoid-race-with-sctp_rcv_
	patches.fixes/SCTP-Clean-up-naming-conventions-of-sctp-protocol-address-family-registration
	patches.fixes/SCTP-Fix-a-race-between-module-load-and-protosw-access
	patches.fixes/sctp-avoid-memory-overflow-with-bad-stream-id
	patches.fixes/sctp-fix-a-race-between-icmp-protocol-unreachable-and-connect

	patches.fixes/sctp-fix-skb_over_panic.patch
	patches.fixes/sctp-fix-infinite-loop.patch
	patches.fixes/rose-prevent-heap-corruption-with-bad-facilities.patch
	patches.fixes/rose-add-length-checks-to-CALL_REQUEST-parsing.patch

	patches.fixes/sctp-use-limited-socket-backlog
	patches.fixes/sctp-fix-init-initack-chunk-length.patch

	patches.fixes/net-backlog-functions-rename
	patches.fixes/net-sk_add_backlog-take-rmem_alloc-into-account
	patches.fixes/sock-kabi-fixup-for-adding-sk_backlog.len.patch
	patches.fixes/fixup-kernel-um-with-sock_kabi.patch
	patches.fixes/dccp-fix-oops-on-reset-after-close.patch

	########################################################
	# 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
	patches.apparmor/fix-deleted-leak.diff
	patches.apparmor/apparmor-log-audit-type.diff

	########################################################
	# kernel-wide security fixes
	########################################################
	patches.fixes/nopage-range-fix.patch
	patches.fixes/Fix-ALIGN-macro
	patches.fixes/check_privileges_before_setting_mount_propagation.patch

	# Syscall wrapping (CVE-2009-0029)
	patches.fixes/syswrap_compat.diff
	patches.fixes/syswrap_longreturn.diff
	patches.fixes/syswrap_oldreaddir.diff
	#patch pipe omitted, no arch independant sys_pipe
	patches.fixes/syswrap_select7.diff
	patches.fixes/syswrap_syslog.diff
	patches.fixes/syswrap_infrastructure.diff
	patches.fixes/syswrap_special.diff
	patches.fixes/syswrap_p01.diff
	patches.fixes/syswrap_p02.diff
	patches.fixes/syswrap_p03.diff
	patches.fixes/syswrap_p04.diff
	patches.fixes/syswrap_p05.diff
	patches.fixes/syswrap_p06.diff
	patches.fixes/syswrap_p07.diff
	patches.fixes/syswrap_p08.diff
	patches.fixes/syswrap_p09.diff
	patches.fixes/syswrap_p10.diff
	patches.fixes/syswrap_p11.diff
	patches.fixes/syswrap_p12.diff
	patches.fixes/syswrap_p13.diff
	patches.fixes/syswrap_p14.diff
	patches.fixes/syswrap_p15.diff
	patches.fixes/syswrap_p16.diff
	patches.fixes/syswrap_p17.diff
	patches.fixes/syswrap_p18.diff
	patches.fixes/syswrap_p19.diff
	patches.fixes/syswrap_p20.diff
	patches.fixes/syswrap_p21.diff
	patches.fixes/syswrap_p22.diff
	patches.fixes/syswrap_p23.diff
	patches.fixes/syswrap_p24.diff
	patches.fixes/syswrap_p25.diff
	patches.fixes/syswrap_p26.diff
	patches.fixes/syswrap_p27.diff
	patches.fixes/syswrap_p28.diff
	patches.fixes/syswrap_p29.diff
	patches.fixes/syswrap_p30.diff
	#patch 31 omitted, all syscalls post SLES
	patches.fixes/syswrap_p32.diff
	#patch 33 omitted, no arch independant sys_pipe
	patches.fixes/syswrap_s390_config.diff
	patches.fixes/syswrap_s390_syscall_rework.diff
	patches.fixes/syswrap_s390_compat_sigalstack.patch
	patches.fixes/syswrap_s390.diff
	patches.fixes/syswrap_powerpc.diff
	#additional mainline patches (post core CVE changes)
	patches.fixes/syswrap_uml.diff
	patches.fixes/syswrap_s390_compat.diff
	patches.fixes/syswrap_kerneldoc.patch
	#additional local patches
	patches.fixes/syswrap_kernexec.diff
	patches.fixes/syswrap_fixinclude.diff
	patches.fixes/syswrap_archpipe.diff


	# staging drivers backported
	patches.drivers/staging-add-microsoft-hyper-v-drivers.patch
	patches.drivers/staging-hv-auto-load-the-hyperv-pv-drivers.patch
	patches.drivers/staging-hyperv-fix-hyperv-detection.patch
	patches.drivers/staging-hyperv-rename-the-modules-to-match-mainline.patch
	patches.drivers/staging-hv-add-code-to-create-the-device-directory-under-sys-block-hdx.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
	patches.fixes/fix-inotify-watch-removal-umount-races
	# depends on patches.fixes/syswrap_p24.diff
	patches.fixes/ipc-fix-size-limit-of-compat-space-msgsize.patch

# 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

	# bug 629828
	patches.arch/x86-generate-names-for-proc_cpuinfo-from-asm_cpufeature_h.patch
	patches.arch/x86-initialize-new-Intel-CPU-features.patch

	patches.arch/i386_amd_use_tsc_if_constant.patch

	# (FATE#310326)
	patches.drivers/virtio-backport-2.6.27
	patches.drivers/virtio-console

	# bnc#713876
	patches.drivers/virtio-teach-virtio_has_feature-about-transport-feat.patch
	patches.drivers/virtio-indirect-ring-entries-VIRTIO_RING_F_INDIRECT_.patch

	patches.suse/kvm-clock-prepare.patch
	patches.suse/kvm-clock-use.patch
	patches.suse/kvm-ioapic.patch
	patches.suse/kvm-clock-stability.patch
	patches.drivers/virtio-add-names-to-virtqueue-struct-mapping-from-de.patch
	patches.drivers/virtio-find_vqs-del_vqs-virtio-operations.patch
	patches.drivers/virtio_pci-split-up-vp_interrupt.patch
	patches.drivers/virtio_pci-optional-MSI-X-support.patch


########################################################
# 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/blk-empty-barriers.patch
	patches.xen/blk-empty-barriers-filter.patch
	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/net-gso-7-size-check.patch
	patches.xen/net-add-preemption-point-in-qdisc_run.patch
	patches.xen/pci-guestdev.patch
	patches.xen/pci-reserve.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/1068-fbfront-connect-leak.patch
	patches.xen/1069-blktap-misc.patch
	patches.xen/1074-xenbus_conn-type.patch
	patches.xen/1079-hvm-kdump-reset.patch
	patches.xen/1080-blkfront-xenbus-gather-format.patch
	patches.xen/1081-blkback-resize-transaction-end.patch
	patches.xen/1082-hvmop-get-mem-type.patch
+ohering	patches.xen/1083-kbdfront-absolute-coordinates.patch
	patches.xen/1089-blkback-barrier-check.patch
	patches.xen/1090-blktap-locking.patch
	patches.xen/1091-xenbus-dev-no-BUG.patch
	patches.xen/1098-blkfront-cdrom-ioctl-check.patch
	patches.xen/1101-x86-m2p-nr.patch
	patches.xen/1102-x86-max-contig-order.patch
	patches.xen/1124-x86-undo-limit-pages.patch
	patches.xen/1126-netback-invalidation-index.patch
	patches.xen/1134-blktap-locking.patch
	patches.xen/1140-xs-payload-limit.patch
	patches.xen/1148-xenbus-dev-write-watch-checks.patch
	patches.xen/1154-blkfront-fail-packet-requests.patch
	patches.xen/1164-blkback-barrier-optional.patch
	patches.xen/1166-smpboot-ordering.patch
	patches.xen/1167-x86_64-memset.patch
	patches.xen/1174-foreign-map.patch
	patches.xen/1175-gntdev-multi-page.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.36-37
	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
	patches.xen/xen3-x86-pae-64bit-resource-fix
	patches.xen/xen3-i386-ioremap-cpa-range
	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-add-ppoll-pselect.patch
	patches.xen/xen3-x86_64-fpu-fix-possible-leakage.patch
	patches.xen/xen3-x86_64-vdso
	patches.xen/xen3-x86_64-vsyscall-time-fix
	patches.xen/xen3-vdso-fix-perms.patch
	patches.xen/xen3-x86_64-ia32-syscall-reg-leak
	patches.xen/xen3-x86_64-fix-page-align-in-e820-allocator
	patches.xen/xen3-x86-Fam11h-optimisations
	patches.xen/xen3-acpi_early_quirk_continue.patch
	patches.xen/xen3-x86_panic_on_unrecovered_nmi.diff
	patches.xen/xen3-x86-pageattr-fix.patch
	patches.xen/xen3-x86-sanitize-user-specified-e820-memmap-values.patch
	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-x86_intel_use_apic_for_westmere_cores.patch
	patches.xen/xen3-x86_support_tsc_keeps_running_in_c3.patch
	patches.xen/xen3-pci-msi_intx_disable_bug-quirk
	patches.xen/xen3-sysfs-crash-debugging.patch
	patches.xen/xen3-ich10-chipset-support.patch
	patches.xen/xen3-Intel-Cougar-Point-PCH-Support.patch
	patches.xen/xen3-use-totalram_pages
	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
	patches.xen/xen3-x86-generate-names-for-proc_cpuinfo-from-asm_cpufeature_h.patch
	patches.xen/xen3-x86-initialize-new-Intel-CPU-features.patch
	patches.xen/xen3-kvm-clock-prepare.patch
	patches.xen/xen3-virtio-backport-2.6.27

	# bugfixes and enhancements
	patches.xen/xen-balloon-max-target
	patches.xen/xen-balloon-accounting
	patches.xen/xen-no-multi-core-sched-opt
	patches.xen/xen-blkback-bimodal-suse
	patches.xen/xen-blkif-protocol-fallback-hack
	patches.xen/xen-blkback-cdrom
	patches.xen/xen-vbd-resize
	patches.xen/xen-blktap-write-barriers
	patches.xen/xen-modular-blktap
	patches.xen/xen-blkfront-hvm-no-cdrom
	patches.xen/xen-increase-loopback-devices
	patches.xen/xen-swiotlb-heuristics
	patches.xen/xen-cxgb3
	patches.xen/xen-dcdbas
	patches.xen/xen-floppy
	patches.xen/xen-kzalloc
	patches.xen/xen-x86-panic-no-reboot
	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-x86-hidden-cpu-features
	patches.xen/xen-x86-bigmem
	patches.xen/xen-i386-panic-on-oops
	patches.xen/xen-x86_64-init-cleanup

	# kABI adjustments
	patches.xen/xen-kabi

########################################################
# 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/fix-clock-parameter-handling.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

	# this depends on the VMI patches immediately above
	patches.suse/hyperv-time.patch
	patches.suse/x86-vmw_timer.patch
	patches.suse/x86-vmw_timer_apic_calibration.patch
	patches.suse/x86-vmw-use-dmi-for-vmware-identification.patch