kernel-rt-5.14.0-93.rt21.93.el9
* Tue May 17 2022 Fernando Pacheco <fpacheco@redhat.com> [5.14.0-93.rt21.93.el9] - [rt] build kernel-rt-5.14.0-93.rt21.93.el9 [2061574] - NFSv4 only print the label when its queried (Benjamin Coddington) [2057327] - nvme: expose cntrltype and dctype through sysfs (John Meneghini) [2045550] - nvme: send uevent on connection up (John Meneghini) [2045550] - xfs: punch out data fork delalloc blocks on COW writeback failure (Andrey Albershteyn) [2039058] - macvlan: Fix leaking skb in source mode with nodst option (Davide Caratti) [2079415] - net: macvlan: fix potential UAF problem for lowerdev (Davide Caratti) [2079415] - net: ipvtap: fix template string argument of device_create() call (Davide Caratti) [2079415] - net: macvtap: fix template string argument of device_create() call (Davide Caratti) [2079415] - redhat/configs: Set CONFIG_EFI_DISABLE_RUNTIME Kconfig symbol (Javier Martinez Canillas) [2070196] - efi: Allow to enable EFI runtime services by default on RT (Javier Martinez Canillas) [2070196] - arm64: Restore forced disabling of KPTI on ThunderX (Mark Salter) [2043737] - devlink: Clarifies max_macs generic devlink param (Petr Oros) [2073210] - devlink: Add new "event_eq_size" generic device param (Petr Oros) [2073210] - devlink: Add new "io_eq_size" generic device param (Petr Oros) [2073210] - devlink: Simplify devlink resources unregister call (Petr Oros) [2073210] - devlink: Remove misleading internal_flags from health reporter dump (Petr Oros) [2073210] - devlink: fix flexible_array.cocci warning (Petr Oros) [2073210] - devlink: Add 'enable_iwarp' generic device param (Petr Oros) [2073210] - eth: fwnode: remove the addr len from mac helpers (Íñigo Huguet) [2069566] - eth: fwnode: change the return type of mac address helpers (Íñigo Huguet) [2069566] - device property: move mac addr helpers to eth.c (Íñigo Huguet) [2069566] Resolves: rhbz#2061574, rhbz#2057327, rhbz#2045550, rhbz#2039058, rhbz#2079415, rhbz#2070196, rhbz#2043737, rhbz#2073210, rhbz#2069566 Signed-off-by: Fernando Pacheco <fpacheco@redhat.com>
This commit is contained in:
parent
2a3202ea47
commit
0fb294cc67
@ -12,7 +12,7 @@ RHEL_MINOR = 1
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 92
|
||||
RHEL_RELEASE = 93
|
||||
|
||||
#
|
||||
# ZSTREAM
|
||||
@ -66,4 +66,4 @@ ifneq ("$(ZSTREAM)", "yes")
|
||||
endif
|
||||
endif
|
||||
|
||||
RTBUILD:=.92
|
||||
RTBUILD:=.93
|
||||
|
@ -1457,6 +1457,7 @@ CONFIG_EEPROM_MAX6875=m
|
||||
# CONFIG_EFI_CAPSULE_LOADER is not set
|
||||
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y
|
||||
# CONFIG_EFI_DISABLE_PCI_DMA is not set
|
||||
CONFIG_EFI_DISABLE_RUNTIME=y
|
||||
# CONFIG_EFI_FAKE_MEMMAP is not set
|
||||
CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y
|
||||
CONFIG_EFI_MIXED=y
|
||||
|
@ -1449,6 +1449,7 @@ CONFIG_EEPROM_MAX6875=m
|
||||
# CONFIG_EFI_CAPSULE_LOADER is not set
|
||||
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y
|
||||
# CONFIG_EFI_DISABLE_PCI_DMA is not set
|
||||
CONFIG_EFI_DISABLE_RUNTIME=y
|
||||
# CONFIG_EFI_FAKE_MEMMAP is not set
|
||||
CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y
|
||||
CONFIG_EFI_MIXED=y
|
||||
|
38
kernel.spec
38
kernel.spec
@ -121,13 +121,13 @@ Summary: The Linux kernel
|
||||
%define kversion 5.14
|
||||
|
||||
%define rpmversion 5.14.0
|
||||
%define pkgrelease 92.rt21.92.el9
|
||||
%define pkgrelease 93.rt21.93.el9
|
||||
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
|
||||
# allow pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 92.rt21.92%{?buildid}%{?dist}
|
||||
%define specrelease 93.rt21.93%{?buildid}%{?dist}
|
||||
|
||||
%define pkg_release %{specrelease}
|
||||
|
||||
@ -704,7 +704,7 @@ BuildRequires: lld
|
||||
# exact git commit you can run
|
||||
#
|
||||
# xzcat -qq ${TARBALL} | git get-tar-commit-id
|
||||
Source0: linux-5.14.0-92.rt21.92.el9.tar.xz
|
||||
Source0: linux-5.14.0-93.rt21.93.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -1417,8 +1417,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-92.rt21.92.el9 -c
|
||||
mv linux-5.14.0-92.rt21.92.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-93.rt21.93.el9 -c
|
||||
mv linux-5.14.0-93.rt21.93.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -3102,8 +3102,32 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Mon May 16 2022 Fernando Pacheco <fpacheco@redhat.com> [5.14.0-92.rt21.92.el9]
|
||||
- [rt] build kernel-rt-5.14.0-92.rt21.92.el9 [2061574]
|
||||
* Tue May 17 2022 Fernando Pacheco <fpacheco@redhat.com> [5.14.0-93.rt21.93.el9]
|
||||
- [rt] build kernel-rt-5.14.0-93.rt21.93.el9 [2061574]
|
||||
|
||||
* Tue May 17 2022 Fernando Pacheco <fpacheco@redhat.com> [5.14.0-93.rt21.93.el9]
|
||||
- [rt] build kernel-rt-5.14.0-93.rt21.93.el9 [2061574]
|
||||
- NFSv4 only print the label when its queried (Benjamin Coddington) [2057327]
|
||||
- nvme: expose cntrltype and dctype through sysfs (John Meneghini) [2045550]
|
||||
- nvme: send uevent on connection up (John Meneghini) [2045550]
|
||||
- xfs: punch out data fork delalloc blocks on COW writeback failure (Andrey Albershteyn) [2039058]
|
||||
- macvlan: Fix leaking skb in source mode with nodst option (Davide Caratti) [2079415]
|
||||
- net: macvlan: fix potential UAF problem for lowerdev (Davide Caratti) [2079415]
|
||||
- net: ipvtap: fix template string argument of device_create() call (Davide Caratti) [2079415]
|
||||
- net: macvtap: fix template string argument of device_create() call (Davide Caratti) [2079415]
|
||||
- redhat/configs: Set CONFIG_EFI_DISABLE_RUNTIME Kconfig symbol (Javier Martinez Canillas) [2070196]
|
||||
- efi: Allow to enable EFI runtime services by default on RT (Javier Martinez Canillas) [2070196]
|
||||
- arm64: Restore forced disabling of KPTI on ThunderX (Mark Salter) [2043737]
|
||||
- devlink: Clarifies max_macs generic devlink param (Petr Oros) [2073210]
|
||||
- devlink: Add new "event_eq_size" generic device param (Petr Oros) [2073210]
|
||||
- devlink: Add new "io_eq_size" generic device param (Petr Oros) [2073210]
|
||||
- devlink: Simplify devlink resources unregister call (Petr Oros) [2073210]
|
||||
- devlink: Remove misleading internal_flags from health reporter dump (Petr Oros) [2073210]
|
||||
- devlink: fix flexible_array.cocci warning (Petr Oros) [2073210]
|
||||
- devlink: Add 'enable_iwarp' generic device param (Petr Oros) [2073210]
|
||||
- eth: fwnode: remove the addr len from mac helpers (Íñigo Huguet) [2069566]
|
||||
- eth: fwnode: change the return type of mac address helpers (Íñigo Huguet) [2069566]
|
||||
- device property: move mac addr helpers to eth.c (Íñigo Huguet) [2069566]
|
||||
|
||||
* Mon May 16 2022 Fernando Pacheco <fpacheco@redhat.com> [5.14.0-92.rt21.92.el9]
|
||||
- [rt] build kernel-rt-5.14.0-92.rt21.92.el9 [2061574]
|
||||
|
6
sources
6
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
|
||||
SHA512 (linux-5.14.0-92.rt21.92.el9.tar.xz) = 6be61ac367bfb1738587a33d98686b094cbd5c6096a02e8d1648834367a27d6f80a6981af9725d970a26fffe6d62d9add36a47a39d092962cff3ed726e74b96b
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-92.rt21.92.el9.tar.bz2) = 468e46ae6f68cf7815d5f20a87330871fee01dd8cddd1b369c74c341b0e3b2e534ecc318d12b1eb14194bdbf2ec40dbd069e8907fae107e8a74b2aad6e204f73
|
||||
SHA512 (kernel-kabi-dw-5.14.0-92.rt21.92.el9.tar.bz2) = f48c87da1305f27edb6978f09d3ddef1604f6f064094a9b8ab9c39a5f9451c9155419f680227af536db9172609e6c6f8ba7629f707088e64eeb01a43bbf4670e
|
||||
SHA512 (linux-5.14.0-93.rt21.93.el9.tar.xz) = 8ca53dca0e756c2d1e1ae48455fdb15618a881ba047031810109eec4726df248c686409f99a20a9e21f5964dfab7e1d3b446580d03d99d4c2736f56085070898
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-93.rt21.93.el9.tar.bz2) = a98d742850cf625e34a77d4677bf06c4e9c98b1ef60b3981752640ddbe8bad2ae3ee223e8f1ae411fcdee4b5255cac458013afa0e944e8c4d57d3bfd09735c5c
|
||||
SHA512 (kernel-kabi-dw-5.14.0-93.rt21.93.el9.tar.bz2) = f48c87da1305f27edb6978f09d3ddef1604f6f064094a9b8ab9c39a5f9451c9155419f680227af536db9172609e6c6f8ba7629f707088e64eeb01a43bbf4670e
|
||||
|
Loading…
Reference in New Issue
Block a user