kernel/Makefile.rhelver
CKI KWF Bot 576759d5af kernel-5.14.0-655.el9
* Mon Dec 29 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-655.el9]
- usb: dwc3: Fix race condition between concurrent dwc3_remove_requests() call paths (CKI Backport Bot) [RHEL-137148] {CVE-2025-68287}
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after hibernate (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix a regression leading to EPP 0 after resume (David Arcari) [RHEL-129866]
- cpufreq/amd-pstate: Fix setting of CPPC.min_perf in active mode for performance governor (David Arcari) [RHEL-129866]
- KVM: arm64: Hide ID_AA64MMFR2_EL1.NV from guest and userspace (Donald Dutile) [RHEL-134723]
- autofs: dont trigger mount if it cant succeed (Ian Kent) [RHEL-120685]
- tick/sched: Limit non-timekeeper CPUs calling jiffies update (Phil Auld) [RHEL-132755]
- PCI/ACPI: Fix pci_acpi_preserve_config() memory leak (Thilak KN) [RHEL-73305]
- be2net: pass wrb_params in case of OS2BMC (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- be2net: Use correct byte order and format string for TCP seq and ack_seq (Mohammad Heib) [RHEL-101842 RHEL-96554 RHEL-97699]
- proc: block mounting on top of /proc/<pid>/fdinfo/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/fd/* (Waiman Long) [RHEL-128728]
- proc: block mounting on top of /proc/<pid>/map_files/* (Waiman Long) [RHEL-128728]
- proc: add proc_splice_unmountable() (Waiman Long) [RHEL-128728]
- proc: proc_readfdinfo() -> proc_fdinfo_iterate() (Waiman Long) [RHEL-128728]
- proc: proc_readfd() -> proc_fd_iterate() (Waiman Long) [RHEL-128728]
Resolves: RHEL-101842, RHEL-120685, RHEL-128728, RHEL-129866, RHEL-132755, RHEL-134723, RHEL-137148, RHEL-73305, RHEL-96554, RHEL-97699

Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
2025-12-29 07:42:51 +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 = 655
#
# 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