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
|
# 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.32.1
patches.kernel.org/patch-2.6.32.1-2
patches.kernel.org/patch-2.6.32.2-3
patches.kernel.org/patch-2.6.32.3-4
patches.kernel.org/patch-2.6.32.4-5
patches.kernel.org/patch-2.6.32.5-6
patches.kernel.org/patch-2.6.32.6-7
patches.kernel.org/patch-2.6.32.7-8
patches.kernel.org/patch-2.6.32.8-9
patches.kernel.org/patch-2.6.32.9-10
patches.kernel.org/patch-2.6.32.10-11
patches.kernel.org/patch-2.6.32.11-12
########################################################
# Build fixes that apply to the vanilla kernel too.
# They must be placed in patches.kernel.org to be
# picked up for the -vanilla flavor. This is cheating,
# since they're not actually upstream, but if the
# packages don't build, that's pretty useless too.
########################################################
patches.rpmify/psmouse-section-conflict.diff
patches.rpmify/ipmi-section-conflict.diff
patches.rpmify/md-section-conflict
patches.rpmify/gdth-section-conflict
patches.rpmify/arch-include-asm-fixes
patches.rpmify/arm-arch_include_asm-fix.diff
patches.rpmify/tsi148-dependency
patches.rpmify/staging-missing-sched.h
patches.rpmify/ia64-sn-fix-percpu-warnings
patches.rpmify/modpost-segfault
patches.rpmify/ppc-crashdump-typefix
########################################################
# kABI consistency patches
########################################################
patches.kabi/kabi-fix-up-struct-hrtimer_cpu_base-change.patch
patches.kabi/revert-2.6.32.12-b43
########################################################
#
# packaging-specific patches (tweaks for autobuild,
# CONFIG_SUSE_KERNEL, config/version tracking and other
# build stuff like that ...).
#
# Note that every patch in the patches.rpmify directory
# will be included in the vanilla package.
########################################################
patches.rpmify/firmware-path
patches.rpmify/no-include-asm
patches.rpmify/rpm-kernel-config
patches.rpmify/split-package
patches.rpmify/buildhost
patches.rpmify/cloneconfig.diff
########################################################
# kbuild/module infrastructure fixes
########################################################
patches.suse/supported-flag
patches.suse/supported-flag-sysfs
patches.suse/supported-flag-enterprise
patches.suse/kbuild-record-built-in-o
patches.fixes/kbuild-fix-generating-of-.symtypes-files
patches.suse/genksyms-add-override-flag.diff
patches.suse/kbuild-generate-modules.builtin
patches.suse/kconfig-automate-kernel-desktop
patches.fixes/kbuild-Really-don-t-clean-bounds.h-and-asm-offsets.h
patches.fixes/module-drop-the-lock-while-waiting-for-module-to-complete-initialization.patch
########################################################
# Simple export additions/removals
########################################################
patches.suse/reiser4-exports
patches.suse/kvm-as-kmp
patches.suse/export-release_open_intent
patches.suse/export-security_inode_permission
patches.suse/export-sync_page_range
########################################################
# Bug workarounds for binutils
########################################################
########################################################
# Scheduler / Core
########################################################
patches.suse/setuid-dumpable-wrongdir
patches.fixes/seccomp-disable-tsc-option
patches.suse/hung_task_timeout-configurable-default
patches.suse/sched-revert-latency-defaults
# bnc#560317
patches.fixes/sched-make-tunable-scaling-configurable
patches.fixes/sched-sysctl-for-normalized-tunables
patches.fixes/sched-cleanup-select_task_rq_fair
patches.fixes/sched-more-generic_WAKE_AFFINE
patches.fixes/sched-fix-vmark-regression
patches.fixes/sched-inline__percpu_counter_add.patch
patches.fixes/sched-cpuacct-percpu-counter-batch.patch
# writable limits
patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch
patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch
patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch
patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch
patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch
patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch
patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch
patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch
patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch
patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch
patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch
patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch
patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch
patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch
patches.suse/rlim-0018-core-split-sys_setrlimit.patch
patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch
patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch
patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch
patches.suse/rlim-0022-FS-proc-make-limits-writable.patch
patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch
patches.fixes/make-note_interrupt-fast.diff
patches.fixes/nohz-delay-from-tip.diff
patches.fixes/reuse-ktime-from-tip.diff
patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch
patches.fixes/fix_clock_gettime_vsyscall_time_warp.diff
patches.suse/cfq-turn-lowlatency-off-by-default.patch
patches.fixes/sched-fix-task-times_granularity.patch
patches.fixes/sched-time-define-nsecs_to_jiffies.patch
patches.fixes/sched-fix-cputime-monotonicity.patch
patches.suse/cgroup-disable-memcg-when-low-lowmem.patch
patches.fixes/kernel-mutex-adaptive-cpu-offline-livelock.patch
patches.fixes/spinning-mutex-BKL-deadlock.patch
patches.suse/revert-percpu-stable-changes.patch
# bug 598253
patches.fixes/kernel-core-add-pid_max-start-option.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.fixes/ia64-sparse-fixes.diff
patches.fixes/nr-irqs-file
patches.arch/mm-avoid-bad-page-on-lru
patches.arch/ia64-page-migration
patches.arch/ia64-page-migration.fix
patches.arch/ia64-page-migration-update
patches.fixes/taskstats-alignment
patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly
patches.fixes/ia64-select-mmu-notifier-for-sgi-xp.patch
patches.fixes/ia64-preserve-high-order-personality-bits
########################################################
# i386
########################################################
# amd64 | x86-64 | x86_64
# 'Intel(r) Extended Memory 64 Technology' | 'Intel(r) EM64T'
# x64
# Intel 64
# "the architecture with too many names"
# TAWTMN
########################################################
# x86_64/i386 biarch
########################################################
patches.arch/x86-hpet-pre-read
patches.arch/x86_64-hpet-64bit-timer.patch
patches.arch/add_support_for_hpet_msi_intr_remap.patch
patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch
patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch
patches.arch/x86-crypto-add-ghash-algorithm-test.patch
patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch
patches.arch/x86-mcp51-no-dac
patches.arch/kvm-split-paravirt-ops-by-functionality
patches.arch/kvm-only-export-selected-pv-ops-feature-structs
patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature
patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic
patches.arch/x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata
patches.arch/x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata
patches.arch/x86-64-add-comment-for-rodata-large-page-retainment
patches.suse/x86-mark_rodata_rw.patch
patches.arch/x86-ftrace-fix-rodata-1.patch
patches.arch/x86-ftrace-fix-rodata-2.patch
patches.arch/x86-ftrace-fix-rodata-3.patch
patches.fixes/dmar-fix-oops-with-no-dmar-table
# bug 564618
patches.arch/x86-Remove-the-CPU-cache-size-printks.patch
patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch
patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch
patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch
patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch
patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch
patches.arch/ACPI-Remove-repeated-registered-as-cooling_device-messages.patch
patches.fixes/x86_64_memory_hotplug_dev_mem.patch
patches.arch/x86-calgary-increase-max-phb-bus-num.patch
patches.fixes/x86_ioapic_fix_out_of_order_gsi.patch
patches.suse/x86-cacheline-size-128.patch
# bug 587669
patches.arch/x86-Reduce-per-cpu-warning-boot-up-messages.patch
# bug 588008
patches.arch/x86-pat-Update-page-flags-for-memtype-without-using-memtype_lock-V4.patch
# bug 592176
patches.arch/x86-MCE-fix-MSR_IA32_MCI_CTL2-CMCI-threshold-setup.patch
# bug 579639
patches.arch/intel-iommu-Dont-complain-that-ACPI_DMAR_SCOPE_TYPE_IOAPIC-is-not-supported.patch
########################################################
# x86 MCE/MCA (Machine Check Error/Architecture) extensions
########################################################
patches.arch/x86_mce_undef-lru
patches.arch/x86_mce_shake-page
patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch
patches.arch/x86_mce_hwpoison-no-double-ref.patch
patches.arch/x86_mce_ref-to-flags
patches.arch/x86_mce_hwpoison-is-free-page.patch
patches.arch/x86_mce_offline-inject
patches.arch/x86_mce_madvise-locking
patches.arch/x86_mce_page-offline
# one bug fix, better stress testing, and injection filters
patches.fixes/mce_injection_enhancements_9b9a29ecd75e310f75a9243e1c3538ad34598fcb
patches.fixes/mce_injection_enhancements_1668bfd5be9d8a52536c4865000fbbe065a3613b
patches.fixes/mce_injection_enhancements_db0480b3a61bd6ad86ead3b8bbad094ab0996932
patches.fixes/mce_injection_enhancements_71f72525dfaaec012e23089c73331654ea7b12d3
patches.fixes/mce_injection_enhancements_95d01fc664b9476e0d18e3d745bb209a42a33588
patches.fixes/mce_injection_enhancements_847ce401df392b0704369fd3f75df614ac1414b4
patches.fixes/mce_injection_enhancements_d95ea51e3a7e9ee051d19f1dd283ca61d1aa5ec6
patches.fixes/mce_injection_enhancements_138ce286eb6ee6d39ca4fb50516e93adaf6b605f
patches.fixes/mce_injection_enhancements_7c116f2b0dbac4a1dd051c7a5e8cef37701cafd4
patches.fixes/mce_injection_enhancements_31d3d3484f9bd263925ecaa341500ac2df3a5d9b
patches.fixes/mce_injection_enhancements_1a9b5b7fe0c5dad8a635288882d36785dea742f9
patches.fixes/mce_injection_enhancements_478c5ffc0b50527bd2390f2daa46cc16276b8413
patches.fixes/mce_injection_enhancements_e42d9d5d47961fb5db0be65b56dd52fe7b2421f1
patches.fixes/mce_injection_enhancements_d324236b3333e87c8825b35f2104184734020d35
patches.fixes/mce_injection_enhancements_4fd466eb46a6a917c317a87fb94bfc7252a0f7ed
patches.fixes/mce_injection_enhancements_1bfe5febe34d2be2120803c10720e179186357c9
patches.fixes/mce_injection_enhancements_413f9efbc513d330f00352bb7cba060a729999d3
patches.fixes/mce_injection_enhancements_fe194d3e100dea323d7b2de96d3b44d0c067ba7a
patches.fixes/mce_injection_enhancements_0474a60ec704324577782b1057d05b574388d552
patches.fixes/mce_injection_enhancements_0d57eb8dfcb92e3dd928d792f4ed2b2fec680bb7
patches.fixes/mce_injection_enhancements_12686d153abff397fa0927c620d5a3de84910b72
patches.fixes/mce_injection_enhancements_f2c03debdfb387fa2e35cac6382779072b8b9209
# Needed on Boxboro/Westmere-EX to correctly decode the physical
# address of correctable errors
patches.arch/x86_mce_intel_decode_physical_address.patch
patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch
patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch
# bug 587669
patches.arch/x86-Reduce-per-cpu-MCA-boot-up-messages.patch
########################################################
# x86_64/4096CPUS - from SGI
########################################################
patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch
########################################################
# x86 UV patches from SGI
########################################################
patches.arch/bug-561933_uv_pat_is_gru_range.patch
patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch
patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch
patches.arch/bug-561939_uv_gpa_is_mmr_space.patch
patches.arch/bug-561939_uv_rtc_fixes.patch
patches.arch/bug-561939_uv_rtc_setup_evt.patch
patches.arch/bug-561939_uv_rtc_cleanup.patch
patches.arch/bug-561939_uv_ipi_macro.patch
patches.arch/bug-561939_uv_mmap_low.patch
patches.arch/uv_determine_revision_id_of_node_controller_chip.patch
patches.arch/uv_use_replicated_cachelines_to_read_rtc.patch
# Generic, but depends on the above patches
patches.arch/bug-561946_rename_generic_int.patch
patches.arch/bug-561946_uv_use_rtc.patch
patches.arch/bug-561946_uv_irq_affinity.patch
patches.arch/bug-561946_uv_move_ioapic.patch
patches.arch/bug-561989_gru_rollup.patch
# bug 562288
patches.arch/xpc_introduce_xp_socket.patch
patches.arch/xpc_uv_bios_changes.patch
patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch
patches.arch/xpc_first_contact_when_active.patch
patches.arch/xpc_recv_msg_slots_wrap.patch
patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch
# bug 566745
patches.arch/UV-Expose-irq_desc-node-in-proc.patch
# bug 579636
patches.arch/x86-uv-fix-uv_hub_macro-bug.patch
# bug 579647
patches.arch/x86-UV-Add-UV-NMI-handler.patch
# bug 586364
patches.arch/x86-speed-up-microcode.ctl-on-SGI-UV.patch
# bug 587562
patches.arch/x86-uv-Update-UV-mmr-definitions-header-file.patch
# bug 587673
patches.arch/x86-UV-Fix-target_cpus-in-x2apic_uv_x.c.patch
# bug 586806
patches.arch/x86-UV-BAU-performance-and-error-recovery.patch
# bug 594131
patches.arch/tlb_uv_update2.patch
# bug 590585
patches.arch/x86-UV-Delete-unneeded-boot-messages.patch
########################################################
# x86_64/i386 depending on the UV patchset
########################################################
# bug 558247
patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch
patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch
patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch
patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch
patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch
patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch
patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch
patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch
patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch
patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch
patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch
########################################################
# powerpc/generic
########################################################
patches.suse/of_platform_driver.module-owner.patch
patches.suse/led_classdev.sysfs-name.patch
patches.suse/radeon-monitor-jsxx-quirk.patch
patches.suse/8250-sysrq-ctrl_o.patch
patches.suse/ppc-no-LDFLAGS_MODULE.patch
patches.arch/ppc-vio-modalias.patch
patches.arch/ppc-efika-mpc52xx-ac97.patch
patches.arch/ppc-efika-psc-console-autodetection.patch
- patches.arch/ppc-efika-bestcomm-ata-dma.patch
patches.arch/ppc-pegasos-console-autodetection.patch
patches.suse/ppc-powerbook-usb-fn-key-default.patch
patches.suse/suse-ppc32-mol.patch
patches.suse/suse-ppc32-mol-kbuild.patch
patches.suse/suse-ppc32-mol-handle-mm-fault
patches.suse/suse-ppc32-mol-ioctl
patches.suse/suse-ppc32-mol-get-property
patches.suse/suse-ppc32-mol-BIT
patches.suse/suse-ppc32-mol-sheep
patches.suse/suse-ppc32-mol-semaphore
patches.drivers/ppc64-adb
patches.suse/suse-ppc64-branding
patches.arch/ppc64-xmon-dmesg-printing.patch
patches.arch/ppc-prom-nodisplay.patch
patches.fixes/ptrace-getsiginfo
patches.arch/ppc-ipic-suspend-without-83xx-fix
patches.arch/ppc-vmcoreinfo.diff
patches.arch/ppc-select
patches.arch/ppc-extended_h_cede-kernel-dlpar
patches.arch/ppc-extended_h_cede-mv_of_drconf_cell
patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class
patches.arch/ppc-extended_h_cede-memory-dlpar
patches.arch/ppc-extended_h_cede-cpu-dlpar
patches.arch/ppc-extended_h_cede-new_cede_processor
patches.arch/ppc-extended_h_cede-add_offline_states
patches.arch/ppc-extended_h_cede-node_offline_online_cpus
patches.arch/ppc-extended_h_cede-add_driver_lock
patches.arch/ppc-extended_h_cede-update-to-mainline
patches.arch/ppc-extended_h_cede-fix-kstack-resume
patches.arch/ppc-pseries-mach-cpu-die-rearrange-code
patches.arch/ppc-pseries-mach-cpu-die-remove-debug-printk
patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo
patches.arch/ppc-pseries-ncpus-1
patches.arch/ppc-pseries-ncpus-2
patches.fixes/powerpc-eeh-fix-a-bug-when-pci-structure-is-null
patches.arch/powerpc-export-data-from-new-hcall-H_EM_GET_PARMS.patch
patches.arch/ppc-mark_preferred_offline_state_before_removing_cpus.patch
patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len
patches.arch/ppc-unmap_vmallocs_on_hotremove.patch
patches.arch/power7-type1-numa-affinity
patches.arch/ppc-pseries-cmm4kdump
########################################################
# PS3
########################################################
########################################################
# S/390
########################################################
patches.arch/s390-add-FREE_PTE_NR
patches.suse/s390-System.map.diff
patches.arch/s390-message-catalog.diff
patches.arch/s390-01-qeth-isolation.patch
patches.arch/s390-02-01-cex3-init-msg.patch
patches.arch/s390-02-02-cex3-special-command.patch
patches.arch/s390-02-03-cex3-device.patch
patches.arch/s390-02-04-cex3-use-def.patch
patches.arch/s390-02-05-zcrypt-speed-cex2c.patch
patches.arch/s390-02-06-zcrypt-speed-cex3.patch
patches.arch/s390-03-qeth-hs-traffic-analyzer.patch
patches.arch/s390-04-02-zcrypt-hrtimer.patch
patches.arch/s390-04-04-mm-fault-fix.patch
patches.arch/s390-04-05-sclp-dump-indicator.patch
patches.arch/s390-04-06-dasd-move-diag-kmsg.patch
patches.arch/s390-04-08-cio-fix-dev-stall.patch
patches.arch/s390-04-09-cio-recover-hw-changes.patch
patches.arch/s390-04-10-cio-fix-onoffline-failure.patch
patches.arch/s390-04-11-cio-error-reporting.patch
patches.arch/s390-04-13-cio-internal-io.patch
patches.arch/s390-04-14-cio-allow-offline.patch
patches.arch/s390-04-15-cio-split-pgid.patch
patches.arch/s390-04-16-cio-path-verification.patch
patches.arch/s390-04-17-cio-steal-lock.patch
patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch
patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch
patches.suse/s390-Kerntypes.diff
patches.arch/s390-05-02-cmm-suspend.patch
patches.arch/s390-05-03-iucv-suspend.patch
patches.arch/s390-05-04-zfcp-work-queue.patch
patches.arch/s390-05-05-zfcp-fail-commands.patch
patches.arch/s390-05-06-zfcp-adisc.patch
patches.arch/s390-05-07-zfcp-fsf-errors.patch
patches.arch/s390-05-08-zfcp-block.diff
patches.arch/s390-05-09-ctcm-suspend-wait.diff
patches.arch/s390-05-10-rework-tso.diff
patches.arch/s390-05-11-atomic-volatile.patch
patches.arch/s390-05-12-tape-remove-fn.patch
patches.arch/s390-05-13-qeth-blkt-defaults.patch
patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch
patches.arch/s390-05-16-dasd-wait-lcu-setup.patch
patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch
patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch
patches.arch/s390-07-03-cio-fix-vary-handling.patch
patches.arch/s390-07-04-dasd_online_offline_race.patch
patches.arch/s390-08-01-zfcp_port_dequeue_race.patch
patches.arch/s390-08-02-zfcp_fc_bsg_report_error.patch
patches.arch/s390-08-03-qdio-input-error.patch
patches.arch/s390-08-04-qdio-int_handler_warn.patch
patches.arch/s390-08-05-hvc-iucv-alloc-dma.patch
patches.arch/s390-09-01-vdso-version.patch
patches.arch/s390-09-02-dasd-fix_refcount.patch
patches.arch/s390-09-03-dasd-correct_offline_processing.patch
patches.arch/s390-09-04-qeth-no-online-recover.patch
patches.arch/s390-09-05-zfcp-ccw_fix_remove_list.patch
patches.arch/s390-09-06-qeth-dhcp.patch
patches.arch/s390-09-07-qeth-checksum-default.patch
patches.arch/s390-dasd-emc-ckd-psf-and-security.patch
patches.arch/s390-10-01-zfcpdump-lpar-registers.patch
patches.arch/s390-10-02-cio_fix_drvdata_usage_for_the_console_subchannel.patch
patches.arch/s390-10-03-dasd-fix-erp-tcw-alignment.patch
patches.arch/s390-11-01-zfcp-ccw_remove_lock_dep.patch
patches.arch/s390-11-02-zfcp-unit_add_lock_dep.patch
patches.arch/s390-11-03-zfcp_unit_remove_lock_dep.patch
patches.arch/s390-12-01_callhome.patch
patches.arch/s390-12-02-vmalloc.patch
patches.arch/s390-13-01-nss-add-previous-stmt.patch
patches.arch/s390-13-02-zcore-reipl-check.patch
patches.arch/s390-phys_device.patch
########################################################
# VM/FS patches
########################################################
patches.suse/unmap_vmas-lat
patches.suse/silent-stack-overflow-2.patch
patches.fixes/do_anonymous_page-race
patches.fixes/oom-warning
patches.suse/shmall-bigger
patches.fixes/grab-swap-token-oops
+needs_update-32 patches.suse/osync-error
patches.fixes/remount-no-shrink-dcache
patches.suse/reiser4-set_page_dirty_notag
patches.suse/file-capabilities-disable-by-default.diff
patches.suse/unlock_page-speedup.patch
patches.suse/mm-tune-dirty-limits.patch
patches.suse/mm-vmalloc-fail-dump-stack.patch
patches.suse/mm-devzero-optimisation.patch
patches.fixes/aggressive-zone-reclaim.patch
patches.suse/readahead-request-tunables.patch
patches.fixes/mm-memcg-coalesce-uncharge.patch
patches.fixes/mm-memcg-coalesce-charging.patch
# bug 578046
patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule.patch
patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule-build-fix.patch
patches.fixes/Fix-unmap_vma-bug-related-to-mmu_notifiers.patch
patches.fixes/mm-pagealloc-fix-congestion-wait.patch
patches.suse/mm-uninline-add-to-page-cache.patch
patches.suse/pagecache-limit.patch
patches.suse/pagecache-limit-shmem.diff
patches.fixes/mempolicy-fix-get_mempolicy-for-relative-and-static-nodes.patch
########################################################
# IPC patches
########################################################
patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch
patches.fixes/ipc-semc-sem-use-list-operations.patch
patches.fixes/ipc-semc-sem-preempt-improve.patch
patches.fixes/ipc-semc-optimize-if-semops-fail.patch
patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch
patches.fixes/ipc-semc-optimize-single-semop-operations.patch
patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch
patches.fixes/ipc-remove-unreachable-code-in-semc.patch
########################################################
# nfsacl protocol (agruen)
########################################################
+agruen patches.suse/nfsacl-client-cache-CHECK.diff
+agruen patches.fixes/nfs-acl-caching.diff
########################################################
# misc small fixes
########################################################
patches.suse/connector-read-mostly
patches.suse/kbd-ignore-gfx.patch
patches.fixes/ds1682-build-fix
########################################################
#
# ACPI patches
#
########################################################
patches.suse/apm_setup_UP.diff
# Check resource conflicts between hwmon and ACPI OpRegs
patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch
+trenn patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch
+jeffm patches.suse/add-initramfs-file_read_write
+jeffm patches.suse/init-move-populate_rootfs-back-to-start_kernel
+jeffm patches.suse/acpi-generic-initramfs-table-override-support
patches.arch/acpi_thermal_passive_blacklist.patch
patches.arch/acpi-export-hotplug_execute
+needs_update-32 patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch
# Adjust this patch for every new product (at least Enterprise
# level) to provide OEMs a safety break so that they can add
# for example SLE11 specific BIOS updates (if there is no other
# way to safely solve an ACPI issue).
+trenn patches.suse/acpi_osi_sle11_ident.patch
patches.arch/acpi_srat-pxm-rev-store.patch
patches.arch/acpi_srat-pxm-rev-ia64.patch
patches.arch/acpi_srat-pxm-rev-x86-64.patch
patches.arch/x86_cpu_hotplug_map_numa_node_correctly.patch
patches.arch/acpi_enable_C3_on_huge_latencies.patch
patches.fixes/acpi-fix-regression-where-_ppc-is-not-read-at-boot-even-when-ignore_ppc-0
########################################################
# CPUFREQ
########################################################
## cpuidle feature patch set still not consistent.
# patches.suse/cpuidle-cleanup
# patches.suse/cpuidle-implement-list
# patches.suse/cpuidle-cleanup-x86
# patches.suse/cpuidle-enable-pseries
# patches.suse/cpuidle-cleanup-pseries
# patches.suse/cpuidle-add-default-idle-ppc
# patches.suse/cpuidle-pseries-proc-idle
# patches.suse/cpuidle-eliminate-ppcmdpowersave1
# patches.suse/cpuidle-documentation
patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch
# PCC -> HP's cpufreq driver
patches.drivers/cpufreq_ondemand_limit_fix.patch
patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch
patches.drivers/cpufreq_processor_clocking_control_pcc_driver_cast_fix.patch
patches.fixes/bios_driven_exclude_firmware_error.patch
########################################################
# AGP, graphics related stuff
########################################################
patches.arch/x86_agpgart-g33-stoeln-fix-2.patch
########################################################
# Suse specific stuff
########################################################
# TIOCGDEV - suse special
patches.fixes/tiocgdev
+still_needed? patches.suse/mm-increase-dirty-limits.patch
patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch
patches.suse/stop_machine-implement-lazy
########################################################
# Networking, IPv6
########################################################
patches.fixes/bridge-module-get-put.patch
patches.fixes/gre-fix-netns-vs-proto-registration-ordering
patches.fixes/tunnels-fix-netns-vs-proto-registration-ordering
########################################################
# NFS
########################################################
patches.fixes/nfs-slot-table-alloc
patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch
patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch
patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch
patches.fixes/nfsd-09-fix-kabi
patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling
patches.fixes/sunrpc-monotonic-expiry
patches.fixes/nfs-bdi-leak.fix
patches.fixes/01-rnfs_read_complete_calc_rq_respages.patch
########################################################
# lockd + statd
########################################################
########################################################
# cifs patches
########################################################
########################################################
# ext2/ext3
########################################################
patches.suse/ext3-barrier-default
# patches.suse/ext2-fsync-err
patches.fixes/ext3-mark-super-uptodate
########################################################
# ext4
########################################################
########################################################
# Reiserfs Patches
########################################################
patches.fixes/reiserfs-replay-honor-ro
patches.suse/reiserfs-barrier-default
patches.fixes/reiserfs-fix-oops-while-creating-privroot-with-selinux-enabled
patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv
########################################################
# dlm
########################################################
patches.fixes/dlm-always-use-GFP_NOFS.patch
patches.fixes/dlm-fix-ordering-of-bast-and-cast.patch
patches.fixes/dlm-send-reply-before-bast.patch
patches.fixes/dlm-Send-lockspace-name-with-uevents.patch
patches.fixes/dlm-use-bastmode-in-debugfs-output.patch
########################################################
# ocfs2
########################################################
# ocfs2 fixes from 2.6.32
patches.fixes/ocfs2-always-include-acl-support.patch
patches.fixes/ocfs2-make-acl-use-the-default.patch
patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch
patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch
patches.fixes/ocfs2-refcounttree.c-cleanup.patch
patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch
patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch
patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch
patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch
patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch
patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch
patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch
patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch
patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch
patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch
patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch
patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch
patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch
patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch
patches.fixes/ocfs2-Handle-O_DIRECT-when-writing-to-a-refcounted-c.patch
patches.fixes/ocfs2-Fix-refcnt-leak-on-ocfs2_fast_follow_link-erro.patch
patches.fixes/ocfs2-Sync-max_inline_data_with_xattr-from-tools.patch
patches.fixes/ocfs2-fix-a-misleading-variable-name.patch
patches.fixes/ocfs2-trivial-Remove-trailing-whitespaces.patch
patches.fixes/ocfs2-dlm-Ignore-LVBs-of-locks-in-the-Blocked-list.patch
patches.fixes/ocfs2-dlm-Print-more-messages-during-lock-migration.patch
patches.suse/ocfs2-allocation-resrvations.patch
# ocfs2 fixes from 2.6.33
patches.fixes/ocfs2-Fix-memory-overflow-in-cow_by_page.patch
patches.fixes/ocfs2-Only-bug-out-when-page-size-is-larger-than-clu.patch
patches.fixes/ocfs2-dlm-Handle-EAGAIN-for-compatibility-v2.patch
patches.fixes/ocfs2-Use-compat_ptr-in-reflink_arguments.patch
patches.fixes/ocfs2-Fix-setting-of-OCFS2_LOCK_BLOCKED-during-bast.patch
patches.fixes/ocfs2-Prevent-a-livelock-in-dlmglue.patch
patches.fixes/ocfs2-Do-not-downconvert-if-the-lock-level-is-alread.patch
patches.fixes/ocfs2-Remove-overzealous-BUG_ON-during-blocked-lock-.patch
patches.fixes/ocfs2-Plugs-race-between-the-dc-thread-and-an-unlock.patch
patches.fixes/ocfs2-dlm-Remove-BUG_ON-in-dlm-recovery-when-freeing.patch
patches.fixes/ocfs2-Fix-contiguousness-check-in-ocfs2_try_to_merge.patch
patches.fixes/ocfs2-dlm-Fix-printing-of-lockname.patch
patches.fixes/ocfs2-cluster-Make-o2net-connect-messages-KERN_NOTIC.patch
patches.fixes/ocfs2-add-extent-block-stealing-for-ocfs2-v5.patch
patches.fixes/ocfs2-Clean-up-the-checks-for-CoW-and-direct-I-O.patch
patches.fixes/ocfs2-Add-current-comm-in-trace-output.patch
patches.fixes/ocfs2-Introduce-ocfs2_xa_loc.patch
patches.fixes/ocfs2-Remove-xattrs-via-ocfs2_xa_loc.patch
patches.fixes/ocfs2-Prefix-the-member-fields-of-struct-ocfs2_xattr.patch
patches.fixes/ocfs2-Add-a-name_len-field-to-ocfs2_xattr_info.patch
patches.fixes/ocfs2-Wrap-calculation-of-name-value-pair-size.patch
patches.fixes/ocfs2-Set-the-xattr-name-value-pair-in-one-place.patch
patches.fixes/ocfs2-Handle-value-tree-roots-in-ocfs2_xa_set_inline.patch
patches.fixes/ocfs2-Provide-ocfs2_xa_fill_value_buf-for-external-v.patch
patches.fixes/ocfs2-Teach-ocfs2_xa_loc-how-to-do-its-own-journal-w.patch
patches.fixes/ocfs2-Allocation-in-ocfs2_xa_prepare_entry-values-in.patch
patches.fixes/ocfs2-Gell-into-ocfs2_xa_set.patch
patches.fixes/ocfs2-Let-ocfs2_xa_prepare_entry-do-space-checks.patch
patches.fixes/ocfs2-Set-xattr-block-entries-with-ocfs2_xa_set.patch
patches.fixes/ocfs2-Set-inline-xattr-entries-with-ocfs2_xa_set.patch
patches.fixes/ocfs2-Handle-errors-while-setting-external-xattr-val.patch
patches.fixes/ocfs2_dlmfs-Add-capabilities-parameter.patch
patches.fixes/ocfs2_dlmfs-Use-poll-to-signify-BASTs.patch
patches.fixes/ocfs2_dlmfs-Move-to-its-own-directory.patch
patches.fixes/ocfs2-Pass-lksbs-back-from-stackglue-ast-bast-functi.patch
patches.fixes/ocfs2-Attach-the-connection-to-the-lksb.patch
patches.fixes/ocfs2-Hang-the-locking-proto-on-the-cluster-conn-and.patch
patches.fixes/ocfs2-Remove-the-ast-pointers-from-ocfs2_stack_plugi.patch
patches.fixes/ocfs2-Pass-the-locking-protocol-into-ocfs2_cluster_c.patch
patches.fixes/ocfs2_dlmfs-Don-t-honor-truncate.-The-size-of-a-dlmf.patch
patches.fixes/ocfs2_dlmfs-Use-the-stackglue.patch
patches.fixes/ocfs2_dlmfs-Enable-the-use-of-user-cluster-stacks.patch
patches.fixes/ocfs2-fix-warning-in-ocfs2_file_aio_write.patch
patches.fixes/ocfs2-Use-a-separate-masklog-for-AST-and-BASTs.patch
patches.fixes/ocfs2-userdlm-Add-tracing-in-userdlm.patch
patches.fixes/ocfs2-send-SIGXFSZ-if-new-filesize-exceeds-limit-v2.patch
patches.fixes/Ocfs2-Move-ocfs2-ioctl-definitions-from-ocfs2_fs.h-t.patch
patches.fixes/Ocfs2-Handle-deletion-of-reflinked-oprhan-inodes-cor.patch
patches.fixes/PATCH-Skip-check-for-mandatory-locks-when-unlocking.patch
patches.fixes/ocfs2-Update-i_blocks-in-reflink-operations.patch
patches.fixes/ocfs2-Fix-the-update-of-name_offset-when-removing-xa.patch
patches.fixes/ocfs2-Init-meta_ac-properly-in-ocfs2_create_empty_xa.patch
patches.fixes/ocfs2-Clear-undo-bits-when-local-alloc-is-freed.patch
patches.fixes/Ocfs2-Journaling-i_flags-and-i_orphaned_slot-when-ad.patch
patches.fixes/fs-ocfs2-cluster-tcp.c-remove-use-of-NIPQUAD-use-pI4.patch
patches.fixes/ocfs2-Fix-a-race-in-o2dlm-lockres-mastery.patch
patches.fixes/ocfs2_dlmfs-User-DLM_-when-decoding-file-open-flags.patch
patches.fixes/ocfs2-Check-the-owner-of-a-lockres-inside-the-spinlo.patch
# ocfs2 fixes from 2.6.34
patches.fixes/ocfs2-always-try-for-maximum-bits-with-new-local-all.patch
#bnc#592945
patches.fixes/ocfs2-Compute-metaecc-for-superblocks-during-online-.patch
#bnc#501563
patches.suse/ocfs2-clean-up-localalloc-mount-option-size-parsing.patch
patches.suse/ocfs2-increase-the-default-size-of-local-alloc-windo.patch
patches.suse/ocfs2-change-default-reservation-window-sizes.patch
patches.suse/ocfs2-Add-dir_resv_level-mount-option.patch
#bnc#591039
patches.fixes/ocfs2-avoid-direct-write-if-we-fall-back-to-buffered.patch
########################################################
# gfs2 read-only support for migration
########################################################
patches.suse/gfs2-ro-mounts-only.patch
patches.suse/gfs2-ro-fixes.patch
########################################################
# xfs
########################################################
patches.suse/xfs-dmapi-src
patches.suse/xfs-dmapi-enable
patches.suse/xfs-dmapi-xfs-enable
patches.suse/xfs-nfsd-dmapi-aware
patches.fixes/xfs-dmapi-fixes
patches.fixes/xfs-redirty-ENOSPC.patch
patches.fixes/xfs-export-debug
patches.xfs/xfs-reset-the-i_iolock-lock-class-in-the-reclaim-pat.patch
patches.xfs/xfs-use-WRITE_SYNC_PLUG-for-synchronous-writeout.patch
patches.xfs/xfs-remove-IO_ISAIO.patch
patches.xfs/xfs-simplify-xfs_buf_get-xfs_buf_read-interfaces.patch
patches.xfs/xfs-rename-xfs_attr_fetch-to-xfs_attr_get_int.patch
patches.xfs/xfs-uninline-xfs_get_extsz_hint.patch
patches.xfs/xfs-kill-the-STATIC_INLINE-macro.patch
patches.xfs/xfs-remove-incorrect-sparse-annotation-for-xfs_iget_.patch
patches.xfs/xfs-cleanup-dmapi-macros-in-the-umount-path.patch
patches.xfs/xfs-cleanup-bmap-extent-state-macros.patch
patches.xfs/xfs-change-the-xfs_iext_insert-xfs_iext_remove.patch
patches.xfs/xfs-improve-metadata-I-O-merging-in-the-elevator.patch
patches.xfs/xfs-kill-xfs_bmbt_rec_32-64-types.patch
patches.xfs/XFS-Free-buffer-pages-array-unconditionally.patch
patches.xfs/kill-I_LOCK.patch
patches.xfs/xfs-Remove-inode-iolock-held-check-during-allocation.patch
patches.xfs/xfs-fix-missing-error-check-in-xfs_rtfree_range.patch
# patches.xfs/xfs-cleanup-data-end-I-O-handlers.patch STILL NEEDED???
patches.suse/xfs-dmapi-re-add-flags-for-xfs_free_eofblocks
########################################################
# novfs
########################################################
patches.suse/novfs-client-module
patches.suse/novfs-fix-debug-message.patch
patches.fixes/novfs-err_ptr-fix.diff
patches.fixes/novfs-fix-inode-uid
patches.fixes/novfs-incorrect-filesize-fix
patches.fixes/novfs-truncate-fix
patches.fixes/novfs-fix-oops-in-scope-finding
patches.fixes/novfs-dentry-cache-limit.patch
patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir
patches.fixes/novfs-LFS-initialization
########################################################
# other filesystem stuff
########################################################
patches.suse/parser-match_string.diff
patches.suse/fs-may_iops.diff
patches.suse/fs-knows-MAY_APPEND.diff
patches.suse/nfs4acl-common.diff
patches.suse/nfs4acl-ext3.diff
patches.suse/nfs4acl-ai.diff
patches.fixes/zisofs-large-pagesize-read.patch
patches.fixes/mandatory-lock-test
########################################################
# Swap-over-NFS
########################################################
patches.suse/SoN-01-mm-setup_per_zone_wmarks.patch
patches.suse/SoN-02-doc.patch
patches.suse/SoN-03-mm-gfp-to-alloc_flags-expose.patch
patches.suse/SoN-04-page_alloc-reserve.patch
patches.suse/SoN-05-reserve-slub.patch
patches.suse/SoN-06-mm-kmem_estimate_pages.patch
patches.suse/SoN-07-mm-PF_MEMALLOC-softirq.patch
patches.suse/SoN-08-mm-page_alloc-emerg.patch
patches.suse/SoN-09-global-ALLOC_NO_WATERMARKS.patch
patches.suse/SoN-10-mm-page_alloc-GFP_EMERGENCY.patch
patches.suse/SoN-11-mm-reserve.patch
patches.suse/SoN-12-mm-selinux-emergency.patch
patches.suse/SoN-13-net-ps_rx.patch
patches.suse/SoN-14-net-sk_allocation.patch
patches.suse/SoN-15-netvm-reserve.patch
patches.suse/SoN-16-netvm-reserve-inet.patch
patches.suse/SoN-17-netvm-reserve-inet.patch-fix
patches.suse/SoN-18-netvm-skbuff-reserve.patch
patches.suse/SoN-19-netvm-sk_filter.patch
patches.suse/SoN-20-netvm-tcp-deadlock.patch
patches.suse/SoN-21-emergency-nf_queue.patch
patches.suse/SoN-22-netvm.patch
patches.suse/SoN-23-mm-swapfile.patch
patches.suse/SoN-24-mm-page_file_methods.patch
patches.suse/SoN-25-nfs-swapcache.patch
patches.suse/SoN-26-nfs-swapper.patch
patches.suse/SoN-27-nfs-swap_ops.patch
patches.suse/SoN-28-nfs-alloc-recursions.patch
patches.suse/SoN-29-fix-swap_sync_page-race
patches.suse/SoN-30-fix-uninitialized-var.patch
# dont want to rediff SoN until these get more testing
patches.suse/slab-memless-node-01-introduce-numa_mem_id.patch
patches.suse/slab-memless-node-02-slab-use-numa_mem_id.patch
patches.suse/slab-memless-node-03-ia64-memoryless-nodes.patch
patches.suse/slab-memless-node-04-kernel-profile-memoryless-nodes.patch
########################################################
# Netfilter
########################################################
patches.suse/netfilter-ipt_LOG-mac
patches.suse/netfilter-ip_conntrack_slp.patch
patches.fixes/fix-nf_conntrack_slp
patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning
patches.suse/netfilter-ipv4options
########################################################
#
# Device drivers
#
########################################################
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch
patches.drivers/reenable-generic_serial
patches.drivers/msi-wmi.patch
patches.fixes/fixup-section-annotations
########################################################
# Storage
########################################################
patches.fixes/block-blk_abort_request-lock-fix
# add genhd.mangle_minor parameter
patches.suse/block-add-mangle-devt-switch
# libata
patches.drivers/libata-add-waits-for-govault
patches.drivers/libata-unlock-hpa-by-default
patches.drivers/libata-prefer-over-ide
patches.drivers/libata-ata_piix-clear-spurious-IRQ
patches.drivers/libata-ahci-aspire-3810t-noncq
patches.drivers/libata-missing-_SDD-is-not-an-error
# Block layer fixes
patches.fixes/loop-update-mtime.patch
patches.fixes/scsi-inquiry-too-short-ratelimit
patches.suse/scsi-netlink-ml
# from scsi-misc
patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch
patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch
patches.suse/add-queue_depth-ramp-up-code.patch
patches.drivers/mpt-fusion-4.22.00.00-update
patches.drivers/hpsa
patches.drivers/hpsa-update
patches.drivers/hpsa-only-unmap-buffer-when-allocated
patches.fixes/scsi-introduce-helper-function-for-blocking-eh
patches.fixes/scsi-dh-queuedata-accessors
patches.fixes/scsi-dh-alua-retry-UA
patches.fixes/scsi-add-tgps-setting
patches.fixes/scsi-dh-alua-send-stpg
patches.fixes/scsi_dh-change-activate-interface
patches.fixes/scsi_dh-make-rdac-handler-asynchronous
patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous
patches.fixes/scsi_dh-make-alua-handler-asynchronous
patches.fixes/scsi-dh-emc-mode-select-10-size
patches.fixes/scsi-dh-emc-rw-mismatch
patches.fixes/scsi-dh-rdac-add-stk
patches.fixes/scsi-dh-rdac-add-ibm-174x
patches.fixes/scsi-retry-alua-transition-in-progress
patches.suse/fc-transport-allow-dev_loss_tmo-disable
patches.suse/blk-queue-unprep-fn
patches.suse/blk-add-atomic-abort-flag
patches.fixes/bsg-SG_IO-compat_ioctl
patches.fixes/scsi-allow-fc-lld-to-fast-fail-scsi-eh
patches.fixes/zfcp-pass-return-code-from-fc_block_scsi_eh-to-scsi_eh
patches.fixes/sd-no-read-cap16-if-not-supported
patches.fixes/sd-retry-readcap-on-ua
patches.fixes/scsi-check-host-lookup-failure
patches.drivers/aacraid-24701-update
patches.drivers/megaraid-04.12-update
patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update
patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update
patches.drivers/qla2xxx-8.03.01.03.11.1-k8-update
patches.drivers/qla2xxx-8.03.01.04.11.1-k8-update
patches.drivers/qla2xxx-8.03.01.05.11.1-k8-update
patches.drivers/megaraid-mbox-fix-SG_IO
patches.drivers/mpt2sas-03.100.03.00-update
patches.drivers/mpt2sas-04.100.01.00-update
patches.drivers/mpt2sas-04.100.01.02-update
patches.drivers/mpt2sas-04.100.01.03-update
patches.drivers/mpt2sas-base-map-resources
patches.drivers/bfa-2.1.2.1-update
patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch
patches.drivers/qla4xxx-5.01.00.00.11.01-k10_5.01.00.00.11.01-k11.patch
patches.drivers/qla4xxx-5.01.00.00.11.01-k11_5.01.00.00.11.01-k12.patch
patches.drivers/qla4xxx-5.01.00.00.11.01-k12_5.01.00.00.11.01-k13.patch
patches.drivers/qla4xxx-5.01.00.00.11.01-k13_5.01.00.00.11.01-k14.patch
patches.fixes/aic79xx-null-scb-in-nonpkt-busfree
patches.drivers/lpfc-8.3.5-update
patches.drivers/lpfc-8.3.5.3-update
patches.drivers/lpfc-8.3.5.4-update
patches.drivers/lpfc-8.3.5.5-update
patches.drivers/lpfc-8.3.5.6-update
patches.drivers/lpfc-8.3.5.7-update
patches.drivers/lpfc-8.3.5.8-update
patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch
patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout
patches.drivers/pmcraid-2.6.33-rc6-update
patches.drivers/qla1280-fallback-to-loaded-fw
patches.fixes/fc-transport-dev_loss_tmo-overflow
patches.drivers/megaraid-sas-04.27-update
patches.drivers/scsi-transport-sas-enable-tlr
patches.fixes/scsi-fixup-vpd-page-allocation
patches.fixes/fc-transport-make-sure-cmds-are-completed-for-offlined-rport
patches.fixes/ipr-strstrip-retval-fix
# Remaining SCSI patches (garloff)
patches.suse/scsi-error-test-unit-ready-timeout
patches.fixes/scsi-scan-blist-update
patches.fixes/proc-scsi-scsi-fix.diff
patches.fixes/scsi-ibmvscsi-show-config.patch
# bnc#362850
patches.fixes/sd_liberal_28_sense_invalid.diff
patches.fixes/scsi-ibmvscsi-module_alias.patch
patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly
# bug 578429
patches.fixes/cciss-remove-scan-thread.patch
patches.fixes/cciss-unmap-xfer-buffer-correctly
# bnc#598270
patches.fixes/ibmvscsi-add-barriers
patches.fixes/ibmvscsi-reduce-error-recovery-timeout
########################################################
# DRM/Video
########################################################
patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch
patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch
patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch
patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch
patches.drivers/drm-i915-fix-crt-hotplug-hang
patches.drivers/drm-i915-adhoc-disable-lid-detection
patches.drivers/drm-i915-Add-display-hotplug-event-on-Ironlake
patches.drivers/drm-i915-fix-eDP-pipe-mask
patches.drivers/drm-i915-fix-pixel-color-depth-setting-on-eDP
patches.drivers/drm-i915-parse-eDP-panel-color-depth-from-VBT-block
patches.drivers/drm-i915-Clear-TV-sense-state-bits-on-GM45
patches.drivers/drm-i915-IronLake-fix-VGA-output-at-S4
########################################################
# Network
########################################################
# Core networking
# Driver changes
patches.fixes/tulip-quad-NIC-ifdown
patches.suse/nameif-track-rename.patch
patches.fixes/tg3-fix-default-wol.patch
patches.drivers/ehea-modinfo.patch
patches.drivers/ehea-0102-0103-update
patches.fixes/tehuti-firmware-name
patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch
patches.drivers/s2io-fixing-dbg_print-macro.patch
# barton hills support bnc#557479
patches.drivers/igb-add-new-data-structure-for-handling-interrupts-a.patch
patches.drivers/igb-cleanup-interrupt-enablement-in-regards-to-msix_.patch
patches.drivers/igb-cleanup-some-of-the-code-related-to-hw-timestamp.patch
patches.drivers/igb-use-packet-buffer-sizes-from-RXPBS-register.patch
patches.drivers/igb-0001-add-support-for-the-82580-phy.patch
patches.drivers/igb-0002-Add-full-support-for-82580-devices.patch
patches.drivers/igb-0003-add-support-for-82580-MAC.patch
patches.drivers/igb-check-both-function-bits-in-status-register-in-w.patch
patches.drivers/igb-add-support-for-Intel-I350-Gigabit-Network-Conne.patch
patches.drivers/igb-Add-support-for-82576-ET2-Quad-Port-Server-Adapt.patch
# FATE#307117, bnc#556234
patches.drivers/tg3-Assign-flags-to-fixes-in-start_xmit_dma_bug.patch
patches.drivers/tg3-Fix-disappearing-57780-devices.patch
patches.drivers/tg3-Convert-PHY_ADDR-TG3_PHY_MII_ADDR.patch
patches.drivers/tg3-Prevent-a-PCIe-tx-glitch.patch
patches.drivers/tg3-Add-more-PCI-DMA-map-error-checking.patch
patches.drivers/tg3-Improve-5785-PCIe-performance.patch
patches.drivers/tg3-Add-AC131-power-down-support.patch
patches.drivers/tg3-5785-Set-port-mode-to-MII-when-link-down.patch
patches.drivers/tg3-Extend-loopback-test-timeout.patch
patches.drivers/tg3-Add-50610M-phy-ID-for-5785.patch
patches.drivers/broadcom-Isolate-phy-dsp-accesses.patch
patches.drivers/broadcom-Fix-slow-link-problem.patch
patches.drivers/broadcom-Consolidate-dev_flags-definitions.patch
patches.drivers/tg3-broadcom-Add-PHY_BRCM_CLEAR_RGMII_MODE-flag.patch
patches.drivers/tg3-broadcom-Refine-AC131-APD-support.patch
patches.drivers/tg3-broadcom-Add-code-to-disable-rxc-refclk.patch
patches.drivers/tg3-broadcom-Add-APD-support-for-GPHYs.patch
patches.drivers/tg3-broadcom-Optionally-disable-TXC-if-no-link.patch
patches.drivers/tg3-Update-version-to-3.103.patch
patches.drivers/tg3-Add-5717-phy-ID.patch
patches.drivers/tg3-Don-t-touch-RCB-nic-addresses.patch
patches.drivers/tg3-Napify-tg3_start_xmit_dma_bug.patch
patches.drivers/tg3-Move-TG3_FLG2_PROTECTED_NVRAM-to-tg3_flags3.patch
patches.drivers/tg3-Refine-TSO-and-MSI-discovery.patch
patches.drivers/tg3-Add-new-HW_TSO_3-flag-for-5717.patch
patches.drivers/tg3-Use-tg3_start_xmit_dma_bug-for-5717-A0.patch
patches.drivers/tg3-Allow-DMAs-to-cross-cacheline-boundaries.patch
patches.drivers/tg3-Create-tg3_poll_msix-for-non-zero-MSIX-vecs.patch
patches.drivers/tg3-Move-napi_add-calls-below-tg3_get_invariants.patch
patches.drivers/tg3-Make-tg3_alloc_rx_skb-a-dst-only-operation.patch
patches.drivers/tg3-Add-prodring-parameter-to-tg3_alloc_rx_skb.patch
patches.drivers/tg3-tg3_alloc_rx_skb-tnapi-tp.patch
patches.drivers/tg3-rename-rx_-std-jmb-_ptr.patch
patches.drivers/tg3-Consider-rx_std_prod_idx-a-hw-mailbox.patch
patches.drivers/tg3-Lay-proucer-ring-handling-groundwork.patch
patches.drivers/tg3-Create-aliases-for-rx-producer-mailbox-regs.patch
patches.drivers/tg3-Add-rx-prod-ring-consolidation.patch
patches.drivers/tg3-Fix-DIDs-Enable-5717-support.patch
patches.drivers/tg3-Update-version-to-3.104.patch
# bnc#573237
patches.drivers/tg3-remove-use-of-skb_dma_map-unmap.patch
patches.drivers/drivers-net-Move-and-to-end-of-previous-line.patch
patches.drivers/tg3-Make-TSS-enable-independent-of-MSI-X-enable.patch
patches.drivers/tg3-Add-57765-asic-rev.patch
patches.drivers/tg3-Add-some-VPD-preprocessor-constants.patch
patches.drivers/tg3-Use-pci_read_vpd-instead-of-private-method.patch
patches.drivers/tg3-Clean-tg3_init_one.patch
patches.drivers/drivers-net-use-DEFINE_PCI_DEVICE_TABLE.patch
patches.drivers/tg3-Fix-std-prod-ring-nicaddr-for-5787-and-57765.patch
patches.drivers/tg3-Fix-std-rx-prod-ring-handling.patch
patches.drivers/tg3-Add-reliable-serdes-detection-for-5717-A0.patch
patches.drivers/tg3-Enable-PLL-PD-when-CLKREQ-disabled-for-5717A0.patch
patches.drivers/tg3-Update-copyright-and-driver-version.patch
patches.drivers/tg3-Improve-internal-resource-allocations.patch
patches.drivers/tg3-Add-5717-serdes-phy-ID.patch
patches.drivers/tg3-Abort-phy-init-for-5717-serdes-devices.patch
patches.drivers/tg3-Fix-5717-and-57765-memory-selftests.patch
patches.drivers/tg3-Supply-a-nicaddr-for-57765-jumbo-RCB.patch
patches.drivers/tg3-Fix-tx-mailbox-initialization.patch
patches.drivers/tg3-Turn-off-the-debug-UART-for-57765.patch
patches.drivers/tg3-Bypass-power-source-switching-for-57765.patch
patches.drivers/tg3-Add-57765-phy-ID-and-enable-devices.patch
patches.drivers/tg3-Disable-5717-serdes-and-B0-support.patch
patches.suse/tg3-5785-and-57780-asic-revs-not-working.patch
patches.drivers/tg3-Add-support-for-2-new-selfboot-formats.patch
patches.drivers/tg3-Add-more-partno-entries-for-fallback-path.patch
patches.drivers/tg3-Give-MSI-X-vec-1-rx-backlog-space.patch
patches.drivers/tg3-Prevent-rx-producer-ring-overruns.patch
patches.drivers/tg3-Unwedge-stuck-MSI-X-vectors.patch
patches.drivers/tg3-Fix-57765-A0-bootcode-race-condition.patch
patches.drivers/tg3-Turn-off-multiple-DMA-reads-for-5717.patch
patches.drivers/tg3-Fix-napi-assignments-in-loopback-test.patch
patches.drivers/tg3-Fix-AC131-loopback-test-errors-for-5785.patch
patches.drivers/tg3-Enforce-DMA-mapping-skb-assignment-ordering.patch
patches.drivers/tg3-Make-57791-and-57795-10-100-only.patch
patches.drivers/bnx2-v2.6.32-to-b746656.patch
patches.drivers/bnx2-update-firmware-and-some-bug-fixes-from-upstream.patch
patches.drivers/sky2-add-register-definitions
patches.drivers/sky2-88E8059-support
patches.drivers/sky2-optima-tcp-offload-fix
patches.drivers/sky2-optima-fix-pci-cfg
patches.suse/allow_bonding_with_blacklisted_ipv6.patch
patches.fixes/ipv6-fix-dad-race.patch
#FCOE update (fate#306857, fate#306859, bnc#551175)
patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch
patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch
patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch
patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch
patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch
patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch
patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch
patches.suse/libfc-convert-to-scsi_track_queue_full.patch
patches.suse/libfc-add-queue_depth-ramp-up.patch
patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch
patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch
patches.suse/libfc-remove-fc_fcp_complete.patch
patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch
patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch
patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch
patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch
patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch
patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch
patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch
patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch
patches.suse/fcoe-npiv-vport-create-destroy.patch
patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch
patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch
patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch
patches.suse/libfc-register-symbolic-port-name-rspn_id.patch
patches.suse/libfc-combine-name-server-registration-response-handlers.patch
patches.suse/libfc-combine-name-server-registration-request-functions.patch
patches.suse/fcoe-vport-symbolic-name-support.patch
patches.suse/libfc-export-fc-headers.patch
patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch
patches.suse/libfc-fcoe-add-fc-passthrough-support.patch
patches.suse/libfc-formatting-cleanups-across-libfc.patch
patches.suse/libfcoe-formatting-and-comment-cleanups.patch
patches.suse/fcoe-formatting-cleanups-and-commenting.patch
patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch
patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch
patches.suse/libfc-adds-can_queue-ramp-up.patch
patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch
patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch
patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch
patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch
patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch
patches.suse/fcoe-remove-extra-function-decalrations.patch
patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch
patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch
patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch
patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch
patches.suse/libfc-add-set_fid-function-to-libfc-template.patch
patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch
patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch
patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch
patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch
patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch
patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch
patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch
patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch
patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch
patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch
patches.suse/libfc-call-ddp-setup-for-FCP-reads-only
patches.suse/libfc-fix-e_d_tov-ns-ms-scaling
patches.suse/libfc-don-t-assume-response-request-present
patches.suse/libfcoe-send-port-lka-every-fip_vn_ka_period
patches.suse/fcoe-only-rmmod-fcoe-ko-if-no-active-connections
# qlge patches from 2.6.33 bnc#560420, fate#307130
patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch
patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch
patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch
patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch
patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch
patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch
patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch
patches.drivers/qlge-0012-Add-ethtool-blink-function.patch
patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch
patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch
patches.drivers/qlge-0015-Add-ethtool-self-test.patch
patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch
patches.drivers/qlge-0017-Fix-indentations.patch
patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch
patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch
patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch
patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch
patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch
patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch
patches.drivers/qlge-0025-drivers-net-Move-and-to-end-of-previous-line.patch
patches.drivers/qlge-0026-Turn-on-RX-header-split-based-on-platform.patch
patches.drivers/qlge-0027-Add-RX-frame-handlers-for-non-split-frames.patch
patches.drivers/qlge-0028-Add-napi-gro-frags-interface.patch
patches.drivers/qlge-0029-drivers-net-qlge-qlge_main.c-use-pM-to-show-MAC-ad.patch
patches.drivers/qlge-0030-drivers-net-use-DEFINE_PCI_DEVICE_TABLE.patch
patches.drivers/qlge-0031-Add-data-for-firmware-dump.patch
patches.drivers/qlge-0032-Add-basic-firmware-dump.patch
patches.drivers/qlge-0033-Add-probe-regs-to-firmware-dump.patch
patches.drivers/qlge-0034-Add-RAM-dump-to-firmware-dump.patch
patches.drivers/qlge-0035-Add-alternate-function-s-reg-dump-to-fw-dump.patch
patches.drivers/qlge-0036-Add-serdes-reg-blocks-dump-to-firmware-dump.patch
patches.drivers/qlge-0037-Add-xgmac-reg-blocks-to-firwmare-dump.patch
patches.drivers/qlge-0038-Add-module-param-to-force-firmware-core-dump.patch
patches.drivers/qlge-Fix-dropping-of-large-non-TCP-UDP-frames.patch
patches.drivers/qlge-Fix-occasional-loopback-test-failure.patch
patches.drivers/qlge-Fix-bonding-mac-address-bug.patch
# bnc#575956 qlge eeh
patches.drivers/qlge-0001-move-reset-from-eeh-io_resume-to-slot_reset.patch
patches.drivers/qlge-0002-add-watchdog-timer.patch
patches.drivers/qlge-0003-add-check-for-eeh-failure-when-closing-device.patch
# netxen patches from 2.6.33 bnc#560003, fate#307134
patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch
patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch
patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch
patches.drivers/netxen-0003-annotate-register-windowing-code.patch
patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch
patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch
patches.drivers/netxen-0006-defines-for-next-revision.patch
patches.drivers/netxen-0007-128-memory-controller-support.patch
patches.drivers/netxen-0008-reset-sequence-changes.patch
patches.drivers/netxen-0009-onchip-memory-access-change.patch
patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch
patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch
patches.drivers/netxen-0012-update-version-to-4.0.62.patch
patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch
patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch
patches.drivers/netxen-0015-refactor-indirect-register-access.patch
patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch
patches.drivers/netxen-0017-update-module-info.patch
patches.drivers/netxen-0018-module-firmware-hints.patch
patches.drivers/netxen-0019-update-version-to-4.0.65.patch
patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch
patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch
patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch
patches.drivers/netxen-8f9b3f-to-c651a8.patch
# fcoe patches from 2.6.33 bnc#562046
patches.fixes/libfc-fix-payload-size-pa
patches.fixes/fcoe-allow-scsi-fcp-to-be
patches.fixes/libfc-add-fc-bb-5-lesb-co
patches.fixes/libfcoe-add-checking-disa
patches.fixes/libfcoe-add-tracking-fip--0
patches.fixes/libfcoe-add-tracking-fip-
patches.fixes/libfc-add-fcoe_fc_els_les
patches.fixes/fcoe-libfc-add-get_lesb-t
patches.fixes/libfc-add-support-of-rece
patches.fixes/libfc-add-target-reset-fl
patches.fixes/fcoe-use-lld-s-wwpn-and-w
patches.fixes/libfc-reduce-hold-time-on
patches.fixes/fcoe-libfc-adds-enable-di
patches.fixes/fc_sdev_blocked.patch
patches.suse/libfc-fix-unnecessary-seq-id-jump
patches.suse/libfc-use-offload-em-instance-again
patches.suse/libfc-fix-fcp-pkt-recovery
patches.suse/libfcoe-don-t-fill-mac-desc-in
patches.suse/fcoe-reset-fip-ctlr-link-state
patches.suse/fcoe-check-netif-operstate-ins
patches.suse/libfc-bug-in-erroring-out-upon
patches.suse/fcoe-libfc-increased-cdb-size
patches.suse/libfc-set-seq_id-for-incoming
patches.suse/fcoe-fixes-wrong-error-exit-in
patches.suse/fcoe-fix-a-circular-locking-is
# ixgbe patches from 2.6.33 bnc#562046
patches.drivers/dcb-data-center-bridging-ops-s
patches.drivers/ixgbe-use-the-instance-of-net_
patches.drivers/ixgbe-add-support-for-82599-ba
patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f
patches.drivers/net-add-netdev_alloc_skb_ip_al
patches.drivers/net-use-netdev_alloc_skb_ip_al
patches.drivers/ixgbe-fix-erroneous-display-of
patches.drivers/ixgbe-add-support-for-82599-al
patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne
patches.drivers/ixgbe-add-support-for-netdev_o
patches.drivers/vlan-add-support-to-netdev_ops
patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_
patches.drivers/ixgbe-flush-the-lsc-mask-chang
patches.drivers/ixgbe-make-queue-pairs-on-sing
patches.drivers/drivers-net-request_irq-remove
patches.drivers/ixgbe-modify-82599-hwrsc-stati
patches.drivers/ixgbe-use-rx-buffer-length-fro
patches.drivers/ixgbe-only-set-clear-vfe-in-ix
patches.drivers/ixgbe-handle-parameters-for-tx
patches.drivers/ixgbe-disable-flow-control-for
patches.drivers/ixgbe-links2-is-not-a-valid-re
patches.drivers/ixgbe-fix-receive-address-regi
patches.drivers/ethtool-add-direct-attach-supp
patches.drivers/ixgbe-display-currently-attach
patches.drivers/ixgbe-use-known-user-priority-
patches.drivers/ixgbe-select-fcoe-tx-queue-in-
patches.drivers/ixgbe-change-default-ring-size
patches.drivers/ixgbe-performance-tweaks
patches.drivers/ixgbe-use-eiam-to-automask-msi
patches.drivers/ixgbe-Fix-DMA-mapping-unmapping-issues-when-HWRSC-is.patch
patches.drivers/ixgbe-only-process-one-ixgbe_watchdog_task-at-a-time.patch
patches.drivers/ixgbe-prevent-speculative-processing-of-descriptors.patch
patches.drivers/ixgbe-don-t-exceed-user-buffer
patches.drivers/ixgbe-priority-tag-fip-frames
patches.drivers/ixgbe-filter-fip-frames-into-t
patches.drivers/ixgbe-fix-for-real_num_tx_queu
patches.drivers/ixgbe-Fix-82599-multispeed-fiber-link-issues-due-to-.patch
patches.fixes/ixgbe-power-down-phy-during-driver-resets.patch
patches.fixes/vlan-add-vlan_dev_select_queue
patches.fixes/vlan-updates-real_num_tx_queues
+philips patches.drivers/ixgbe-Add-support-for-the-new-ethtool-n-tuple-progra.patch
+philips patches.drivers/ethtool-Introduce-n-tuple-filter-programming-support.patch
patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch
patches.drivers/bnx2x-to-version-1.52.1-7.patch
patches.drivers/bnx2x-initialize-cnic-status-block-during-chip-reset.patch
patches.drivers/cxgb3-add-memory-barriers.patch
patches.drivers/cxgb3-Set-the-rxq.patch
patches.drivers/cxgb3-fix-GRO-checksum-check.patch
patches.drivers/cxgb3-FIx-VLAN-over-Jumbo-frames.patch
patches.drivers/cxgb3-fix-link-flap.patch
patches.drivers/cxgb3-fixing-eeh-handlers.patch
patches.drivers/benet-from-v2.6.32-to-8f47afe0.patch
patches.drivers/be2net-swap-only-first-2-fields-of-mcc_wrb.patch
patches.drivers/be2net-set-proper-value-to-version-field-in-req-hdr.patch
patches.drivers/be2net-remove-ASIC-generation-number-from-Kconfig.patch
patches.drivers/be2net-change-the-driver-description.patch
patches.drivers/be2net-fix-to-limit-max-vlans-supported-in-certain-s.patch
patches.drivers/be2net-minor-code-optimizations.patch
patches.drivers/be2net-0000-fix-bug-in-rx-page-posting.patch
patches.drivers/be2net-0001-Add-link-test-to-list-of-ethtool-self-tests.patch
patches.drivers/be2net-0002-ethtool-self-test-reorganization.patch
patches.drivers/be2net-0003-bug-fix-in-be_read_eeprom.patch
patches.drivers/be2net-0004-bug-fix-for-flashing-the-BladeEngine3-ASIC.patch
patches.drivers/be2net-0005-remove-unused-pci-device-id.patch
patches.drivers/be2net-0006-bug-fix-in-be_change_mtu.patch
patches.drivers/be2net-use-eq-id-to-calculate-cev-isr-reg-offset.patch
patches.drivers/be2net-implement-EEH-pci-error-recovery-handlers.patch
patches.drivers/be2net-a-mini-optimization-in-rx_compl_process-co.patch
patches.drivers/be2net-don-t-rearm-mcc-cq-when-device-is-not-open.patch
patches.drivers/be2net-fix-rx-path-to-ignore-a-flush-completion.patch
patches.drivers/be2net-fix-tx-completion-polling.patch
patches.drivers/be2net-download-NCSI-section-during-firmware-update.patch
patches.drivers/be2net-update-version-2.101.346u-to-2.102.147s.patch
patches.drivers/be2net-fix-mccq-create-for-big-endian-architectures.patch
patches.drivers/be2net-fix-bug-in-vlan-rx-path-for-big-endian-archit.patch
# Infiniband fixes
patches.drivers/ehca-ib-qp-max-supported.patch
patches.drivers/ehca-no-disable-irq-in-tasklet.patch
patches.drivers/e1000e-call-pci_save_state-after-pci_restore_state.patch
# entropy FATE##307517 suse patches, put below rest of netdev patches
patches.drivers/bnx2-entropy-source.patch
patches.drivers/e1000-entropy-source.patch
patches.drivers/e1000e-entropy-source.patch
patches.drivers/igb-entropy-source.patch
patches.drivers/ixgbe-entropy-source.patch
patches.drivers/tg3-entropy-source.patch
patches.drivers/ehca-process-mad-null.patch
patches.drivers/mlx4_core-missing-device-id-6778.patch
patches.drivers/iw_cxgb3-dlpar.patch
########################################################
# Wireless Networking
########################################################
patches.suse/wireless-no-aes-select
########################################################
# iSCSI
########################################################
patches.fixes/bnx2i-use-common-iscsi-suspend-queue
patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch
patches.drivers/bnx2i-update-to-2.1.1
patches.drivers/bnx2i-mtu-change-bugfix
patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject
patches.fixes/libiscsi-check-tmf-state-before-sending-pdu
patches.fixes/libiscsi-add-warm-target-reset-tmf-support
patches.fixes/iser-set-tgt-and-lu-reset-timeout
patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch
patches.drivers/cnic-Use-union-for-the-status-blocks-of-different-de.patch
patches.fixes/cnic-fix-crash-during-bnx2x-mtu-change.patch
patches.drivers/cnic-give-a-chance-for-the-uio-device-to-be-opened
patches.drivers/be2iscsi-beta4-update
patches.fixes/libiscsi-add-recover-target
patches.drivers/be2iscsi-BE3-support
########################################################
# PCI and PCI hotplug
########################################################
# Use list instead static array for pci resources
patches.fixes/pci_use_list_for_resources_1_5.patch
patches.fixes/pci_use_list_for_resources_2_5.patch
patches.fixes/pci_use_list_for_resources_3_5.patch
patches.fixes/pci_use_list_for_resources_4_5.patch
patches.fixes/pci_use_list_for_resources_5_5.patch
patches.fixes/pci_use_acpi_resources_whitelist.patch
patches.fixes/x86_hp_add_more_usecrs_to_whitelist.patch
patches.fixes/pci_fix_invalid_resource_length.patch
patches.fixes/dmar-mark-dmar_ir_support-as-init
########################################################
# sysfs / driver core
########################################################
patches.suse/driver-core-reduce-level-of-request_firmware-messages.patch
########################################################
# USB
########################################################
patches.suse/usb-storage-disable-delay.patch
# remove this for openSUSE 11.3, it is here only for SLE11 SP1 and later.
patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch
########################################################
# I2C
########################################################
########################################################
# Input & Console
########################################################
patches.suse/bootsplash
patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch
patches.suse/bootsplash-keep-multiple-data
patches.suse/bootsplash-scaler
patches.suse/bootsplash-console-fix
patches.drivers/elousb.patch
patches.fixes/input-add-acer-aspire-5710-to-nomux.patch
patches.drivers/synaptics-hp-clickpad
##########################################################
# Sound
##########################################################
patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device
patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI
patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references
patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout
patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi
patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks
patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi
patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels
patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin
patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config
patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free
patches.drivers/alsa-sp1-hda-13-add-reboot-notifier
patches.drivers/alsa-sp1-hda-14-add-missing-export
patches.drivers/alsa-sp1-hda-15-fix-build-warning
patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix
patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx
patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix
patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix
patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk
patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs
patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes
patches.drivers/alsa-sp1-hda-24-keep-msi-on
patches.drivers/alsa-sp1-hda-25-add-power-counter
patches.drivers/alsa-sp1-hda-26-fix-hwdep-config-dependency
patches.drivers/alsa-sp1-hda-27-sony-vaio-use-default-auto
patches.drivers/alsa-sp1-hda-28-hdmi-fix-audio-infoframe-size
patches.drivers/alsa-sp1-hda-29-hdmi-fix-channel-mapping-slot
patches.drivers/alsa-sp1-hda-30-hdmi-export-monitor-presence
patches.drivers/alsa-sp1-hda-31-hdmi-add-jack-detect-helper
patches.drivers/alsa-sp1-hda-32-hdmi-probe-monitor-at-init
patches.drivers/alsa-sp1-hda-33-hdmi-separate-checksum-routine
patches.drivers/alsa-sp1-hda-34-hdmi-sticky-infoframe
patches.drivers/alsa-sp1-hda-35-hdmi-sticky-stream-id
patches.drivers/alsa-sp1-hda-36-sticky-channel-count
patches.drivers/alsa-sp1-hda-37-show-epps-capability-in-proc
patches.drivers/alsa-sp1-hda-38-acer-aspire-4930g-mute-fix
patches.drivers/alsa-sp1-hda-39-hdmi-show-hbr-pincap
patches.drivers/alsa-sp1-hda-40-hdmi-accept-DP-pin
patches.drivers/alsa-sp1-hda-41-hdmi-channel-mapping-pin
patches.drivers/alsa-sp1-hda-42-hdmi-add-chmap-configs
patches.drivers/alsa-sp1-hda-43-dont-power-off-hda-link
patches.drivers/alsa-sp1-hda-44-alc661-892-support
patches.drivers/alsa-sp1-hda-45-alc661-memleak-fix
patches.drivers/alsa-sp1-hda-47-quirk-for-intel-d945-mobo
patches.drivers/alsa-sp1-hda-49-more-alc663-fixes
patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag
patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix
patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix
patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk
patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix
patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led
patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support
patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2
patches.drivers/alsa-sp1-hda-62-fix-hp-dv-mute-led
patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect
patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup
patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2
patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity
patches.drivers/alsa-sp1-hda-67-alc268-fix-quirk-check
patches.drivers/alsa-sp1-hda-69-alc262-single-adc-fix
patches.drivers/alsa-sp1-hda-70-alc269vb-support
patches.drivers/alsa-sp1-hda-71-alc269-missing-hp-pins
patches.drivers/alsa-sp1-hda-73-alc-fix-invalid-connection
patches.drivers/alsa-sp1-hda-74-alc-fix-invalid-mute
patches.drivers/alsa-sp1-hda-75-alc269-fillup-adcs
patches.drivers/alsa-sp1-hda-76-alc269-mute-led
########################################################
# Other driver fixes
########################################################
patches.fixes/ieee1394-sbp2_long_sysfs_ieee1394_id.patch
patches.fixes/parport-mutex
# suse-2.4 compatible crypto loop driver
patches.suse/twofish-2.6
# Allow setting maximum number of raw devices
patches.suse/raw_device_max_minors_param.diff
patches.suse/no-partition-scan
patches.drivers/support-pci-domains-in-aer-inject
patches.fixes/infiniband_cxgb3_improve_dlpar_remove_on_active_rdma_traffic.patch
patches.drivers/lis3-add-support-for-hp-probook
patches.drivers/lis3-add-support-for-hp-probook-2
patches.drivers/ipmi-add-parameter-to-limit-cpu-usage-in-kipmid.patch
########################################################
# Other drivers we have added to the tree
########################################################
########################################################
# Suspend/Resume stuff
########################################################
########################################################
# device-mapper
########################################################
patches.suse/dm-emulate-blkrrpart-ioctl
patches.suse/dm-raid45-26-Nov-2009.patch
patches.fixes/dm-mpath-reattach-dh
patches.suse/dm-mpath-leastpending-path-update
patches.suse/dm-mpath-accept-failed-paths
patches.suse/dm-mpath-detach-existing-hardware-handler
patches.suse/dm-mpath-null-pgs
patches.fixes/dm-table-switch-to-readonly
patches.suse/dm-mpath-evaluate-request-result-and-sense
patches.fixes/dm-release-map_lock-before-set_disk_ro
patches.suse/dm-mpath-no-activate-for-offlined-paths
patches.suse/dm-mpath-no-partitions-feature
patches.suse/dm-mpath-skip-disabled-devices-when-iterating
patches.fixes/dm-mpath-abstract-dm_in_flight-function
patches.fixes/dm-mpath-simplify-rq-based-suspend
patches.fixes/dm-mpath-trace-rq-based-remapping
patches.suse/dm-mpath-leastpending-select-path-fix
########################################################
# md
########################################################
patches.fixes/md-write-behind-race
##########################################################
#
# Security stuff
#
##########################################################
##########################################################
# Audit
##########################################################
##########################################################
# AppArmor
##########################################################
patches.apparmor/security-default-lsm
patches.apparmor/apparmor-security-module
patches.apparmor/apparmor-correct-mapping-of-file-permissions
patches.apparmor/apparmor-turn-auditing-of-ptrace-on
patches.apparmor/apparmor-fix-operator-precidence-issue-in-as_path_link
patches.apparmor/apparmor-explicitly-include-header-files-to-allow-apparmor-to-build-on-powerpc
patches.apparmor/apparmor-ensure-apparmor-enabled-parmater-is-off-if-apparmor-fails-to-initialize
patches.apparmor/apparmor-fix-auditing-of-domain-transitions-to-include-target-profile-information
patches.apparmor/apparmor-fix-c99-violation
patches.apparmor/apparmor-fix-build-failure-on-ia64
patches.apparmor/apparmor-revert-reporting-of-create-to-write-permission
patches.apparmor/apparmor-fix-null-pointer-dereference-oops-in-profile-attachment
patches.apparmor/apparmor-fix-argument-size-missmatch-on-64-bit-builds
patches.apparmor/apparmor-fix-change_profile-failing-lpn401931
patches.apparmor/apparmor-fix-determination-of-forced-audit-messages
patches.apparmor/apparmor-fix-oops-in-auditing-of-the-policy-interface-offset
patches.apparmor/apparmor-fix-profile-attachment-for-regexp-based-profile-names
patches.apparmor/apparmor-return-the-correct-error-codes-on-profile-addition-removal
patches.apparmor/apparmor-fix-oops-in-profile-listing-and-display-full-list
patches.apparmor/apparmor-fix-mapping-of-pux-to-new-internal-permission-format
patches.apparmor/apparmor-fix-change_profile-failure
patches.apparmor/apparmor-fix-profile-namespace-removal
patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace
patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths
patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used
patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem
patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly
patches.apparmor/apparmor-allow-truncation-of-deleted-files
patches.apparmor/apparmor-fix-oops-after-profile-removal
patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds
patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling
patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops
patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack
patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths
patches.apparmor/apparmor-missing-unlock
patches.apparmor/ptrace_may_access-fix
patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use
patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around
########################################################
# Address space layout randomization
########################################################
########################################################
# KDB v4.4
########################################################
patches.suse/kdb-common
patches.suse/kdb-x86
patches.suse/kdb-ia64
patches.suse/kdb-build-fixes
patches.suse/kdb-x86-build-fixes
patches.suse/kdb-usb-rework
patches.suse/kdb_fix_ia64_build.patch
patches.suse/kdb_dont_touch_i8042_early.patch
patches.suse/kdb-handle-nonexistance-keyboard-controller
patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro
patches.suse/kdb-fix-the-multi-word-nop-instructions-in-the-disassembler
patches.suse/x86-uv-kdb-support-for-uv-nmi-handler.patch
patches.suse/x86-add-kdb-support-for-unknown_nmi_error-handler.patch
patches.suse/kdb-x86-backtrace-code-to-use-the-in-kernel-show_stack-function
# bug 586343, depends on the KDB patches
patches.fixes/x86_64-uv-update-uv-arch-to-target-legacy-vga-i-o-correctly.patch
# bug 593731
patches.arch/x86-fix-unknown_nmi_error.patch
patches.fixes/kdb-no-printk-logging.patch
########################################################
# Other patches for debugging
########################################################
patches.suse/crasher-26.diff
patches.suse/stack-unwind
patches.suse/no-frame-pointer-select
patches.arch/x86_64-unwind-annotations
########################################################
# Kdump
########################################################
patches.suse/kdump-dump_after_notifier.patch
########################################################
# audit subsystem
########################################################
patches.suse/audit-export-logging.patch
########################################################
# Performance Monitoring, Tracing etc
########################################################
patches.suse/perfmon2.patch
patches.suse/perfmon2_ioctl.patch
patches.suse/perfmon2-remove_syscalls.patch
patches.suse/perfmon2-remove_get_base_syscall_attr.patch
patches.suse/perfmon2_noutrace.patch
patches.fixes/oprofile_bios_ctr.patch
patches.trace/utrace-core
+needs_update-32 patches.fixes/nfs-write.c-bug-removal.patch
patches.fixes/ia64-configure-HAVE_UNSTABLE_SCHED_CLOCK-for-SGI_SN.patch
########################################################
# KVM patches
########################################################
patches.fixes/kvm-ioapic.patch
patches.fixes/kvm-macos.patch
patches.fixes/kvm-EPT-swap-0001-KVM-VMX-emulate-accessed-bit-for-EPT.patch
patches.fixes/kvm-spurious-interrupt-0001-eventfd-allow-atomic-read-and-waitqueue-remove.patch
patches.fixes/kvm-spurious-interrupt-0002-KVM-fix-spurious-interrupt-with-irqfd.patch
patches.fixes/kvm-null-deref-0001-KVM-x86-disallow-KVM_-SET-GET-_LAPIC-without-alloc.patch
patches.fixes/kvm-null-deref-0002-KVM-only-clear-irq_source_id-if-irqchip-is-present.patch
patches.fixes/kvm-pause-filter-0001-KVM-introduce-kvm_vcpu_on_spin.patch
patches.fixes/kvm-pause-filter-0002-KVM-VMX-Add-support-for-Pause-Loop-Exiting.patch
patches.fixes/kvm-pause-filter-0003-KVM-SVM-Support-Pause-Filter-in-AMD-processors.patch
patches.fixes/kvm-constant_tsc-0001-KVM-SVM-Adjust-tsc_offset-only-if-tsc_unstable.patch
patches.fixes/kvm-vcpu_events-0001-KVM-x86-Add-KVM_GET-SET_VCPU_EVENTS.patch
patches.fixes/kvm-vcpu_events-0002-KVM-x86-Extend-KVM_SET_VCPU_EVENTS-with-selective.patch
patches.fixes/kvm-vcpu_events-0003-KVM-x86-Adjust-KVM_VCPUEVENT-flag-names.patch
patches.fixes/kvm-vcpu_events-0004-KVM-x86-Do-not-return-soft-events-in-vcpu_events.patch
patches.fixes/kvm-vcpu_events-0005-KVM-x86-Save-restore-interrupt-shadow-mask.patch
patches.fixes/kvm-rcu-0001-rcu-Add-synchronize_srcu_expedited.patch
patches.fixes/kvm-rcu-0002-KVM-Call-pic_clear_isr-on-pic-reset-to-reuse-logi.patch
patches.fixes/kvm-rcu-0003-KVM-Move-irq-sharing-information-to-irqchip-level.patch
patches.fixes/kvm-rcu-0004-KVM-Change-irq-routing-table-to-use-gsi-indexed-arr.patch
patches.fixes/kvm-rcu-0005-KVM-Maintain-back-mapping-from-irqchip-pin-to-gsi.patch
patches.fixes/kvm-rcu-0006-KVM-Move-irq-routing-data-structure-to-rcu-locking.patch
patches.fixes/kvm-rcu-0007-KVM-Move-irq-ack-notifier-list-to-arch-independent.patch
patches.fixes/kvm-rcu-0008-KVM-Convert-irq-notifiers-lists-to-RCU-locking.patch
patches.fixes/kvm-rcu-0009-KVM-Move-IO-APIC-to-its-own-lock.patch
patches.fixes/kvm-rcu-0010-KVM-Drop-kvm-irq_lock-lock-from-irq-injection-path.patch
patches.fixes/kvm-rcu-0011-KVM-modify-memslots-layout-in-struct-kvm.patch
patches.fixes/kvm-rcu-0012-KVM-modify-alias-layout-in-x86s-struct-kvm_arch.patch
patches.fixes/kvm-rcu-0013-KVM-split-kvm_arch_set_memory_region-into-prepare-a.patch
patches.fixes/kvm-rcu-0014-KVM-introduce-gfn_to_pfn_memslot.patch
patches.fixes/kvm-rcu-0015-KVM-use-gfn_to_pfn_memslot-in-kvm_iommu_map_pages.patch
patches.fixes/kvm-rcu-0016-KVM-introduce-kvm-srcu-and-convert-kvm_set_memory_.patch
patches.fixes/kvm-rcu-0017-KVM-use-SRCU-for-dirty-log.patch
patches.fixes/kvm-rcu-0018-KVM-x86-switch-kvm_set_memory_alias-to-SRCU-update.patch
patches.fixes/kvm-rcu-0019-KVM-convert-io_bus-to-SRCU.patch
patches.fixes/kvm-rcu-0020-KVM-switch-vcpu-context-to-use-SRCU.patch
patches.fixes/kvm-rcu-0021-KVM-convert-slots_lock-to-a-mutex.patch
patches.fixes/kvm-rcu-0022-KVM-Bump-maximum-vcpu-count-to-64.patch
patches.fixes/kvm-rcu-0023-KVM-avoid-taking-ioapic-mutex-for-non-ioapic-EOIs.patch
patches.fixes/kvm-rcu-0024-KVM-fix-cleanup_srcu_struct-on-vm-destruction.patch
patches.fixes/kvm-rcu-0025-KVM-fix-s390-ia64-build-failures-introduced-by-mems.patch
########################################################
# Staging tree patches
# new drivers that are going upstream
########################################################
########################################################
# "fastboot" patches
# These should all be upstream, we took them from
# moblin to try to speed up the boot process
########################################################
patches.suse/linux-2.6.29-dont-wait-for-mouse.patch
patches.suse/linux-2.6.29-enable-async-by-default.patch
- patches.suse/linux-2.6.29-even-faster-kms.patch
patches.suse/linux-2.6.29-silence-acer-message.patch
patches.suse/linux-2.6.29-kms-after-sata.patch
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch
patches.suse/trace-open.patch
# some driver patches, should move up in the series...
patches.suse/linux-2.6.29-touchkit.patch
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch
########################################################
# You'd better have a good reason for adding a patch
# below here.
########################################################
########################################################
# 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.
#
### both uml framebuffer and xen need this one.
patches.xen/add-console-use-vt
# split out patches
patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch
patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch
patches.xen/ipv6-no-autoconf
patches.xen/pci-guestdev
patches.xen/pci-reserve
patches.xen/sfc-driverlink
patches.xen/sfc-resource-driver
patches.xen/sfc-driverlink-conditional
patches.xen/sfc-external-sram
patches.xen/tmem
# 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-x86.diff
patches.xen/xen3-auto-arch-i386.diff
patches.xen/xen3-auto-arch-x86_64.diff
# fixups due to upstream Xen parts
patches.xen/xen3-fixup-xen
patches.xen/sfc-set-arch
patches.xen/sfc-endianness
# newer changeset backports
# changes outside arch/{i386,x86_64}/xen
patches.xen/xen3-fixup-kconfig
patches.xen/xen3-fixup-common
patches.xen/xen3-fixup-arch-x86
# ports of other patches
patches.xen/xen3-patch-2.6.18
patches.xen/xen3-patch-2.6.19
patches.xen/xen3-patch-2.6.20
patches.xen/xen3-patch-2.6.21
patches.xen/xen3-patch-2.6.22
patches.xen/xen3-patch-2.6.23
patches.xen/xen3-patch-2.6.24
patches.xen/xen3-patch-2.6.25
patches.xen/xen3-patch-2.6.26
patches.xen/xen3-patch-2.6.27
patches.xen/xen3-patch-2.6.28
patches.xen/xen3-patch-2.6.29
patches.xen/xen3-patch-2.6.30
patches.xen/xen3-patch-2.6.31
patches.xen/xen3-patch-2.6.32
patches.xen/xen3-patch-2.6.32.1-2
patches.xen/xen3-patch-2.6.32.2-3
patches.xen/xen3-patch-2.6.32.3-4
patches.xen/xen3-patch-2.6.32.7-8
patches.xen/xen3-patch-2.6.32.8-9
patches.xen/xen3-patch-2.6.32.9-10
patches.xen/xen3-patch-2.6.32.10-11
patches.xen/xen3-patch-2.6.32.12-rc2
patches.xen/xen3-seccomp-disable-tsc-option
patches.xen/xen3-fix_clock_gettime_vsyscall_time_warp.diff
patches.xen/xen3-x86-mcp51-no-dac
patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata
patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata
patches.xen/xen3-x86-mark_rodata_rw.patch
patches.xen/xen3-x86-ftrace-fix-rodata-1.patch
patches.xen/xen3-x86-ftrace-fix-rodata-3.patch
patches.xen/xen3-x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch
patches.xen/xen3-x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch
patches.xen/xen3-x86-Limit-the-number-of-processor-bootup-messages.patch
patches.xen/xen3-x86_ioapic_fix_out_of_order_gsi.patch
patches.xen/xen3-x86-Reduce-per-cpu-warning-boot-up-messages.patch
patches.xen/xen3-x86-pat-Update-page-flags-for-memtype-without-using-memtype_lock-V4.patch
patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch
patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch
patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch
patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch
patches.xen/xen3-vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch
patches.xen/xen3-kdb-x86
patches.xen/xen3-stack-unwind
patches.xen/xen3-x86_64-unwind-annotations
# bugfixes and enhancements
patches.xen/xen-balloon-max-target
patches.xen/xen-modular-blktap
patches.xen/xen-blkback-bimodal-suse
patches.xen/xen-blkif-protocol-fallback-hack
patches.xen/xen-blkback-cdrom
patches.xen/xen-blktap-write-barriers
patches.xen/xen-blktap-teardown
patches.xen/xen-op-packet
patches.xen/xen-blkfront-cdrom
patches.xen/xen-sections
patches.xen/xen-swiotlb-heuristics
patches.xen/xen-kconfig-compat
patches.xen/xen-cpufreq-report
patches.xen/xen-staging-build
patches.xen/xen-sysdev-suspend
patches.xen/xen-ipi-per-cpu-irq
patches.xen/xen-virq-per-cpu-irq
patches.xen/xen-spinlock-poll-early
patches.xen/xen-configurable-guest-devices
patches.xen/xen-netback-nr-irqs
patches.xen/xen-netback-notify-multi
patches.xen/xen-netback-generalize
patches.xen/xen-netback-multiple-tasklets
patches.xen/xen-netback-kernel-threads
patches.xen/xen-netfront-ethtool
patches.xen/xen-unpriv-build
patches.xen/xen-dcdbas
patches.xen/xen-floppy
patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-consistent-nmi
patches.xen/xen-x86-no-lapic
patches.xen/xen-x86-pmd-handling
patches.xen/xen-x86-bigmem
patches.xen/xen-x86-machphys-prediction
patches.xen/xen-x86-exit-mmap
patches.xen/xen-x86-per-cpu-vcpu-info
patches.xen/xen-x86-xtime-lock
patches.xen/xen-x86-time-per-cpu
patches.xen/xen-x86_64-pgd-pin
patches.xen/xen-x86_64-pgd-alloc-order
patches.xen/xen-x86_64-dump-user-pgt
patches.xen/xen-x86_64-note-init-p2m
|