kernel-5.14.0-282.el9

* Thu Feb 23 2023 Herton R. Krzesinski <herton@redhat.com> [5.14.0-282.el9]
- net/mlx5e: TC, Restore pkt rate policing support (Amir Tzin) [2028809]
- net/mlx5e: TC, ignore match level for post meter rules (Amir Tzin) [2028809]
- net/mlx5e: TC, add support for meter mtu offload (Amir Tzin) [2028809]
- net/mlx5e: meter, add mtu post meter tables (Amir Tzin) [2028809]
- net/mlx5e: meter, refactor to allow multiple post meter tables (Amir Tzin) [2028809]
- net/mlx5: DR, Add support for range match action (Amir Tzin) [2028809]
- net/mlx5: DR, Add function that tells if STE miss addr has been initialized (Amir Tzin) [2028809]
- net/mlx5: DR, Some refactoring of miss address handling (Amir Tzin) [2028809]
- net/mlx5: DR, Manage definers with refcounts (Amir Tzin) [2028809]
- net/mlx5: DR, Handle FT action in a separate function (Amir Tzin) [2028809]
- net/mlx5: DR, Rework is_fw_table function (Amir Tzin) [2028809]
- net/mlx5: DR, Add functions to create/destroy MATCH_DEFINER general object (Amir Tzin) [2028809]
- net/mlx5: fs, add match on ranges API (Amir Tzin) [2028809]
- net/mlx5: mlx5_ifc updates for MATCH_DEFINER general object (Amir Tzin) [2028809]
- net/mlx5e: TC, allow meter jump control action (Amir Tzin) [2028809]
- net/mlx5e: TC, init post meter rules with branching attributes (Amir Tzin) [2028809]
- net/mlx5e: TC, rename post_meter actions (Amir Tzin) [2028809]
- net/mlx5e: TC, initialize branching action with target attr (Amir Tzin) [2028809]
- net/mlx5e: TC, initialize branch flow attributes (Amir Tzin) [2028809]
- net/mlx5e: TC, set control params for branching actions (Amir Tzin) [2028809]
- net/mlx5e: TC, validate action list per attribute (Amir Tzin) [2028809]
- net/mlx5e: TC, add terminating actions (Amir Tzin) [2028809]
- net/mlx5e: TC, reuse flow attribute post parser processing (Amir Tzin) [2028809]
- net/mlx5: fs, assert null dest pointer when dest_num is 0 (Amir Tzin) [2028809]
- net/mlx5e: E-Switch, handle flow attribute with no destinations (Amir Tzin) [2028809]
- net/mlx5: E-Switch, Allow offloading fwd dest flow table with vport (Amir Tzin) [2028809]
- net/mlx5e: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper (Amir Tzin) [2028809]
- rtc: efi: Enable SET/GET WAKEUP services as optional (Donald Dutile) [2166449]
- tee: optee: do not check memref size on return from Secure World (Chris von Recklinghausen) [2166659]
- tee: optee: Fix incorrect page free bug (Chris von Recklinghausen) [2166659]
- optee: smc_abi.c: add missing #include <linux/mm.h> (Chris von Recklinghausen) [2166659]
- optee: isolate smc abi (Chris von Recklinghausen) [2166659]
- optee: refactor driver with internal callbacks (Chris von Recklinghausen) [2166659]
- optee: simplify optee_release() (Chris von Recklinghausen) [2166659]
- tee: optee: Fix missing devices unregister during optee_remove (Chris von Recklinghausen) [2166659]
- tee/optee/shm_pool: fix application of sizeof to pointer (Chris von Recklinghausen) [2166659]
- lib/test_scanf: Handle n_bits == 0 in random tests (Chris von Recklinghausen) [2166659]
- sctp: sysctl: make extra pointers netns aware (Xin Long) [2160516]
- sctp: clear out_curr if all frag chunks of current msg are pruned (Xin Long) [2160516]
- sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent (Xin Long) [2160516]
- inet6: Clean up failure path in do_ipv6_setsockopt(). (Xin Long) [2160516]
- inet6: Remove inet6_destroy_sock(). (Xin Long) [2160516]
- sctp: Call inet6_destroy_sock() via sk->sk_destruct(). (Xin Long) [2160516]
- dccp: Call inet6_destroy_sock() via sk->sk_destruct(). (Xin Long) [2160516]
- inet6: Remove inet6_destroy_sock() in sk->sk_prot->destroy(). (Xin Long) [2160516]
Resolves: rhbz#2028809, rhbz#2166449, rhbz#2166659, rhbz#2160516

Signed-off-by: Herton R. Krzesinski <herton@redhat.com>
This commit is contained in:
Herton R. Krzesinski 2023-02-23 12:46:32 +00:00
parent 1fd3c43465
commit 7fb14187c5
3 changed files with 55 additions and 8 deletions

View File

@ -12,7 +12,7 @@ RHEL_MINOR = 2
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_RELEASE = 281
RHEL_RELEASE = 282
#
# ZSTREAM

View File

@ -161,15 +161,15 @@ Summary: The Linux kernel
# define buildid .local
%define specversion 5.14.0
%define patchversion 5.14
%define pkgrelease 281
%define pkgrelease 282
%define kversion 5
%define tarfile_release 5.14.0-281.el9
%define tarfile_release 5.14.0-282.el9
# This is needed to do merge window version magic
%define patchlevel 14
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 281%{?buildid}%{?dist}
%define specrelease 282%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-281.el9
%define kabiversion 5.14.0-282.el9
#
# End of genspec.sh variables
@ -3433,6 +3433,53 @@ fi
#
#
%changelog
* Thu Feb 23 2023 Herton R. Krzesinski <herton@redhat.com> [5.14.0-282.el9]
- net/mlx5e: TC, Restore pkt rate policing support (Amir Tzin) [2028809]
- net/mlx5e: TC, ignore match level for post meter rules (Amir Tzin) [2028809]
- net/mlx5e: TC, add support for meter mtu offload (Amir Tzin) [2028809]
- net/mlx5e: meter, add mtu post meter tables (Amir Tzin) [2028809]
- net/mlx5e: meter, refactor to allow multiple post meter tables (Amir Tzin) [2028809]
- net/mlx5: DR, Add support for range match action (Amir Tzin) [2028809]
- net/mlx5: DR, Add function that tells if STE miss addr has been initialized (Amir Tzin) [2028809]
- net/mlx5: DR, Some refactoring of miss address handling (Amir Tzin) [2028809]
- net/mlx5: DR, Manage definers with refcounts (Amir Tzin) [2028809]
- net/mlx5: DR, Handle FT action in a separate function (Amir Tzin) [2028809]
- net/mlx5: DR, Rework is_fw_table function (Amir Tzin) [2028809]
- net/mlx5: DR, Add functions to create/destroy MATCH_DEFINER general object (Amir Tzin) [2028809]
- net/mlx5: fs, add match on ranges API (Amir Tzin) [2028809]
- net/mlx5: mlx5_ifc updates for MATCH_DEFINER general object (Amir Tzin) [2028809]
- net/mlx5e: TC, allow meter jump control action (Amir Tzin) [2028809]
- net/mlx5e: TC, init post meter rules with branching attributes (Amir Tzin) [2028809]
- net/mlx5e: TC, rename post_meter actions (Amir Tzin) [2028809]
- net/mlx5e: TC, initialize branching action with target attr (Amir Tzin) [2028809]
- net/mlx5e: TC, initialize branch flow attributes (Amir Tzin) [2028809]
- net/mlx5e: TC, set control params for branching actions (Amir Tzin) [2028809]
- net/mlx5e: TC, validate action list per attribute (Amir Tzin) [2028809]
- net/mlx5e: TC, add terminating actions (Amir Tzin) [2028809]
- net/mlx5e: TC, reuse flow attribute post parser processing (Amir Tzin) [2028809]
- net/mlx5: fs, assert null dest pointer when dest_num is 0 (Amir Tzin) [2028809]
- net/mlx5e: E-Switch, handle flow attribute with no destinations (Amir Tzin) [2028809]
- net/mlx5: E-Switch, Allow offloading fwd dest flow table with vport (Amir Tzin) [2028809]
- net/mlx5e: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper (Amir Tzin) [2028809]
- rtc: efi: Enable SET/GET WAKEUP services as optional (Donald Dutile) [2166449]
- tee: optee: do not check memref size on return from Secure World (Chris von Recklinghausen) [2166659]
- tee: optee: Fix incorrect page free bug (Chris von Recklinghausen) [2166659]
- optee: smc_abi.c: add missing #include <linux/mm.h> (Chris von Recklinghausen) [2166659]
- optee: isolate smc abi (Chris von Recklinghausen) [2166659]
- optee: refactor driver with internal callbacks (Chris von Recklinghausen) [2166659]
- optee: simplify optee_release() (Chris von Recklinghausen) [2166659]
- tee: optee: Fix missing devices unregister during optee_remove (Chris von Recklinghausen) [2166659]
- tee/optee/shm_pool: fix application of sizeof to pointer (Chris von Recklinghausen) [2166659]
- lib/test_scanf: Handle n_bits == 0 in random tests (Chris von Recklinghausen) [2166659]
- sctp: sysctl: make extra pointers netns aware (Xin Long) [2160516]
- sctp: clear out_curr if all frag chunks of current msg are pruned (Xin Long) [2160516]
- sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent (Xin Long) [2160516]
- inet6: Clean up failure path in do_ipv6_setsockopt(). (Xin Long) [2160516]
- inet6: Remove inet6_destroy_sock(). (Xin Long) [2160516]
- sctp: Call inet6_destroy_sock() via sk->sk_destruct(). (Xin Long) [2160516]
- dccp: Call inet6_destroy_sock() via sk->sk_destruct(). (Xin Long) [2160516]
- inet6: Remove inet6_destroy_sock() in sk->sk_prot->destroy(). (Xin Long) [2160516]
* Wed Feb 22 2023 Herton R. Krzesinski <herton@redhat.com> [5.14.0-281.el9]
- virtio_console: break out of buf poll on remove (Michael S. Tsirkin) [1786239]
- cpufreq: intel_pstate: Add Sapphire Rapids support in no-HWP mode (David Arcari) [2170574]

View File

@ -1,3 +1,3 @@
SHA512 (linux-5.14.0-281.el9.tar.xz) = 6b91f49fe71518df688d92712f98f647b7d8c20e3b838a96854eb256f204de873774c43c45e6f0e61ab6e5a06fc350fb3da0c527dba032c56ef880209182f54e
SHA512 (kernel-abi-stablelists-5.14.0-281.el9.tar.bz2) = 0f19dd288029ab88630014762123ccf57065d035e68add40d9108f1d3939117586bb9abd2f97fd1a3bc776bd3888c0f04f8d33bf15332a895a7d7e442522dde6
SHA512 (kernel-kabi-dw-5.14.0-281.el9.tar.bz2) = c127b29b4f66a2bce194e59ee4d33ac63a8f734c0d60a866e4d1d10e2dd8dcce1ce3f4a9af20b5603a73861e55c7498acc8978a70988fd09937eabf7f257441f
SHA512 (linux-5.14.0-282.el9.tar.xz) = 9fe4892a736ce3f002aa95f747dcda4882c9adbe58e1b0e57e60a0e7599bb3daad58ef98a906c2460c3251e2a5845552da025b116f3259f66c045e4007877f02
SHA512 (kernel-abi-stablelists-5.14.0-282.el9.tar.bz2) = 7cc2a62865e67a9d6a4cd43c114febd7d432095ab9489712a0a6a3a2a727e964de15bc8a27291e043b885fd74bc6e77fd03d111b7cec428b09bb2956406f134b
SHA512 (kernel-kabi-dw-5.14.0-282.el9.tar.bz2) = 9babb799a663dfae9c626bc72b63ffe683dd732d73038eed0c8b62a496dbdcca64855d9ec0c00b886daae88cbd4a3168244d09610d749274cd41d062e61c87be