* Wed Jan 14 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-183.el10]
- block: fix race between wbt_enable_default and IO submission (Ming Lei) [RHEL-128456]
- block: relax atomic write boundary vs chunk size check (Ming Lei) [RHEL-129479]
- block: fix stacking of atomic writes when atomics are not supported (Ming Lei) [RHEL-129479]
- block: update validation of atomic writes boundary for stacked devices (Ming Lei) [RHEL-129479]
- block: use chunk_sectors when evaluating stacked atomic write limits (Ming Lei) [RHEL-129479]
- block: sanitize chunk_sectors for atomic write limits (Ming Lei) [RHEL-129479]
- ilog2: add max_pow_of_two_factor() (Ming Lei) [RHEL-129479]
- mptcp: fix race condition in mptcp_schedule_work() (CKI Backport Bot) [RHEL-134453] {CVE-2025-40258}
- x86/CPU/AMD: Extend Zen6 model range (Steve Best) [RHEL-128696]
- pinctrl: PINCTRL_AMDISP should depend on DRM_AMD_ISP (Steve Best) [RHEL-107607]
- pinctrl: amd: Clear GPIO debounce for suspend (Steve Best) [RHEL-107607]
- pinctrl: amd: Constify pointers to 'pinctrl_desc' (Steve Best) [RHEL-107607]
- pinctrl: amd: Fix hibernation support with CONFIG_SUSPEND unset (Steve Best) [RHEL-107607]
- pinctrl: amd: Fix use of undeclared identifier 'pinctrl_amd_s2idle_dev_ops' (Steve Best) [RHEL-107607]
- pinctrl: amd: Add an LPS0 check() callback (Steve Best) [RHEL-107607]
- pinctrl: amd: isp411: Fix IS_ERR() vs NULL check in probe() (Steve Best) [RHEL-107607]
- pinctrl: amd: isp411: Add amdisp GPIO pinctrl (Steve Best) [RHEL-107607]
- pinctrl: amd: Take suspend type into consideration which pins are non-wake (Steve Best) [RHEL-107607]
- pinctrl: amd: Fix two small typos (Steve Best) [RHEL-107607]
- RDMA/uverbs: Fix umem release in UVERBS_METHOD_CQ_CREATE (Kamal Heib) [RHEL-109943]
- RDMA/efa: Add CQ with external memory support (Kamal Heib) [RHEL-109943]
- IB/sa: Fix sa_local_svc_timeout_ms read race (Kamal Heib) [RHEL-109943]
- RDMA/core: Resolve MAC of next-hop device without ARP support (Kamal Heib) [RHEL-109943]
- RDMA/cm: Rate limit destroy CM ID timeout error message (Kamal Heib) [RHEL-109943]
- IB: Extend UVERBS_METHOD_REG_MR to get DMAH (Kamal Heib) [RHEL-109943]
- RDMA/core: Introduce a DMAH object and its alloc/free APIs (Kamal Heib) [RHEL-109943]
- IB/core: Add UVERBS_METHOD_REG_MR on the MR object (Kamal Heib) [RHEL-109943]
- RDMA/core: Add umem "is_contiguous" and "start_dma_addr" helpers (Kamal Heib) [RHEL-109943]
- RDMA/uverbs: Add a common way to create CQ with umem (Kamal Heib) [RHEL-109943]
- RDMA/uverbs: Add empty rdma_uattrs_has_raw_cap() declaration (Kamal Heib) [RHEL-109943]
- IB/cm: Use separate agent w/o flow control for REP (Kamal Heib) [RHEL-109943]
- IB/mad: Add flow control for solicited MADs (Kamal Heib) [RHEL-109943]
- IB/mad: Add state machine to MAD layer (Kamal Heib) [RHEL-109943]
- RDMA/counter: Check CAP_NET_RAW check in user namespace for RDMA counters (Kamal Heib) [RHEL-109943]
- RDMA/nldev: Check CAP_NET_RAW in user namespace for QP modify (Kamal Heib) [RHEL-109943]
- RDMA/uverbs: Check CAP_NET_RAW in user namespace for RAW QP create (Kamal Heib) [RHEL-109943]
- RDMA/uverbs: Check CAP_NET_RAW in user namespace for RAW QP create (Kamal Heib) [RHEL-109943]
- RDMA/uverbs: Check CAP_NET_RAW in user namespace for QP create (Kamal Heib) [RHEL-109943]
- RDMA/uverbs: Check CAP_NET_RAW in user namespace for flow create (Kamal Heib) [RHEL-109943]
- RDMA/ipoib: Use parent rdma device net namespace (Kamal Heib) [RHEL-109943]
- RDMA/core: Extend RDMA device registration to be net namespace aware (Kamal Heib) [RHEL-109943]
- RDMA/core: reduce stack using in nldev_stat_get_doit() (Kamal Heib) [RHEL-109943]
- RDMA/core: Add driver APIs pre_destroy_cq() and post_destroy_cq() (Kamal Heib) [RHEL-109943]
- IB/iser: Remove unnecessary local variable (Kamal Heib) [RHEL-109943]
Resolves: RHEL-107607, RHEL-109943, RHEL-128456, RHEL-128696, RHEL-129479, RHEL-134453
Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
61 lines
1.9 KiB
Makefile
61 lines
1.9 KiB
Makefile
RHEL_MAJOR = 10
|
|
RHEL_MINOR = 2
|
|
|
|
#
|
|
# 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 = 183
|
|
|
|
#
|
|
# RHEL_REBASE_NUM
|
|
# ----------------
|
|
#
|
|
# Used in RPM version string for Gemini kernels, which dont use upstream
|
|
# VERSION/PATCHLEVEL/SUBLEVEL. The number represents rebase number for
|
|
# current MAJOR release.
|
|
#
|
|
# Use this spot to avoid future merge conflicts.
|
|
# Do not trim this comment.
|
|
RHEL_REBASE_NUM = 1
|
|
|
|
|
|
#
|
|
# 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
|
|
|
|
#
|
|
# Automotive
|
|
# ----------
|
|
#
|
|
# Represents the major and minor release used by automotive.
|
|
# Primarily this is used to to identify the build target when
|
|
# building the automotive kernel package.
|
|
AUTOMOTIVE_MAJOR = 2
|
|
AUTOMOTIVE_MINOR = 0
|