forked from rpms/kernel
kernel-5.14.0-19.el9
* Fri Nov 19 2021 Herton R. Krzesinski <herton@redhat.com> [5.14.0-19.el9] - net: core: don't call SIOCBRADD/DELIF for non-bridge devices (Ivan Vecera) [2008927] - net: bridge: fix ioctl old_deviceless bridge argument (Ivan Vecera) [2008927] - net: bridge: fix ioctl locking (Ivan Vecera) [2008927] - ethtool: Fix rxnfc copy to user buffer overflow (Ivan Vecera) [2008927] - net: bonding: move ioctl handling to private ndo operation (Ivan Vecera) [2008927] - net: bridge: move bridge ioctls out of .ndo_do_ioctl (Ivan Vecera) [2008927] - net: socket: return changed ifreq from SIOCDEVPRIVATE (Ivan Vecera) [2008927] - net: split out ndo_siowandev ioctl (Ivan Vecera) [2008927] - dev_ioctl: split out ndo_eth_ioctl (Ivan Vecera) [2008927] - dev_ioctl: pass SIOCDEVPRIVATE data separately (Ivan Vecera) [2008927] - wan: cosa: remove dead cosa_net_ioctl() function (Ivan Vecera) [2008927] - wan: use ndo_siocdevprivate (Ivan Vecera) [2008927] - ppp: use ndo_siocdevprivate (Ivan Vecera) [2008927] - sb1000: use ndo_siocdevprivate (Ivan Vecera) [2008927] - hippi: use ndo_siocdevprivate (Ivan Vecera) [2008927] - ip_tunnel: use ndo_siocdevprivate (Ivan Vecera) [2008927] - airo: use ndo_siocdevprivate (Ivan Vecera) [2008927] - hamradio: use ndo_siocdevprivate (Ivan Vecera) [2008927] - cxgb3: use ndo_siocdevprivate (Ivan Vecera) [2008927] - qeth: use ndo_siocdevprivate (Ivan Vecera) [2008927] - slip/plip: use ndo_siocdevprivate (Ivan Vecera) [2008927] - net: usb: use ndo_siocdevprivate (Ivan Vecera) [2008927] - fddi: use ndo_siocdevprivate (Ivan Vecera) [2008927] - eql: use ndo_siocdevprivate (Ivan Vecera) [2008927] - tehuti: use ndo_siocdevprivate (Ivan Vecera) [2008927] - hamachi: use ndo_siocdevprivate (Ivan Vecera) [2008927] - appletalk: use ndo_siocdevprivate (Ivan Vecera) [2008927] - bonding: use siocdevprivate (Ivan Vecera) [2008927] - tulip: use ndo_siocdevprivate (Ivan Vecera) [2008927] - phonet: use siocdevprivate (Ivan Vecera) [2008927] - bridge: use ndo_siocdevprivate (Ivan Vecera) [2008927] - hostap: use ndo_siocdevprivate (Ivan Vecera) [2008927] - staging: wlan-ng: use siocdevprivate (Ivan Vecera) [2008927] - staging: rtlwifi: use siocdevprivate (Ivan Vecera) [2008927] - net: split out SIOCDEVPRIVATE handling from dev_ioctl (Ivan Vecera) [2008927] - net: socket: rework compat_ifreq_ioctl() (Ivan Vecera) [2008927] - net: socket: simplify dev_ifconf handling (Ivan Vecera) [2008927] - net: socket: remove register_gifconf (Ivan Vecera) [2008927] - net: socket: rework SIOC?IFMAP ioctls (Ivan Vecera) [2008927] - ethtool: improve compat ioctl handling (Ivan Vecera) [2008927] - compat: make linux/compat.h available everywhere (Ivan Vecera) [2008927] Resolves: rhbz#2008927 Signed-off-by: Herton R. Krzesinski <herton@redhat.com>
This commit is contained in:
parent
7f650baf10
commit
e3180ff70a
@ -12,7 +12,7 @@ RHEL_MINOR = 0
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 18
|
||||
RHEL_RELEASE = 19
|
||||
|
||||
#
|
||||
# Early y+1 numbering
|
||||
|
55
kernel.spec
55
kernel.spec
@ -85,7 +85,7 @@ Summary: The Linux kernel
|
||||
# the --with-release option overrides this setting.)
|
||||
%define debugbuildsenabled 1
|
||||
|
||||
%global distro_build 18
|
||||
%global distro_build 19
|
||||
|
||||
%if 0%{?fedora}
|
||||
%define secure_boot_arch x86_64
|
||||
@ -129,13 +129,13 @@ Summary: The Linux kernel
|
||||
%define kversion 5.14
|
||||
|
||||
%define rpmversion 5.14.0
|
||||
%define pkgrelease 18.el9
|
||||
%define pkgrelease 19.el9
|
||||
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
|
||||
# allow pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 18%{?buildid}%{?dist}
|
||||
%define specrelease 19%{?buildid}%{?dist}
|
||||
|
||||
%define pkg_release %{specrelease}
|
||||
|
||||
@ -676,7 +676,7 @@ BuildRequires: lld
|
||||
# exact git commit you can run
|
||||
#
|
||||
# xzcat -qq ${TARBALL} | git get-tar-commit-id
|
||||
Source0: linux-5.14.0-18.el9.tar.xz
|
||||
Source0: linux-5.14.0-19.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -1361,8 +1361,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-18.el9 -c
|
||||
mv linux-5.14.0-18.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-19.el9 -c
|
||||
mv linux-5.14.0-19.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -2951,6 +2951,49 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Fri Nov 19 2021 Herton R. Krzesinski <herton@redhat.com> [5.14.0-19.el9]
|
||||
- net: core: don't call SIOCBRADD/DELIF for non-bridge devices (Ivan Vecera) [2008927]
|
||||
- net: bridge: fix ioctl old_deviceless bridge argument (Ivan Vecera) [2008927]
|
||||
- net: bridge: fix ioctl locking (Ivan Vecera) [2008927]
|
||||
- ethtool: Fix rxnfc copy to user buffer overflow (Ivan Vecera) [2008927]
|
||||
- net: bonding: move ioctl handling to private ndo operation (Ivan Vecera) [2008927]
|
||||
- net: bridge: move bridge ioctls out of .ndo_do_ioctl (Ivan Vecera) [2008927]
|
||||
- net: socket: return changed ifreq from SIOCDEVPRIVATE (Ivan Vecera) [2008927]
|
||||
- net: split out ndo_siowandev ioctl (Ivan Vecera) [2008927]
|
||||
- dev_ioctl: split out ndo_eth_ioctl (Ivan Vecera) [2008927]
|
||||
- dev_ioctl: pass SIOCDEVPRIVATE data separately (Ivan Vecera) [2008927]
|
||||
- wan: cosa: remove dead cosa_net_ioctl() function (Ivan Vecera) [2008927]
|
||||
- wan: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- ppp: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- sb1000: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- hippi: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- ip_tunnel: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- airo: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- hamradio: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- cxgb3: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- qeth: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- slip/plip: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- net: usb: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- fddi: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- eql: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- tehuti: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- hamachi: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- appletalk: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- bonding: use siocdevprivate (Ivan Vecera) [2008927]
|
||||
- tulip: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- phonet: use siocdevprivate (Ivan Vecera) [2008927]
|
||||
- bridge: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- hostap: use ndo_siocdevprivate (Ivan Vecera) [2008927]
|
||||
- staging: wlan-ng: use siocdevprivate (Ivan Vecera) [2008927]
|
||||
- staging: rtlwifi: use siocdevprivate (Ivan Vecera) [2008927]
|
||||
- net: split out SIOCDEVPRIVATE handling from dev_ioctl (Ivan Vecera) [2008927]
|
||||
- net: socket: rework compat_ifreq_ioctl() (Ivan Vecera) [2008927]
|
||||
- net: socket: simplify dev_ifconf handling (Ivan Vecera) [2008927]
|
||||
- net: socket: remove register_gifconf (Ivan Vecera) [2008927]
|
||||
- net: socket: rework SIOC?IFMAP ioctls (Ivan Vecera) [2008927]
|
||||
- ethtool: improve compat ioctl handling (Ivan Vecera) [2008927]
|
||||
- compat: make linux/compat.h available everywhere (Ivan Vecera) [2008927]
|
||||
|
||||
* Thu Nov 18 2021 Herton R. Krzesinski <herton@redhat.com> [5.14.0-18.el9]
|
||||
- CI: Add template for baseline gcov build (c9s repos) (Michael Hofmann)
|
||||
- PCI: vmd: depend on !UML (Myron Stowe) [1994932]
|
||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-5.14.0-18.el9.tar.xz) = 43e7d7d4f79cce749b2c7c043f61b346a699eaeb720034af431f23bb429c8420d7d81855817f1a408f33280a4c572653058ce801bddb55f40c8151f16fb36d18
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-18.tar.bz2) = ef242798c10259d840898d56c45b073aa54ab0ce7a28eca6d826d5c3500f18e4a6d5568b61049c029fdc3f02f112b2ab706fef92a6d0c1e9a2a2872676181457
|
||||
SHA512 (kernel-kabi-dw-5.14.0-18.tar.bz2) = da7dc1ba60a8cef6b0a9e18072253f8493c5d6110047538d2aa72a9f5e00d361f74403a20d7153c233d49bbbfbd6d6258cc90149d9c1aa3e7d3fb22d95a05daa
|
||||
SHA512 (linux-5.14.0-19.el9.tar.xz) = 08efdd56c615214a01e06625f012163bcb148821a18a5bb750d678604c3e373992c127eb21d1aef4eb3922087aa859c67b338642d7bb7bcf66c0fce887ee934c
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-19.tar.bz2) = 623cf60996b01d8b96f855d4806a5e8a3030a7222f677a2361e4b949c070cbf0c27536a4225cc008ec27764e3a73d5ca9de2832bd2a354fc43f06078faa774c5
|
||||
SHA512 (kernel-kabi-dw-5.14.0-19.tar.bz2) = 9fe4ec060caa11939e3f1cf32e5d2c0ffe53d6723579ad3223be9f3885f110e10acafa9aa835f77c7922fc32ce7676070d08d3c27e68734afce46df8c238bb64
|
||||
|
Loading…
Reference in New Issue
Block a user