* Sat Nov 15 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-639.el9] - smb: client: fix refcount leak in smb2_set_path_attr (Paulo Alcantara) [RHEL-114699] - smb: client: fix potential UAF in smb2_close_cached_fid() (Paulo Alcantara) [RHEL-114699] - smb: client: fix potential cfid UAF in smb2_query_info_compound (Paulo Alcantara) [RHEL-114699] - smb: client: Fix refcount leak for cifs_sb_tlink (Paulo Alcantara) [RHEL-114699] - cifs: parse_dfs_referrals: prevent oob on malformed input (Paulo Alcantara) [RHEL-114699] - smb: client: remove cfids_invalidation_worker (Paulo Alcantara) [RHEL-114699] - smb client: fix bug with newly created file in cached dir (Paulo Alcantara) [RHEL-114699] - smb: client: short-circuit negative lookups when parent dir is fully cached (Paulo Alcantara) [RHEL-114699] - smb: client: short-circuit in open_cached_dir_by_dentry() if !dentry (Paulo Alcantara) [RHEL-114699] - smb: client: remove pointless cfid->has_lease check (Paulo Alcantara) [RHEL-114699] - smb: client: remove unused fid_lock (Paulo Alcantara) [RHEL-114699] - smb: client: update cfid->last_access_time in open_cached_dir_by_dentry() (Paulo Alcantara) [RHEL-114699] - smb: client: ensure open_cached_dir_by_dentry() only returns valid cfid (Paulo Alcantara) [RHEL-114699] - smb: client: account smb directory cache usage and per-tcon totals (Paulo Alcantara) [RHEL-114699] - smb: client: add drop_dir_cache module parameter to invalidate cached dirents (Paulo Alcantara) [RHEL-114699] - smb: client: show lease state as R/H/W (or NONE) in open_files (Paulo Alcantara) [RHEL-114699] - smb: client: show negotiated cipher in DebugData (Paulo Alcantara) [RHEL-114699] - smb: client: add new tracepoint to trace lease break notification (Paulo Alcantara) [RHEL-114699] - smb: client: Fix NULL pointer dereference in cifs_debug_dirs_proc_show() (Paulo Alcantara) [RHEL-114699] - smb: client: handle lack of IPC in dfs_cache_refresh() (Paulo Alcantara) [RHEL-119582] - smb: client: get rid of d_drop() in cifs_do_rename() (Paulo Alcantara) [RHEL-123665] - nvme-multipath: Skip nr_active increments in RETRY disposition (Ewan D. Milne) [RHEL-111104] - arm64: errata: Expand speculative SSBS workaround for Cortex-A720AE (Waiman Long) [RHEL-119900] - arm64: cputype: Add Cortex-A720AE definitions (Waiman Long) [RHEL-119900] - arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays (Waiman Long) [RHEL-119900] - arm64: Add support for HIP09 Spectre-BHB mitigation (Waiman Long) [RHEL-119900] - arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists (Waiman Long) [RHEL-119900] - arm64: cputype: Add MIDR_CORTEX_A76AE (Waiman Long) [RHEL-119900] - arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list (Waiman Long) [RHEL-119900] Resolves: RHEL-111104, RHEL-114699, RHEL-119582, RHEL-119900, RHEL-123665 Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
38 lines
1.4 KiB
Makefile
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 = 639
|
|
|
|
#
|
|
# 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
|