995847f25a
* Mon Sep 20 2021 Juri Lelli <juri.lelli@redhat.com> [5.14-3.rt21.3] - redhat: Fix lasttag for kernel-rt (Juri Lelli) - misc/pvpanic-pci: Allow automatic loading (Eric Auger) [1977192] - md/raid10: Remove unnecessary rcu_dereference in raid10_handle_discard (Nigel Croxon) [1965294] - rcu: Avoid unneeded function call in rcu_read_unlock() (Waiman Long) [1998549] - Enable bridge jobs for scratch pipelines (Michael Hofmann) - CI: use 9.0-beta-rt branch for -rt pipeline (Jan Stancek) - crypto: ccp - Add support for new CCP/PSP device ID (Vladis Dronov) [1987099] - crypto: ccp - shutdown SEV firmware on kexec (Vladis Dronov) [1987099] - v5.14.2-rt21 (Clark Williams) [2002474] - lockdep: Let lock_is_held_type() detect recursive read as read (Clark Williams) [2002474] - drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() (Clark Williams) [2002474] - drm/i915/gt: Queue and wait for the irq_work item. (Clark Williams) [2002474] - irq_work: Also rcuwait for !IRQ_WORK_HARD_IRQ on PREEMPT_RT (Clark Williams) [2002474] - irq_work: Allow irq_work_sync() to sleep if irq_work() no IRQ support. (Clark Williams) [2002474] - virt: acrn: Remove unsued acrn_irqfds_mutex. (Clark Williams) [2002474] - smack: Guard smack_ipv6_lock definition within a SMACK_IPV6_PORT_LABELING block (Clark Williams) [2002474] - ASoC: mediatek: mt8195: Remove unsued irqs_lock. (Clark Williams) [2002474] - mm: Update Vlastimil Babka's SLUB series (Clark Williams) [2002474] - locking: Remove rt_rwlock_is_contended() (Clark Williams) [2002474] - locking/rtmutex: Fix ww_mutex deadlock check (Clark Williams) [2002474] - sched: Make the idle timer expire always in hardirq context. (Clark Williams) [2002474] - futex: Avoid redundant task lookup (Clark Williams) [2002474] - futex: Clarify comment for requeue_pi_wake_futex() (Clark Williams) [2002474] - futex: Prevent inconsistent state and exit race (Clark Williams) [2002474] - futex: Return error code instead of assigning it without effect (Clark Williams) [2002474] - lockdep: Let lock_is_held_type() detect recursive read as read (Clark Williams) [2002474] - kcov: Replace local_irq_save() with a local_lock_t. (Clark Williams) [2002474] - kcov: Avoid enable+disable interrupts if !in_task(). (Clark Williams) [2002474] - kcov: Allocate per-CPU memory on the relevant node. (Clark Williams) [2002474] - Documentation/kcov: Define `ip' in the example. (Clark Williams) [2002474] - Documentation/kcov: Include types.h in the example. (Clark Williams) [2002474] - sched: Prevent balance_push() on remote runqueues (Clark Williams) [2002474] Resolves: rhbz#2002474
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
RHEL_MAJOR = 9
|
|
RHEL_MINOR = 0
|
|
|
|
#
|
|
# 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 = 3
|
|
|
|
#
|
|
# Early y+1 numbering
|
|
# --------------------
|
|
#
|
|
# In early y+1 process, RHEL_RELEASE consists of 2 numbers: x.y
|
|
# First is RHEL_RELEASE inherited/merged from y as-is, second number
|
|
# is incremented with each build starting from 1. After merge from y,
|
|
# it resets back to 1. This way y+1 nvr reflects status of last merge.
|
|
#
|
|
# Example:
|
|
#
|
|
# rhel8.0 rhel-8.1
|
|
# kernel-4.18.0-58.el8 --> kernel-4.18.0-58.1.el8
|
|
# kernel-4.18.0-58.2.el8
|
|
# kernel-4.18.0-59.el8 kernel-4.18.0-59.1.el8
|
|
# kernel-4.18.0-60.el8
|
|
# kernel-4.18.0-61.el8 --> kernel-4.18.0-61.1.el8
|
|
#
|
|
#
|
|
# Use this spot to avoid future merge conflicts.
|
|
# Do not trim this comment.
|
|
EARLY_YSTREAM ?= no
|
|
EARLY_YBUILD:=
|
|
EARLY_YRELEASE:=
|
|
ifneq ("$(ZSTREAM)", "yes")
|
|
ifeq ("$(EARLY_YSTREAM)","yes")
|
|
RHEL_RELEASE:=$(RHEL_RELEASE).$(EARLY_YRELEASE)
|
|
endif
|
|
endif
|
|
|
|
RTBUILD:=.3
|