Linux kernel -stable discussions
 help / color / mirror / Atom feed
* [PATCH] Fixes: 496d0a648509 ("cpuidle: Fix guest_halt_poll_ns failed to take effect when setting guest_halt_poll_allow_shrink=N")
@ 2024-08-26  8:58 Yanhao Dong
  2024-08-26  9:07 ` kernel test robot
  2024-08-26 17:32 ` Rafael J. Wysocki
  0 siblings, 2 replies; 3+ messages in thread
From: Yanhao Dong @ 2024-08-26  8:58 UTC (permalink / raw)
  To: rafael; +Cc: daniel.lezcano, linux-pm, linux-kernel, stable, ysaydong

From: ysay <ysaydong@gmail.com>

When guest_halt_poll_allow_shrink=N,setting guest_halt_poll_ns
from a large value to 0 does not reset the CPU polling time,
despite guest_halt_poll_ns being intended as a mandatory maximum
time limit.

The problem was situated in the adjust_poll_limit() within
drivers/cpuidle/governors/haltpoll.c:79.

Specifically, when guest_halt_poll_allow_shrink was set to N,
resetting guest_halt_poll_ns to zero did not lead to executing any
section of code that adjusts dev->poll_limit_ns.

The issue has been resolved by relocating the check and assignment for
dev->poll_limit_ns outside of the conditional block.
This ensures that every modification to guest_halt_poll_ns
properly influences the CPU polling time.

Signed-off-by: ysay <ysaydong@gmail.com>
---
 drivers/cpuidle/governors/haltpoll.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/cpuidle/governors/haltpoll.c b/drivers/cpuidle/governors/haltpoll.c
index 663b7f164..99c6260d7 100644
--- a/drivers/cpuidle/governors/haltpoll.c
+++ b/drivers/cpuidle/governors/haltpoll.c
@@ -78,26 +78,22 @@ static int haltpoll_select(struct cpuidle_driver *drv,
 
 static void adjust_poll_limit(struct cpuidle_device *dev, u64 block_ns)
 {
-	unsigned int val;
+	unsigned int val = dev->poll_limit_ns;
 
 	/* Grow cpu_halt_poll_us if
 	 * cpu_halt_poll_us < block_ns < guest_halt_poll_us
 	 */
 	if (block_ns > dev->poll_limit_ns && block_ns <= guest_halt_poll_ns) {
-		val = dev->poll_limit_ns * guest_halt_poll_grow;
+		val *= guest_halt_poll_grow;
 
 		if (val < guest_halt_poll_grow_start)
 			val = guest_halt_poll_grow_start;
-		if (val > guest_halt_poll_ns)
-			val = guest_halt_poll_ns;
 
 		trace_guest_halt_poll_ns_grow(val, dev->poll_limit_ns);
-		dev->poll_limit_ns = val;
 	} else if (block_ns > guest_halt_poll_ns &&
 		   guest_halt_poll_allow_shrink) {
 		unsigned int shrink = guest_halt_poll_shrink;
 
-		val = dev->poll_limit_ns;
 		if (shrink == 0) {
 			val = 0;
 		} else {
@@ -108,8 +104,12 @@ static void adjust_poll_limit(struct cpuidle_device *dev, u64 block_ns)
 		}
 
 		trace_guest_halt_poll_ns_shrink(val, dev->poll_limit_ns);
-		dev->poll_limit_ns = val;
 	}
+
+	if (val > guest_halt_poll_ns)
+		val = guest_halt_poll_ns;
+
+	dev->poll_limit_ns = val;
 }
 
 /**
-- 
2.43.5


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

* Re: [PATCH] Fixes: 496d0a648509 ("cpuidle: Fix guest_halt_poll_ns failed to take effect when setting guest_halt_poll_allow_shrink=N")
  2024-08-26  8:58 [PATCH] Fixes: 496d0a648509 ("cpuidle: Fix guest_halt_poll_ns failed to take effect when setting guest_halt_poll_allow_shrink=N") Yanhao Dong
@ 2024-08-26  9:07 ` kernel test robot
  2024-08-26 17:32 ` Rafael J. Wysocki
  1 sibling, 0 replies; 3+ messages in thread
From: kernel test robot @ 2024-08-26  9:07 UTC (permalink / raw)
  To: Yanhao Dong; +Cc: stable, oe-kbuild-all

Hi,

Thanks for your patch.

FYI: kernel test robot notices the stable kernel rule is not satisfied.

The check is based on https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html#option-1

Rule: add the tag "Cc: stable@vger.kernel.org" in the sign-off area to have the patch automatically included in the stable tree.
Subject: [PATCH] Fixes: 496d0a648509 ("cpuidle: Fix guest_halt_poll_ns failed to take effect when setting guest_halt_poll_allow_shrink=N")
Link: https://lore.kernel.org/stable/tencent_13F0C81B16C09CC67E961B5E22F78CC72805%40qq.com

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki




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

* Re: [PATCH] Fixes: 496d0a648509 ("cpuidle: Fix guest_halt_poll_ns failed to take effect when setting guest_halt_poll_allow_shrink=N")
  2024-08-26  8:58 [PATCH] Fixes: 496d0a648509 ("cpuidle: Fix guest_halt_poll_ns failed to take effect when setting guest_halt_poll_allow_shrink=N") Yanhao Dong
  2024-08-26  9:07 ` kernel test robot
@ 2024-08-26 17:32 ` Rafael J. Wysocki
  1 sibling, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2024-08-26 17:32 UTC (permalink / raw)
  To: Yanhao Dong
  Cc: rafael, daniel.lezcano, linux-pm, linux-kernel, stable, ysaydong

Why did you put a Fixes; tag in the subject?

Please provide a proper subject and put the Fixes: tag next to the
Signed-off-by: one below.

On Mon, Aug 26, 2024 at 11:07 AM Yanhao Dong <570260087@qq.com> wrote:
>
> From: ysay <ysaydong@gmail.com>
>
> When guest_halt_poll_allow_shrink=N,setting guest_halt_poll_ns
> from a large value to 0 does not reset the CPU polling time,
> despite guest_halt_poll_ns being intended as a mandatory maximum
> time limit.
>
> The problem was situated in the adjust_poll_limit() within
> drivers/cpuidle/governors/haltpoll.c:79.
>
> Specifically, when guest_halt_poll_allow_shrink was set to N,
> resetting guest_halt_poll_ns to zero did not lead to executing any
> section of code that adjusts dev->poll_limit_ns.
>
> The issue has been resolved by relocating the check and assignment for
> dev->poll_limit_ns outside of the conditional block.
> This ensures that every modification to guest_halt_poll_ns
> properly influences the CPU polling time.
>
> Signed-off-by: ysay <ysaydong@gmail.com>
> ---
>  drivers/cpuidle/governors/haltpoll.c | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/cpuidle/governors/haltpoll.c b/drivers/cpuidle/governors/haltpoll.c
> index 663b7f164..99c6260d7 100644
> --- a/drivers/cpuidle/governors/haltpoll.c
> +++ b/drivers/cpuidle/governors/haltpoll.c
> @@ -78,26 +78,22 @@ static int haltpoll_select(struct cpuidle_driver *drv,
>
>  static void adjust_poll_limit(struct cpuidle_device *dev, u64 block_ns)
>  {
> -       unsigned int val;
> +       unsigned int val = dev->poll_limit_ns;
>
>         /* Grow cpu_halt_poll_us if
>          * cpu_halt_poll_us < block_ns < guest_halt_poll_us
>          */
>         if (block_ns > dev->poll_limit_ns && block_ns <= guest_halt_poll_ns) {
> -               val = dev->poll_limit_ns * guest_halt_poll_grow;
> +               val *= guest_halt_poll_grow;
>
>                 if (val < guest_halt_poll_grow_start)
>                         val = guest_halt_poll_grow_start;
> -               if (val > guest_halt_poll_ns)
> -                       val = guest_halt_poll_ns;
>
>                 trace_guest_halt_poll_ns_grow(val, dev->poll_limit_ns);
> -               dev->poll_limit_ns = val;
>         } else if (block_ns > guest_halt_poll_ns &&
>                    guest_halt_poll_allow_shrink) {
>                 unsigned int shrink = guest_halt_poll_shrink;
>
> -               val = dev->poll_limit_ns;
>                 if (shrink == 0) {
>                         val = 0;
>                 } else {
> @@ -108,8 +104,12 @@ static void adjust_poll_limit(struct cpuidle_device *dev, u64 block_ns)
>                 }
>
>                 trace_guest_halt_poll_ns_shrink(val, dev->poll_limit_ns);
> -               dev->poll_limit_ns = val;
>         }
> +
> +       if (val > guest_halt_poll_ns)
> +               val = guest_halt_poll_ns;
> +
> +       dev->poll_limit_ns = val;
>  }
>
>  /**
> --
> 2.43.5
>
>

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

end of thread, other threads:[~2024-08-26 17:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-26  8:58 [PATCH] Fixes: 496d0a648509 ("cpuidle: Fix guest_halt_poll_ns failed to take effect when setting guest_halt_poll_allow_shrink=N") Yanhao Dong
2024-08-26  9:07 ` kernel test robot
2024-08-26 17:32 ` 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