From 354a95939289fab7479b3b5b09e3dca26fc567f2 Mon Sep 17 00:00:00 2001 From: CKI KWF Bot Date: Mon, 15 Sep 2025 00:30:45 +0000 Subject: [PATCH] kernel-5.14.0-616.el9 * Mon Sep 15 2025 CKI KWF Bot [5.14.0-616.el9] - PM: EM: Add function for registering a PD without capacity update (David Arcari) [RHEL-112493] - cpufreq: intel_pstate: Support Clearwater Forest OOB mode (David Arcari) [RHEL-112493] - cpufreq: intel_pstate: Add Granite Rapids support in no-HWP mode (David Arcari) [RHEL-112493] - cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode (David Arcari) [RHEL-112493] - cpufreq: intel_pstate: EAS: Increase cost for CPUs using L3 cache (David Arcari) [RHEL-112493] - cpufreq: intel_pstate: EAS support for hybrid platforms (David Arcari) [RHEL-112493] - arch_topology: Relocate cpu_scale to topology.[h|c] (David Arcari) [RHEL-112493] - arch_topology: Make register_cpu_capacity_sysctl() tolerant to late CPUs (David Arcari) [RHEL-112493] - PM: EM: Introduce em_adjust_cpu_capacity() (David Arcari) [RHEL-112493] - PM: EM: Move CPU capacity check to em_adjust_new_capacity() (David Arcari) [RHEL-112493] - PM: EM: Fix potential division-by-zero error in em_compute_costs() (David Arcari) [RHEL-112493] - PM: EM: Address RCU-related sparse warnings (David Arcari) [RHEL-112493] - PM: EM: Consify two parameters of em_dev_register_perf_domain() (David Arcari) [RHEL-112493] - PM: EM: use kfree_rcu() to simplify the code (David Arcari) [RHEL-112493] - PM: EM: Slightly reduce em_check_capacity_update() overhead (David Arcari) [RHEL-112493] - PM: EM: Drop unused parameter from em_adjust_new_capacity() (David Arcari) [RHEL-112493] - PM: EM: Move sched domains rebuild function from schedutil to EM (David Arcari) [RHEL-112493] - PM: EM: Add min/max available performance state limits (David Arcari) [RHEL-112493] - PM: EM: Refactor em_adjust_new_capacity() (David Arcari) [RHEL-112493] - PM: EM: fix wrong utilization estimation in em_cpu_energy() (David Arcari) [RHEL-112493] - PM: EM: Force device drivers to provide power in uW (David Arcari) [RHEL-112493] - PM: EM: Fix nr_states warnings in static checks (David Arcari) [RHEL-112493] - PM: EM: Add em_dev_compute_costs() (David Arcari) [RHEL-112493] - PM: EM: Remove old table (David Arcari) [RHEL-112493] - PM: EM: Change debugfs configuration to use runtime EM table data (David Arcari) [RHEL-112493] - PM: EM: Optimize em_cpu_energy() and remove division (David Arcari) [RHEL-112493] - PM: EM: Support late CPUs booting and capacity adjustment (David Arcari) [RHEL-112493] - PM: EM: Add performance field to struct em_perf_state and optimize (David Arcari) [RHEL-112493] - PM: EM: Add em_perf_state_from_pd() to get performance states table (David Arcari) [RHEL-112493] - PM: EM: Introduce em_dev_update_perf_domain() for EM updates (David Arcari) [RHEL-112493] - PM: EM: Add functions for memory allocations for new EM tables (David Arcari) [RHEL-112493] - PM: EM: Use runtime modified EM for CPUs energy estimation in EAS (David Arcari) [RHEL-112493] - PM: EM: Introduce runtime modifiable table (David Arcari) [RHEL-112493] - PM: EM: Split the allocation and initialization of the EM table (David Arcari) [RHEL-112493] - PM: EM: Check if the get_cost() callback is present in em_compute_costs() (David Arcari) [RHEL-112493] - PM: EM: Introduce em_compute_costs() (David Arcari) [RHEL-112493] - PM: EM: Refactor em_pd_get_efficient_state() to be more flexible (David Arcari) [RHEL-112493] - PM: EM: Find first CPU active while updating OPP efficiency (David Arcari) [RHEL-112493] - PM: EM: Extend em_cpufreq_update_efficiencies() argument list (David Arcari) [RHEL-112493] - PM: EM: Add missing newline for the message log (David Arcari) [RHEL-112493] - PM: EM: fix memory leak with using debugfs_lookup() (David Arcari) [RHEL-112493] - PM: EM: fix kernel-doc comments (David Arcari) [RHEL-112493] - cpufreq: intel_pstate: Populate the cpu_capacity sysfs entries (David Arcari) [RHEL-112493] Resolves: RHEL-112493 Signed-off-by: CKI KWF Bot --- Makefile.rhelver | 2 +- kernel.changelog | 46 +++++++++++++++++++++++++++++++++++++++++ kernel.spec | 53 ++++++++++++++++++++++++++++++++++++++++++++---- sources | 6 +++--- 4 files changed, 99 insertions(+), 8 deletions(-) diff --git a/Makefile.rhelver b/Makefile.rhelver index deaa063a1..87bd2b217 100644 --- a/Makefile.rhelver +++ b/Makefile.rhelver @@ -12,7 +12,7 @@ RHEL_MINOR = 8 # # Use this spot to avoid future merge conflicts. # Do not trim this comment. -RHEL_RELEASE = 615 +RHEL_RELEASE = 616 # # ZSTREAM diff --git a/kernel.changelog b/kernel.changelog index ba771eddf..c374b10d5 100644 --- a/kernel.changelog +++ b/kernel.changelog @@ -1,3 +1,49 @@ +* Mon Sep 15 2025 CKI KWF Bot [5.14.0-616.el9] +- PM: EM: Add function for registering a PD without capacity update (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Support Clearwater Forest OOB mode (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Add Granite Rapids support in no-HWP mode (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: EAS: Increase cost for CPUs using L3 cache (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: EAS support for hybrid platforms (David Arcari) [RHEL-112493] +- arch_topology: Relocate cpu_scale to topology.[h|c] (David Arcari) [RHEL-112493] +- arch_topology: Make register_cpu_capacity_sysctl() tolerant to late CPUs (David Arcari) [RHEL-112493] +- PM: EM: Introduce em_adjust_cpu_capacity() (David Arcari) [RHEL-112493] +- PM: EM: Move CPU capacity check to em_adjust_new_capacity() (David Arcari) [RHEL-112493] +- PM: EM: Fix potential division-by-zero error in em_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Address RCU-related sparse warnings (David Arcari) [RHEL-112493] +- PM: EM: Consify two parameters of em_dev_register_perf_domain() (David Arcari) [RHEL-112493] +- PM: EM: use kfree_rcu() to simplify the code (David Arcari) [RHEL-112493] +- PM: EM: Slightly reduce em_check_capacity_update() overhead (David Arcari) [RHEL-112493] +- PM: EM: Drop unused parameter from em_adjust_new_capacity() (David Arcari) [RHEL-112493] +- PM: EM: Move sched domains rebuild function from schedutil to EM (David Arcari) [RHEL-112493] +- PM: EM: Add min/max available performance state limits (David Arcari) [RHEL-112493] +- PM: EM: Refactor em_adjust_new_capacity() (David Arcari) [RHEL-112493] +- PM: EM: fix wrong utilization estimation in em_cpu_energy() (David Arcari) [RHEL-112493] +- PM: EM: Force device drivers to provide power in uW (David Arcari) [RHEL-112493] +- PM: EM: Fix nr_states warnings in static checks (David Arcari) [RHEL-112493] +- PM: EM: Add em_dev_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Remove old table (David Arcari) [RHEL-112493] +- PM: EM: Change debugfs configuration to use runtime EM table data (David Arcari) [RHEL-112493] +- PM: EM: Optimize em_cpu_energy() and remove division (David Arcari) [RHEL-112493] +- PM: EM: Support late CPUs booting and capacity adjustment (David Arcari) [RHEL-112493] +- PM: EM: Add performance field to struct em_perf_state and optimize (David Arcari) [RHEL-112493] +- PM: EM: Add em_perf_state_from_pd() to get performance states table (David Arcari) [RHEL-112493] +- PM: EM: Introduce em_dev_update_perf_domain() for EM updates (David Arcari) [RHEL-112493] +- PM: EM: Add functions for memory allocations for new EM tables (David Arcari) [RHEL-112493] +- PM: EM: Use runtime modified EM for CPUs energy estimation in EAS (David Arcari) [RHEL-112493] +- PM: EM: Introduce runtime modifiable table (David Arcari) [RHEL-112493] +- PM: EM: Split the allocation and initialization of the EM table (David Arcari) [RHEL-112493] +- PM: EM: Check if the get_cost() callback is present in em_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Introduce em_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Refactor em_pd_get_efficient_state() to be more flexible (David Arcari) [RHEL-112493] +- PM: EM: Find first CPU active while updating OPP efficiency (David Arcari) [RHEL-112493] +- PM: EM: Extend em_cpufreq_update_efficiencies() argument list (David Arcari) [RHEL-112493] +- PM: EM: Add missing newline for the message log (David Arcari) [RHEL-112493] +- PM: EM: fix memory leak with using debugfs_lookup() (David Arcari) [RHEL-112493] +- PM: EM: fix kernel-doc comments (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Populate the cpu_capacity sysfs entries (David Arcari) [RHEL-112493] +Resolves: RHEL-112493 + * Fri Sep 12 2025 CKI KWF Bot [5.14.0-615.el9] - ACPI: processor: Rescan "dead" SMT siblings during initialization (David Arcari) [RHEL-113139] - intel_idle: Allow loading ACPI tables for any family (David Arcari) [RHEL-113139] diff --git a/kernel.spec b/kernel.spec index b7def6339..af302e476 100755 --- a/kernel.spec +++ b/kernel.spec @@ -165,15 +165,15 @@ Summary: The Linux kernel # define buildid .local %define specversion 5.14.0 %define patchversion 5.14 -%define pkgrelease 615 +%define pkgrelease 616 %define kversion 5 -%define tarfile_release 5.14.0-615.el9 +%define tarfile_release 5.14.0-616.el9 # This is needed to do merge window version magic %define patchlevel 14 # This allows pkg_release to have configurable %%{?dist} tag -%define specrelease 615%{?buildid}%{?dist} +%define specrelease 616%{?buildid}%{?dist} # This defines the kabi tarball version -%define kabiversion 5.14.0-615.el9 +%define kabiversion 5.14.0-616.el9 # # End of genspec.sh variables @@ -3684,6 +3684,51 @@ fi # # %changelog +* Mon Sep 15 2025 CKI KWF Bot [5.14.0-616.el9] +- PM: EM: Add function for registering a PD without capacity update (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Support Clearwater Forest OOB mode (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Add Granite Rapids support in no-HWP mode (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: EAS: Increase cost for CPUs using L3 cache (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: EAS support for hybrid platforms (David Arcari) [RHEL-112493] +- arch_topology: Relocate cpu_scale to topology.[h|c] (David Arcari) [RHEL-112493] +- arch_topology: Make register_cpu_capacity_sysctl() tolerant to late CPUs (David Arcari) [RHEL-112493] +- PM: EM: Introduce em_adjust_cpu_capacity() (David Arcari) [RHEL-112493] +- PM: EM: Move CPU capacity check to em_adjust_new_capacity() (David Arcari) [RHEL-112493] +- PM: EM: Fix potential division-by-zero error in em_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Address RCU-related sparse warnings (David Arcari) [RHEL-112493] +- PM: EM: Consify two parameters of em_dev_register_perf_domain() (David Arcari) [RHEL-112493] +- PM: EM: use kfree_rcu() to simplify the code (David Arcari) [RHEL-112493] +- PM: EM: Slightly reduce em_check_capacity_update() overhead (David Arcari) [RHEL-112493] +- PM: EM: Drop unused parameter from em_adjust_new_capacity() (David Arcari) [RHEL-112493] +- PM: EM: Move sched domains rebuild function from schedutil to EM (David Arcari) [RHEL-112493] +- PM: EM: Add min/max available performance state limits (David Arcari) [RHEL-112493] +- PM: EM: Refactor em_adjust_new_capacity() (David Arcari) [RHEL-112493] +- PM: EM: fix wrong utilization estimation in em_cpu_energy() (David Arcari) [RHEL-112493] +- PM: EM: Force device drivers to provide power in uW (David Arcari) [RHEL-112493] +- PM: EM: Fix nr_states warnings in static checks (David Arcari) [RHEL-112493] +- PM: EM: Add em_dev_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Remove old table (David Arcari) [RHEL-112493] +- PM: EM: Change debugfs configuration to use runtime EM table data (David Arcari) [RHEL-112493] +- PM: EM: Optimize em_cpu_energy() and remove division (David Arcari) [RHEL-112493] +- PM: EM: Support late CPUs booting and capacity adjustment (David Arcari) [RHEL-112493] +- PM: EM: Add performance field to struct em_perf_state and optimize (David Arcari) [RHEL-112493] +- PM: EM: Add em_perf_state_from_pd() to get performance states table (David Arcari) [RHEL-112493] +- PM: EM: Introduce em_dev_update_perf_domain() for EM updates (David Arcari) [RHEL-112493] +- PM: EM: Add functions for memory allocations for new EM tables (David Arcari) [RHEL-112493] +- PM: EM: Use runtime modified EM for CPUs energy estimation in EAS (David Arcari) [RHEL-112493] +- PM: EM: Introduce runtime modifiable table (David Arcari) [RHEL-112493] +- PM: EM: Split the allocation and initialization of the EM table (David Arcari) [RHEL-112493] +- PM: EM: Check if the get_cost() callback is present in em_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Introduce em_compute_costs() (David Arcari) [RHEL-112493] +- PM: EM: Refactor em_pd_get_efficient_state() to be more flexible (David Arcari) [RHEL-112493] +- PM: EM: Find first CPU active while updating OPP efficiency (David Arcari) [RHEL-112493] +- PM: EM: Extend em_cpufreq_update_efficiencies() argument list (David Arcari) [RHEL-112493] +- PM: EM: Add missing newline for the message log (David Arcari) [RHEL-112493] +- PM: EM: fix memory leak with using debugfs_lookup() (David Arcari) [RHEL-112493] +- PM: EM: fix kernel-doc comments (David Arcari) [RHEL-112493] +- cpufreq: intel_pstate: Populate the cpu_capacity sysfs entries (David Arcari) [RHEL-112493] + * Fri Sep 12 2025 CKI KWF Bot [5.14.0-615.el9] - ACPI: processor: Rescan "dead" SMT siblings during initialization (David Arcari) [RHEL-113139] - intel_idle: Allow loading ACPI tables for any family (David Arcari) [RHEL-113139] diff --git a/sources b/sources index 41635c3f2..10dc68d0c 100644 --- a/sources +++ b/sources @@ -1,3 +1,3 @@ -SHA512 (linux-5.14.0-615.el9.tar.xz) = da751a1b1ea544e26e7ca46fcd9a5c40f07fb6b22a3e664ff3fb3ace3270b7a50b93ad6cca6b96840fca97e5ec2744345ae82dbd44a27a98980c99890b7de08a -SHA512 (kernel-abi-stablelists-5.14.0-615.el9.tar.bz2) = 02cc9ceb6574c3568ef064e0784bdd0316b6f6f4229b05c2fd61e2d66b56fd3f210cfd56b9447fad9b9db7ed3df98a1040c981acb46edf717f5557b1c82cbe71 -SHA512 (kernel-kabi-dw-5.14.0-615.el9.tar.bz2) = 4bbf6f7ed87d123bd3514959d0e20240627718278f51891a5a3303671bc1abb81d5deac60f258ca4cd715c9611ddb589b90f13ce452adbc936c6e46d447e3836 +SHA512 (linux-5.14.0-616.el9.tar.xz) = 9abdc341fc7fff9159442224859b30de82de8b59e79af00d06b522d0a05b216a7648e9f33ff86d21bee1f46ac659ce2148d74544b281a29b5b19d2fdb7ab0ee1 +SHA512 (kernel-abi-stablelists-5.14.0-616.el9.tar.bz2) = 9d042baab3883a65eecdcb1098ca91f9cbad644cd85cf55daa7e3ccb9c04c572f262a42e86bcf453ce4feb5eb6d54e39c80b74c1f5d009232dbdb549033e3694 +SHA512 (kernel-kabi-dw-5.14.0-616.el9.tar.bz2) = aa54506540c90fab5710078f7cbbc454a9846c428d39ff273aaaad3ed1c5c759b6e0f9fb13b62ccc1b41a576fe2f5480f8f2cdb397aad0baa8fe1dccf2df6705