* [PATCH drm-next] drm/msm/dp: Fix potential division by zero issue
@ 2024-11-20 5:04 Dheeraj Reddy Jonnalagadda
2024-11-20 11:02 ` Dmitry Baryshkov
0 siblings, 1 reply; 2+ messages in thread
From: Dheeraj Reddy Jonnalagadda @ 2024-11-20 5:04 UTC (permalink / raw)
To: robdclark, quic_abhinavk, dmitry.baryshkov, linux-arm-msm
Cc: sean, marijn.suijten, airlied, simona, quic_bjorande,
quic_parellan, quic_khsieh, dri-devel, freedreno, linux-kernel,
dianders, Dheeraj Reddy Jonnalagadda
The variable pixel_div can remain zero due to an invalid rate input,
leading to a potential division by zero issue. This patch fixes it and
the function now logs an error and returns early.
Additionally, this patch resolves trailing whitespace issues detected
by checkpatch.pl in the same file.
Signed-off-by: Dheeraj Reddy Jonnalagadda <dheeraj.linuxdev@gmail.com>
---
drivers/gpu/drm/msm/dp/dp_catalog.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/msm/dp/dp_catalog.c b/drivers/gpu/drm/msm/dp/dp_catalog.c
index b4c8856fb25d..e170f70f1d42 100644
--- a/drivers/gpu/drm/msm/dp/dp_catalog.c
+++ b/drivers/gpu/drm/msm/dp/dp_catalog.c
@@ -225,7 +225,7 @@ int msm_dp_catalog_aux_clear_hw_interrupts(struct msm_dp_catalog *msm_dp_catalog
* This function reset AUX controller
*
* NOTE: reset AUX controller will also clear any pending HPD related interrupts
- *
+ *
*/
void msm_dp_catalog_aux_reset(struct msm_dp_catalog *msm_dp_catalog)
{
@@ -487,8 +487,10 @@ void msm_dp_catalog_ctrl_config_msa(struct msm_dp_catalog *msm_dp_catalog,
pixel_div = 2;
else if (rate == link_rate_hbr2)
pixel_div = 4;
- else
+ else {
DRM_ERROR("Invalid pixel mux divider\n");
+ return;
+ }
dispcc_input_rate = (rate * 10) / pixel_div;
@@ -579,7 +581,7 @@ u32 msm_dp_catalog_hw_revision(const struct msm_dp_catalog *msm_dp_catalog)
* This function reset the DP controller
*
* NOTE: reset DP controller will also clear any pending HPD related interrupts
- *
+ *
*/
void msm_dp_catalog_ctrl_reset(struct msm_dp_catalog *msm_dp_catalog)
{
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH drm-next] drm/msm/dp: Fix potential division by zero issue
2024-11-20 5:04 [PATCH drm-next] drm/msm/dp: Fix potential division by zero issue Dheeraj Reddy Jonnalagadda
@ 2024-11-20 11:02 ` Dmitry Baryshkov
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Baryshkov @ 2024-11-20 11:02 UTC (permalink / raw)
To: Dheeraj Reddy Jonnalagadda
Cc: robdclark, quic_abhinavk, linux-arm-msm, sean, marijn.suijten,
airlied, simona, quic_bjorande, quic_parellan, quic_khsieh,
dri-devel, freedreno, linux-kernel, dianders
On Wed, Nov 20, 2024 at 10:34:51AM +0530, Dheeraj Reddy Jonnalagadda wrote:
> The variable pixel_div can remain zero due to an invalid rate input,
No, it can not. Rate is set by the driver, which knowns which rates are
supported.
> leading to a potential division by zero issue. This patch fixes it and
> the function now logs an error and returns early.
See Documentation/process/submitting-patches.rst, look for "This patch"
string.
>
> Additionally, this patch resolves trailing whitespace issues detected
> by checkpatch.pl in the same file.
Additionally perform ... => separate commits.
>
> Signed-off-by: Dheeraj Reddy Jonnalagadda <dheeraj.linuxdev@gmail.com>
> ---
> drivers/gpu/drm/msm/dp/dp_catalog.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/msm/dp/dp_catalog.c b/drivers/gpu/drm/msm/dp/dp_catalog.c
> index b4c8856fb25d..e170f70f1d42 100644
> --- a/drivers/gpu/drm/msm/dp/dp_catalog.c
> +++ b/drivers/gpu/drm/msm/dp/dp_catalog.c
> @@ -225,7 +225,7 @@ int msm_dp_catalog_aux_clear_hw_interrupts(struct msm_dp_catalog *msm_dp_catalog
> * This function reset AUX controller
> *
> * NOTE: reset AUX controller will also clear any pending HPD related interrupts
> - *
> + *
> */
> void msm_dp_catalog_aux_reset(struct msm_dp_catalog *msm_dp_catalog)
> {
> @@ -487,8 +487,10 @@ void msm_dp_catalog_ctrl_config_msa(struct msm_dp_catalog *msm_dp_catalog,
> pixel_div = 2;
> else if (rate == link_rate_hbr2)
> pixel_div = 4;
> - else
> + else {
> DRM_ERROR("Invalid pixel mux divider\n");
> + return;
> + }
>
> dispcc_input_rate = (rate * 10) / pixel_div;
>
> @@ -579,7 +581,7 @@ u32 msm_dp_catalog_hw_revision(const struct msm_dp_catalog *msm_dp_catalog)
> * This function reset the DP controller
> *
> * NOTE: reset DP controller will also clear any pending HPD related interrupts
> - *
> + *
> */
> void msm_dp_catalog_ctrl_reset(struct msm_dp_catalog *msm_dp_catalog)
> {
> --
> 2.34.1
>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-11-20 11:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-20 5:04 [PATCH drm-next] drm/msm/dp: Fix potential division by zero issue Dheeraj Reddy Jonnalagadda
2024-11-20 11:02 ` Dmitry Baryshkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox