linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cpuidle: idle exit_latency overflow
@ 2023-11-16 13:26 Bo Ye
  2023-11-16 14:20 ` AngeloGioacchino Del Regno
  2023-12-11 20:52 ` Rafael J. Wysocki
  0 siblings, 2 replies; 4+ messages in thread
From: Bo Ye @ 2023-11-16 13:26 UTC (permalink / raw)
  To: Rafael J. Wysocki, Daniel Lezcano, Matthias Brugger,
	AngeloGioacchino Del Regno
  Cc: yongdong.zhang, mtk24676, bo . ye, linux-pm, linux-kernel,
	linux-arm-kernel, linux-mediatek

From: mtk24676 <C.Cheng@mediatek.com>

In detail:
In kernel-6.1, in the __cpuidle_driver_init function in
driver/cpuidle/driver.c, there is a line of code that causes
an overflow. The line is s->exit_latency_ns = s->exit_latency
* NSEC_PER_USEC. The overflow occurs because the product of an
int type and a constant exceeds the range of the int type.

In C language, when you perform a multiplication operation, if
both operands are of int type, the multiplication operation is
performed on the int type, and then the result is converted to
the target type. This means that if the product of int type
multiplication exceeds the range that int type can represent,
an overflow will occur even if you store the result in a
variable of int64_t type.

Signed-off-by: mtk24676 <C.Cheng@mediatek.com>
Signed-off-by: bo.ye <bo.ye@mediatek.com>
---

diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c
index d9cda7f..631ca16 100644
--- a/drivers/cpuidle/driver.c
+++ b/drivers/cpuidle/driver.c
@@ -187,7 +187,7 @@
 			s->target_residency = div_u64(s->target_residency_ns, NSEC_PER_USEC);
 
 		if (s->exit_latency > 0)
-			s->exit_latency_ns = s->exit_latency * NSEC_PER_USEC;
+			s->exit_latency_ns = (u64)s->exit_latency * NSEC_PER_USEC;
 		else if (s->exit_latency_ns < 0)
 			s->exit_latency_ns =  0;
 		else

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] cpuidle: idle exit_latency overflow
  2023-11-16 13:26 [PATCH] cpuidle: idle exit_latency overflow Bo Ye
@ 2023-11-16 14:20 ` AngeloGioacchino Del Regno
  2023-11-16 14:52   ` Bo Ye (叶波)
  2023-12-11 20:52 ` Rafael J. Wysocki
  1 sibling, 1 reply; 4+ messages in thread
From: AngeloGioacchino Del Regno @ 2023-11-16 14:20 UTC (permalink / raw)
  To: Bo Ye, Rafael J. Wysocki, Daniel Lezcano, Matthias Brugger
  Cc: yongdong.zhang, mtk24676, linux-pm, linux-kernel,
	linux-arm-kernel, linux-mediatek

Il 16/11/23 14:26, Bo Ye ha scritto:
> From: mtk24676 <C.Cheng@mediatek.com>
> 
> In detail:
> In kernel-6.1, in the __cpuidle_driver_init function in
> driver/cpuidle/driver.c, there is a line of code that causes
> an overflow. The line is s->exit_latency_ns = s->exit_latency
> * NSEC_PER_USEC. The overflow occurs because the product of an
> int type and a constant exceeds the range of the int type.
> 
> In C language, when you perform a multiplication operation, if
> both operands are of int type, the multiplication operation is
> performed on the int type, and then the result is converted to
> the target type. This means that if the product of int type
> multiplication exceeds the range that int type can represent,
> an overflow will occur even if you store the result in a
> variable of int64_t type.
> 
> Signed-off-by: mtk24676 <C.Cheng@mediatek.com>

It all makes sense, but "mtk24676" is not the name of a person, what's going on?

> Signed-off-by: bo.ye <bo.ye@mediatek.com>

That's the same, you perhaps wanted to write "Bo Ye", not "bo.ye".

Regards,
Angelo

> ---
> 
> diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c
> index d9cda7f..631ca16 100644
> --- a/drivers/cpuidle/driver.c
> +++ b/drivers/cpuidle/driver.c
> @@ -187,7 +187,7 @@
>   			s->target_residency = div_u64(s->target_residency_ns, NSEC_PER_USEC);
>   
>   		if (s->exit_latency > 0)
> -			s->exit_latency_ns = s->exit_latency * NSEC_PER_USEC;
> +			s->exit_latency_ns = (u64)s->exit_latency * NSEC_PER_USEC;
>   		else if (s->exit_latency_ns < 0)
>   			s->exit_latency_ns =  0;
>   		else


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] cpuidle: idle exit_latency overflow
  2023-11-16 14:20 ` AngeloGioacchino Del Regno
@ 2023-11-16 14:52   ` Bo Ye (叶波)
  0 siblings, 0 replies; 4+ messages in thread
From: Bo Ye (叶波) @ 2023-11-16 14:52 UTC (permalink / raw)
  To: daniel.lezcano, matthias.bgg, angelogioacchino.delregno, rafael
  Cc: Yongdong Zhang (张永东),
	linux-kernel, linux-mediatek, linux-arm-kernel, linux-pm,
	C Cheng (陈程)

On Thu, 2023-11-16 at 15:20 +0100, AngeloGioacchino Del Regno wrote:
> Il 16/11/23 14:26, Bo Ye ha scritto:
> > From: C Cheng <C.Cheng@mediatek.com>
> > 
> > In detail:
> > In kernel-6.1, in the __cpuidle_driver_init function in
> > driver/cpuidle/driver.c, there is a line of code that causes
> > an overflow. The line is s->exit_latency_ns = s->exit_latency
> > * NSEC_PER_USEC. The overflow occurs because the product of an
> > int type and a constant exceeds the range of the int type.
> > 
> > In C language, when you perform a multiplication operation, if
> > both operands are of int type, the multiplication operation is
> > performed on the int type, and then the result is converted to
> > the target type. This means that if the product of int type
> > multiplication exceeds the range that int type can represent,
> > an overflow will occur even if you store the result in a
> > variable of int64_t type.
> > 
> > Signed-off-by: C Cheng <C.Cheng@mediatek.com>
> 
> It all makes sense, but "mtk24676" is not the name of a person,
> what's going on?
  Corrected, apologies for any inconvenience caused.
> 
> > Signed-off-by: Bo Ye <bo.ye@mediatek.com>
> 
> That's the same, you perhaps wanted to write "Bo Ye", not "bo.ye".
  Corrected, apologies for any inconvenience caused. I would greatly
appreciate it if you could recommend a formatting checking tool.
  If there is no auto checking tool, I will pay attention to these
formatting checks next time.

Best Regards,
Bosser
> 
> Regards,
> Angelo
> 
> > ---
> > 
> > diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c
> > index d9cda7f..631ca16 100644
> > --- a/drivers/cpuidle/driver.c
> > +++ b/drivers/cpuidle/driver.c
> > @@ -187,7 +187,7 @@
> >   			s->target_residency = div_u64(s-
> > >target_residency_ns, NSEC_PER_USEC);
> >   
> >   		if (s->exit_latency > 0)
> > -			s->exit_latency_ns = s->exit_latency *
> > NSEC_PER_USEC;
> > +			s->exit_latency_ns = (u64)s->exit_latency *
> > NSEC_PER_USEC;
> >   		else if (s->exit_latency_ns < 0)
> >   			s->exit_latency_ns =  0;
> >   		else
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] cpuidle: idle exit_latency overflow
  2023-11-16 13:26 [PATCH] cpuidle: idle exit_latency overflow Bo Ye
  2023-11-16 14:20 ` AngeloGioacchino Del Regno
@ 2023-12-11 20:52 ` Rafael J. Wysocki
  1 sibling, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2023-12-11 20:52 UTC (permalink / raw)
  To: Bo Ye
  Cc: Rafael J. Wysocki, Daniel Lezcano, Matthias Brugger,
	AngeloGioacchino Del Regno, yongdong.zhang, mtk24676, linux-pm,
	linux-kernel, linux-arm-kernel, linux-mediatek

On Thu, Nov 16, 2023 at 2:26 PM Bo Ye <bo.ye@mediatek.com> wrote:
>
> From: mtk24676 <C.Cheng@mediatek.com>
>
> In detail:
> In kernel-6.1, in the __cpuidle_driver_init function in
> driver/cpuidle/driver.c, there is a line of code that causes
> an overflow. The line is s->exit_latency_ns = s->exit_latency
> * NSEC_PER_USEC. The overflow occurs because the product of an
> int type and a constant exceeds the range of the int type.

In general, but does it actually occur in that code?  IOW, is there
any system for which the exit latency of an idle state is so large
that it will trigger the overflow, for example?

> In C language, when you perform a multiplication operation, if
> both operands are of int type, the multiplication operation is
> performed on the int type, and then the result is converted to
> the target type.

Right, that's how C works.

> This means that if the product of int type
> multiplication exceeds the range that int type can represent,
> an overflow will occur even if you store the result in a
> variable of int64_t type.

True.  However, does this really happen in the particular case at hand?

If not, it would be better to say something like "For a multiplication
of two int values, it is better to use mul_u32_u32() that prevents
overflows from occurring."

> Signed-off-by: mtk24676 <C.Cheng@mediatek.com>
> Signed-off-by: bo.ye <bo.ye@mediatek.com>
> ---
>
> diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c
> index d9cda7f..631ca16 100644
> --- a/drivers/cpuidle/driver.c
> +++ b/drivers/cpuidle/driver.c
> @@ -187,7 +187,7 @@
>                         s->target_residency = div_u64(s->target_residency_ns, NSEC_PER_USEC);
>
>                 if (s->exit_latency > 0)
> -                       s->exit_latency_ns = s->exit_latency * NSEC_PER_USEC;
> +                       s->exit_latency_ns = (u64)s->exit_latency * NSEC_PER_USEC;

mul_u32_u32()/?

>                 else if (s->exit_latency_ns < 0)
>                         s->exit_latency_ns =  0;
>                 else

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-12-11 20:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-16 13:26 [PATCH] cpuidle: idle exit_latency overflow Bo Ye
2023-11-16 14:20 ` AngeloGioacchino Del Regno
2023-11-16 14:52   ` Bo Ye (叶波)
2023-12-11 20:52 ` Rafael J. Wysocki

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).