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
|
# 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.fixes/setuid-dumpable-wrongdir
########################################################
# kbuild/module infrastructure fixes
########################################################
patches.fixes/modpost-segfault-fix.diff
patches.fixes/git-kbuild.patch
patches.fixes/git-kbuild-cscope.patch
patches.fixes/remove-MODULE_PARM
patches.suse/error-implicit-function-declaration.patch
patches.suse/enable-intermodule.patch
########################################################
#
# packaging-specific patches (tweaks for autobuild,
# CONFIG_SUSE_KERNEL, config/version tracking and other
# stuff like that ...).
#
########################################################
patches.rpmify/offsets_h-dirname.patch
patches.rpmify/rpm-kernel-config
patches.suse/sles-version
patches.rpmify/buildhost
patches.rpmify/cloneconfig.diff
patches.rpmify/suse-extmod-legacy
patches.rpmify/default-configuration
patches.rpmify/build-timestamp
patches.rpmify/fix-separate-compilation-with-preconf-kernel.diff
patches.rpmify/extmod-fix
patches.fixes/arch-ext-mod.diff
patches.rpmify/symtypes.diff
patches.rpmify/supported-flag
patches.suse/warn-vermagic.diff
########################################################
# 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
########################################################
# 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.suse/acct-eop-hook
patches.fixes/fix_pacct_incorrect_records.patch
patches.suse/pagg.patch
patches.suse/pagg-numatools
patches.suse/delayacct
patches.suse/delayacct_memleak.patch
patches.suse/csa-taskstats
patches.fixes/hrtimer-opt
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.fixes/random-fix-bound-check-ordering.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
patches.fixes/random-fix-error-in-entopy-extraction.diff
patches.fixes/random-fix-seeding-with-zero-entropy.diff
+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/reset-pdeath_signal-cve-2007-3848.patch
patches.fixes/proc-readdir-race-fix.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
########################################################
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-sn2-irq_fixup
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
+broken 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
########################################################
# 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
########################################################
# 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/nmi_blacklist_thinkpads_x86_64.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.fixes/x86_64-zero-extend-all-registers-after-ptrace-in-32bit-entry-path
########################################################
# 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.arch/dmi_early_init.patch
patches.suse/cpuid-4.patch
patches.fixes/handle-bogus-%cs-selector-in-single-step-instruction-decoding
########################################################
# 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.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-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
########################################################
# 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
+hare 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.suse/s390-fno-ivopts.patch
patches.arch/s390-raw-device
patches.arch/s390-scsi-backport-fixes
patches.arch/s390-qdio-alignment-fix.diff
########################################################
# VM/FS patches
########################################################
patches.fixes/sparsemem-incorrectly-calculates-section-number.patch
patches.suse/unmap_vmas-lat
+notyet patches.fixes/dont-writeback-fd-bdev-inodes.patch
+andrea patches.suse/silent-stack-overflow
patches.fixes/do_anonymous_page-race
patches.fixes/oom-warning
patches.fixes/oom-child-kill-fix.patch
patches.fixes/buffer-memorder-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/hugetlb-brk-region.patch
patches.fixes/meminfo-HugePages_Rsvd-wrap.patch
patches.fixes/hugetlbfs-stack-grows-fix.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/mmap-mtime.patch
patches.fixes/set_page_dirty_lock_race
patches.fixes/truncate-soft-lockup
patches.fixes/lazy-mmu-prot-update
patches.fixes/grab-swap-token-oops
patches.fixes/uncached-allocator
patches.fixes/add-do_no_pfn.patch
patches.fixes/throttle_vm_writeout-deadlock.patch
patches.suse/zone-slab-reclaim.diff
patches.fixes/drain_node_page-drain-pages-in-batch-units.patch
patches.fixes/mm-kmalloc_node-correct-node.patch
patches.fixes/nr_anon
patches.fixes/copy-atomic-non-zeroing-prepare
patches.fixes/copy-atomic-non-zeroing-i386
patches.suse/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.suse/filp-slab-rcu
patches.fixes/unique-i_ino.patch
- patches.fixes/unique-i_ino-tmpfs.patch
patches.fixes/debugfs-fixes.diff
patches.fixes/dio_should_wait-zab1.patch
patches.fixes/make_generated_ino_int.diff
########################################################
# Block Layer
########################################################
patches.suse/readahead-tune
patches.fixes/cfq-atomic-flags
# when enabling the two bottom fixes, the first must be removed
patches.fixes/cfq-backport-2.6.17-rc5-git
patches.fixes/cfq-performance-updates
patches.fixes/cfq-idle-timer
patches.fixes/cfq-busy-rr-fairness
patches.fixes/cfq-dont-set-batching
patches.fixes/cfq-clear-seek-values
patches.fixes/cfq-drop-dead-cic-fix
patches.fixes/cfq-make-idle-be-lowest
patches.fixes/elevator-trim-ioc
patches.fixes/elevator-switch-race
patches.suse/blkq-adjust-max-segments.diff
patches.suse/remove-relayfs.diff
patches.suse/blktrace.diff
########################################################
# 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
# Translate LF to CRLF instead of LFCR
patches.fixes/serial_console
patches.fixes/add-slab_is_available-routine-for-boot-code.patch
########################################################
# ACPI patches
########################################################
patches.suse/initramfs-before-acpi.patch
patches.suse/acpi_dsdt_initrd_initramfs
patches.suse/acpi-oldboot
patches.fixes/acpi-no-search
patches.arch/acpi_show_errors
patches.arch/acpi_show_errors-fix
patches.arch/acpi_handler_warning
patches.arch/acpi_export_syms
patches.fixes/acpi_ref_count.patch
patches.fixes/acpi_power_manageable_msg.patch
patches.arch/acpi_irq_derive_suppress_msg.patch
patches.arch/acpi_suppress_aetime.patch
patches.fixes/acpi-cpuindex
patches.fixes/acpi_remove_cpu_hotplug_exception.patch
patches.fixes/acpi_osl_atomics.patch
patches.suse/acpi-hotkeys-extra.diff
patches.arch/acpi_asus_update_0_30
patches.arch/acpi_asus_strict_model_check.patch
patches.arch/acpi_asus_init_fixups.patch
patches.suse/acpi_sony_init_fixups.patch
patches.arch/acpi_ibm_notify.patch
patches.fixes/acpi_thinkpad_r40e.patch
patches.arch/acpi_T60_ultrabay.patch
patches.fixes/acpi_ibm_dock_fix_not_present.patch
patches.fixes/acpi_battery_hotplug_fix.patch
patches.fixes/acpi_ibm_dock_fix_events.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/acpipnp-dma-resource-setup-fix.patch
patches.fixes/apic_fix_suspend.patch
patches.arch/acpi_package_object_support.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
# 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
########################################################
# 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/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/bridge-module-get-put.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
########################################################
#
# 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
+hare patches.drivers/lpfc-eeh-fix
patches.drivers/lpfc-ioctl-segfault-fix
patches.drivers/lpfc-fix-pcix-ident
patches.drivers/lpfc-8.1.10.9-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/rtc-no-irq.patch
+garloff patches.drivers/w83627ehf-detect.diff
patches.fixes/device_bind.patch
patches.fixes/x86_64-hangcheck_timer-fix.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/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.fixes/cdrom-fix-open
+sles patches.fixes/bigsmp-floppy-apic
### libata/ide
patches.drivers/scsi-backport-remove-sata
patches.drivers/libata-add-ata-drivers
patches.drivers/libata-interrupt-zero.patch
patches.drivers/libata-acpi-upstream
patches.drivers/libata-acpi-update
patches.drivers/libata-docs.patch
patches.drivers/libata-initialize-variables.patch
patches.suse/ide-probe-delay
patches.fixes/ide-noflush
# ahci dynamic link powersaving, FATE#151355
patches.drivers/libata-ps-ata-macros
patches.drivers/libata-ps-implement-port-list
patches.drivers/libata-ps-export-counting-fns
patches.drivers/libata-ps-add-ready-counting-fn
patches.drivers/libata-ps-implement-update_scontrol
patches.drivers/libata-ps-implement-ps
patches.drivers/libata-ps-implement-ps-timer
patches.drivers/libata-ps-implement-std-callbacks
patches.drivers/libata-ps-convert-ahci
patches.drivers/libata-ps-implement-ahci-portstop-ps
patches.drivers/libata-add-devid-5337-to-sata_via
patches.drivers/libata-ahci-improve-spurious-irq-reporting
patches.drivers/libata-fix-port-action-in-perdev-action-mask
patches.drivers/libata-ahci-dont-enter-slumber-on-powerdown
patches.drivers/libata-ps-make-sure-linkps-stays-out-of-the-way
patches.drivers/libata-sata_vsc-kill-MSI-support
patches.drivers/ati-sb600-ide-support.patch
patches.fixes/pci-quirk-acer-aspire-dma33
patches.drivers/libata-ahci-fix-ahci_thaw
patches.drivers/libata-fix-jmicron-quirk
patches.drivers/libata-pata_amd-fix-cable-detection
patches.drivers/libata-add-sb600-ahci-quirk
patches.drivers/libata-clear-TF-before-IDENTIFYing
patches.drivers/libata-add-waits-for-govault
patches.drivers/libata-sata_sil-ignore-and-clear-spurious-IRQs-while-executing-commands-by-polling
patches.drivers/libata-jmicron-match-class-instead-of-function-nr
patches.drivers/libata-add-missing-PM-callbacks
patches.drivers/libata-ahci-RAID-mode-SATA-patch-for-Intel-ICH9M
patches.drivers/libata-blacklist-FUJITSU-MHT2060BH-for-NCQ
patches.drivers/libata-hardreset-on-SERR_INTERNAL
patches.drivers/libata-sata_sil24-pci_id-for-adaptec-1220SA
patches.drivers/libata-implement-HDIO_GET_IDENTITY
patches.drivers/libata-ide-via-add-PCI-IDs
patches.drivers/libata-ahci-ignore-interr-on-SB600
patches.drivers/libata-add-lkcd-hook
patches.suse/libata-pata_sl82c105-reset-delay.patch
patches.drivers/libata-add-pata_dma-kernel-parameter
patches.drivers/libata-sata_via-add-PCI-IDs
patches.drivers/libata-sata_via-kill-SATA_PATA_SHARING
patches.drivers/libata-sata_sil24-fix-IRQ-clearing-race-on-IRQ_WOC
patches.drivers/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
### end of libata/ide
patches.drivers/scsi-sas-sp1-transport-class-update
patches.drivers/scsi-sas-sp1-sas-include
patches.drivers/scsi-sas-sp1-libsas-include
patches.drivers/scsi-sas-sp1-libsas-common
patches.drivers/scsi-backport-aic94xx
patches.drivers/scsi-sas-sp1-aic94xx-update
patches.drivers/scsi-backport-ipr-update
patches.drivers/scsi-backport-fc-fixes
patches.drivers/scsi-backport-netlink-messages
patches.drivers/ide_scsi-allow-it-to-be-used-for-non-cd-only.patch
patches.drivers/scsi-backport-megaraid
patches.drivers/megaraid-firmware-timeout
patches.drivers/scsi-backport-qla2xxx
patches.drivers/qla2xxx-sp1-update
patches.drivers/qla2xxx-support-54xx
patches.fixes/qla2xxx-avoid-duplicate-pci_disable_device
patches.suse/qla3xxx.diff
patches.drivers/qla4xxx-sp1-update
patches.drivers/qla4xxx-5.01.00-d7-update
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/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/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/aic79xx-29320lpe.patch
patches.drivers/aic79xx-use-dma-required-mask
# Remaining SCSI patches (garloff)
patches.suse/scsi-scan-inq-ppc64-dflt
patches.fixes/scsi-scan-limit-luns-seqscan-16k
patches.fixes/scsi-scan-blist-update
patches.fixes/cdrom-timeout-in-msec
patches.suse/scsi-scan-tolerate-pq3-cosmetic
patches.suse/scsi-scan-logging
patches.fixes/sdev-timeout-retries-update
patches.fixes/use-unchecked_isa_dma-in-sd_revalidate_disk
patches.suse/st-ioctl-idlun-support
patches.drivers/scsi-backport-mpt-fusion
patches.drivers/scsi-sas-sp1-mpt-fusion-update
patches.fixes/mpt-dont-return-DID_BUS_BUSY
patches.fixes/mpt-increase-sge-size-for-fc
patches.fixes/mpt-unstick-error-recovery
patches.fixes/mpt-sort-volumes-ascending
patches.fixes/mpt-dont-read-only-devices
patches.fixes/scsi-missing-iomem-cast
patches.fixes/scsi-sdev-initialisation-block-race
patches.fixes/scsi-abort-eh-cmds
patches.fixes/scsi-sdev-resurrect
patches.fixes/scsi-sdev-fixup-slave-destroy
patches.fixes/scsi_run_queue-recursion.patch
patches.fixes/fc_transport_optional_remove
patches.fixes/scsi-transport-fc-scan-timeout
patches.fixes/fc_transport-check-portstate-before-scan
patches.fixes/gdth-set-max_sectors
patches.fixes/scsi-set-correct-resid
patches.drivers/ips-soft-lockup
patches.drivers/ipr-aux.patch
patches.drivers/ipr-sata.patch
patches.drivers/ipr-pci-reset.patch
patches.arch/ipr-sata-iseries-insw.patch
patches.drivers/ipr-qc-sata-eh_done.patch
patches.drivers/ipr-eh_timeout.patch
patches.arch/symbios-eeh-recovery.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
########################################################
# Network
########################################################
patches.drivers/tg3-update-v3.69c
patches.drivers/tg3-update-v3.71b
patches.fixes/tulip-quad-NIC-ifdown
patches.suse/prism-defaultmac
patches.suse/nameif-track-rename.patch
patches.suse/rtnetlink-atomic2.patch
patches.suse/bonding-workqueue
patches.suse/bonding-bh-locking
patches.suse/sk_clone.patch
patches.drivers/r8169-update-2.6.19
patches.drivers/r8169-more-alignment-for-the-0x8168
patches.drivers/sky2-1.10-update
patches.drivers/bnx2-update-1.5.1c
patches.drivers/bnx2-update-1.5.4b
patches.drivers/bnx2-update-1.5.5b
# fix a oops on unload still active isdn drivers
# TODO: send upstream
patches.fixes/i4l-nullpointer-fix
patches.drivers/isdn_pcmcia_cardbus_irq
patches.drivers/e1000-update
patches.drivers/e1000-stats-collection.patch
+off patches.drivers/e1000-no-tso
patches.drivers/e1000-update-7.0.33-7.3.15
- patches.drivers/e1000-poll-performance.patch
patches.drivers/e1000_suspend_irq.patch
patches.drivers/e1000-eeprom-cksum.patch
patches.drivers/e1000-gcr-disable-timeout.patch
patches.drivers/e100-ignore-bad-eeprom
patches.drivers/e100-pci-err-recovery.patch
patches.drivers/s2io-udp_rr.patch
patches.drivers/s2io_warm_reboot_reset.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/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
# 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.drivers/s2io-unknown_packet.patch
patches.drivers/s2io-eeh.patch
patches.fixes/bonding-suppress-duplicate-packets.diff
patches.fixes/bonding-packet-drop-checks-in-hwaccel-rx-path.diff
patches.fixes/pppoe-memory-leak-when-socket-is-released.diff
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)
+sp2 patches.drivers/forcedeth-driver-2622.diff
+sp2 patches.drivers/forcedeth-new-integ.diff
+sp2 patches.drivers/forcedeth-fix-backport.diff
+sp2 patches.drivers/forcedeth-new-rmv-old-pciids.diff
########################################################
# iSCSI
########################################################
patches.drivers/scsi-backport-open-iscsi
patches.drivers/open-iscsi-svn.diff
patches.drivers/iscsitarget
patches.drivers/iscsitarget-align-with-open-iscsi.patch
patches.drivers/iscsitarget-svn.diff
patches.fixes/iscsi-netware-fix
########################################################
# PCI and PCI hotplug
########################################################
patches.fixes/pci-fix-problems-with-msi-x-on-ia64.patch
# Greg does not want this patch applied now after RC1
# is out, he also wants to see it in mainline first.
# See the internal kernel discussion on the subject
# "Cardbus cards hidden, fixup parent subordinate# carefully"
# for more information.
+bk patches.fixes/yenta-fixup-parent-subordinate-carefully
# from 2.6.17
patches.drivers/pci-0004-quirk-for-IBM-Dock-II-cardbus-controllers.patch
patches.drivers/pci-0025-SMBus-unhide-on-HP-Compaq-nx6110.patch
patches.drivers/pci-0026-quirk-for-asus-a8v-and-a8v-delux-motherboards.patch
patches.drivers/pci-0027-make-MSI-quirk-inheritable-from-the-pci-bus.patch
patches.drivers/pci-0029-resource-address-mismatch.patch
patches.drivers/pci-0031-Cardbus-cards-hidden-needs-pci-assign-busses-to-fix.patch
patches.drivers/pci-0032-Move-pci_dev_put-outside-a-spinlock.patch
patches.drivers/pci-0041-Provide-a-boot-parameter-to-disable-MSI.patch
patches.drivers/pci-hotplug-sn-fix-cleanup-on-hotplug-removal-of-ppb.patch
patches.drivers/pci-delete-ACPI-hook-from-pci_set_power_state.patch
patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch
patches.fixes/pci-turn-pci_fixup_video-into-generic-for-embedded-vga.patch
patches.fixes/acpiphp-fix-ibm-hotplug-oops.patch
patches.fixes/shpchp_serialization_fix.patch
patches.fixes/shpchp_hotplug_parameters_fix.patch
patches.fixes/shpchp-remove-cmd_busy.patch
patches.drivers/pciehp-ia64-make-pci-express-support-selectable.patch
patches.drivers/pciehp-fix-programming-hotplug-parameters.patch
patches.drivers/pciehp-replace-pci_find_slot-with-pci_get_slot.patch
patches.drivers/pciehp-add-missing-pci_dev_put.patch
patches.drivers/pciehp-fix-wrong-return-value.patch
patches.drivers/pciehp-fix-improper-info-messages.patch
patches.drivers/pciehp-add-missing-locking.patch
patches.drivers/pciehp-remove-unnecessary-pci_disable_msi.patch
patches.drivers/pciehp-remove-unnecessary-free_irq.patch
patches.drivers/pcie-pm-quirk.patch
patches.fixes/pci-pcieport-driver-remove-invalid-warning-message.patch
patches.drivers/pci-quirk-1k-i-o-space-iobl_adr-fix-on-p64h2.patch
patches.drivers/ati-rs400_200-480-disable-msi
patches.drivers/pci-hotplug-acpiphp-remove-hot-plug-parameter-write-to-pci-host-bridge.patch
patches.drivers/pci-hotplug-acpiphp-avoid-acpiphp-cannot-get-bridge-info-pci-hotplug-failure.patch
patches.fixes/msi-save-restore-for-suspend-resume.patch
patches.fixes/acpi_pci_hotplug_poweroff.patch
########################################################
# sysfs / driver core
########################################################
# make debugging easier
patches.drivers/sysfs-crash-debugging.patch
patches.fixes/sysfs-check-for-existing-dir
patches.fixes/wait_for_sysfs_population.diff
# EXPORT_SYMBOL_GPL_FUTURE
patches.drivers/clean-up-module.c-symbol-searching-logic.patch
patches.drivers/export_symbol_gpl_future.patch
patches.drivers/export_symbol_gpl_future-rcu.patch
patches.drivers/export_symbol_gpl_future-usb.patch
patches.fixes/increase-firmware-loader-timeout.patch
########################################################
# USB
########################################################
# make debugging easier
patches.drivers/always-announce-new-usb-devices.patch
# from 2.6.17
patches.drivers/usb-0037-Pegasus-Linksys-USBVPN1-support-cleanup.patch
patches.drivers/usb-0058-cypress_m8-add-support-for-the-Nokia-ca42-version-2-cable.patch
patches.drivers/usb-0059-PL2303-and-TIOCMIWAIT.patch
patches.drivers/usb-0060-support-for-USB-to-serial-cable-from-Speed-Dragon-Multimedia.patch
patches.drivers/usb-0072-add-support-for-Creativelabs-Silvercrest-USB-keyboard.patch
patches.drivers/usb-0076-cp2101-add-new-device-IDs.patch
patches.drivers/usb-0077-ftdi_sio-add-Icom-ID1-USB-product-and-vendor-ids.patch
patches.drivers/usb-0080-serial-add-navman-driver.patch
patches.drivers/usb-unplug-usbkb-from-hub.patch
patches.drivers/usb-add-driver-for-funsoft-usb-serial-device.patch
patches.drivers/usb-add-raritan-kvm-usb-dongle-to-the-hid_quirk_noget-blacklist.patch
patches.drivers/hci_usb-ISOC-blacklist.patch
# from 2.6.20
patches.drivers/usb-airprime-option-2.6.20.patch
patches.drivers/usb-sierra-2.6.20.patch
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
patches.fixes/pwc_dos.patch
########################################################
# I2C
########################################################
########################################################
# 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
##########################################################
# Bluetooth
##########################################################
patches.fixes/bluetooth-setsockopt-leak.diff
##########################################################
# Sound
##########################################################
patches.drivers/alsa-git-post-2.6.16-rc1-git6
patches.drivers/alsa-dmx6fire-fix
patches.drivers/alsa-bt848-winfast-tv2000xp-fix
patches.drivers/alsa-ad1816a-trigger-fix
patches.drivers/alsa-ppc-screamer-endian-workaround
patches.drivers/sound-oss-kconfig-fix
patches.drivers/alsa-ice1712-delta1010lt-spdif-fix
patches.drivers/alsa-ice1712-delta1010lt-spdif-fix2
patches.drivers/alsa-fix-enable-option-check
patches.drivers/alsa-pause-ioctl-fix
patches.drivers/alsa-virmidi-sleep-in-atomic
patches.drivers/alsa-fix-cs4236-typo
patches.drivers/alsa-disconnect-return-enodev
patches.drivers/alsa-cs5535-delay-fix
patches.drivers/alsa-emu10k1-audigy4-sb0400
patches.drivers/alsa-fix-emu10k1-null-reference
patches.drivers/alsa-fix-vx-memory-leak
patches.drivers/alsa-bt87x-add-blacklist
patches.drivers/alsa-make-control-suspend-aware
patches.drivers/alsa-fix-memleaks
patches.drivers/alsa-ac97-static-volume
patches.drivers/alsa-ac97-static-volume-fix
patches.drivers/alsa-nm256-fix-lockup
patches.drivers/alsa-ac97-cleanup-obsolete-workaround
patches.drivers/alsa-ice1712-module-option-typo-fix
patches.drivers/alsa-ice1712-aureon-enum-fix
patches.drivers/alsa-ice1712-dmx6fire-switch-fix
patches.drivers/alsa-maestro3-misc-fixes
patches.drivers/alsa-cs4281-probe-fix
patches.drivers/alsa-usbmixer-resolution-fix
# post-code10-RC2
patches.drivers/alsa-thinkpad41p-add-blacklist
patches.drivers/alsa-control-warning-fix
# SLES10-SP1 patches
patches.drivers/alsa-sp1-misc-fixes
patches.drivers/alsa-sp1-pci-quirk
patches.drivers/alsa-sp1-intel8x0-update
patches.drivers/alsa-sp1-via82xx-update
patches.drivers/alsa-sp1-atiixp-update
patches.drivers/alsa-sp1-hda-update
patches.drivers/alsa-sp1-usb-audio-update
patches.drivers/alsa-sp1-beta2-hda-fixes
patches.drivers/alsa-sp1-beta2-usbaudio-fixes
patches.drivers/alsa-sp1-beta4-sound-core-fix
patches.drivers/alsa-sp1-beta4-sound-pci-fix
patches.drivers/alsa-sp1-beta4-ac97-fix
patches.drivers/alsa-sp1-beta4-hda-fix
patches.drivers/alsa-sp1-beta4-usbaudio-fix
patches.drivers/alsa-sp1-beta5-hda-fix
patches.drivers/alsa-sp1-beta5-misc-fix
patches.drivers/alsa-sp1-beta6-pci-fix
patches.drivers/alsa-sp1-beta6-hda-fix
# post SP1 fixes
patches.drivers/alsa-post-sp1-hda-analog-update
patches.drivers/alsa-post-sp1-hda-conexant-fixes
patches.drivers/alsa-post-sp1-hda-sigmatel-pin-fix
patches.fixes/alsa-convert-snd-page-alloc-proc-file-to-use-seq_file
########################################################
# 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.suse/8250-sysrq-ctrl_o.patch
########################################################
# device-mapper
########################################################
patches.fixes/dm-blk_cleanup_queue.diff
patches.fixes/dm-snapshot-fix-origin_write-pe-submission.patch
patches.fixes/dm-snapshot-replace-sibling-list.patch
patches.fixes/dm-snapshot-fix-pending-pe-ref.patch
patches.fixes/dm-snapshot-fix-invalidation.patch
patches.fixes/dm-mirror-inconsistent-recovery-fix.diff
patches.fixes/dm-tidy-mdptr.diff
patches.fixes/dm-table-store-md.diff
patches.fixes/dm-store-geometry.diff
patches.fixes/dm-snapshot-unify-chunk_size.diff
patches.fixes/idr_replace.diff
patches.fixes/dm-use-idr_replace.diff
patches.fixes/dm-idr_pre_get-ordering.diff
patches.fixes/dm-use-spinlock.diff
patches.fixes/dm-DMF_FREEING.diff
patches.fixes/dm-proper-refcounting.diff
patches.fixes/dm-module-refcount.diff
patches.fixes/dm-initialize-ordering.diff
patches.fixes/dm-mirror-sector-size-fix.diff
patches.fixes/dm-mirror-refactor-context.diff
patches.fixes/dm-mirror-bitset_size-fix.diff
patches.fixes/dm-mirror-sync_count-fix.diff
patches.fixes/dm-kcopyd-error-accumulation-fix.patch
patches.fixes/dm-table-split_args-handle-no-input.diff
patches.fixes/dm-prevent-removal-if-open.diff
patches.fixes/dm-fix-alloc_dev-error_path.patch
patches.fixes/dm-snapshot-fix-metadata-error-handling.patch
patches.fixes/dm-snapshot-fix-metadata-writing-when-suspending.patch
patches.fixes/dm-snapshot-tidy_snapshot_map.diff
patches.fixes/dm-snapshot-tidy_pending_complete.diff
patches.fixes/dm-snapshot-add_workqueue.diff
patches.fixes/dm-snapshot-tidy_pe_ref_counting.diff
patches.fixes/dm-snapshot-fix_free_pending_exception.diff
patches.fixes/dm-suspend-resume-events
patches.fixes/dm-use-private-biosets.diff
patches.fixes/dm-fix-find_device-race.diff
patches.fixes/dm-suspend-error-path.diff
patches.fixes/dm-mirror-wait-for-io-suspend.diff
patches.fixes/dm-io-bi_max_vecs-fix.diff
patches.fixes/dm-mirror-sync_search-on-resume.diff
# patches below are not upstream
patches.fixes/dm_check_device_area.diff
patches.fixes/dm-merge-max_hw_sector.diff
patches.fixes/dm-snapshot-release-memory-if-invalid.patch
patches.fixes/dm-mpath-default-to-scsi-err-handler.patch
patches.fixes/bio-sense-data.patch
patches.fixes/dm-mpath-hw-handler-sense-data.patch
# dm-netlink
patches.drivers/dm_netlink_part1.diff
patches.drivers/dm_netlink_part2.diff
patches.drivers/dm_netlink_part3.diff
patches.fixes/dm-netlink-fixes
# Additional hardware handlers
patches.fixes/dm-mpath-hp-sw.patch
patches.fixes/dm-mpath-rdac.patch
patches.fixes/rdac_ds4000_failover.patch
patches.fixes/dm-mpath-rdac-fixups
patches.fixes/dm-queue-flag-cluster
patches.fixes/dm-mpath-revalidate-disk.patch
patches.fixes/dm-fix-page_len-parameter-for-MODE-SELECT-10-command
patches.fixes/dm-rename-function
patches.fixes/dm-extract-pg_init-functionality
patches.fixes/dm-add-private-info-for-endio
patches.fixes/dm-retry-mode-select
patches.fixes/dm-inquiry-to-get-current-owner
patches.fixes/dm-commonize-inquiry-get-functionality
patches.fixes/dm-serialize-mode-selects
patches.fixes/dm-made-MODE_SELECT_10-default
patches.fixes/dm-submit-MODE-SELECTs-per-lun
patches.fixes/dm-Cleancp
patches.fixes/dm-mpath-conditionally-update-devsize
patches.fixes/dm-mpath-add-status-callback
patches.fixes/dm-mpath-rdac-avt-support
########################################################
# 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.fixes/md-bitmap-compat-ioctl
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_raid1_dont_clear_bits_on_resync_abort
patches.fixes/md-avoid-bitmap-overflow
+neilb patches.fixes/md-raid1-failfast
########################################################
# 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
########################################################
# 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-utime-flush
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
-sp2 patches.fixes/nfs-flock-locking
patches.fixes/nfsd-filldir-64bit
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
########################################################
# 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
-sp2 patches.suse/lockd-h_monitored
-sp2 patches.suse/lockd-consolidate-notify
-sp2 patches.suse/lockd-host-lookup-name
-sp2 patches.suse/lockd-nsm-handle
-sp2 patches.suse/lockd-cleanup
-sp2 patches.suse/lockd-nsm-reboot
-sp2 patches.suse/lockd-nsm-upcalls
-sp2 patches.suse/lockd-host-list
-sp2 patches.suse/lockd-traverse-rewrite
-sp2 patches.suse/lockd-nlm-destroy-host
-sp2 patches.suse/lockd-invalidate-all
-sp2 patches.suse/lockd-use-hostnames
-sp2 patches.suse/lockd-atomic-cookies
-sp2 patches.suse/lockd-grant-cookies
-sp2 patches.suse/lockd-nsm_local_state
-sp2 patches.suse/lockd-force-rebind-fix
-sp2 patches.suse/lockd-block-list
-sp2 patches.suse/lockd-file-list
-sp2 patches.suse/lockd-nlm_block-grab-file-reference
+sp2 patches.suse/lockd-01-VFS-Fix-__posix_lock_file-copy-of-private-lock-ar.patch
+sp2 patches.suse/lockd-02-NLM-nlm_alloc_call-should-not-immediately-fail-on-s.patch
+sp2 patches.suse/lockd-03-lockd-Don-t-expose-the-process-pid-to-the-NLM-serve.patch
+sp2 patches.suse/lockd-04-SUNRPC-eliminate-rpc_call.patch
+sp2 patches.suse/lockd-05-lockd-clean-up-nlmsvc_lock.patch
+sp2 patches.suse/lockd-06-lockd-simplify-nlmsvc_grant_blocked.patch
+sp2 patches.suse/lockd-07-lockd-make-nlmsvc_lock-use-only-posix_lock_file.patch
+sp2 patches.suse/lockd-08-locks-remove-unused-posix_block_lock.patch
+sp2 patches.suse/lockd-09-locks-lockd-fix-race-in-nlmsvc_testlock.patch
+sp2 patches.suse/lockd-10-NFSD4-return-conflict-lock-without-races.patch
+sp2 patches.suse/lockd-11-lockd-Remove-FL_LOCKD-flag.patch
+sp2 patches.suse/lockd-12-lockd-posix_test_lock-should-not-call-locks_copy_.patch
+sp2 patches.suse/lockd-13-lockd-Fix-server-side-lock-blocking-code.patch
+sp2 patches.suse/lockd-14-lockd-Add-refcounting-to-struct-nlm_block.patch
+sp2 patches.suse/lockd-15-lockd-Clean-up-of-the-server-side-GRANTED-code.patch
+sp2 patches.suse/lockd-16-lockd-Make-nlmsvc_create_block-use-nlmsvc_lookup_.patch
+sp2 patches.suse/lockd-17-lockd-Make-lockd-use-rpc_new_client-instead-of-rp.patch
+sp2 patches.suse/lockd-18-lockd-stop-abusing-file_lock_list.patch
+sp2 patches.suse/lockd-19-lockd-Fix-Oopses-due-to-list-manipulation-errors.patch
+sp2 patches.suse/lockd-20-NLM-nlmclnt_cancel_callback-should-accept-NLM_LCK_D.patch
+sp2 patches.suse/lockd-21-NLM-Simplify-client-locks.patch
+sp2 patches.suse/lockd-22-NLM-Fix-nlmclnt_test-to-not-copy-private-part-of-lo.patch
+sp2 patches.suse/lockd-23-NLM-Add-nlmclnt_release_call.patch
+sp2 patches.suse/lockd-24-lockd-Add-helper-for-_RES-callbacks.patch
+sp2 patches.suse/lockd-25-lockd-Fix-a-typo-in-nlmsvc_grant_release.patch
+sp2 patches.suse/lockd-26-lockd-blocks-should-hold-a-reference-to-the-nlm_fil.patch
+sp2 patches.suse/lockd-27-LOCKD-nlmsvc_traverse_blocks-return-is-unused.patch
+sp2 patches.suse/lockd-28-LOCKD-Make-nlmsvc_traverse_shares-return-void.patch
+sp2 patches.suse/lockd-29-VFS-fs-locks.c-cleanup-locks_insert_block.patch
+sp2 patches.suse/lockd-30-VFS-fs-locks.c-NFSD4-add-race_free-posix_lock_fil.patch
+sp2 patches.suse/lockd-31-locks-don-t-panic.patch
+sp2 patches.suse/lockd-32-NLM-Fix-reclaim-races.patch
+sp2 patches.suse/lockd-33-Return-error-in-case-flock_lock_file-failure.patch
+sp2 patches.suse/lockd-34-locks-don-t-unnecessarily-fail-posix-lock-operati.patch
+sp2 patches.suse/lockd-35-locks-don-t-do-unnecessary-allocations.patch
+sp2 patches.suse/lockd-36-locks-clean-up-locks_remove_posix.patch
+sp2 patches.suse/lockd-37-vfs-add-lock-owner-argument-to-flush-operation.patch
+sp2 patches.suse/lockd-38-VFS-Allow-caller-to-determine-if-BSD-or-posix-locks.patch
+sp2 patches.suse/lockd-39-NLM-NFSv4-Don-t-put-UNLOCK-requests-on-the-wire-unl.patch
+sp2 patches.suse/lockd-40-VFS-Add-support-for-the-FL_ACCESS-flag-to-flock_loc.patch
+sp2 patches.suse/lockd-41-NLM-NFSv4-Wait-on-local-locks-before-we-put-RPC-cal.patch
+sp2 patches.suse/lockd-42-NLM-lockd-remove-b_done.patch
+sp2 patches.suse/lockd-43-LOCKD-Fix-a-deadlock-in-nlm_traverse_files.patch
+sp2 patches.suse/lockd-44-knfsd-hide-use-of-lockd-s-h_monitored-flag.patch
+sp2 patches.suse/lockd-45-knfsd-consolidate-common-code-for-statd-lockd-no.patch
+sp2 patches.suse/lockd-46-knfsd-when-looking-up-a-lockd-host-pass-hostname.patch
+sp2 patches.suse/lockd-47-knfsd-lockd-introduce-nsm_handle.patch
+sp2 patches.suse/lockd-48-knfsd-misc-minor-fixes-indentation-changes.patch
+sp2 patches.suse/lockd-49-knfsd-lockd-Make-nlm_host_rebooted-use-the-nsm_h.patch
+sp2 patches.suse/lockd-50-knfsd-lockd-make-the-nsm-upcalls-use-the-nsm_han.patch
+sp2 patches.suse/lockd-51-knfsd-lockd-make-the-hash-chains-use-a-hlist_nod.patch
+sp2 patches.suse/lockd-52-knfsd-lockd-Change-list-of-blocked-list-to-list_.patch
+sp2 patches.suse/lockd-53-knfsd-change-nlm_file-to-use-a-hlist.patch
+sp2 patches.suse/lockd-54-knfsd-lockd-make-nlm_traverse_-more-flexible.patch
+sp2 patches.suse/lockd-55-knfsd-lockd-Add-nlm_destroy_host.patch
+sp2 patches.suse/lockd-56-knfsd-simplify-nlmsvc_invalidate_all.patch
+sp2 patches.suse/lockd-57-knfsd-lockd-optionally-use-hostnames-for-identif.patch
+sp2 patches.suse/lockd-58-knfsd-make-nlmclnt_next_cookie-SMP-safe.patch
+sp2 patches.suse/lockd-59-knfsd-match-GRANTED_RES-replies-using-cookies.patch
+sp2 patches.suse/lockd-60-knfsd-export-nsm_local_state-to-user-space-via-sy.patch
+sp2 patches.suse/lockd-61-knfsd-lockd-fix-use-of-h_nextrebind.patch
+sp2 patches.suse/lockd-62-knfsd-lockd-fix-refount-on-nsm.patch
+sp2 patches.suse/lockd-63-knfsd-Fix-bug-in-recent-lockd-patches-that-can-ca.patch
+sp2 patches.suse/lockd-64-knfsd-Allow-lockd-to-drop-replies-as-appropriate.patch
+sp2 patches.suse/lockd-65-NLM-Fix-double-free-in-__nlm_async_call.patch
+sp2 patches.suse/lockd-66-locks-trivial-removal-of-unnecessary-parentheses.patch
+sp2 patches.suse/lockd-67-locks-create-posix-to-flock-helper-functions.patch
+sp2 patches.suse/lockd-68-NLM-Shrink-the-maximum-request-size-of-NLM4-request.patch
+sp2 patches.suse/lockd-69-locks-make-lock-release-private-data-before-retur.patch
+sp2 patches.suse/lockd-70-locks-give-posix_test_lock-same-interface-as-lock.patch
+sp2 patches.suse/lockd-71-locks-factor-out-generic-filesystem-switch-from-tes.patch
+sp2 patches.suse/lockd-72-locks-factor-out-generic-filesystem-switch-from-set.patch
+sp2 patches.suse/lockd-73-locks-allow-vfs-posix-_lock_file-to-return-conflic.patch
+sp2 patches.suse/lockd-74-locks-add-lock-cancel-command.patch
+sp2 patches.suse/lockd-75-locks-add-fl_grant-callback-for-asynchronous-lock-r.patch
+sp2 patches.suse/lockd-76-lockd-save-lock-state-on-deferral.patch
+sp2 patches.suse/lockd-77-lockd-handle-fl_grant-callbacks.patch
+sp2 patches.suse/lockd-78-lockd-pass-cookie-in-nlmsvc_testlock.patch
+sp2 patches.suse/lockd-79-lockd-handle-test_lock-deferrals.patch
+sp2 patches.suse/lockd-80-lockd-always-preallocate-block-in-nlmsvc_lock.patch
+sp2 patches.suse/lockd-81-lockd-add-code-to-handle-deferred-lock-requests.patch
+sp2 patches.suse/lockd-82-locks-fix-F_GETLK-regression-failure-to-find-confl.patch
+sp2 patches.suse/lockd-83-NLM-don-t-use-CLONE_SIGHAND-in-nlmclnt_recovery.patch
+sp2 patches.suse/lockd-84-locks-clean-up-lease_alloc.patch
+sp2 patches.suse/lockd-85-locks-share-more-common-lease-code.patch
+sp2 patches.suse/lockd-86-locks-rename-lease-functions-to-reflect-locks.c-con.patch
+sp2 patches.suse/lockd-87-locks-provide-a-file-lease-method-enabling-cluster.patch
+sp2 patches.suse/lockd-88-locks-export-setlease-to-filesystems.patch
+sp2 patches.suse/lockd-89-locks-make-posix_test_lock-interface-more-consist.patch
+sp2 patches.suse/lockd-90-locks-fix-vfs_test_lock-comment.patch
+sp2 patches.suse/lockd-91-rename-setlease-to-generic_setlease.patch
# kernel statd:
patches.suse/sunrpc-register-multiple
patches.suse/lockd-switchable-statd
-sp2 patches.suse/lockd-kernel-statd
+sp2 patches.suse/lockd-kernel-statd-sp2
patches.suse/lockd-suse-config
-sp2 patches.fixes/lockd-async-callback
-sp2 patches.fixes/lockd-find-block-fix
-sp2 patches.fixes/statd-more-bugs
-sp2 patches.fixes/statd-refcount-fix
patches.fixes/statd-regular-gc
patches.fixes/lockd-chroot-fix
# 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
########################################################
# 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
########################################################
# 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
########################################################
# 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
########################################################
# 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
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
########################################################
# OCFS2 and patches to enable userspace clustering
########################################################
patches.suse/ocfs2-1.2-svn-branch.diff
patches.suse/ocfs2-1.2-svn-r2973.diff
patches.suse/ocfs2-1.2-svn-r2981.diff
patches.fixes/ocfs2-dlm-fix_typo_in_deref # r2985
patches.fixes/dlm-fix_purge_lockres.patch # r2986
patches.fixes/dlm-fix_empty_lockres.patch # r2987
patches.suse/ocfs2-expose-o2nm_cluster.diff # r2888
patches.suse/ocfs2-configurable-timeout.patch #r2989
patches.suse/ocfs2-timeout-protocol.patch # r2990
patches.fixes/ocfs2-1.2-svn-r2992.diff
patches.fixes/ocfs2-1.2-svn-r2993.diff
patches.fixes/ocfs2-1.2-svn-r2994.diff
patches.fixes/ocfs2-1.2-svn-r2995.diff
patches.fixes/ocfs2-1.2-svn-r2996.diff
patches.fixes/ocfs2-1.2-svn-r2997.diff
patches.fixes/ocfs2-1.2-svn-r3027.diff
patches.suse/ocfs2-1.2-shim-removal.diff
patches.suse/ocfs2-1.2-svn-version.diff
patches.fixes/ocfs2-network-send-lock.diff
patches.fixes/ocfs2-loop-aops-hack.diff
patches.fixes/ocfs2-1.2-use-kernel-restart.diff
patches.suse/ocfs2-panic-on-fence-default.diff
patches.suse/ocfs2-00-masklog-uml-fix.diff
patches.suse/ocfs2-00-nodemanager-failure.diff
patches.suse/ocfs2-01-event-driven-quorum.diff
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-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-12-incorporate-disk-heartbeat.diff
patches.suse/ocfs2-13-fix-quorum-work.diff
########################################################
# Other filesystem driver patches
########################################################
patches.fixes/fat-2.6.20-direct_IO_fix.diff
patches.fixes/udf-readahead-fix.diff
########################################################
# 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/fix-kauditd_thread-return-value
########################################################
# AppArmor
########################################################
patches.suse/apparmor
patches.suse/apparmor-mmapexec.patch
patches.suse/apparmor-secureexec.patch
patches.suse/apparmor-auditgetprocattr.patch
patches.suse/apparmor-auditcaps.patch
patches.suse/apparmor-capcache.patch
patches.suse/apparmor-complain-link-messages.patch
patches.suse/apparmor_audit
patches.suse/apparmor_namespacesem
########################################################
# 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
########################################################
# 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
########################################################
# 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.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
########################################################
# You'd better have a good reason for adding a patch
# below here.
########################################################
# 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
########################################################
# XEN architecture, version 3
########################################################
# xen patches, from xenbits mercurial repository.
# http://xenbits.xensource.com/ext/linux-2.6-merge.hg
#
# everything named "xen3-auto-*" is auto-generated.
# PLEASE DON'T EDIT THESE PATCHES. Create fixup patches
# on top of them instead. This reduces workload when
# re-basing to a newer xen tree.
# split out patches
patches.xen/git-2efe55a9cec8418f0e0cde3dc3787a42fddc4411.patch
patches.xen/git-2a8a3d5b65e86ec1dfef7d268c64a909eab94af7.patch
patches.xen/git-3566561bfadffcb5dbc85d576be80c0dbf2cccc9.patch
patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch
patches.xen/git-4bfaaef01a1badb9e8ffb0c0a37cd2379008d21f.patch
patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch
patches.xen/blktap-aio-16_03_06.patch
patches.xen/fix-hz-suspend.patch
patches.xen/fix-ide-cd-pio-mode.patch
patches.xen/i386-mach-io-check-nmi.patch
patches.xen/net-csum.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-5-rcv-mss.patch
patches.xen/net-gso-6-linear-segmentation.patch
patches.xen/pmd-shared.patch
patches.xen/rename-TSS_sysenter_esp0-SYSENTER_stack_esp0.patch
patches.xen/smp-alts.patch
patches.xen/tpm_plugin_2.6.17.patch
patches.xen/xenoprof-generic.patch
patches.xen/x86-put-note-sections-into-a-pt_note-segment-in-vmlinux.patch
patches.xen/x86_64-put-note-sections-into-a-pt_note-segment-in-vmlinux.patch
patches.xen/git-dbaab49f92ff6ae6255762a948375e4036cbdbd2.patch
patches.xen/x86-elfnote-as-preprocessor-macro.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-um.diff
patches.xen/xen3-auto-arch-x86_64.diff
# newer changeset backports
patches.xen/14463-x86_64-start_pfn-init.patch
patches.xen/14668-x86_64-feature-init.patch
patches.xen/14714-x86_64-no-rflags-init.patch
patches.xen/14921-x86_64-feature-check.patch
patches.xen/14987-blkif-id-u64.patch
patches.xen/15130-x86_64-vsyscall-user.patch
patches.xen/15181-dma-tracking.patch
patches.xen/30-bit-field-booleans.patch
patches.xen/42-freeze.patch
patches.xen/65-monotonic-time.patch
patches.xen/68-clock-clipping.patch
patches.xen/79-balloon-highmem.patch
patches.xen/80-blk-teardown.patch
patches.xen/81-clock-was-set.patch
+sp2 patches.xen/82-blkdev-wait.patch
patches.xen/93-swiotlb.patch
patches.xen/95-privcmd-wrlock.patch
patches.xen/137-netfront-copy-release.patch
patches.xen/141-driver-autoload.patch
+sp2 patches.xen/144-xenbus-dev-wait.patch
patches.xen/145-xenbus-error-path.patch
patches.xen/148-blkfront-no-bounce-bufs.patch
patches.xen/152-netloop-check-cloned-skb.patch
# changes outside arch/{i386,x86_64}/xen
patches.xen/xen3-fixup-common
patches.xen/xen3-fixup-arch-i386
patches.xen/xen3-fixup-arch-um
patches.xen/xen3-fixup-arch-x86_64
-sp2 patches.xen/xen3-fixup-15181
# ports of other patches
patches.xen/xen3-patch-2.6.16.32-33
patches.xen/xen3-patch-2.6.16.49-50
patches.xen/xen3-x86_64-hotadd-pud
patches.xen/xen3-x86_64-compat-nr-syscalls
patches.xen/xen3-x86_64-hotadd-reserve
patches.xen/xen3-x86_64-srat-hotadd-reserve
patches.xen/xen3-x86_64-fix-die_lock-nesting
patches.xen/xen3-x86_64-add-nmi_exit-to-die_nmi
patches.xen/xen3-x86_64-call-function-single-export
patches.xen/xen3-kexec-x86_64-numa-fix-reserve_bootmem
patches.xen/xen3-fix-hpet-operation-on-32-bit-nvidia-platforms
patches.xen/xen3-fix-hpet-operation-on-64-bit-nvidia-platforms
patches.xen/xen3-pci-0029-resource-address-mismatch.patch
patches.xen/xen3-sysfs-crash-debugging.patch
+sles patches.xen/xen3-apic-timer-irq-delivery-dl760
+andrea patches.xen/xen3-silent-stack-overflow
patches.xen/xen3-lagrange-feature
patches.xen/xen3-amd-core-parsing
patches.xen/xen3-rename-e820-mapped
patches.xen/xen3-e820-all-mapped
patches.xen/xen3-x86_64-fix-page-align-in-e820-allocator
patches.xen/xen3-mapped-base
patches.xen/xen3-sles10_kprobes_backport
patches.xen/xen3-add-user-mode
patches.xen/xen3-i386-profile-pc
patches.xen/xen3-x86-pae-64bit-resource-fix
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-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-x86-amd-core-ids
patches.xen/xen3-x86_64-node-from-local-apic
patches.xen/xen3-x86_64-apic-large-dest
patches.xen/xen3-x86-amd-fam10-mwait
patches.xen/xen3-x86-fam10-cpuid
patches.xen/xen3-x86_64-cpa-flush-all
# bugfixes and enhancements
patches.xen/xen-no-multi-core-sched-opt
patches.xen/xen-acpi-nolapic
patches.xen/xen-balloon-min
patches.xen/xen-modular-blktap
patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-i386-panic-on-oops
patches.xen/xen-x86-kconfig-no-cpu_freq
patches.xen/xen-configurable-console
patches.xen/xen-x86_64-init-cleanup
patches.xen/xen-balloon-max-target
patches.xen/xen-x86-high_memory-early
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-consistent-nmi
patches.xen/xen-x86-no-lapic
patches.xen/xen-x86-no-ioapic-base
patches.xen/xen-no-video-select
patches.xen/xen-dma-bits
patches.xen/xen-swiotlb-highmem
patches.xen/xen-i386-pae-dump_fault_path
patches.xen/xen-x86_64-pte_free
patches.xen/xen-i386-highpte
patches.xen/xen-i386-no-kmap_types
patches.xen/xen-i386-pae-bits
patches.xen/xen-protocol-bimodal
patches.xen/xen-blkback-bimodal
patches.xen/xen-blkback-bimodal-suse
patches.xen/xen-blkfront-bimodal
patches.xen/xen-fbfront-bimodal
patches.xen/xen-pvfb-split-kbd-ptr
patches.xen/xen-console-default
patches.xen/xen-x86-panic-smp
patches.xen/xen-x86-pte-handling
patches.xen/xen-x86-mfn-valid-note
patches.xen/xen-x86-pgtable-cleanup
patches.xen/xen-blkif-protocol-fallback-hack
patches.xen/xen-split-pt-lock
patches.xen/xen-increase-loopback-devices
patches.xen/xen-netback-alloc
patches.xen/xen-intel-agp
patches.xen/xen-x86-performance
patches.xen/xen-multicall-check
patches.xen/xen-x86-pXX_val
patches.xen/xen-amd64-agp
patches.xen/xen-x86_64-physmap-nx
patches.xen/xen-i386-kconfig-msr
patches.xen/xen-blkback-cdrom
|