* [PATCH RESEND] sched/fair: simple cleanup in update_sg_lb_stats()
@ 2013-11-15 9:36 Kamalesh Babulal
2013-11-15 10:08 ` Peter Zijlstra
2013-11-27 14:10 ` [tip:sched/core] sched/fair: Clean up update_sg_lb_stats() a bit tip-bot for Kamalesh Babulal
0 siblings, 2 replies; 3+ messages in thread
From: Kamalesh Babulal @ 2013-11-15 9:36 UTC (permalink / raw)
To: linux-kernel; +Cc: Ingo Molnar, Peter Zijlstra
Add rq->nr_running to sgs->sum_nr_running directly instead of
assigning it through an intermediate variable nr_running.
Signed-off-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>
---
kernel/sched/fair.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index e8b652ebe027..9d921e2e41eb 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5500,7 +5500,6 @@ static inline void update_sg_lb_stats(struct lb_env *env,
struct sched_group *group, int load_idx,
int local_group, struct sg_lb_stats *sgs)
{
- unsigned long nr_running;
unsigned long load;
int i;
@@ -5509,8 +5508,6 @@ static inline void update_sg_lb_stats(struct lb_env *env,
for_each_cpu_and(i, sched_group_cpus(group), env->cpus) {
struct rq *rq = cpu_rq(i);
- nr_running = rq->nr_running;
-
/* Bias balancing toward cpus of our domain */
if (local_group)
load = target_load(i, load_idx);
@@ -5518,7 +5515,7 @@ static inline void update_sg_lb_stats(struct lb_env *env,
load = source_load(i, load_idx);
sgs->group_load += load;
- sgs->sum_nr_running += nr_running;
+ sgs->sum_nr_running += rq->nr_running;
#ifdef CONFIG_NUMA_BALANCING
sgs->nr_numa_running += rq->nr_numa_running;
sgs->nr_preferred_running += rq->nr_preferred_running;
--
1.8.4.474.g128a96c
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH RESEND] sched/fair: simple cleanup in update_sg_lb_stats()
2013-11-15 9:36 [PATCH RESEND] sched/fair: simple cleanup in update_sg_lb_stats() Kamalesh Babulal
@ 2013-11-15 10:08 ` Peter Zijlstra
2013-11-27 14:10 ` [tip:sched/core] sched/fair: Clean up update_sg_lb_stats() a bit tip-bot for Kamalesh Babulal
1 sibling, 0 replies; 3+ messages in thread
From: Peter Zijlstra @ 2013-11-15 10:08 UTC (permalink / raw)
To: Kamalesh Babulal; +Cc: linux-kernel, Ingo Molnar
On Fri, Nov 15, 2013 at 03:06:52PM +0530, Kamalesh Babulal wrote:
> Add rq->nr_running to sgs->sum_nr_running directly instead of
> assigning it through an intermediate variable nr_running.
>
> Signed-off-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>
Thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:sched/core] sched/fair: Clean up update_sg_lb_stats() a bit
2013-11-15 9:36 [PATCH RESEND] sched/fair: simple cleanup in update_sg_lb_stats() Kamalesh Babulal
2013-11-15 10:08 ` Peter Zijlstra
@ 2013-11-27 14:10 ` tip-bot for Kamalesh Babulal
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Kamalesh Babulal @ 2013-11-27 14:10 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, kamalesh, peterz, tglx
Commit-ID: 380c9077b38df2962a22f00f21f6cd0db62d3390
Gitweb: http://git.kernel.org/tip/380c9077b38df2962a22f00f21f6cd0db62d3390
Author: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>
AuthorDate: Fri, 15 Nov 2013 15:06:52 +0530
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 27 Nov 2013 13:50:57 +0100
sched/fair: Clean up update_sg_lb_stats() a bit
Add rq->nr_running to sgs->sum_nr_running directly instead of
assigning it through an intermediate variable nr_running.
Signed-off-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1384508212-25032-1-git-send-email-kamalesh@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
kernel/sched/fair.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 6cb36c7..a566c07 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5500,7 +5500,6 @@ static inline void update_sg_lb_stats(struct lb_env *env,
struct sched_group *group, int load_idx,
int local_group, struct sg_lb_stats *sgs)
{
- unsigned long nr_running;
unsigned long load;
int i;
@@ -5509,8 +5508,6 @@ static inline void update_sg_lb_stats(struct lb_env *env,
for_each_cpu_and(i, sched_group_cpus(group), env->cpus) {
struct rq *rq = cpu_rq(i);
- nr_running = rq->nr_running;
-
/* Bias balancing toward cpus of our domain */
if (local_group)
load = target_load(i, load_idx);
@@ -5518,7 +5515,7 @@ static inline void update_sg_lb_stats(struct lb_env *env,
load = source_load(i, load_idx);
sgs->group_load += load;
- sgs->sum_nr_running += nr_running;
+ sgs->sum_nr_running += rq->nr_running;
#ifdef CONFIG_NUMA_BALANCING
sgs->nr_numa_running += rq->nr_numa_running;
sgs->nr_preferred_running += rq->nr_preferred_running;
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-11-27 14:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-15 9:36 [PATCH RESEND] sched/fair: simple cleanup in update_sg_lb_stats() Kamalesh Babulal
2013-11-15 10:08 ` Peter Zijlstra
2013-11-27 14:10 ` [tip:sched/core] sched/fair: Clean up update_sg_lb_stats() a bit tip-bot for Kamalesh Babulal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome