kernel/Makefile.rhelver
CKI KWF Bot dd568a92de kernel-5.14.0-640.el9
* Tue Nov 18 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-640.el9]
- kernfs: Fix UAF in polling when open file is released (Pavel Reichl) [RHEL-122088] {CVE-2025-39881}
- crypto: iaa - mark as supported (Vladis Dronov) [RHEL-95629]
- dmaengine: idxd: Add a new IAA device ID for Wildcat Lake family platforms (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Optimize rebalance_wq_table() (Vladis Dronov) [RHEL-95629]
- crypto: iaa - Adjust workqueue allocation type (Vladis Dronov) [RHEL-95629]
- fs: Add 'initramfs_options' to set initramfs mount options (Ian Kent) [RHEL-121113]
- e1000e: fix heap overflow in e1000_set_eeprom (Corinna Vinschen) [RHEL-123108] {CVE-2025-39898}
- Configs: Enable CONFIG_SCHED_MC for powerpc (Phil Auld) [RHEL-118964]
- sched: Unify the SCHED_{SMT,CLUSTER,MC} Kconfig (Phil Auld) [RHEL-118964]
- sched: Move STDL_INIT() functions out-of-line (Phil Auld) [RHEL-118964]
- sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask() (Phil Auld) [RHEL-118964]
- x86/smpboot: avoid SMT domain attach/destroy if SMT is not enabled (Phil Auld) [RHEL-118964]
- x86/smpboot: moves x86_topology to static initialize and truncate (Phil Auld) [RHEL-118964]
- x86/smpboot: remove redundant CONFIG_SCHED_SMT (Phil Auld) [RHEL-118964]
- smpboot: introduce SDTL_INIT() helper to tidy sched topology setup (Phil Auld) [RHEL-118964]
- powerpc/smp: Dynamically build Powerpc topology (Phil Auld) [RHEL-118964]
- powerpc/smp: Avoid asym packing within thread_group of a core (Phil Auld) [RHEL-118964]
- powerpc/smp: Add __ro_after_init attribute (Phil Auld) [RHEL-118964]
- powerpc/smp: Disable MC domain for shared processor (Phil Auld) [RHEL-118964]
- powerpc/smp: Enable Asym packing for cores on shared processor (Phil Auld) [RHEL-118964]
- perf/x86/intel/uncore: Add iMC freerunning for Panther Lake (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Add Panther Lake support (Michael Petlan) [RHEL-47456]
- perf/x86/intel/uncore: Support customized MMIO map size (Michael Petlan) [RHEL-47442 RHEL-47456]
- perf/x86/intel/uncore: Support MSR portal for discovery tables (Michael Petlan) [RHEL-47442 RHEL-47456]
Resolves: RHEL-118964, RHEL-121113, RHEL-122088, RHEL-123108, RHEL-47442, RHEL-47456, RHEL-95629

Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
2025-11-18 07:44:53 +00:00

38 lines
1.4 KiB
Makefile

RHEL_MAJOR = 9
RHEL_MINOR = 8
#
# RHEL_RELEASE
# -------------
#
# Represents build number in 'release' part of RPM's name-version-release.
# name is <package_name>, e.g. kernel
# version is upstream kernel version this kernel is based on, e.g. 4.18.0
# release is <RHEL_RELEASE>.<dist_tag>[<buildid>], e.g. 100.el8
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_RELEASE = 640
#
# ZSTREAM
# -------
#
# This variable controls whether we use zstream numbering or not for the
# package release. The zstream release keeps the build number of the last
# build done for ystream for the Beta milestone, and increments a second
# number for each build. The third number is used for branched builds
# (eg.: for builds with security fixes or hot fixes done outside of the
# batch release process).
#
# For example, with ZSTREAM unset or set to "no", all builds will contain
# a release with only the build number, eg.: kernel-<kernel version>-X.el*,
# where X is the build number. With ZSTREAM set to "yes", we will have
# builds with kernel-<kernel version>-X.Y.Z.el*, where X is the last
# RHEL_RELEASE number before ZSTREAM flag was set to yes, Y will now be the
# build number and Z will always be 1 except if you're doing a branched build
# (when you give RHDISTGIT_BRANCH on the command line, in which case the Z
# number will be incremented instead of the Y).
#
ZSTREAM ?= no