Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/msm/dpu: rename average bandwidth-related debugfs files

Rename the debugfs files to match their purpose and the patter provided
by other bandwidth and clock-related files:

threshold_high -> max_core_ab
threshold_low -> low_core_ab

Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/636069/
Link: https://lore.kernel.org/r/20250209-dpu-perf-rework-v5-6-87e936cf3004@linaro.org

+2 -2
+2 -2
drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.c
··· 464 464 &perf->core_clk_rate); 465 465 debugfs_create_u32("enable_bw_release", 0600, entry, 466 466 (u32 *)&perf->enable_bw_release); 467 - debugfs_create_u32("threshold_low", 0400, entry, 467 + debugfs_create_u32("low_core_ab", 0400, entry, 468 468 (u32 *)&perf->perf_cfg->max_bw_low); 469 - debugfs_create_u32("threshold_high", 0400, entry, 469 + debugfs_create_u32("max_core_ab", 0400, entry, 470 470 (u32 *)&perf->perf_cfg->max_bw_high); 471 471 debugfs_create_u32("min_core_ib", 0400, entry, 472 472 (u32 *)&perf->perf_cfg->min_core_ib);