* Fri Jan 16 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-661.el9] - iavf: avoid deadlock by cancelling work without netdev lock in remove path (Mohammad Heib) [RHEL-130117] - tools/power turbostat: Validate APERF access for VMWARE (David Arcari) [RHEL-127044] - workqueue: Initialize wq_isolated_cpumask in workqueue_init_early() (Waiman Long) [RHEL-120441] - workqueue: add printf attribute to __alloc_workqueue() (Waiman Long) [RHEL-120441] - workqueue: Increase worker desc's length to 32 (Waiman Long) [RHEL-120441] - workqueue: Refactor worker ID formatting and make wq_worker_comm() use full ID string (Waiman Long) [RHEL-120441] - Revert "Drivers: hv: Add CONFIG_HYPERV_VMBUS option" (José Expósito) [RHEL-125801] - Reapply "drm/amdgpu: fix incorrect vm flags to map bo" (José Expósito) [RHEL-125801] - Reapply "drm/i915: Convert REG_GENMASK*() to fixed-width GENMASK_U*()" (José Expósito) [RHEL-125801] - drm/amd/display: Do not use CC_FLAGS_FPU/CC_FLAGS_NO_FPU (José Expósito) [RHEL-125801] - dma-buf: dma-heap: Do not use string literal in EXPORT_SYMBOL_NS_GPL (José Expósito) [RHEL-125801] - Revert "drm/sysfb: Find screen_info format with helpers" (José Expósito) [RHEL-125801] - Revert "change the calling conventions for vfs_parse_fs_string()" (José Expósito) [RHEL-125801] - drm/pagemap: Add missing parameter to vma_alloc_folio() (José Expósito) [RHEL-125801] - drm: Use previous includes (José Expósito) [RHEL-125801] - Revert "mm: make folio page count functions return unsigned" (José Expósito) [RHEL-125801] - redhat/configs: Add new configs from DRM 6.18 backport (José Expósito) [RHEL-125801] - Merge DRM changes from upstream v6.18-rc7..v6.18 (José Expósito) [RHEL-125801] - Merge DRM changes from upstream v6.18-rc6..v6.18-rc7 (José Expósito) [RHEL-125801] - Merge DRM changes from upstream v6.18-rc5..v6.18-rc6 (José Expósito) [RHEL-125801] - Merge DRM changes from upstream v6.18-rc4..v6.18-rc5 (José Expósito) [RHEL-125801] - Merge DRM changes from upstream v6.17..v6.18-rc4 (José Expósito) [RHEL-125801] - efi/x86: Memory protection on EfiGcdMemoryTypeMoreReliable (Lenny Szubowicz) [RHEL-95228] - mmc: dw_mmc: add exynos7870 DW MMC support (Steve Dunnagan) [RHEL-104061] - mmc: dw_mmc-bluefield: Add support for eMMC HW reset (Steve Dunnagan) [RHEL-104061] - mmc: dw_mmc: Use devm_mmc_alloc_host() helper (Steve Dunnagan) [RHEL-104061] - mmc: dw_mmc: add a quirk for accessing 64-bit FIFOs in two halves (Steve Dunnagan) [RHEL-104061] - mmc: host: Fix typos in comments across various files (Steve Dunnagan) [RHEL-104061] - mmc: dw_mmc: allow biu and ciu clocks to defer (Steve Dunnagan) [RHEL-104061] - mmc: dw_mmc: Add support for platform specific eMMC HW reset (Steve Dunnagan) [RHEL-104061] - mmc: Convert from tasklet to BH workqueue (Steve Dunnagan) [RHEL-104061] - mmc: dw_mmc: Remove unused of_gpio.h (Steve Dunnagan) [RHEL-104061] Resolves: RHEL-104061, RHEL-120441, RHEL-125801, RHEL-127044, RHEL-130117, RHEL-95228 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 = 661
|
|
|
|
#
|
|
# 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
|