From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Aurabindo Pillai <aurabindo.pillai@amd.com>,
Fangzhi Zuo <Jerry.Zuo@amd.com>,
Ivan Lipski <ivan.lipski@amd.com>,
Dan Wheeler <daniel.wheeler@amd.com>,
Alex Deucher <alexander.deucher@amd.com>
Subject: [PATCH 6.17 075/175] drm/amd/display: Fix pbn to kbps Conversion
Date: Thu, 27 Nov 2025 15:45:28 +0100 [thread overview]
Message-ID: <20251127144045.704882644@linuxfoundation.org> (raw)
In-Reply-To: <20251127144042.945669935@linuxfoundation.org>
6.17-stable review patch. If anyone has any objections, please let me know.
------------------
From: Fangzhi Zuo <Jerry.Zuo@amd.com>
commit 1788ef30725da53face7e311cdf62ad65fababcd upstream.
[Why]
Existing routine has two conversion sequence,
pbn_to_kbps and kbps_to_pbn with margin.
Non of those has without-margin calculation.
kbps_to_pbn with margin conversion includes
fec overhead which has already been included in
pbn_div calculation with 0.994 factor considered.
It is a double counted fec overhead factor that causes
potential bw loss.
[How]
Add without-margin calculation.
Fix fec overhead double counted issue.
Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3735
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Fangzhi Zuo <Jerry.Zuo@amd.com>
Signed-off-by: Ivan Lipski <ivan.lipski@amd.com>
Tested-by: Dan Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit e0dec00f3d05e8c0eceaaebfdca217f8d10d380c)
Cc: stable@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c | 59 ++++--------
1 file changed, 23 insertions(+), 36 deletions(-)
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
@@ -852,26 +852,28 @@ struct dsc_mst_fairness_params {
};
#if defined(CONFIG_DRM_AMD_DC_FP)
-static uint16_t get_fec_overhead_multiplier(struct dc_link *dc_link)
+static uint64_t kbps_to_pbn(int kbps, bool is_peak_pbn)
{
- u8 link_coding_cap;
- uint16_t fec_overhead_multiplier_x1000 = PBN_FEC_OVERHEAD_MULTIPLIER_8B_10B;
+ uint64_t effective_kbps = (uint64_t)kbps;
- link_coding_cap = dc_link_dp_mst_decide_link_encoding_format(dc_link);
- if (link_coding_cap == DP_128b_132b_ENCODING)
- fec_overhead_multiplier_x1000 = PBN_FEC_OVERHEAD_MULTIPLIER_128B_132B;
+ if (is_peak_pbn) { // add 0.6% (1006/1000) overhead into effective kbps
+ effective_kbps *= 1006;
+ effective_kbps = div_u64(effective_kbps, 1000);
+ }
- return fec_overhead_multiplier_x1000;
+ return (uint64_t) DIV64_U64_ROUND_UP(effective_kbps * 64, (54 * 8 * 1000));
}
-static int kbps_to_peak_pbn(int kbps, uint16_t fec_overhead_multiplier_x1000)
+static uint32_t pbn_to_kbps(unsigned int pbn, bool with_margin)
{
- u64 peak_kbps = kbps;
+ uint64_t pbn_effective = (uint64_t)pbn;
+
+ if (with_margin) // deduct 0.6% (994/1000) overhead from effective pbn
+ pbn_effective *= (1000000 / PEAK_FACTOR_X1000);
+ else
+ pbn_effective *= 1000;
- peak_kbps *= 1006;
- peak_kbps *= fec_overhead_multiplier_x1000;
- peak_kbps = div_u64(peak_kbps, 1000 * 1000);
- return (int) DIV64_U64_ROUND_UP(peak_kbps * 64, (54 * 8 * 1000));
+ return DIV_U64_ROUND_UP(pbn_effective * 8 * 54, 64);
}
static void set_dsc_configs_from_fairness_vars(struct dsc_mst_fairness_params *params,
@@ -942,7 +944,7 @@ static int bpp_x16_from_pbn(struct dsc_m
dc_dsc_get_default_config_option(param.sink->ctx->dc, &dsc_options);
dsc_options.max_target_bpp_limit_override_x16 = drm_connector->display_info.max_dsc_bpp * 16;
- kbps = div_u64((u64)pbn * 994 * 8 * 54, 64);
+ kbps = pbn_to_kbps(pbn, false);
dc_dsc_compute_config(
param.sink->ctx->dc->res_pool->dscs[0],
¶m.sink->dsc_caps.dsc_dec_caps,
@@ -971,12 +973,11 @@ static int increase_dsc_bpp(struct drm_a
int link_timeslots_used;
int fair_pbn_alloc;
int ret = 0;
- uint16_t fec_overhead_multiplier_x1000 = get_fec_overhead_multiplier(dc_link);
for (i = 0; i < count; i++) {
if (vars[i + k].dsc_enabled) {
initial_slack[i] =
- kbps_to_peak_pbn(params[i].bw_range.max_kbps, fec_overhead_multiplier_x1000) - vars[i + k].pbn;
+ kbps_to_pbn(params[i].bw_range.max_kbps, false) - vars[i + k].pbn;
bpp_increased[i] = false;
remaining_to_increase += 1;
} else {
@@ -1072,7 +1073,6 @@ static int try_disable_dsc(struct drm_at
int next_index;
int remaining_to_try = 0;
int ret;
- uint16_t fec_overhead_multiplier_x1000 = get_fec_overhead_multiplier(dc_link);
int var_pbn;
for (i = 0; i < count; i++) {
@@ -1105,7 +1105,7 @@ static int try_disable_dsc(struct drm_at
DRM_DEBUG_DRIVER("MST_DSC index #%d, try no compression\n", next_index);
var_pbn = vars[next_index].pbn;
- vars[next_index].pbn = kbps_to_peak_pbn(params[next_index].bw_range.stream_kbps, fec_overhead_multiplier_x1000);
+ vars[next_index].pbn = kbps_to_pbn(params[next_index].bw_range.stream_kbps, true);
ret = drm_dp_atomic_find_time_slots(state,
params[next_index].port->mgr,
params[next_index].port,
@@ -1165,7 +1165,6 @@ static int compute_mst_dsc_configs_for_l
int count = 0;
int i, k, ret;
bool debugfs_overwrite = false;
- uint16_t fec_overhead_multiplier_x1000 = get_fec_overhead_multiplier(dc_link);
struct drm_connector_state *new_conn_state;
memset(params, 0, sizeof(params));
@@ -1246,7 +1245,7 @@ static int compute_mst_dsc_configs_for_l
DRM_DEBUG_DRIVER("MST_DSC Try no compression\n");
for (i = 0; i < count; i++) {
vars[i + k].aconnector = params[i].aconnector;
- vars[i + k].pbn = kbps_to_peak_pbn(params[i].bw_range.stream_kbps, fec_overhead_multiplier_x1000);
+ vars[i + k].pbn = kbps_to_pbn(params[i].bw_range.stream_kbps, false);
vars[i + k].dsc_enabled = false;
vars[i + k].bpp_x16 = 0;
ret = drm_dp_atomic_find_time_slots(state, params[i].port->mgr, params[i].port,
@@ -1268,7 +1267,7 @@ static int compute_mst_dsc_configs_for_l
DRM_DEBUG_DRIVER("MST_DSC Try max compression\n");
for (i = 0; i < count; i++) {
if (params[i].compression_possible && params[i].clock_force_enable != DSC_CLK_FORCE_DISABLE) {
- vars[i + k].pbn = kbps_to_peak_pbn(params[i].bw_range.min_kbps, fec_overhead_multiplier_x1000);
+ vars[i + k].pbn = kbps_to_pbn(params[i].bw_range.min_kbps, false);
vars[i + k].dsc_enabled = true;
vars[i + k].bpp_x16 = params[i].bw_range.min_target_bpp_x16;
ret = drm_dp_atomic_find_time_slots(state, params[i].port->mgr,
@@ -1276,7 +1275,7 @@ static int compute_mst_dsc_configs_for_l
if (ret < 0)
return ret;
} else {
- vars[i + k].pbn = kbps_to_peak_pbn(params[i].bw_range.stream_kbps, fec_overhead_multiplier_x1000);
+ vars[i + k].pbn = kbps_to_pbn(params[i].bw_range.stream_kbps, false);
vars[i + k].dsc_enabled = false;
vars[i + k].bpp_x16 = 0;
ret = drm_dp_atomic_find_time_slots(state, params[i].port->mgr,
@@ -1731,18 +1730,6 @@ clean_exit:
return ret;
}
-static uint32_t kbps_from_pbn(unsigned int pbn)
-{
- uint64_t kbps = (uint64_t)pbn;
-
- kbps *= (1000000 / PEAK_FACTOR_X1000);
- kbps *= 8;
- kbps *= 54;
- kbps /= 64;
-
- return (uint32_t)kbps;
-}
-
static bool is_dsc_common_config_possible(struct dc_stream_state *stream,
struct dc_dsc_bw_range *bw_range)
{
@@ -1835,7 +1822,7 @@ enum dc_status dm_dp_mst_is_port_support
dc_link_get_highest_encoding_format(stream->link));
cur_link_settings = stream->link->verified_link_cap;
root_link_bw_in_kbps = dc_link_bandwidth_kbps(aconnector->dc_link, &cur_link_settings);
- virtual_channel_bw_in_kbps = kbps_from_pbn(aconnector->mst_output_port->full_pbn);
+ virtual_channel_bw_in_kbps = pbn_to_kbps(aconnector->mst_output_port->full_pbn, true);
/* pick the end to end bw bottleneck */
end_to_end_bw_in_kbps = min(root_link_bw_in_kbps, virtual_channel_bw_in_kbps);
@@ -1886,7 +1873,7 @@ enum dc_status dm_dp_mst_is_port_support
immediate_upstream_port = aconnector->mst_output_port->parent->port_parent;
if (immediate_upstream_port) {
- virtual_channel_bw_in_kbps = kbps_from_pbn(immediate_upstream_port->full_pbn);
+ virtual_channel_bw_in_kbps = pbn_to_kbps(immediate_upstream_port->full_pbn, true);
virtual_channel_bw_in_kbps = min(root_link_bw_in_kbps, virtual_channel_bw_in_kbps);
} else {
/* For topology LCT 1 case - only one mstb*/
next prev parent reply other threads:[~2025-11-27 15:01 UTC|newest]
Thread overview: 180+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-27 14:44 [PATCH 6.17 000/175] 6.17.10-rc1 review Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 001/175] KVM: arm64: Check the untrusted offset in FF-A memory share Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 002/175] timers: Fix NULL function pointer race in timer_shutdown_sync() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 003/175] arm64: dts: rockchip: Remove non-functioning CPU OPPs from RK3576 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 004/175] HID: amd_sfh: Stop sensor before starting Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 005/175] HID: quirks: work around VID/PID conflict for 0x4c4a/0x4155 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 006/175] arm64: dts: rockchip: Fix vccio4-supply on rk3566-pinetab2 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 007/175] arm64: dts: rockchip: fix PCIe 3.3V regulator voltage on orangepi-5 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 008/175] reset: imx8mp-audiomix: Fix bad mask values Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 009/175] arm64: dts: rockchip: include rk3399-base instead of rk3399 in rk3399-op1 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 010/175] arm64: dts: rockchip: disable HS400 on RK3588 Tiger Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 011/175] KVM: SVM: Fix redundant updates of LBR MSR intercepts Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 012/175] vfat: fix missing sb_min_blocksize() return value checks Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 013/175] mtd: rawnand: cadence: fix DMA device NULL pointer dereference Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 014/175] fs: Fix uninitialized offp in statmount_string() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 015/175] mtdchar: fix integer overflow in read/write ioctls Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 016/175] xfs: check the return value of sb_min_blocksize() in xfs_fs_fill_super Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 017/175] isofs: check the return value of sb_min_blocksize() in isofs_fill_super Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 018/175] shmem: fix tmpfs reconfiguration (remount) when noswap is set Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 019/175] exfat: check return value of sb_min_blocksize in exfat_read_boot_sector Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 020/175] mptcp: Disallow MPTCP subflows from sockmap Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 021/175] s390/mm: Fix __ptep_rdp() inline assembly Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 022/175] mptcp: Fix proto fallback detection with BPF Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 023/175] lib/test_kho: check if KHO is enabled Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 024/175] ACPI: APEI: EINJ: Fix EINJV2 initialization and injection Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 025/175] ata: libata-scsi: Fix system suspend for a security locked drive Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 026/175] MIPS: mm: Prevent a TLB shutdown on initial uniquification Greg Kroah-Hartman
2025-11-28 6:01 ` Maciej W. Rozycki
2025-12-01 10:36 ` Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 027/175] selinux: rename task_security_struct to cred_security_struct Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 028/175] selinux: move avdcache to per-task security struct Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 029/175] smb: client: introduce close_cached_dir_locked() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 030/175] wifi: rtw89: hw_scan: Dont let the operating channel be last Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 031/175] ata: libata-scsi: Add missing scsi_device_put() in ata_scsi_dev_rescan() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 032/175] be2net: pass wrb_params in case of OS2BMC Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 033/175] io_uring/cmd_net: fix wrong argument types for skb_queue_splice() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 034/175] net: dsa: microchip: lan937x: Fix RGMII delay tuning Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 035/175] Revert "drm/tegra: dsi: Clear enable register if powered by bootloader" Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 036/175] Input: cros_ec_keyb - fix an invalid memory access Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 037/175] Input: goodix - add support for ACPI ID GDIX1003 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 038/175] Input: imx_sc_key - fix memory corruption on unload Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 039/175] Input: pegasus-notetaker - fix potential out-of-bounds access Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 040/175] mm/mempool: fix poisoning order>0 pages with HIGHMEM Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 041/175] nouveau/firmware: Add missing kfree() of nvkm_falcon_fw::boot Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 042/175] nvme: nvme-fc: move tagset removal to nvme_fc_delete_ctrl() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 043/175] nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 044/175] PM: sleep: core: Fix runtime PM enabling in device_resume_early() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 045/175] sched_ext: Fix scx_enable() crash on helper kthread creation failure Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 046/175] scsi: sg: Do not sleep in atomic context Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 047/175] scsi: target: tcm_loop: Fix segfault in tcm_loop_tpg_address_show() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 048/175] MIPS: Malta: Fix !EVA SOC-it PCI MMIO Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 049/175] dt-bindings: pinctrl: toshiba,visconti: Fix number of items in groups Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 050/175] LoongArch: BPF: Disable trampoline for kernel module function trace Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 051/175] LoongArch: Dont panic if no valid cache info for PCI Greg Kroah-Hartman
2025-11-28 2:30 ` 陈华才
2025-11-28 5:54 ` Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 052/175] LoongArch: Fix NUMA node parsing with numa_memblks Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 053/175] platform/x86: alienware-wmi-wmax: Fix "Alienware m16 R1 AMD" quirk order Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 054/175] platform/x86: alienware-wmi-wmax: Add support for the whole "M" family Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 055/175] platform/x86: alienware-wmi-wmax: Add support for the whole "X" family Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 056/175] platform/x86: alienware-wmi-wmax: Add support for the whole "G" family Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 057/175] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 058/175] mptcp: fix race condition in mptcp_schedule_work() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 059/175] mptcp: fix a race in mptcp_pm_del_add_timer() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 060/175] mptcp: fix ack generation for fallback msk Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 061/175] mptcp: fix duplicate reset on fastclose Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 062/175] mptcp: fix premature close in case of fallback Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 063/175] selftests: mptcp: join: endpoints: longer timeout Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 064/175] selftests: mptcp: join: userspace: " Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 065/175] mptcp: avoid unneeded subflow-level drops Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 066/175] mptcp: decouple mptcp fastclose from tcp close Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 067/175] mptcp: do not fallback when OoO is present Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 068/175] drm/tegra: dc: Fix reference leak in tegra_dc_couple() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 069/175] drm/radeon: delete radeon_fence_process in is_signaled, no deadlock Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 070/175] drm/plane: Fix create_in_format_blob() return value Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 071/175] drm/amd: Skip power ungate during suspend for VPE Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 072/175] drm/amdgpu: Skip emit de meta data on gfx11 with rs64 enabled Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 073/175] drm/amd/display: Increase DPCD read retries Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 074/175] drm/amd/display: Move sleep into each retry for retrieve_link_cap() Greg Kroah-Hartman
2025-11-27 14:45 ` Greg Kroah-Hartman [this message]
2025-11-27 14:45 ` [PATCH 6.17 076/175] drm/amd/display: Clear the CUR_ENABLE register on DCN20 on DPP5 Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 077/175] mm/truncate: unmap large folio on split failure Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 078/175] pinctrl: mediatek: mt8196: align register base names to dt-bindings ones Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 079/175] pinctrl: mediatek: mt8189: " Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 080/175] xfrm: drop SA reference in xfrm_state_update if dir doesnt match Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 081/175] xfrm: also call xfrm_state_delete_tunnel at destroy time for states that were never added Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 082/175] xfrm: call xfrm_dev_state_delete when xfrm_state_migrate fails to add the state Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 083/175] xfrm: set err and extack on failure to create pcpu SA Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 084/175] clk: sunxi-ng: Mark A523 bus-r-cpucfg clock as critical Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 085/175] clk: sunxi-ng: sun55i-a523-r-ccu: Mark bus-r-dma " Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 086/175] clk: sunxi-ng: sun55i-a523-ccu: Lower audio0 pll minimum rate Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 087/175] pinctrl: realtek: Select REGMAP_MMIO for RTD driver Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 088/175] xfrm: Check inner packet family directly from skb_dst Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 089/175] xfrm: Determine inner GSO type from packet inner protocol Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 090/175] xfrm: Prevent locally generated packets from direct output in tunnel mode Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 091/175] pinctrl: cirrus: Fix fwnode leak in cs42l43_pin_probe() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 092/175] platform/x86: msi-wmi-platform: Only load on MSI devices Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 093/175] platform/x86: msi-wmi-platform: Fix typo in WMI GUID Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 094/175] mips: dts: econet: fix EN751221 core type Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 095/175] net: core: prevent NULL deref in generic_hwtstamp_ioctl_lower() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 096/175] mlxsw: spectrum: Fix memory leak in mlxsw_sp_flower_stats() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 097/175] drm/tegra: Add call to put_pid() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 098/175] net: dsa: hellcreek: fix missing error handling in LED registration Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 099/175] net: mlxsw: linecards: fix missing error check in mlxsw_linecard_devlink_info_get() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 100/175] net: openvswitch: remove never-working support for setting nsh fields Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 101/175] veth: more robust handing of race to avoid txq getting stuck Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 102/175] tools: riscv: Fixed misalignment of CSR related definitions Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 103/175] nvmet-auth: update sc_c in target host hash calculation Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 104/175] nvme-multipath: fix lockdep WARN due to partition scan work Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 105/175] drm/i915/xe3lpd: Load DMC for Xe3_LPD version 30.02 Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 106/175] s390/ctcm: Fix double-kfree Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 107/175] selftests: net: lib: Do not overwrite error messages Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 108/175] net: airoha: Add wlan flowtable TX offload Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 109/175] net: airoha: Do not loopback traffic to GDM2 if it is available on the device Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 110/175] platform/x86/intel/speed_select_if: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 111/175] platform/x86: intel-uncore-freq: fix all header kernel-doc warnings Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 112/175] net: qlogic/qede: fix potential out-of-bounds read in qede_tpa_cont() and qede_tpa_end() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 113/175] drm/pcids: Split PTL pciids group to make wcl subplatform Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 114/175] drm/i915/display: Add definition for wcl as subplatform Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 115/175] drm/i915/xe3: Restrict PTL intel_encoder_is_c10phy() to only PHY A Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 116/175] drm/xe/kunit: Fix forcewake assertion in mocs test Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 117/175] drm/xe/irq: Handle msix vector0 interrupt Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 118/175] idpf: fix possible vport_config NULL pointer deref in remove Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 119/175] ice: fix PTP cleanup on driver removal in error path Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 120/175] pinctrl: s32cc: fix uninitialized memory in s32_pinctrl_desc Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 121/175] pinctrl: s32cc: initialize gpio_pin_config::list after kmalloc() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 122/175] devlink: rate: Unset parent pointer in devl_rate_nodes_destroy Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 123/175] net/mlx5: Clean up only new IRQ glue on request_irq() failure Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 124/175] af_unix: Read sk_peek_offset() again after sleeping in unix_stream_read_generic() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 125/175] gpio: cdev: make sure the cdev fd is still active before emitting events Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 126/175] net: phylink: add missing supported link modes for the fixed-link Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 127/175] tick/sched: Fix bogus condition in report_idle_softirq() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 128/175] LoongArch: Use UAPI types in ptrace UAPI header Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 129/175] cifs: fix memory leak in smb3_fs_context_parse_param error path Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 130/175] perf: Fix 0 count issue of cpu-clock Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 131/175] vsock: Ignore signal/timeout on connect() if already established Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 132/175] timekeeping: Fix resource leak in tk_aux_sysfs_init() error paths Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 133/175] MIPS: kernel: Fix random segmentation faults Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 134/175] ALSA: hda/realtek: Add quirk for Lenovo Yoga 7 2-in-1 14AKP10 Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 135/175] sched_ext: Allocate scx_kick_cpus_pnt_seqs lazily using kvzalloc() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 136/175] bcma: dont register devices disabled in OF Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 137/175] sched_ext: defer queue_balance_callback() until after ops.dispatch Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 138/175] drm/msm: Fix pgtable prealloc error path Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 139/175] ASoC: rt721: fix prepare clock stop failed Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 140/175] cifs: fix typo in enable_gcm_256 module parameter Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 141/175] scsi: core: Fix a regression triggered by scsi_host_busy() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 142/175] ALSA: hda/realtek: Fix mute led for HP Victus 15-fa1xxx (MB 8C2D) Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 143/175] perf/x86/intel/uncore: Add uncore PMU support for Wildcat Lake Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 144/175] x86/microcode/AMD: Limit Entrysign signature checking to known generations Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 145/175] selftests: cachestat: Fix warning on declaration under label Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 146/175] smb: client: handle lack of IPC in dfs_cache_refresh() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 147/175] selftests: net: use BASH for bareudp testing Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 148/175] net: tls: Change async resync helpers argument Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 149/175] blk-crypto: use BLK_STS_INVAL for alignment errors Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 150/175] net: tls: Cancel RX async resync request on rcd_delta overflow Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 151/175] x86/CPU/AMD: Extend Zen6 model range Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 152/175] kconfig/mconf: Initialize the default locale at startup Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 153/175] kconfig/nconf: " Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 154/175] drm/xe: Prevent BIT() overflow when handling invalid prefetch region Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 155/175] ALSA: usb-audio: fix uac2 clock source at terminal parser Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 156/175] scsi: ufs: ufs-qcom: Fix UFS OCP issue during UFS power down (PC=3) Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 157/175] net: ethernet: ti: netcp: Standardize knav_dma_open_channel to return NULL on error Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 158/175] tracing/tools: Fix incorrcet short option in usage text for --threads Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 159/175] btrfs: set inode flag BTRFS_INODE_COPY_EVERYTHING when logging new name Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 160/175] drm/amdgpu: fix gpu page fault after hibernation on PF passthrough Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 161/175] smb: client: fix incomplete backport in cfids_invalidation_worker() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 162/175] drm/i915/psr: Check drm_dp_dpcd_read return value on PSR dpcd init Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 163/175] drm/i915/dp_mst: Disable Panel Replay Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 164/175] drm/amdgpu/jpeg: Move parse_cs to amdgpu_jpeg.c Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 165/175] drm/amdgpu/jpeg: Add parse_cs for JPEG5_0_1 Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 166/175] xfs: Replace strncpy with memcpy Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 167/175] xfs: fix out of bounds memory read error in symlink repair Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 168/175] mptcp: fix address removal logic in mptcp_pm_nl_rm_addr Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 169/175] drm/amd/display: Insert dccg log for easy debug Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 170/175] drm/amd/display: Prevent Gating DTBCLK before It Is Properly Latched Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 171/175] tty/vt: fix up incorrect backport to stable releases Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 172/175] Revert "drm/i915/dp: Reject HBR3 when sink doesnt support TPS4" Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 173/175] drm/i915/dp: Add device specific quirk to limit eDP rate to HBR2 Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 174/175] sched_ext: Fix scx_kick_pseqs corruption on concurrent scheduler loads Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 175/175] sched_ext: fix flag check for deferred callbacks Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251127144045.704882644@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=Jerry.Zuo@amd.com \
--cc=alexander.deucher@amd.com \
--cc=aurabindo.pillai@amd.com \
--cc=daniel.wheeler@amd.com \
--cc=ivan.lipski@amd.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).