kernel/Makefile.rhelver
CKI KWF Bot 341575e3ca kernel-5.14.0-681.el9
* Wed Feb 11 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-681.el9]
- redhat/dracut-virt.conf: remove erroneous spaces in omit_dracutmodules (Li Tian)
- smb: client: prevent races in ->query_interfaces() (Paulo Alcantara) [RHEL-147201]
- smb: client: add proper locking around ses->iface_last_update (Paulo Alcantara) [RHEL-147201]
- smb: client: split cached_fid bitfields to avoid shared-byte RMW races (Paulo Alcantara) [RHEL-147201]
- cifs: Fix locking usage for tcon fields (Paulo Alcantara) [RHEL-147201]
- cifs: Corrections to lock ordering notes (Paulo Alcantara) [RHEL-147201]
- smb: client: fix potential UAF and double free in smb2_open_file() (Paulo Alcantara) [RHEL-147201]
- smb/client: fix memory leak in SendReceive() (Paulo Alcantara) [RHEL-147201]
- smb/client: fix memory leak in smb2_open_file() (Paulo Alcantara) [RHEL-147201]
- fou: Don't allow 0 for FOU_ATTR_IPPROTO. (Xin Long) [RHEL-138741]
- tools: ynl: Specify --no-line-number in ynl-regen.sh. (Xin Long) [RHEL-138741]
- gue: Fix skb memleak with inner IP protocol 0. (Xin Long) [RHEL-138741]
- netlink: specs: fou: replace underscores with dashes in names (Xin Long) [RHEL-138741]
- fou: fix initialization of grc (Xin Long) [RHEL-138741]
- fou: Fix null-ptr-deref in GRO. (Xin Long) [RHEL-138741]
- fou: remove warn in gue_gro_receive on unsupported protocol (Xin Long) [RHEL-138741]
- fou: Remove XRFM from NET_FOU Kconfig (Xin Long) [RHEL-138741]
- fou: remove sparse errors (Xin Long) [RHEL-138741]
- redhat: enable FOU modules in kernel-modules-extra (Xin Long) [RHEL-138741]
- lockref: remove lockref_put_not_zero (Waiman Long) [RHEL-140835]
- lockref: stop doing cpu_relax in the cmpxchg loop (Waiman Long) [RHEL-140835]
- lockref: remove unused 'lockref_get_or_lock()' function (Waiman Long) [RHEL-140835]
- locking/lockref: Use try_cmpxchg64 in CMPXCHG_LOOP macro (Waiman Long) [RHEL-140835]
Resolves: RHEL-138741, RHEL-140835, RHEL-147201

Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
2026-02-11 19:34:44 +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 = 681
#
# 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