[v3,0/2] Clean up the process of scanning the CPU for some functions

Message ID 20221216062406.7812-1-jiahao.os@bytedance.com
Headers
Series Clean up the process of scanning the CPU for some functions |

Message

Hao Jia Dec. 16, 2022, 6:24 a.m. UTC
  These two patches clean up the process of scanning the CPU.

Patch 1 stops checking for a new idle core in time
if an idle core has already been found.

Patch 2 tries to minimize false attempts by adjusting the order
of scanning CPU.

v3->v2:
    - Add "Acked-by: Mel Gorman <mgorman@techsingularity.net>" and
      "Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org>"
      for patch2

v1->v2:
    - Simplified patch1 code and add
      "Acked-by: Mel Gorman <mgorman@techsingularity.net>" for patch1
    - Modify commit description to make it more clear

[v1] https://lore.kernel.org/all/20221021061558.34767-1-jiahao.os@bytedance.com
[v2] https://lore.kernel.org/all/20221026064300.78869-1-jiahao.os@bytedance.com

Hao Jia (2):
  sched/numa: Stop an exhastive search if an idle core is found
  sched/core: Adjusting the order of scanning CPU

 kernel/sched/core.c | 2 +-
 kernel/sched/fair.c | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
  

Comments

Peter Zijlstra Dec. 16, 2022, 10:52 a.m. UTC | #1
On Fri, Dec 16, 2022 at 02:24:04PM +0800, Hao Jia wrote:

> Hao Jia (2):
>   sched/numa: Stop an exhastive search if an idle core is found
>   sched/core: Adjusting the order of scanning CPU
> 
>  kernel/sched/core.c | 2 +-
>  kernel/sched/fair.c | 6 +++---
>  2 files changed, 4 insertions(+), 4 deletions(-)

Thanks!