kernel-4.18.0-497.el8
* Fri Jun 09 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-497.el8] - sctp: fix a potential overflow in sctp_ifwdtsn_skip (Xin Long) [2189324] - sctp: check send stream number after wait_for_sndbuf (Xin Long) [2189324] - sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list (Xin Long) [2189324] - sctp: fail if no bound addresses can be used for a given scope (Xin Long) [2189324] - sctp: sysctl: make extra pointers netns aware (Xin Long) [2189324] - sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop (Xin Long) [2189324] - sctp: delete free member from struct sctp_sched_ops (Xin Long) [2189324] - sctp: fix memory leak in sctp_stream_outq_migrate() (Xin Long) [2189324] - sctp: clear out_curr if all frag chunks of current msg are pruned (Xin Long) [2189324] - sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent (Xin Long) [2189324] - sched/fair: Fix imbalance overflow (Phil Auld) [RHEL-419] - sched/fair: Move calculate of avg_load to a better location (Phil Auld) [RHEL-419] - sched/fair: Sanitize vruntime of entity being migrated (Phil Auld) [RHEL-419] - sched/rt: pick_next_rt_entity(): check list_entry (Phil Auld) [RHEL-419] - sched/fair: sanitize vruntime of entity being placed (Phil Auld) [RHEL-419] - sched/fair: Limit sched slice duration (Phil Auld) [RHEL-419] - sched/topology: Add __init for sched_init_domains() (Phil Auld) [RHEL-419] - sched/core: Reorganize ttwu_do_wakeup() and ttwu_do_activate() (Phil Auld) [RHEL-419] - sched/core: Micro-optimize ttwu_runnable() (Phil Auld) [RHEL-419] - sched/numa: Stop an exhastive search if an idle core is found (Phil Auld) [RHEL-419] - sched/topology: Add __init for init_defrootdomain (Phil Auld) [RHEL-419] - sched: Clear ttwu_pending after enqueue_task() (Phil Auld) [RHEL-419] - sched/psi: Fix possible missing or delayed pending event (Phil Auld) [RHEL-419] - sched/fair: Cleanup for SIS_PROP (Phil Auld) [RHEL-419] - sched/fair: Default to false in test_idle_cores() (Phil Auld) [RHEL-419] - sched/fair: Remove useless check in select_idle_core() (Phil Auld) [RHEL-419] - sched/fair: Avoid double search on same cpu (Phil Auld) [RHEL-419] - sched/fair: Remove redundant check in select_idle_smt() (Phil Auld) [RHEL-419] - sched: Rename task_running() to task_on_cpu() (Phil Auld) [RHEL-419] - sched/fair: Move call to list_last_entry() in detach_tasks (Phil Auld) [RHEL-419] - sched/fair: Cleanup loop_max and loop_break (Phil Auld) [RHEL-419] - sched/fair: Make sure to try to detach at least one movable task (Phil Auld) [RHEL-419] - sched: Add update_current_exec_runtime helper (Phil Auld) [RHEL-419] - sched/fair: Don't init util/runnable_avg for !fair task (Phil Auld) [RHEL-419] - sched/fair: Move task sched_avg attach to enqueue_task_fair() (Phil Auld) [RHEL-419] - sched/fair: Update comments in enqueue/dequeue_entity() (Phil Auld) [RHEL-419] - sched/fair: Maintain task se depth in set_task_rq() (Phil Auld) [RHEL-419] - sched/debug: Print each field value left-aligned in sched_show_task() (Phil Auld) [RHEL-419] - sched/fair: Make per-cpu cpumasks static (Phil Auld) [RHEL-419] - sched/fair: Rename select_idle_mask to select_rq_mask (Phil Auld) [RHEL-419] - sched: Snapshot thread flags (Phil Auld) [RHEL-419] - sched/fair: find_idlest_group(): Remove unused sd_flag parameter (Phil Auld) [RHEL-419] - redhat/genlog.py: add support to list/process zstream Jira tickets (Herton R. Krzesinski) - powercap: intel_rapl: add support for Emerald Rapids (Prarit Bhargava) [2156804] - vsock: avoid to close connected socket after the timeout (Stefano Garzarella) [2209710] - sfc: Fix module EEPROM reporting for QSFP modules (Íñigo Huguet) [2192382] - perf script: Fix missing Retire Latency fields option documentation (Michael Petlan) [2177014] - perf event x86: Add retire_lat when synthesizing PERF_SAMPLE_WEIGHT_STRUCT (Michael Petlan) [2177014] - perf test x86: Support the retire_lat (Retire Latency) sample_type check (Michael Petlan) [2177014] - perf script: Support Retire Latency (Michael Petlan) [2177014] - perf report: Support Retire Latency (Michael Petlan) [2177014] Resolves: rhbz#2156804, rhbz#2177014, rhbz#2189324, rhbz#2192382, rhbz#2209710, RHEL-419 Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
parent
c95c0aea23
commit
7002ca4a30
59
kernel.spec
59
kernel.spec
@ -12,7 +12,7 @@
|
||||
# change below to w4T.xzdio):
|
||||
%define _binary_payload w3T.xzdio
|
||||
|
||||
%global distro_build 496
|
||||
%global distro_build 497
|
||||
|
||||
# Sign the x86_64 kernel for secure boot authentication
|
||||
%ifarch x86_64 aarch64 s390x ppc64le
|
||||
@ -38,10 +38,10 @@
|
||||
# define buildid .local
|
||||
|
||||
%define rpmversion 4.18.0
|
||||
%define pkgrelease 496.el8
|
||||
%define pkgrelease 497.el8
|
||||
|
||||
# allow pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 496%{?dist}
|
||||
%define specrelease 497%{?dist}
|
||||
|
||||
%define pkg_release %{specrelease}%{?buildid}
|
||||
|
||||
@ -2695,6 +2695,59 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Fri Jun 09 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-497.el8]
|
||||
- sctp: fix a potential overflow in sctp_ifwdtsn_skip (Xin Long) [2189324]
|
||||
- sctp: check send stream number after wait_for_sndbuf (Xin Long) [2189324]
|
||||
- sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list (Xin Long) [2189324]
|
||||
- sctp: fail if no bound addresses can be used for a given scope (Xin Long) [2189324]
|
||||
- sctp: sysctl: make extra pointers netns aware (Xin Long) [2189324]
|
||||
- sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop (Xin Long) [2189324]
|
||||
- sctp: delete free member from struct sctp_sched_ops (Xin Long) [2189324]
|
||||
- sctp: fix memory leak in sctp_stream_outq_migrate() (Xin Long) [2189324]
|
||||
- sctp: clear out_curr if all frag chunks of current msg are pruned (Xin Long) [2189324]
|
||||
- sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent (Xin Long) [2189324]
|
||||
- sched/fair: Fix imbalance overflow (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Move calculate of avg_load to a better location (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Sanitize vruntime of entity being migrated (Phil Auld) [RHEL-419]
|
||||
- sched/rt: pick_next_rt_entity(): check list_entry (Phil Auld) [RHEL-419]
|
||||
- sched/fair: sanitize vruntime of entity being placed (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Limit sched slice duration (Phil Auld) [RHEL-419]
|
||||
- sched/topology: Add __init for sched_init_domains() (Phil Auld) [RHEL-419]
|
||||
- sched/core: Reorganize ttwu_do_wakeup() and ttwu_do_activate() (Phil Auld) [RHEL-419]
|
||||
- sched/core: Micro-optimize ttwu_runnable() (Phil Auld) [RHEL-419]
|
||||
- sched/numa: Stop an exhastive search if an idle core is found (Phil Auld) [RHEL-419]
|
||||
- sched/topology: Add __init for init_defrootdomain (Phil Auld) [RHEL-419]
|
||||
- sched: Clear ttwu_pending after enqueue_task() (Phil Auld) [RHEL-419]
|
||||
- sched/psi: Fix possible missing or delayed pending event (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Cleanup for SIS_PROP (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Default to false in test_idle_cores() (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Remove useless check in select_idle_core() (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Avoid double search on same cpu (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Remove redundant check in select_idle_smt() (Phil Auld) [RHEL-419]
|
||||
- sched: Rename task_running() to task_on_cpu() (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Move call to list_last_entry() in detach_tasks (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Cleanup loop_max and loop_break (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Make sure to try to detach at least one movable task (Phil Auld) [RHEL-419]
|
||||
- sched: Add update_current_exec_runtime helper (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Don't init util/runnable_avg for !fair task (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Move task sched_avg attach to enqueue_task_fair() (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Update comments in enqueue/dequeue_entity() (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Maintain task se depth in set_task_rq() (Phil Auld) [RHEL-419]
|
||||
- sched/debug: Print each field value left-aligned in sched_show_task() (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Make per-cpu cpumasks static (Phil Auld) [RHEL-419]
|
||||
- sched/fair: Rename select_idle_mask to select_rq_mask (Phil Auld) [RHEL-419]
|
||||
- sched: Snapshot thread flags (Phil Auld) [RHEL-419]
|
||||
- sched/fair: find_idlest_group(): Remove unused sd_flag parameter (Phil Auld) [RHEL-419]
|
||||
- redhat/genlog.py: add support to list/process zstream Jira tickets (Herton R. Krzesinski)
|
||||
- powercap: intel_rapl: add support for Emerald Rapids (Prarit Bhargava) [2156804]
|
||||
- vsock: avoid to close connected socket after the timeout (Stefano Garzarella) [2209710]
|
||||
- sfc: Fix module EEPROM reporting for QSFP modules (Íñigo Huguet) [2192382]
|
||||
- perf script: Fix missing Retire Latency fields option documentation (Michael Petlan) [2177014]
|
||||
- perf event x86: Add retire_lat when synthesizing PERF_SAMPLE_WEIGHT_STRUCT (Michael Petlan) [2177014]
|
||||
- perf test x86: Support the retire_lat (Retire Latency) sample_type check (Michael Petlan) [2177014]
|
||||
- perf script: Support Retire Latency (Michael Petlan) [2177014]
|
||||
- perf report: Support Retire Latency (Michael Petlan) [2177014]
|
||||
|
||||
* Thu Jun 01 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-496.el8]
|
||||
- netfilter: nft_redir: correct value of inet type `.maxattrs` (Florian Westphal) [2189517]
|
||||
- netfilter: tproxy: fix deadlock due to missing BH disable (Florian Westphal) [2189517]
|
||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-4.18.0-496.el8.tar.xz) = 828364a4cfce03a9eeea9c86b48d9bcf26cb43a86cca5b2f86203b0170c49e31df694c3a58b39669734f959620ed640c733b96c046d0af1b93efcb4dfeff3373
|
||||
SHA512 (kernel-abi-stablelists-4.18.0-496.tar.bz2) = 0d76c6d6c625e314b8f9bf11c06ecb090138c01d505dadb5cc2e073819145b70e6f1b16b3018187a0800d96c28b00609fa9d1313724c3a6114f483b07f461b08
|
||||
SHA512 (kernel-kabi-dw-4.18.0-496.tar.bz2) = 526cbd9b8931723a1ade3be739f2d086403966c7d5863fcfb243da0424adbf6a156facdeaa4bbefd16a1743259f5c45a95238708260229b36f9d3694471a24d0
|
||||
SHA512 (linux-4.18.0-497.el8.tar.xz) = f0b11e9b3137a18ca18faab7242f4c10e5439ebd7fd8e2000ba770c547da2cbf5446d84b8ea70388745240218f24cdb9e033f5715528ca674a60ac81d802bb13
|
||||
SHA512 (kernel-abi-stablelists-4.18.0-497.tar.bz2) = 3efe1b90909eef9846e2663b09012cea3d2b0219f33842219f38359590f99bd5d8b6712c8a084eb7b0114cbd0aa8f87033ee39817b61d51cb77e59fad0bda113
|
||||
SHA512 (kernel-kabi-dw-4.18.0-497.tar.bz2) = f7bbf94096acc33486535d9eece268c543c6a05d93ee262d64dc22b220f1cb3ff49b4cf091a5c748811c4229fdf674be4c816174575161b0ca5e457726595b32
|
||||
|
Loading…
Reference in New Issue
Block a user