kernel-5.14.0-212.el9

* Tue Dec 13 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-212.el9]
- udp: track the forward memory release threshold in an hot cacheline (Paolo Abeni) [2133057]
- net: introduce and use custom sockopt socket flag (Paolo Abeni) [2133057]
- bpf: Change bpf_setsockopt(SOL_SOCKET) to reuse sk_setsockopt() (Paolo Abeni) [2133057]
- net: Add sk_setsockopt() to take the sk ptr instead of the sock ptr (Paolo Abeni) [2133057]
- net: skb: introduce and use a single page frag cache (Paolo Abeni) [2133057]
- net: add napi_get_frags_check() helper (Paolo Abeni) [2133057]
- libceph: clean up ceph_osdc_start_request prototype (Xiubo Li) [2120166]
- rbd: replace usage of found with dedicated list iterator variable (Xiubo Li) [2120166]
- libceph: fix ceph_pagelist_reserve() comment typo (Xiubo Li) [2120166]
- ceph: don't truncate file in atomic_open (Xiubo Li) [2120166]
- ceph: make f_bsize always equal to f_frsize (Xiubo Li) [2120166]
- libceph: print fsid and epoch with osd id (Xiubo Li) [2120166]
- libceph: check pointer before assigned to "c->rules[]" (Xiubo Li) [2120166]
- ceph: update the auth cap when the async create req is forwarded (Xiubo Li) [2120166]
- ceph: make change_auth_cap_ses a global symbol (Xiubo Li) [2120166]
- ceph: fix incorrect old_size length in ceph_mds_request_args (Xiubo Li) [2120166]
- ceph: convert to generic_file_llseek (Xiubo Li) [2120166]
- ceph: fix the incorrect comment for the ceph_mds_caps struct (Xiubo Li) [2120166]
- ceph: don't leak snap_rwsem in handle_cap_grant (Xiubo Li) [2120166]
- ceph: prevent a client from exceeding the MDS maximum xattr size (Xiubo Li) [2120166]
- ceph: choose auth MDS for getxattr with the Xs caps (Xiubo Li) [2120166]
- ceph: add session already open notify support (Xiubo Li) [2120166]
- ceph: wait for the first reply of inflight async unlink (Xiubo Li) [2120166]
- fs/dcache: export d_same_name() helper (Xiubo Li) [2120166]
- ceph: remove useless CEPHFS_FEATURES_CLIENT_REQUIRED (Xiubo Li) [2120166]
- ceph: use correct index when encoding client supported features (Xiubo Li) [2120166]
- ceph: switch TASK_INTERRUPTIBLE to TASK_KILLABLE (Xiubo Li) [2120166]
- ceph: remove redundant variable ino (Xiubo Li) [2120166]
- ceph: try to queue a writeback if revoking fails (Xiubo Li) [2120166]
- ceph: fix statfs for subdir mounts (Xiubo Li) [2120166]
- ceph: try to choose the auth MDS if possible for getattr (Xiubo Li) [2120166]
- ceph: disable updating the atime since cephfs won't maintain it (Xiubo Li) [2120166]
- ceph: flush the mdlog for filesystem sync (Xiubo Li) [2120166]
- ceph: rename unsafe_request_wait() (Xiubo Li) [2120166]
- libceph: use swap() macro instead of taking tmp variable (Xiubo Li) [2120166]
- ceph: fix statx AT_STATX_DONT_SYNC vs AT_STATX_FORCE_SYNC check (Xiubo Li) [2120166]
- ceph: use dedicated list iterator variable (Xiubo Li) [2120166]
- ceph: update the dlease for the hashed dentry when removing (Xiubo Li) [2120166]
- ceph: stop retrying the request when exceeding 256 times (Xiubo Li) [2120166]
- ceph: stop forwarding the request when exceeding 256 times (Xiubo Li) [2120166]
- ceph: remove unused CEPH_MDS_LEASE_RELEASE related code (Xiubo Li) [2120166]
- ceph: allow ceph.dir.rctime xattr to be updatable (Xiubo Li) [2120166]
- powercap: RAPL: Add Power Limit4 support for Alder Lake-N and Raptor Lake-P (David Arcari) [2106144]
- powercap: intel_rapl: remove redundant store to value after multiply (David Arcari) [2106144]
- powercap: RAPL: Add Power Limit4 support for RaptorLake (David Arcari) [2106144]
- powercap: intel_rapl: support new layout of Psys PowerLimit Register on SPR (David Arcari) [2106144]
- powercap: Add Power Limit4 support for Alder Lake SoC (David Arcari) [2106144]
- Revert "Merge: Backport Aspeed conversion to shmem" (Herton R. Krzesinski)
Resolves: rhbz#2133057, rhbz#2120166, rhbz#2106144

Signed-off-by: Herton R. Krzesinski <herton@redhat.com>
This commit is contained in:
Herton R. Krzesinski 2022-12-13 17:42:00 +00:00
parent e7c1be0e15
commit 265998c1b2
3 changed files with 58 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 = 211
RHEL_RELEASE = 212
#
# ZSTREAM

View File

@ -119,15 +119,15 @@ Summary: The Linux kernel
# define buildid .local
%define specversion 5.14.0
%define patchversion 5.14
%define pkgrelease 211
%define pkgrelease 212
%define kversion 5
%define tarfile_release 5.14.0-211.el9
%define tarfile_release 5.14.0-212.el9
# This is needed to do merge window version magic
%define patchlevel 14
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 211%{?buildid}%{?dist}
%define specrelease 212%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-211.el9
%define kabiversion 5.14.0-212.el9
#
# End of genspec.sh variables
@ -3106,6 +3106,56 @@ fi
#
#
%changelog
* Tue Dec 13 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-212.el9]
- udp: track the forward memory release threshold in an hot cacheline (Paolo Abeni) [2133057]
- net: introduce and use custom sockopt socket flag (Paolo Abeni) [2133057]
- bpf: Change bpf_setsockopt(SOL_SOCKET) to reuse sk_setsockopt() (Paolo Abeni) [2133057]
- net: Add sk_setsockopt() to take the sk ptr instead of the sock ptr (Paolo Abeni) [2133057]
- net: skb: introduce and use a single page frag cache (Paolo Abeni) [2133057]
- net: add napi_get_frags_check() helper (Paolo Abeni) [2133057]
- libceph: clean up ceph_osdc_start_request prototype (Xiubo Li) [2120166]
- rbd: replace usage of found with dedicated list iterator variable (Xiubo Li) [2120166]
- libceph: fix ceph_pagelist_reserve() comment typo (Xiubo Li) [2120166]
- ceph: don't truncate file in atomic_open (Xiubo Li) [2120166]
- ceph: make f_bsize always equal to f_frsize (Xiubo Li) [2120166]
- libceph: print fsid and epoch with osd id (Xiubo Li) [2120166]
- libceph: check pointer before assigned to "c->rules[]" (Xiubo Li) [2120166]
- ceph: update the auth cap when the async create req is forwarded (Xiubo Li) [2120166]
- ceph: make change_auth_cap_ses a global symbol (Xiubo Li) [2120166]
- ceph: fix incorrect old_size length in ceph_mds_request_args (Xiubo Li) [2120166]
- ceph: convert to generic_file_llseek (Xiubo Li) [2120166]
- ceph: fix the incorrect comment for the ceph_mds_caps struct (Xiubo Li) [2120166]
- ceph: don't leak snap_rwsem in handle_cap_grant (Xiubo Li) [2120166]
- ceph: prevent a client from exceeding the MDS maximum xattr size (Xiubo Li) [2120166]
- ceph: choose auth MDS for getxattr with the Xs caps (Xiubo Li) [2120166]
- ceph: add session already open notify support (Xiubo Li) [2120166]
- ceph: wait for the first reply of inflight async unlink (Xiubo Li) [2120166]
- fs/dcache: export d_same_name() helper (Xiubo Li) [2120166]
- ceph: remove useless CEPHFS_FEATURES_CLIENT_REQUIRED (Xiubo Li) [2120166]
- ceph: use correct index when encoding client supported features (Xiubo Li) [2120166]
- ceph: switch TASK_INTERRUPTIBLE to TASK_KILLABLE (Xiubo Li) [2120166]
- ceph: remove redundant variable ino (Xiubo Li) [2120166]
- ceph: try to queue a writeback if revoking fails (Xiubo Li) [2120166]
- ceph: fix statfs for subdir mounts (Xiubo Li) [2120166]
- ceph: try to choose the auth MDS if possible for getattr (Xiubo Li) [2120166]
- ceph: disable updating the atime since cephfs won't maintain it (Xiubo Li) [2120166]
- ceph: flush the mdlog for filesystem sync (Xiubo Li) [2120166]
- ceph: rename unsafe_request_wait() (Xiubo Li) [2120166]
- libceph: use swap() macro instead of taking tmp variable (Xiubo Li) [2120166]
- ceph: fix statx AT_STATX_DONT_SYNC vs AT_STATX_FORCE_SYNC check (Xiubo Li) [2120166]
- ceph: use dedicated list iterator variable (Xiubo Li) [2120166]
- ceph: update the dlease for the hashed dentry when removing (Xiubo Li) [2120166]
- ceph: stop retrying the request when exceeding 256 times (Xiubo Li) [2120166]
- ceph: stop forwarding the request when exceeding 256 times (Xiubo Li) [2120166]
- ceph: remove unused CEPH_MDS_LEASE_RELEASE related code (Xiubo Li) [2120166]
- ceph: allow ceph.dir.rctime xattr to be updatable (Xiubo Li) [2120166]
- powercap: RAPL: Add Power Limit4 support for Alder Lake-N and Raptor Lake-P (David Arcari) [2106144]
- powercap: intel_rapl: remove redundant store to value after multiply (David Arcari) [2106144]
- powercap: RAPL: Add Power Limit4 support for RaptorLake (David Arcari) [2106144]
- powercap: intel_rapl: support new layout of Psys PowerLimit Register on SPR (David Arcari) [2106144]
- powercap: Add Power Limit4 support for Alder Lake SoC (David Arcari) [2106144]
- Revert "Merge: Backport Aspeed conversion to shmem" (Herton R. Krzesinski)
* Mon Dec 12 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-211.el9]
- RDMA/core: Fix null-ptr-deref in ib_core_cleanup() (Kamal Heib) [2120668]
- IB/hfi1: Correctly move list in sc_disable() (Kamal Heib) [2120668]

View File

@ -1,3 +1,3 @@
SHA512 (linux-5.14.0-211.el9.tar.xz) = 4502febac4f398be534d13eb98cfa42a2004b04690b3876b5faf6881bfe520823f7160e3200a7d9592bad5e8f13d4a47a83bae972ef26ffa854e5f4ec7b07acd
SHA512 (kernel-abi-stablelists-5.14.0-211.el9.tar.bz2) = 07e01c6d157f41178575ce0ebba034a61de146515a63b8f99fad2f071ae3c7d9d9e9ac3b9671265211edfdb841f21c93f4872e82c7b355f081917de1475ffacf
SHA512 (kernel-kabi-dw-5.14.0-211.el9.tar.bz2) = ae87cda7d16d50bb16761791975deddbd164dd3c594a5b7274349580db228111e99b10a7f8892e09ae9aad6b2e5f1e0a6673494b5ff986a950b59f26391e3369
SHA512 (linux-5.14.0-212.el9.tar.xz) = 43842f9e6b0cae7bb834075f08976057433c9f419178355624f34b225f5df236814198a3bf8ef8c345c51c05e508c5c12357217701f1fc7e68e6537bae984f74
SHA512 (kernel-abi-stablelists-5.14.0-212.el9.tar.bz2) = ddebbd67e23ced95e04538340bacba9b5fafd9828f1e3fe501d6af68e00f7689e17c3160d7af10301ab888948a5bb2700d947666654ca523bab4d9574cdefb74
SHA512 (kernel-kabi-dw-5.14.0-212.el9.tar.bz2) = ef724ab70521885a2f17a4b39abddfb272267f74db753207ea8c53226f099ee435bd5365ad1d424737550165b7ee760011b4e457b96468f1de2a746938646d79