* Thu Apr 09 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-692.el9] - l2tp: avoid one data-race in l2tp_tunnel_del_work() (Guillaume Nault) [RHEL-152697] - l2tp: reset skb control buffer on xmit (Guillaume Nault) [RHEL-152697] - gpu: host1x: Add MLOCK recovery for rest of engines (Anusha Srivatsa) [RHEL-158926] - PCI/IOV: Allow drivers to control VF BAR size (Anusha Srivatsa) [RHEL-158926] - PCI/IOV: Check that VF BAR fits within the reservation (Anusha Srivatsa) [RHEL-158926] - PCI/IOV: Allow IOV resources to be resized in pci_resize_resource() (Anusha Srivatsa) [RHEL-158926] - PCI/IOV: Add pci_resource_num_to_vf_bar() to convert VF BAR number to/from IOV resource (Anusha Srivatsa) [RHEL-158926] - PCI/IOV: Restore VF resizable BAR state after reset (Anusha Srivatsa) [RHEL-158926] - PCI: Cache offset of Resizable BAR capability (Anusha Srivatsa) [RHEL-158926] - workqueue: Add system_percpu_wq and system_dfl_wq (Anusha Srivatsa) [RHEL-158926] - gpio: tegra186: Support multi-socket devices (Charles Mirabile) [RHEL-151652] - gpio: tegra186: Simplify GPIO line name prefix handling (Charles Mirabile) [RHEL-151652] - redhat/configs: Enable additional RV monitors on debug kernels (Gabriele Monaco) [RHEL-116707] - redhat/configs: Enable sched and rtapp RV monitors (Gabriele Monaco) [RHEL-116707] - rv: Replace non-existing rt_or_dl_task() in ltl monitors (Gabriele Monaco) [RHEL-116707] - rv: Fix wrong arguments to __assign_str() in tracepoints (Gabriele Monaco) [RHEL-116707] - perf test: Ensure lock contention using pipe mode (Michael Petlan) [RHEL-141682] - perf sched timehist: decode process names of processes in zombie state (Anubhav Shelat) [RHEL-33442] Resolves: RHEL-116707, RHEL-141682, RHEL-151652, RHEL-152697, RHEL-158926, RHEL-33442 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 = 9
|
|
|
|
#
|
|
# 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 = 692
|
|
|
|
#
|
|
# 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
|