-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseries.conf
7698 lines (7153 loc) · 489 KB
/
series.conf
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
# 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-4.4.1
patches.kernel.org/patch-4.4.1-2
patches.kernel.org/patch-4.4.2-3
patches.kernel.org/patch-4.4.3-4
patches.kernel.org/patch-4.4.4-5
patches.kernel.org/patch-4.4.5-6
patches.kernel.org/patch-4.4.6-7
patches.kernel.org/patch-4.4.7-8
patches.kernel.org/patch-4.4.8-9
patches.kernel.org/patch-4.4.9-10
patches.kernel.org/patch-4.4.10-11
patches.kernel.org/patch-4.4.11-12
patches.kernel.org/patch-4.4.12-13
patches.kernel.org/patch-4.4.13-14
patches.kernel.org/patch-4.4.14-15
patches.kernel.org/patch-4.4.15-16
patches.kernel.org/patch-4.4.16-17
patches.kernel.org/patch-4.4.17-18
patches.kernel.org/patch-4.4.18-19
patches.kernel.org/patch-4.4.19-20
patches.kernel.org/patch-4.4.20-21
patches.kernel.org/patch-4.4.21-22
patches.kernel.org/patch-4.4.22-23
patches.kernel.org/patch-4.4.23-24
patches.kernel.org/patch-4.4.24-25
patches.kernel.org/patch-4.4.25-26
patches.kernel.org/patch-4.4.26-27
patches.kernel.org/patch-4.4.27-28
patches.kernel.org/patch-4.4.28-29
patches.kernel.org/patch-4.4.29-30
patches.kernel.org/patch-4.4.30-31
patches.kernel.org/patch-4.4.31-32
patches.kernel.org/patch-4.4.32-33
patches.kernel.org/patch-4.4.33-34
patches.kernel.org/patch-4.4.34-35
patches.kernel.org/patch-4.4.35-36
patches.kernel.org/patch-4.4.36-37
patches.kernel.org/patch-4.4.37-38
patches.kernel.org/patch-4.4.38-39
patches.kernel.org/patch-4.4.39-40
patches.kernel.org/patch-4.4.40-41
patches.kernel.org/patch-4.4.41-42
patches.kernel.org/patch-4.4.42-43
patches.kernel.org/patch-4.4.43-44
patches.kernel.org/patch-4.4.44-45
patches.kernel.org/patch-4.4.45-46
patches.kernel.org/patch-4.4.46-47
patches.kernel.org/patch-4.4.47-48
patches.kernel.org/patch-4.4.48-49
patches.kernel.org/patch-4.4.49-50
patches.kernel.org/patch-4.4.50-51
patches.kernel.org/patch-4.4.51-52
patches.kernel.org/patch-4.4.52-53
patches.kernel.org/patch-4.4.53-54
patches.kernel.org/patch-4.4.54-55
patches.kernel.org/patch-4.4.55-56
patches.kernel.org/patch-4.4.56-57
patches.kernel.org/patch-4.4.57-58
patches.kernel.org/patch-4.4.58-59
patches.kernel.org/patch-4.4.59-60
patches.kernel.org/patch-4.4.60-61
patches.kernel.org/patch-4.4.61-62
patches.kernel.org/patch-4.4.62-63
patches.kernel.org/patch-4.4.63-64
patches.kernel.org/patch-4.4.64-65
patches.kernel.org/patch-4.4.65-66
patches.kernel.org/patch-4.4.66-67
patches.kernel.org/patch-4.4.67-68
patches.kernel.org/patch-4.4.68-69
patches.kernel.org/patch-4.4.69-70
patches.kernel.org/patch-4.4.70-71
patches.kernel.org/patch-4.4.71-72
patches.kernel.org/patch-4.4.72-73
patches.kernel.org/patch-4.4.73-74
########################################################
# Build fixes that apply to the vanilla kernel too.
# Patches in patches.rpmify are applied to both -vanilla
# and patched flavors.
########################################################
patches.rpmify/lustre-lloop-dont-change-logical-size
########################################################
# kABI placeholders & consistency patches
########################################################
patches.suse/AF_MAX.patch
patches.suse/0001-kabi-Lift-ifdefs-for-some-disabled-network-protocols.patch
patches.suse/0002-Add-a-void-suse_kabi_padding-placeholder-to-some-USB.patch
patches.suse/0003-kabi-Add-placeholders-to-a-couple-of-important-struc.patch
patches.suse/0001-Add-a-void-suse_kabi_padding-placeholder-to-some-USB.patch
patches.suse/0002-Add-a-void-suse_kabi_padding-placeholder-to-some-gsp.patch
patches.suse/kabi-Add-placeholder-to-vm_fault.patch
patches.suse/hdaudio-kABI-placeholder
patches.kabi/0001-Revert-Input-i8042-set-up-shared-ps2_cmd_mutex-for-A.patch
patches.kabi/0002-Revert-Input-i8042-break-load-dependency-between-atk.patch
patches.kabi/Revert-arm64-Define-AT_VECTOR_SIZE_ARCH_for_ARCH_DLINFO
patches.kabi/kabi-protect-struct-hw_perf_event.patch
patches.kabi/kabi-protect-struct-sdhci_host.patch
patches.kabi/kabi-reintroduce-iov_iter_fault_in_multipages_readable.patch
patches.kabi/kabi-protect-struct-dw_mmc.patch
patches.kabi/revert-can-dev-fix-deadlock-reported-after-bus-off.patch
patches.kabi/kabi-reintroduce-strtobool.patch
patches.kabi/kabi-protect-struct-mmc_packed.patch
patches.kabi/kabi-protect-ip_cmsg_recv_checksum.patch
patches.kabi/kabi-reintroduce-sk_filter.patch
patches.kabi/kabi-protect-struct-task_struct.patch
patches.kabi/kabi-protect-struct-mm_struct.patch
patches.kabi/kabi-protect-user_namespace-include-in-fs-exec.patch
patches.kabi/kabi-protect-struct-wake_irq.patch
patches.kabi/kabi-protect-struct-musb_platform_ops.patch
patches.kabi/kabi-protect-struct-xhci_hcd.patch
patches.kabi/kabi-protect-struct-user_fpsimd_state.patch
patches.kabi/kabi-protect-struct-tcp_fastopen_cookie.patch
patches.kabi/Revert-net-introduce-device-min_header_len.patch
patches.kabi/kabi-protect-can_rx_register.patch
patches.kabi/kabi-protect-struct-se_node_acl.patch
patches.kabi/revert-RDMA-core-Fix-incorrect-structure-packing-for.patch
patches.kabi/revert-target-Fix-NULL-dereference-during-LUN-lookup.patch
patches.kabi/revert-acpi-nfit-libnvdimm-fix-interleave-set-cookie.patch
patches.kabi/revert-nfit-libnvdimm-fix-interleave-set-cookie-calc.patch
patches.kabi/kabi-protect-struct-iscsi_conn.patch
patches.kabi/revert-give-up-on-gcc-ilog2-constant-optimizations.patch
patches.kabi/kabi-protect-ttm_ref_object_add.patch
patches.kabi/kabi-protect-cgroup-include-inkernel-kthread.patch
patches.kabi/kabi-protect-struct-mnt_namespace.patch
patches.kabi/kabi-protect-struct-snd_fw_async_midi_port.patch
patches.kabi/revert-l2tp-take-reference-on-sessions-being-dumped.patch
patches.kabi/revert-wlcore-Add-RX_BA_WIN_SIZE_CHANGE_EVENT-event.patch
patches.kabi/revert-mac80211-RX-BA-support-for-sta-max_rx_aggrega.patch
patches.kabi/revert-mac80211-pass-block-ack-session-timeout-to-to.patch
patches.kabi/kabi-protect-struct-fib_info.patch
patches.kabi/kabi-protect-struct-pglist_data.patch
########################################################
#
# 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/cloneconfig.diff
########################################################
# kbuild/module infrastructure fixes
########################################################
patches.suse/rpm-kernel-config
patches.suse/split-package
patches.suse/supported-flag
patches.suse/supported-flag-underscores
patches.suse/supported-flag-wildcards
patches.suse/supported-flag-external
patches.suse/genksyms-add-override-flag.diff
patches.suse/unsupported-features.patch
patches.suse/module-Inform-user-when-loading-externally-supported.patch
patches.fixes/0001-genksyms-Handle-string-literals-with-spaces-in-refer.patch
patches.fixes/0001-module-keep-percpu-symbols-in-module-s-symtab.patch
# bnc870450, fate317144
patches.suse/0003-Add-external-no-support-as-bad-taint-module.patch
patches.fixes/module-Issue-warnings-when-tainting-kernel.patch
patches.suse/0001-taint-module-Clean-up-global-and-module-taint-flags-.patch
patches.suse/0002-module-move-add_taint_module-to-a-header-file.patch
########################################################
# Simple export additions/removals
########################################################
patches.suse/0001-oracleasm-4.0-compat-changes.patch
########################################################
# Bug workarounds for binutils
########################################################
########################################################
# Functional patches pending for -stable
# Patches in this section should be per-subsystem and considered as
# merge candidates for 4.4-stable.
# -stable pending: cpuidle
patches.suse/drivers-cpuidle-make-cpuidle-clps711x.c-explicitly-non-modular.patch
patches.suse/drivers-cpuidle-make-cpuidle-ux500.c-explicitly-non-modular.patch
patches.suse/drivers-cpuidle-make-cpuidle-exynos.c-explicitly-non-modular.patch
patches.suse/powerpc-powernv-panic-on-OPAL-V3.patch
patches.suse/powerpc-powernv-Remove-OPALv2-firmware-define-and-references.patch
patches.suse/powerpc-powernv-remove-FW_FEATURE_OPALv3-and-just-use-FW_FEATURE_OPAL.patch
patches.suse/cpuidle-Don-t-enable-all-governors-by-default.patch
patches.suse/cpuidle-coupled-remove-unused-define-cpuidle_coupled_lock.patch
# -stable pending: VM compaction
patches.suse/mm-compaction-fix-invalid-free_pfn-and-compact_cached_free_pfn.patch
patches.suse/mm-compaction-pass-only-pageblock-aligned-range-to-pageblock_pfn_to_page.patch
# -stable pending: VM writeback
patches.suse/mm-page-writeback-fix-dirty_ratelimit-calculation.patch
patches.suse/mm-rmap-batched-invalidations-should-use-existing-api.patch
# -stablle pending: Memory initialisation
########################################################
# Performance patches pending for -stable
#
# Patches in this section should be per-subsystem and considered as
# merge candidates for 4.4-stable. This allows comparisons between
# 4.4-stable and SLE to avoid regressions introduced by functional
# backports.
########################################################
# -stable pending: VM
patches.suse/mm-mempolicy-c-convert-the-shared_policy-lock-to-a-rwlock.patch
patches.suse/vmscan-do-not-force-scan-file-lru-if-its-absolute-size-is-small.patch
patches.suse/mm-vmscan-consider-isolated-pages-in-zone_reclaimable_pages.patch
patches.suse/mm-allow-GFP_-FS-IO-for-page_cache_read-page-cache-allocation.patch
patches.suse/mm-page_alloc-generalize-the-dirty-balance-reserve.patch
patches.suse/proc-meminfo-estimate-available-memory-more-conservatively.patch
patches.suse/mm-compaction-speed-up-pageblock_pfn_to_page-when-zone-is-contiguous.patch
patches.suse/cgroup-memcg-writeback-drop-spurious-rcu-locking-around-mem_cgroup_css_from_page.patch
# -stable pending: VM/FS
patches.suse/mm-filemap-remove-redundant-code-in-do_read_cache_page.patch
patches.suse/mm-filemap-avoid-unnecessary-calls-to-lock_page-when-waiting-for-IO-to-complete-during-a-read.patch
patches.fixes/mm-zswap-use-workqueue-to-destroy-pool.patch
patches.fixes/zswap-don-t-param_set_charp-while-holding-spinlock.patch
# -stable pending: Automatic NUMA balancing
patches.suse/sched-numa-cap-pte-scanning-overhead-to-3-of-run-time.patch
patches.suse/mm-mprotect.c-don-t-touch-single-threaded-PTEs-which-are-on-the-right-node.patch
# -stable pending: CPU scheduler (overhead, cache footprint)
patches.suse/sched-fair-Remove-empty-idle-enter-and-exit-functions.patch
patches.suse/sched-fair-Move-the-cache-hot-load_avg-variable-into-its-own-cacheline.patch
patches.suse/sched-fair-Disable-the-task-group-load_avg-update-for-the-root_task_group.patch
patches.suse/sched-fair-Optimize-find_idlest_cpu-when-there-is-no-choice.patch
patches.suse/sched-core-Optimize-__schedule.patch
# -stable pending: cpuidle (~20% improvement in pipe-test turnaround time on Haswell)
patches.suse/cpuidle-x86-increase-forced-cut-off-for-polling-to-20us.patch
patches.suse/cpuidle-menu-use-interactivity_req-to-disable-polling.patch
patches.suse/cpuidle-menu-Fix-menu_select-for-CPUIDLE_DRIVER_STATE_START-0.patch
patches.suse/sched-idle-Drop-default_idle_call-fallback-from-call_cpuidle.patch
patches.suse/cpuidle-fix-fallback-mechanism-for-suspend-to-idle-in-absence-of-enter_freeze.patch
patches.suse/cpuidle-menu-smooth-out-measured_us-calculation.patch
patches.suse/time-nohz-Expose-tick_nohz_enabled.patch
patches.suse/cpuidle-Default-to-ladder-governor-on-ticking-systems.patch
patches.suse/cpuidle-menu-Avoid-pointless-checks-in-menu_select.patch
patches.suse/cpuidle-menu-avoid-expensive-square-root-computation.patch
patches.suse/cpuidle-menu-help-gcc-generate-slightly-better-code.patch
patches.suse/cpuidle-menu-use-high-confidence-factors-only-when-considering-polling.patch
# -stable pending: cpufreq microoptimisations
patches.suse/intel_pstate-Remove-extra-conversions-in-pid-calculation.patch
patches.suse/intel_pstate-Optimize-calculation-for-max-min_perf_adj.patch
patches.suse/intel_pstate-Move-intel_pstate_calc_busy-into-get_target_pstate_use_performance.patch
patches.suse/intel_pstate-Remove-freq-calculation-from-intel_pstate_calc_busy.patch
patches.suse/cpufreq-pcc-cpufreq-Fix-doorbell.access_width.patch
# -stable pending: Filesystem locks
patches.suse/locks-don-t-check-for-race-with-close-when-setting-OFD-lock.patch
# -stable pending: x86 uaccess when SMAP is available
patches.suse/x86-reorganize-SMAP-handling-in-user-space-accesses.patch
patches.suse/Add-unsafe-user-access-functions-for-batched-accesses.patch
patches.suse/Use-the-new-batched-user-accesses-in-generic-user-string-handling.patch
patches.suse/0001-x86-fix-SMAP-in-32-bit-environments.patch
# -stable pending: futex (~30% improvement in futexbench)
patches.suse/0001-futex-Rename-barrier-references-in-ordering-guarante.patch
patches.suse/0002-futex-Remove-requirement-for-lock_page-in-get_futex_.patch
patches.suse/0001-futex-Replace-barrier-in-unqueue_me-with-READ_ONCE.patch
# -stable pending locking/core (~15% improvement in aim7)
patches.suse/0001-locking-mutex-Allow-next-waiter-lockless-wakeup.patch
# -stable pending page allocator (15-25% improvement in microbenchmarks)
patches.suse/mm-page_alloc-only-check-PageCompound-for-high-order-pages.patch
patches.suse/mm-page_alloc-reduce-branches-in-zone_statistics.patch
patches.suse/mm-page_alloc-inline-zone_statistics.patch
patches.suse/mm-page_alloc-inline-the-fast-path-of-the-zonelist-iterator.patch
patches.suse/mm-page_alloc-use-__dec_zone_state-for-order-0-page-allocation.patch
patches.suse/mm-page_alloc-avoid-unnecessary-zone-lookups-during-pageblock-operations.patch
patches.suse/mm-page_alloc-convert-alloc_flags-to-unsigned.patch
patches.suse/mm-page_alloc-convert-nr_fair_skipped-to-bool.patch
patches.suse/mm-page_alloc-remove-unnecessary-local-variable-in-get_page_from_freelist.patch
patches.suse/mm-page_alloc-remove-unnecessary-initialisation-in-get_page_from_freelist.patch
patches.suse/mm-page_alloc-remove-unnecessary-initialisation-from-__alloc_pages_nodemask.patch
patches.suse/mm-page_alloc-simplify-last-cpupid-reset.patch
patches.suse/mm-page_alloc-move-__GFP_HARDWALL-modifications-out-of-the-fastpath.patch
patches.suse/mm-page_alloc-check-once-if-a-zone-has-isolated-pageblocks.patch
patches.suse/mm-page_alloc-shorten-the-page-allocator-fast-path.patch
patches.suse/mm-page_alloc-reduce-cost-of-fair-zone-allocation-policy-retry.patch
patches.suse/mm-page_alloc-shortcut-watermark-checks-for-order-0-pages.patch
patches.suse/mm-page_alloc-avoid-looking-up-the-first-zone-in-a-zonelist-twice.patch
patches.suse/mm-page_alloc-remove-field-from-alloc_context.patch
patches.suse/mm-page_alloc-check-multiple-page-fields-with-a-single-branch.patch
patches.suse/mm-page_alloc-un-inline-the-bad-part-of-free_pages_check.patch
patches.suse/mm-page_alloc-pull-out-side-effects-from-free_pages_check.patch
patches.suse/mm-page_alloc-remove-unnecessary-variable-from-free_pcppages_bulk.patch
patches.suse/mm-page_alloc-inline-pageblock-lookup-in-page-free-fast-paths.patch
patches.suse/cpuset-use-static-key-better-and-convert-to-new-API.patch
patches.suse/mm-page_alloc-defer-debugging-checks-of-freed-pages-until-a-PCP-drain.patch
patches.suse/mm-page_alloc-defer-debugging-checks-of-pages-allocated-from-the-PCP.patch
patches.suse/mm-page_alloc-don-t-duplicate-code-in-free_pcp_prepare.patch
patches.suse/mm-page_alloc-uninline-the-bad-page-part-of-check_new_page.patch
patches.suse/mm-page_alloc-restore-the-original-nodemask-if-the-fast-path-allocation-failed.patch
patches.suse/mm-page_alloc-prevent-infinite-loop-in-buffered_rmqueue.patch
patches.suse/mm-page_alloc-reset-zonelist-iterator-after-resetting-fair-zone-allocation-policy.patch
patches.suse/mm-page_alloc-Recalculate-the-preferred-zoneref-if-the-context-can-ignore-memory-policies.patch
# -stable pending swap performance
patches.suse/mm-don-t-use-radix-tree-writeback-tags-for-pages-in-swap-cache.patch
# -stable pending proc performance
patches.suse/proc-much-faster-proc-vmstat.patch
# -stable pending times/clock_gettime performance (bnc#981795)
# Patch slightly improves the situation but still short of expectations
patches.suse/sched-cpuacct-Simplify-the-cpuacct-code.patch
# git fixes that are stable candidates
patches.suse/mm-page_alloc-keep-pcp-count-and-list-contents-in-sync-if-struct-page-is-corrupted.patch
patches.suse/mm-page_alloc-fix-check-for-NULL-preferred_zone.patch
patches.suse/mm-page_alloc-fix-fast-path-race-with-cpuset-update-or-removal.patch
patches.suse/mm-page_alloc-move-cpuset-seqcount-checking-to-slowpath.patch
patches.suse/mm-page_alloc-fix-premature-OOM-when-racing-with-cpuset-mems-update.patch
# Default tuning adjustments
# -tuning: bnc#754690# Mitigate the impact of sleep times on migration decisions
patches.suse/sched-optimize-latency-defaults.patch
# -tuning: bnc#754690: ratelimit nohz
patches.suse/sched-throttle-nohz.patch
patches.drivers/intel_pstate_enable_hwp_by_default.patch
# -tuning: bnc#945201: Delay processes reaching low power states
patches.suse/intel_pstate_performance_tuned.patch
patches.suse/intel_pstate-Increase-hold-off-time-before-samples-are-scaled.patch
# -tuning: bnc#548529: Restore sequential IO performance
patches.suse/readahead-request-tunables.patch
# -tuning: bnc#981838: ondemand call frequency
patches.suse/cpufreq-ondemand-Limit-default-sampling-rate-to-300ms-max.patch
patches.suse/cpufreq-pcc-cpufreq-re-introduce-deadband-effect.patch
# -tuning: bnc#986383
patches.suse/sched-Further-improve-spurious-CPU_IDLE-active-migrations.patch
# -stable pending scheduler loadavg fix
patches.suse/sched-loadavg-Avoid-loadavg-spikes-caused-by-delayed.patch
########################################################
# Scheduler / Core
######################################################
patches.suse/setuid-dumpable-wrongdir
patches.suse/sched-provide-nortsched-boot-option.patch
patches.suse/sched-provide-rtkthreads-rtworkqueues-boot-options.patch
patches.suse/sched-reinstate-sched_compat_yield.patch
patches.suse/sched-reinstate-FAIR_SLEEPERS-feature.patch
patches.suse/sched-disable-FAIR_SLEEPERS-for-S390.patch
patches.suse/sched-domain-flags-proc-handler.patch
patches.fixes/sched-Fix-up-proc-sched_debug-to-print-only-runnable-tasks-again.patch
patches.suse/workqueue-warn-if-memory-reclaim-tries-to-flush-WQ_M.patch
patches.suse/workqueue-skip-flush-dependency-checks-for-legacy-workqueues.patch
patches.suse/sched-core-Move-task_rq_lock-out-of-line.patch
# Scheduler / NO_HZ_FULL
patches.suse/sched-wait-Document-waitqueue_active.patch
patches.suse/sched-fair-Clean-up-the-explanation-around-decaying-load-update-misses.patch
patches.suse/sched-fair-Prepare-__update_cpu_load-to-handle-active-tickless.patch
patches.suse/sched-fair-Consider-missed-ticks-in-NOHZ_FULL-in-update_cpu_load_nohz.patch
patches.suse/sched-core-Fix-incorrect-wait-time-and-wait-count-statistics.patch
patches.suse/sched-core-Use-list_is_singular-in-sched_can_stop_tick.patch
patches.suse/sched-fair-Modify-the-comment-about-lock-assumptions-in-migrate_task_rq_fair.patch
patches.suse/sched-fair-Make-it-possible-to-account-fair-load-avg-consistently.patch
patches.suse/sched-cputime-Remove-extra-cost-in-task_cputime.patch
patches.suse/sched-cputime-Clarify-vtime-symbols-and-document-them.patch
patches.suse/sched-cputime-Correctly-handle-task-guest-time-on-housekeepers.patch
patches.suse/sched-cputime-Rename-vtime_accounting_enabled-to-vtime_accounting_cpu_enabled.patch
patches.suse/sched-cputime-Introduce-vtime-accounting-check-for-readers.patch
patches.suse/sched-cputime-Convert-vtime_seqlock-to-seqcount.patch
patches.suse/sched-core-Move-the-sched_to_prio-arrays-out-of-line.patch
patches.suse/sched-fair-Avoid-redundant-idle_cpu-call-in-update_sg_lb_stats.patch
patches.suse/sched-deadline-Fix-the-earliest_dl.next-logic.patch
patches.suse/x86-fpu-Properly-align-size-in-CHECK_MEMBER_AT_END_OF-macro.patch
patches.suse/sched-core-Move-sched_entity-avg-into-separate-cache-line.patch
patches.suse/sched-fair-Fix-new-task-s-load-avg-removed-from-source-CPU-in-wake_up_new_task.patch
patches.suse/context_tracking-Switch-to-new-static_branch-API.patch
patches.suse/x86-asm-Add-asm-macros-for-static-keys-jump-labels.patch
patches.suse/x86-entry-64-Bypass-enter_from_user_mode-on-non-context-tracking-boots.patch
patches.suse/x86-kvm-On-KVM-re-enable-e.g.-after-suspend-update-clocks.patch
patches.suse/x86-vdso-pvclock-Simplify-and-speed-up-the-vdso-pvclock-reader.patch
patches.suse/x86-vdso-Get-pvclock-data-from-the-vvar-VMA-instead-of-the-fixmap.patch
patches.suse/x86-vdso-Remove-pvclock-fixmap-machinery.patch
patches.suse/x86-vdso-Enable-vdso-pvclock-access-on-all-vdso-variants.patch
patches.suse/x86-platform-uv-Include-clocksource.h-for-clocksource_touch_watchdog.patch
patches.suse/x86-entry-64_compat-Make-labels-local.patch
patches.suse/Revert-x86-kvm-On-KVM-re-enable-e.g.-after-suspend-update-clocks.patch
patches.suse/x86-vsdo-Fix-build-on-PARAVIRT_CLOCK-y-KVM_GUEST-n.patch
patches.suse/nohz-Clarify-magic-in-tick_nohz_stop_sched_tick.patch
patches.suse/arch-tile-move-user_exit-to-early-kernel-entry-sequence.patch
patches.fixes/0001-sched-preempt-Fix-preempt_count-manipulations.patch
# Mel's overhead reduction patches queued in x86-tip
patches.suse/sched-time-Remove-non-power-of-two-divides-from-__acct_update_integrals.patch
patches.suse/acct-time-Change-indentation-in-__acct_update_integrals.patch
patches.suse/time-acct-Drop-irq-save-restore-from-__acct_update_integrals.patch
patches.suse/sched-time-Switch-VIRT_CPU_ACCOUNTING_GEN-to-jiffy-granularity.patch
# End Scheduler / NO_HZ_FULL
# Scheduler: Debugging overhead fate#320486
patches.suse/sched-debug-Make-schedstats-a-runtime-tunable-that-is-disabled-by-default.patch
patches.suse/sched-debug-fix-proc-sched_debug-regression.patch
patches.suse/sched-debug-always-show-nr_migrations.patch
patches.suse/sched-debug-fix-schedstats-enable-cmdline-option.patch
patches.suse/sched-debug-Fix-deadlock-when-enabling-sched-events.patch
# vmstat update fixes
patches.suse/vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle.patch
patches.suse/vmstat-Remove-BUG_ON-from-vmstat_update.patch
patches.suse/mm-vmstat-make-quiet_vmstat-lighter.patch
patches.suse/vmstat-make-vmstat_update-deferrable.patch
# workqueue fixes
patches.suse/workqueue-schedule-WORK_CPU_UNBOUND-work-on-wq_unbound_cpumask-CPUs.patch
patches.suse/workqueue-implement-workqueue.debug_force_rr_cpu-debug-feature.patch
patches.fixes/powerpc-Remove-UP-only-lazy-floating-point-and-vecto.patch
patches.fixes/0001-mn10300-let-exit_fpu-accept-a-task.patch
patches.fixes/0002-exit_thread-remove-empty-bodies.patch
patches.fixes/0003-exit_thread-accept-a-task-parameter-to-be-exited.patch
patches.fixes/0004-fork-free-thread-in-copy_process-on-failure.patch
# v4.7 core scheduler fixes
patches.suse/sched-fair-Reset-nr_balance_failed-after-active-balancing.patch
patches.suse/sched-fair-Initiate-a-new-task-s-util-avg-to-a-bound.patch
patches.suse/sched-fair-Fix-asym-packing-to-select-correct-CPU.patch
patches.suse/sched-core-Enable-increased-load-resolution-on-64-bit-kernels.patch
patches.suse/sched-fair-Generalize-the-load-util-averages-resolution-definition.patch
patches.suse/sched-fair-Rename-SCHED_LOAD_SHIFT-to-NICE_0_LOAD_SHIFT-and-remove-SCHED_LOAD_SCALE.patch
patches.suse/sched-fair-Add-detailed-description-to-the-sched-load-avg-metrics.patch
patches.suse/sched-fair-Optimize-sum-computation-with-a-lookup-table.patch
patches.suse/sched-debug-Print-out-idle-balance-values-even-on-CONFIG_SCHEDSTATS-kernels.patch
patches.suse/sched-fair-Remove-stale-power-aware-scheduling-comments.patch
patches.suse/sched-fair-Fix-comment-in-calculate_imbalance.patch
patches.suse/sched-core-Remove-unused-variable.patch
patches.suse/sched-core-Fix-comment-typo-in-wake_q_add.patch
patches.suse/sched-fair-Move-record_wakee.patch
patches.suse/sched-fair-Prepare-to-fix-fairness-problems-on-migration.patch
patches.suse/sched-core-Kill-sched_class-task_waking-to-clean-up-the-migration-logic.patch
patches.suse/sched-fair-Fix-fairness-issue-on-migration.patch
patches.suse/sched-fair-Clean-up-scale-confusion.patch
patches.suse/sched-fair-Correct-unit-of-load_above_capacity.patch
patches.suse/sched-core-Fix-remote-wakeups.patch
patches.suse/sched-fair-Fix-post_init_entity_util_avg-serializati.patch
patches.suse/sched-fair-Fix-calc_cfs_shares-fixed-point-arithmetics-width-confusion.patch
patches.suse/sched-fair-Fix-and-optimize-the-fork-path.patch
patches.suse/sched-fair-Fix-PELT-integrity-for-new-groups.patch
patches.suse/sched-cgroup-Fix-cpu_cgroup_fork-handling.patch
patches.suse/sched-fair-Fix-PELT-integrity-for-new-tasks.patch
patches.suse/sched-fair-Apply-more-PELT-fixes.patch
patches.suse/sched-fair-Fix-incorrect-task-group-load_avg.patch
# times/clock_gettime microoptimisation
patches.suse/sched-cputime-mitigate-performance-regression-in-times-clock-gettime.patch
patches.suse/sched-cputime-Improve-scalability-by-not-accounting-thread-group-tasks-pending-runtime.patch
patches.fixes/PM-sleep-declare-__tracedata-symbols-as-char-rather-.patch
patches.fixes/time-Avoid-undefined-behaviour-in-ktime_add_safe.patch
# bnc#1022476 (scheduler audit)
patches.suse/sched-deadline-Always-calculate-end-of-period-on-sched_yield.patch
patches.suse/sched-fair-Avoid-using-decay_load_missed-with-a-negative-value.patch
patches.suse/sched-rt-Fix-PI-handling-vs.-sched_setscheduler.patch
patches.suse/sched-rt-Kick-RT-bandwidth-timer-immediately-on-start-up.patch
patches.suse/sched-rt-sched-dl-Don-t-push-if-task-s-scheduling-class-was-changed.patch
patches.suse/sched-deadline-Fix-a-bug-in-dl_overflow.patch
patches.suse/sched-fair-Fix-the-wrong-throttled-clock-time-for-cfs_rq_clock_task.patch
patches.suse/sched-cputime-Fix-prev-steal-time-accouting-during-CPU-hotplug.patch
patches.suse/sched-cputime-Add-steal-time-support-to-full-dynticks-CPU-time-accounting.patch
patches.suse/sched-deadline-Fix-wrap-around-in-DL-heap.patch
patches.suse/sched-deadline-Fix-lock-pinning-warning-during-CPU-hotplug.patch
patches.suse/sched-Make-wake_up_nohz_cpu-handle-CPUs-going-offline.patch
patches.suse/sched-fair-Improve-PELT-stuff-some-more.patch
patches.suse/sched-fair-Fix-load_above_capacity-fixed-point-arithmetic-width.patch
patches.suse/sched-Allow-hotplug-notifiers-to-be-setup-early.patch
patches.suse/sched-core-x86-topology-Fix-NUMA-in-package-topology-bug.patch
patches.suse/sched-fair-Fix-fixed-point-arithmetic-width-for-shares-and-effective-load.patch
patches.suse/sched-core-Fix-incorrect-utilization-accounting-when-switching-to-fair-class.patch
patches.suse/sched-core-Fix-set_user_nice.patch
patches.suse/sched-fair-Fix-min_vruntime-tracking.patch
patches.fixes/jump-label-fix-passing-kbuild_cflags-when-checking-f.patch
########################################################
# futex
########################################################
patches.suse/0001-futex-Allow-FUTEX_CLOCK_REALTIME-with-FUTEX_WAIT-op.patch
patches.fixes/0002-futex-Rename-free_pi_state-to-put_pi_state.patch
patches.fixes/0003-futex-Document-pi_state-refcounting-in-requeue-code.patch
patches.fixes/0004-futex-Remove-pointless-put_pi_state-calls-in-requeue.patch
patches.fixes/0005-futex-Cleanup-the-goto-confusion-in-requeue_pi.patch
patches.fixes/0001-rtmutex-Make-wait_lock-irq-safe.patch
patches.suse/0001-softirq-Let-ksoftirqd-do-its-job.patch
########################################################
# locking/core
########################################################
patches.suse/0001-locking-qspinlock-Use-_acquire-_release-versions-of-.patch
patches.suse/0002-locking-qspinlock-Prefetch-the-next-node-cacheline.patch
patches.suse/0003-locking-qspinlock-Avoid-redundant-read-of-next-point.patch
patches.suse/0004-locking-pvqspinlock-x86-Optimize-the-PV-unlock-code-.patch
patches.suse/0005-locking-sched-Introduce-smp_cond_acquire-and-use-it.patch
patches.suse/0006-sched-core-locking-Document-Program-Order-guarantees.patch
patches.suse/0007-locking-pvqspinlock-Collect-slowpath-lock-statistics.patch
patches.suse/0008-locking-pvqspinlock-Allow-limited-lock-stealing.patch
patches.suse/0009-locking-pvqspinlock-Queue-node-adaptive-spinning.patch
patches.fixes/0001-locking-cmpxchg-arch-Remove-tas-definitions.patch
patches.fixes/0002-lcoking-barriers-arch-Use-smp-barriers-in-smp_store_.patch
patches.fixes/0003-locking-barriers-arch-Remove-ambiguous-statement-in-.patch
patches.fixes/0001-kernel-locking-lockdep.c-convert-hash-tables-to-hlis.patch
patches.fixes/0001-locking-qspinlock-Move-__ARCH_SPIN_LOCK_UNLOCKED-to-.patch
patches.fixes/0001-locking-pvqspinlock-Move-lock-stealing-count-trackin.patch
patches.fixes/0002-locking-qspinlock-Use-smp_cond_acquire-in-pending-co.patch
patches.fixes/0003-locking-pvqspinlock-Enable-slowpath-locking-count-tr.patch
patches.fixes/0001-locking-lockdep-Fix-stack-trace-caching-logic.patch
patches.suse/0001-locking-csd_lock-Explicitly-inline-csd_lock-helpers.patch
patches.suse/0002-locking-csd_lock-Use-smp_cond_acquire-in-csd_lock_wa.patch
patches.suse/0001-locking-mutex-Set-and-clear-owner-using-WRITE_ONCE.patch
patches.suse/0001-locking-rtmutex-Only-warn-once-on-a-trylock-from-bad.patch
patches.suse/0001-locking-rwsem-Optimize-write-lock-by-reducing-operat.patch
patches.suse/0001-locking-mutex-Optimize-mutex_trylock-fast-path.patch
patches.fixes/0001-seqlock-fix-raw_read_seqcount_latch.patch
patches.fixes/0002-locking-seqcount-Re-fix-raw_read_seqcount_latch.patch
patches.fixes/0002-locking-qspinlock-Clarify-xchg_tail-ordering.patch
patches.fixes/0003-locking-qspinlock-Add-comments.patch
patches.fixes/0004-locking-barriers-Replace-smp_cond_acquire-with-smp_c.patch
patches.fixes/0005-locking-barriers-Introduce-smp_acquire__after_ctrl_d.patch
patches.suse/0001-locking-qspinlock-Use-__this_cpu_dec-instead-of-full.patch
patches.suse/0001-asm-generic-guard-smp_store_release-load_acquire.patch
patches.suse/0001-asm-generic-add-__smp_xxx-wrappers.patch
patches.suse/0001-asm-generic-implement-virt_xxx-memory-barriers.patch
patches.suse/0001-locking-barriers-Move-smp_cond_load_acquire-to-asm-g.patch
patches.suse/0001-locking-spinlock-arch-Update-and-fix-spin_unlock_wai.patch
patches.suse/0001-locking-rwsem-Get-rid-of-__down_write_nested.patch
patches.suse/0001-locking-spinlock-Update-spin_unlock_wait-users.patch
patches.suse/0001-locking-avoid-passing-around-thread_info-in-mutex-de.patch
patches.fixes/0001-locking-pvqspinlock-Fix-double-hash-race.patch
patches.fixes/0001-locking-pvqspinlock-Fix-a-bug-in-qstat_read.patch
patches.fixes/0001-locking-qrwlock-Fix-write-unlock-bug-on-big-endian-s.patch
patches.suse/0001-locking-pv-qspinlock-Use-cmpxchg_release-in-__pv_que.patch
# arch-specific locking
patches.arch/0001-powerpc-spinlock-Fix-spin_unlock_wait.patch
patches.arch/0001-arm64-spinlock-serialise-spin_unlock_wait-against-co.patch
patches.arch/0002-arm64-spinlock-order-spin_-is_locked-unlock_wait-aga.patch
patches.arch/0003-arm64-spinlock-fix-spin_unlock_wait-for-LSE-atomics.patch
patches.arch/0004-arm64-spinlock-Ensure-forward-progress-in-spin_unloc.patch
########################################################
# locking/rcu
########################################################
patches.suse/0001-rcu-Create-transitive-rnp-lock-acquisition-functions.patch
patches.suse/0002-rcu-Add-transitivity-to-remaining-rcu_node-lock-acqu.patch
patches.suse/0001-rcu-Short-circuit-synchronize_sched_expedited-if-onl.patch
patches.suse/0001-rcu-Clarify-role-of-expmaskinitnext.patch
patches.suse/0001-rcu-Move-smp_mb-from-rcu_seq_snap-to-rcu_exp_gp_seq_.patch
patches.suse/0001-rcu-Invert-sync_rcu_exp_select_cpus-if-statement.patch
patches.suse/0001-rcu-Reduce-expedited-GP-memory-contention-via-per-CP.patch
patches.suse/0001-rcu-Make-expedited-grace-periods-resolve-stall-warni.patch
patches.suse/0002-rcu-Add-more-diagnostics-to-expedited-stall-warning-.patch
patches.suse/0001-rcu-Move-lock_class_key-to-local-scope.patch
patches.suse/0001-rcu-Simplify-rcu_sched_qs-control-flow.patch
patches.suse/0001-rcu-Remove-lock-acquisition-loop-from-rcu_read_unloc.patch
patches.suse/0001-rcu-Fix-obsolete-rcu_bootup_announce_oddness-comment.patch
patches.suse/0001-rcu-Stop-disabling-interrupts-in-scheduler-fastpaths.patch
patches.suse/0001-rcu-Don-t-redundantly-disable-irqs-in-rcu_irq_-enter.patch
patches.suse/0001-rcu-Move-wakeup-out-from-under-rnp-lock.patch
patches.suse/0001-rcu-Assign-false-instead-of-0-for-core_needs_qs.patch
patches.suse/0001-rcu-Update-rcu_report_qs_rsp-comment.patch
patches.suse/0001-rcu-Stop-treating-in-kernel-CPU-bound-workloads-as-e.patch
patches.suse/0001-rcu-Set-rdp-gpwrap-when-CPU-is-idle.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.
########################################################
# 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
########################################################
# Upstream commit c8b5db7de66b75330a96f9f1ad7376b89646c953
# changed this area a lot.
patches.arch/x86_64-hpet-64bit-timer.patch
# bsc#940946, bsc#937444: kexec, apic_extnmi
patches.arch/00-panic-x86-fix-re-entrance-problem-due-to-panic-on-nmi.patch
patches.arch/01-panic-x86-allow-cpus-to-save-registers-even-if-looping-in-nmi-context.patch
patches.arch/02-kexec-fix-race-between-panic-and-crash_kexec.patch
patches.arch/03-x86-apic-introduce-apic_extnmi-command-line-parameter.patch
patches.arch/04-x86-nmi-save-regs-in-crash-dump-on-external-nmi.patch
patches.arch/05-documentation-document-kernel-panic_on_io_nmi-sysctl.patch
patches.arch/x86_intel_do_not_modify_perf_bias.patch
patches.drivers/intel_idle-Add-SKX-support
patches.drivers/intel_idle-Add-KBL-support
patches.drivers/intel_rapl_add_missing_0x46_cpu.patch
patches.drivers/powercap-intel_rapl-Add-support-for-Kabylake
patches.drivers/x86-powercap-rapl-Use-Intel-model-macros-intead-of-o
patches.drivers/x86-powercap-rapl-Reorder-CPU-detection-table
patches.drivers/powercap-RAPL-Add-support-for-Ivy-Bridge-server
patches.drivers/x86-powercap-rapl-Add-Skylake-Server-model-number
patches.drivers/powercap-RAPL-add-support-for-Denverton
# fate#320473 AMD Zen, Perf support
patches.arch/01-perf-x86-msr-add-amd-ptsc-performance-time-stamp-counter-support.patch
patches.arch/02-perf-x86-msr-add-amd-irperf-instructions-retired-performance-counter.patch
patches.arch/03-perf-x86-add-perf-support-for-amd-family-17h-processors.patch
#x86 RAS update, fate#320474 - AMD SMCA, fate#319858 - NVDIMM recoverable errors
patches.arch/01-x86-mce-do-not-enter-deferred-errors-into-the-generic-pool-twice.patch
patches.arch/02-x86-ras-remove-mce-usable_addr.patch
patches.arch/03-x86-mce-add-the-missing-memory-error-check-on-amd.patch
patches.arch/04-x86-mce-make-usable-address-checks-intel-only.patch
patches.arch/05-x86-mce-fix-order-of-amd-mce-init-function-call.patch
patches.arch/06-x86-mce-amd-do-not-perform-shared-bank-check-for-future-processors.patch
patches.arch/07-x86-mce-amd-reduce-number-of-blocks-scanned-per-bank.patch
patches.arch/08-x86-mce-amd-fix-lvt-offset-configuration-for-thresholding.patch
patches.arch/09-x86-mce-amd-carve-out-threshold-block-preparation.patch
patches.arch/10-x86-mce-amd-set-mcax-enable-bit.patch
patches.arch/11-x86-mm-expand-the-exception-table-logic-to-allow-new-handling-options.patch
patches.arch/12-x86-mce-check-for-faults-tagged-in-extable_class_fault-exception-table-entries.patch
patches.arch/13-x86-mm-x86-mce-add-memcpy_mcsafe.patch
patches.arch/14-x86-mm-x86-mce-fix-return-type-value-for-memcpy_mcsafe.patch
patches.arch/15-perf-bench-mem-prepare-the-x86-64-build-for-upstream-memcpy_mcsafe-changes.patch
# see NVDIMM section for patch 16-x86-pmem-use-memcpy_mcsafe-for-memcpy_from_pmem.patch
patches.arch/17-x86-mce-move-mcx_config-msr-definitions.patch
patches.arch/18-x86-mce-amd-edac-enable-error-decoding-of-scalable-mca-errors.patch
patches.arch/19-x86-mce-amd-fix-logic-to-obtain-block-address.patch
patches.arch/20-x86-mce-amd-document-some-functionality.patch
patches.arch/21-x86-cpufeature-create-a-new-synthetic-cpu-capability-for-machine-check-recovery.patch
patches.arch/22-x86-mce-log-mces-after-a-warm-rest-on-amd-fam17h-and-later.patch
patches.arch/23-x86-mce-grade-uncorrected-errors-for-smca-enabled-systems.patch
patches.arch/24-x86-mce-carve-out-writes-to-mcx_status-and-mcx_ctl.patch
patches.arch/25-x86-mce-define-vendor-specific-msr-accessors.patch
patches.arch/26-x86-mce-detect-and-use-smca-specific-msr_ops.patch
patches.arch/27-x86-mce-detect-local-mces-properly.patch
patches.arch/28-x86-mce-amd-log-deferred-errors-using-smca-mca_de-stat-addr-registers.patch
patches.arch/29-x86-mce-amd-disable-logdeferredinmcastat-for-smca-systems.patch
patches.arch/30-x86-mce-amd-save-an-indentation-level-in-prepare_threshold_block.patch
patches.arch/32-x86-cpufeature-cleanup-get_cpu_cap.patch
patches.arch/33-x86-cpu-add-detection-of-amd-ras-capabilities.patch
patches.arch/34-x86-mce-update-amd-mcheck-init-to-use-cpu_has-facilities.patch
patches.arch/35-edac-mce_amd-detect-smca-using-x86_feature_smca.patch
patches.arch/36-x86-ras-add-smca-support-to-amd-error-injector.patch
patches.arch/37-x86-mce-amd-increase-size-of-the-bank_map-type.patch
patches.arch/38-x86-mce-amd-use-msr_ops-misc-in-allocate_threshold_blocks.patch
patches.arch/39-x86-mce-amd-read-msrs-on-the-cpu-allocating-the-threshold-blocks.patch
patches.arch/40-edac-mce_amd-add-missing-smca-error-descriptions.patch
patches.arch/41-edac-mce_amd-use-smca-prefix-for-error-descriptions-arrays.patch
patches.arch/42-x86-mce-amd-edac-mce_amd-define-and-use-tables-for-known-smca-ip-types.patch
patches.arch/43-x86-mce-amd-update-sysfs-bank-names-for-smca-systems.patch
patches.arch/0001-x86-um-reuse-asm-generic-barrier.h.patch
patches.arch/0001-x86-reuse-asm-generic-barrier.h.patch
patches.arch/0001-x86-define-__smp_xxx.patch
patches.arch/0001-locking-x86-Add-cc-clobber-for-ADDL.patch
patches.arch/0002-locking-x86-Drop-a-comment-left-over-from-X86_OOSTOR.patch
patches.arch/0003-locking-x86-Tweak-the-comment-about-use-of-wmb-for-I.patch
# bsc#987810
patches.arch/x86-cpufeature-enable-new-avx-512-features.patch
# bsc#985025 - Knights Landing A/D leak
patches.arch/x86-cpu-intel-introduce-macros-for-intel-family-numbers
patches.arch/0001-x86-mm-move-swap-offset-type-up-in-pte-to-work-around-erratum
patches.arch/0002-x86-mm-ignore-a-d-bits-in-pte-pmd-pud_none
patches.arch/0003-x86-mm-disallow-running-with-32-bit-ptes-to-work-around-erratum
patches.arch/0004-x86-mm-use-pte_none-to-test-for-empty-pte
patches.arch/x86-mm-Fix-swap-entry-comment-and-macro.patch
# bsc#1013479 - Crashes in interrupt handling on kendall blades
patches.fixes/x86-apic-order-irq_enter-exit-calls-correctly-vs-ack_apic_irq
# bsc#1014710, f99fd22e4d4b ("x86/hpet: Reduce HPET counter read contention")
patches.fixes/x86-hpet-reduce-hpet-counter-read-contention.patch
# bsc#1029220
patches.arch/x86-platform-remove-warning-message-for-duplicate-nmi-handlers.patch
# bsc#1027512 AMD Zen SMT topology
patches.arch/x86-cpu-amd-fix-zen-smt-topology.patch
########################################################
# x86 MCE/MCA (Machine Check Error/Architecture) extensions
########################################################
# bsc#1013994
patches.arch/x86-mce-dump-mce-to-dmesg-if-no-consumers.patch
patches.arch/x86-mce-don-t-print-mces-when-mcelog-is-active.patch
# bsc#1028027
patches.arch/x86-ras-therm_throt-do-not-log-a-fake-mce-for-thermal-events.patch
########################################################
# x86_64/4096CPUS - from SGI
########################################################
patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch
########################################################
# x86 UV patches from SGI
########################################################
# fate#320789 - [LATE] Disable BAU per default
patches.arch/x86-platform-uv-disable-uv-bau-by-default
# fate#320837, bsc#978503, fate#320837 - SGI UV4 platform support
patches.arch/0001-x86-platform-uv-add-initial-uv4-definitions
patches.arch/0002-x86-platform-uv-add-uv-architecture-defines
patches.arch/0003-x86-platform-uv-add-uv4-specific-defines
patches.arch/0004-x86-platform-uv-add-uv-mmr-illegal-access-function
patches.arch/0005-x86-platform-uv-prep-for-uv4-mmr-updates
patches.arch/0006-x86-platform-uv-add-uv4-specific-mmr-definitions
patches.arch/0007-x86-platform-uv-clean-up-redunduncies-after-merge-of-uv4-mmr-definitions
patches.arch/0008-x86-platform-uv-update-mmioh-setup-function-to-work-for-both-uv3-and-uv4
patches.arch/0009-x86-platform-uv-create-per-cpu-info-structs-to-replace-per-hub-info-structs
patches.arch/0010-x86-platform-uv-move-scir-info-to-the-per-cpu-info-struct
patches.arch/0011-x86-platform-uv-move-blade-local-processor-id-to-the-per-cpu-info-struct
patches.arch/0012-x86-platform-uv-allocate-common-per-node-hub-info-structs-on-local-node
patches.arch/0013-x86-platform-uv-fold-blade-info-into-per-node-hub-info-structs
patches.arch/0014-x86-platform-uv-add-uv4-addressing-discovery-function
patches.arch/0015-x86-platform-uv-add-obtaining-gam-range-table-from-uv-bios
patches.arch/0016-x86-platform-uv-support-uv4-socket-address-changes
patches.arch/0017-x86-platform-uv-build-gam-reference-tables
patches.arch/0018-x86-platform-uv-update-physical-address-conversions-for-uv4
patches.arch/0019-x86-platform-uv-remove-obsolete-gru-mmr-address-translation
patches.arch/0020-x86-platform-uv-fix-incorrect-nodes-and-pnodes-for-cpuless-and-memoryless-nodes
# bsc#993365 - UV4 upstream bugfixes
patches.arch/0001-x86-platform-uv-fix-problem-with-uv4-socket-ids-not-being-contiguous
patches.arch/0002-x86-platform-uv-fix-bug-with-iounmap-of-the-uv4-efi-system-table-causing-a-crash
patches.arch/0003-x86-platform-uv-fix-problem-with-uv4-bios-providing-incorrect-pxm-values
patches.arch/0004-x86-platform-uv-fix-kernel-panic-running-rhel-kdump-kernel-on-uv-systems
# bsc#1023866 - Update patches to complete SGI UV4 functionality
patches.arch/0001-x86-apic-uv-silence-a-shift-wrapping-warning
patches.arch/0002-x86-platform-uv-fix-2-socket-config-problem
patches.arch/0003-x86-platform-uv-fix-panic-with-missing-uvsystab-support
patches.arch/0004-x86-platform-uv-clean-up-the-uv-apic-code
patches.arch/0005-x86-platform-uv-add-support-for-uv4-hubless-systems
patches.arch/0006-x86-platform-uv-add-support-for-uv4-hubless-nmis
patches.arch/0007-x86-platform-uv-add-basic-cpu-nmi-health-check
patches.arch/0008-x86-platform-uv-verify-nmi-action-is-valid-default-is-standard
patches.arch/0009-x86-platform-uv-initialize-pch-gpp_d_0-nmi-pin-to-be-nmi-source
patches.arch/0010-x86-platform-uv-ensure-uv_system_init-is-called-when-necessary
patches.arch/0011-x86-platform-uv-clean-up-the-nmi-code-to-match-current-coding-style
# bsc#1031147 - Calculation of the global physical address (GPA) on UV4 is incorrect
patches.arch/x86-platform-uv-fix-calculation-of-global-physical-address
# bsc#1035024 - Fix BAU errors on UV4 hardware
patches.arch/0001-x86-platform-uv-bau-clean-up-vertical-alignment
patches.arch/0002-x86-platform-uv-bau-clean-up-and-update-printks
patches.arch/0003-x86-platform-uv-bau-clean-up-pq_init
patches.arch/0004-x86-platform-uv-bau-convert-uv_physnodeaddr-use-to-uv_gpa_to_offset
patches.arch/0005-x86-platform-uv-bau-add-generic-function-pointers
patches.arch/0006-x86-platform-uv-bau-use-generic-function-pointers
patches.arch/0007-x86-platform-uv-bau-populate-uvhub_version-with-uv4-version-information
patches.arch/0008-x86-platform-uv-bau-disable-software-timeout-on-uv4-hardware
patches.arch/0009-x86-platform-uv-bau-fix-payload-queue-setup-on-uv4-hardware
patches.arch/0010-x86-platform-uv-bau-add-uv4-specific-functions
patches.arch/0011-x86-platform-uv-bau-fix-hub-errors-by-remove-initial-write-to-sw-ack-register
patches.arch/0012-x86-platform-uv-bau-cleanup-bau_operations-declaration-and-instances
patches.arch/0013-x86-platform-uv-bau-add-uv_bau_version-enumerated-constants
patches.arch/0014-x86-platform-uv-bau-add-payload-descriptor-qualifier
patches.arch/0015-x86-platform-uv-bau-add-status-mmr-location-fields-to-bau_control
patches.arch/0016-x86-platform-uv-bau-add-wait_completion-to-bau_operations
patches.arch/0017-x86-platform-uv-bau-implement-uv4_wait_completion-with-read_status
########################################################
# x86_64/i386 depending on the UV patchset
########################################################
########################################################
# powerpc/generic
########################################################
patches.suse/8250-sysrq-ctrl_o.patch
patches.arch/ppc-pegasos-console-autodetection.patch
patches.suse/ppc-powerbook-usb-fn-key-default.patch
patches.drivers/ppc64-adb
patches.suse/suse-ppc64-branding
patches.arch/ppc-prom-nodisplay.patch
patches.arch/0001-powerpc-reuse-asm-generic-barrier.h.patch
patches.arch/0001-powerpc-define-__smp_xxx.patch
# This patch makes Ethernet device names persist across device
# removal/hotplug but can cause the initial device names after boot
# to change when applied -- see bsc#998394
- patches.arch/powerpc-pci-Assign-fixed-PHB-number-based-on-device-tree-properties
patches.fixes/powerpc-tm-Fix-stack-pointer-corruption-in-__tm_recheckpoint
patches.fixes/powerpc-eeh-Fix-invalid-cached-PE-primary-bus
patches.suse/powerpc-increase-RMA-size
patches.arch/powerpc-add-kernel-parameter-iommu_alloc_quiet.patch
patches.fixes/Revert-powerpc-numa-Fix-percpu-allocations-to-be-NUM
########################################################
# powerpc/little endian
########################################################
patches.arch/ppc64le-build-vmlinux.patch
patches.arch/ppc64le-ile-0001-powerpc-Add-global-exports-for-all-interrupt-vectors.patch
patches.arch/ppc64le-ile-0002-powerpc-Add-relocation-code-for-fixups.patch
patches.arch/ppc64le-ile-0003-powerpc-Add-hack-to-make-ppc64le-work-on-hosts-witho.patch
patches.arch/ppc64le-ile-0004-powerpc-Don-t-return-to-BE-mode-when-we-are-already-.patch
patches.arch/powerpc-Blacklist-GCC-5.4-6.1-and-6.2.patch
# fate#320253
patches.drivers/ibmvnic-00-Driver-for-IBM-System-i-p-VNIC-protocol.patch
patches.drivers/ibmvnic-01-Fix-ibmvnic_capability-struct.patch
patches.drivers/ibmvnic-02-enable-RX-checksum-offload.patch
patches.drivers/ibmvnic-03-map-L2-L3-L4-header-descriptors-to-firmware.patch
patches.drivers/ibmvnic-04-Enable-use-of-multiple-tx-rx-scrqs.patch
patches.drivers/ibmvnic-05-fix-to-use-list_for_each_safe-when-delete-items
patches.drivers/ibmvnic-06-properly-start-and-stop-tx-queues
patches.drivers/ibmvnic-07-dispose-irq-mappings
patches.drivers/ibmvnic-08-simplify-and-improve-driver-probe-function
patches.drivers/ibmvnic-09-Fix-passive-VNIC-server-login-process
# bsc#1015416
patches.drivers/ibmvnic-10-Handle-backing-device-failover-and-reinitial.patch
patches.drivers/ibmvnic-11-convert-to-use-simple_open.patch
patches.drivers/ibmvnic-12-fix-error-return-code-in-ibmvnic_probe.patch
patches.drivers/ibmvnic-13-Driver-Version-1.0.1.patch
patches.drivers/ibmvnic-14-Fix-GFP_KERNEL-allocation-in-interrupt-conte.patch
patches.drivers/ibmvnic-15-Update-MTU-after-device-initialization.patch
patches.drivers/ibmvnic-16-Fix-releasing-of-sub-CRQ-IRQs-in-interrupt-c.patch
patches.drivers/ibmvnic-17-Fix-missing-brackets-in-init_sub_crq_irqs.patch
patches.drivers/ibmvnic-18-Start-completion-queue-negotiation-at-server.patch
patches.drivers/ibmvnic-19-Unmap-ibmvnic_statistics-structure.patch
patches.drivers/ibmvnic-20-Fix-size-of-debugfs-name-buffer.patch
patches.drivers/ibmvnic-21-drop-duplicate-header-seq_file.h.patch
# bsc#1031512 (SP2 only)
patches.drivers/ibmvnic-Fix-initial-MTU-settings.patch
patches.drivers/ibmvnic-23-Initialize-completion-variables-before-start.patch
patches.drivers/ibmvnic-24-Call-napi_disable-instead-of-napi_enable-in-.patch
patches.drivers/ibmvnic-25-Fix-endian-error-when-requesting-device-capa.patch
patches.drivers/ibmvnic-26-Fix-endian-errors-in-error-reporting-output.patch
patches.drivers/ibmvnic-27-Handle-processing-of-CRQ-messages-in-a-taskl.patch
patches.drivers/ibmvnic-28-Use-common-counter-for-capabilities-checks.patch
patches.drivers/ibmvnic-29-Make-CRQ-interrupt-tasklet-wait-for-all-capa.patch
patches.drivers/ibmvnic-30-Fix-overflowing-firmware-hardware-TX-queue.patch
patches.drivers/ibmvnic-31-Allocate-number-of-rx-tx-buffers-agreed-on-b.patch
patches.drivers/ibmvnic-32-Free-tx-rx-scrq-pointer-array-when-releasing.patch
patches.drivers/ibmvnic-33-Move-login-and-queue-negotiation-into-ibmvni.patch
patches.drivers/ibmvnic-34-Move-login-to-its-own-routine.patch
patches.drivers/ibmvnic-35-Move-ibmvnic-adapter-intialization-to-its-ow.patch
patches.drivers/ibmvnic-36-Correct-ibmvnic-handling-of-device-open-clos.patch
patches.drivers/ibmvnic-37-Remove-unused-net_stats-member-from-stru.patch
# fate#318001
patches.drivers/cxlflash-Removed-driver-date-print.patch
patches.drivers/cxlflash-drop-unlikely-before-IS_ERR_OR_NULL.patch
# fate#320647
patches.arch/Revert-powerpc-pci-Remove-unused-struct-pci_dn.pcide.patch
patches.arch/powerpc-Add-__raw_rm_writeq-function.patch
patches.arch/powerpc-powernv-Add-support-for-Nvlink-NPUs.patch
patches.arch/powerpc-powernv-Fix-update-of-NVLink-DMA-mask.patch
patches.arch/powerpc-powernv-Change-NPU-PE-assignment.patch
patches.arch/powerpc-powernv-Reserve-PE-0-on-NPU.patch
patches.arch/cxl-use-Werror-only-with-CONFIG_PPC_WERROR.patch
patches.arch/misc-cxl-use-kobj_to_dev.patch
# fate#319921
patches.arch/cxlflash-Simplify-PCI-registration.patch
patches.arch/cxlflash-Unmap-problem-state-area-before-detaching-m.patch
patches.arch/cxlflash-Split-out-context-initialization.patch
patches.arch/cxlflash-Simplify-attach-path-error-cleanup.patch
patches.arch/cxlflash-Reorder-user-context-initialization.patch
patches.arch/cxl-Move-common-code-away-from-bare-metal-specific-f.patch
patches.arch/cxl-Move-bare-metal-specific-code-to-specialized-fil.patch
patches.arch/cxl-Define-process-problem-state-area-at-attach-time.patch
patches.arch/cxl-Introduce-implementation-specific-API.patch
patches.arch/cxl-Rename-some-bare-metal-specific-functions.patch
patches.arch/cxl-Isolate-a-few-bare-metal-specific-calls.patch
patches.arch/cxl-Update-cxl_irq-prototype.patch
patches.arch/cxl-IRQ-allocation-for-guests.patch
patches.arch/powerpc-New-possible-return-value-from-hcall.patch
patches.arch/cxl-New-hcalls-to-support-cxl-adapters.patch
patches.arch/cxl-Separate-bare-metal-fields-in-adapter-and-AFU-da.patch
patches.arch/cxl-Add-guest-specific-code.patch
patches.arch/cxl-sysfs-support-for-guests.patch
patches.arch/cxl-Support-to-flash-a-new-image-on-the-adapter-from.patch
patches.arch/cxl-Parse-device-tree-and-create-cxl-device-s-at-boo.patch
patches.arch/cxl-Support-the-cxl-kernel-API-from-a-guest.patch
patches.arch/cxl-Adapter-failure-handling.patch
patches.arch/cxl-Add-tracepoints-around-the-cxl-hcall.patch
patches.arch/cxlflash-Use-new-cxl_pci_read_adapter_vpd-API.patch
patches.arch/cxl-Remove-cxl_get_phys_dev-kernel-API.patch
patches.arch/cxl-Ignore-probes-for-virtual-afu-pci-devices.patch
# bsc#983740
patches.arch/powerpc-Define-PVR-value-for-POWER8NVL-processor
patches.arch/cxl-Configure-the-PSL-for-two-CAPI-ports-on-POWER8NVL
patches.arch/cxl-Allow-initialization-on-timebase-sync-failures
patches.arch/cxl-Increase-timeout-for-detection-of-AFU-mmio-hang
patches.arch/cxl-Poll-for-outstanding-IRQs-when-detaching-a-context
patches.arch/cxl-Check-periodically-the-coherent-platform-functions-state
patches.drivers/cxlflash-03-Fix-regression-issue-with-re-ordering-patch
patches.drivers/cxlflash-07-cxl-Make-vPHB-device-node-match-adapters
patches.drivers/cxlflash-08-Fix-to-drain-operations-from-previous-reset
patches.drivers/cxlflash-09-Add-device-dependent-flags
patches.drivers/cxlflash-10-Shutdown-notify-support-for-CXL-Flash-cards
patches.drivers/cxlflash-11-Verify-problem-state-area-is-mapped-before-notifying-shutdown
patches.drivers/cxl-Set-psl_fir_cntl-to-production-environment-value
patches.drivers/cxl-fix-potential-NULL-dereference-in-free_adapter.patch
# [2017-04-10] Pending SUSE Kernel fixes
patches.arch/scsi-cxlflash-0008-Remove-the-device-cleanly-in-the-syste.patch
# fate #320528
patches.arch/0001-powerpc-atomic-Implement-atomic-64-_-_return_-varian.patch
patches.arch/0002-powerpc-atomic-Implement-acquire-release-relaxed-var.patch
patches.arch/0003-powerpc-atomic-Implement-acquire-release-relaxed-var.patch
patches.arch/atomics-Allow-architectures-to-define-their-own-__at.patch
patches.arch/powerpc-remove-__end_handlers-marker.patch
patches.fixes/powerpc-pseries-use-pci_host_bridge.release_fn-to-kfree-phb
# bsc#1003813
patches.arch/powerpc-pseries-Use-H-CLEAR-HPT-to-clear-MMU-hash-table-during-kexec.patch
# fate #322020
patches.arch/powerpc-xmon-Add-xmon-command-to-dump-process-task-s.patch
# bsc#1019148
patches.drivers/ibmveth-0001-consolidate-kmalloc-of-array-memset-0-to-kca.patch
patches.drivers/ibmveth-0002-check-return-of-skb_linearize-in-ibmveth_sta.patch
patches.fixes/powerpc-64-Fix-flush_-di-cache_range-called-from-modules
########################################################
# ARM
########################################################