* [PATCH] sched: Remove unnecessary numa dequeue update from non-SMP kernel
@ 2016-02-01 22:47 Tim Chen
2016-03-31 9:28 ` [tip:sched/core] sched/numa: Remove unnecessary NUMA dequeue update from non-SMP kernels tip-bot for Tim Chen
0 siblings, 1 reply; 2+ messages in thread
From: Tim Chen @ 2016-02-01 22:47 UTC (permalink / raw)
To: Peter Zijlstra, Ingo Molnar; +Cc: linux-kernel
In account_entity_enqueue, we do not do account_numa_enqueue
as NUMA balancing is not needed for non-SMP configured kernel.
Hence, we should remove account_numa_dequeue from
account_entity_dequeue for the non-SMP kernel.
Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com>
---
kernel/sched/fair.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 56b7d4b..6cbe2fb 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -2405,10 +2405,12 @@ account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
update_load_sub(&cfs_rq->load, se->load.weight);
if (!parent_entity(se))
update_load_sub(&rq_of(cfs_rq)->load, se->load.weight);
+#ifdef CONFIG_SMP
if (entity_is_task(se)) {
account_numa_dequeue(rq_of(cfs_rq), task_of(se));
list_del_init(&se->group_node);
}
+#endif
cfs_rq->nr_running--;
}
--
1.8.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [tip:sched/core] sched/numa: Remove unnecessary NUMA dequeue update from non-SMP kernels
2016-02-01 22:47 [PATCH] sched: Remove unnecessary numa dequeue update from non-SMP kernel Tim Chen
@ 2016-03-31 9:28 ` tip-bot for Tim Chen
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Tim Chen @ 2016-03-31 9:28 UTC (permalink / raw)
To: linux-tip-commits
Cc: mgorman, hpa, peterz, tim.c.chen, efault, linux-kernel, torvalds,
akpm, riel, mingo, tglx
Commit-ID: bfdb198ccd99472c5bded689699eb30dd06316bb
Gitweb: http://git.kernel.org/tip/bfdb198ccd99472c5bded689699eb30dd06316bb
Author: Tim Chen <tim.c.chen@linux.intel.com>
AuthorDate: Mon, 1 Feb 2016 14:47:59 -0800
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Thu, 31 Mar 2016 10:49:45 +0200
sched/numa: Remove unnecessary NUMA dequeue update from non-SMP kernels
In account_entity_enqueue(), we do not do account_numa_enqueue()
as NUMA balancing is not needed for UP kernels.
Hence, we should remove the account_numa_dequeue() call from
account_entity_dequeue() for UP kernels.
Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Rik van Riel <riel@redhat.com>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1454366879.21738.29.camel@schen9-desk2.jf.intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
kernel/sched/fair.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index cbb075e..1fe9916 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -2437,10 +2437,12 @@ account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
update_load_sub(&cfs_rq->load, se->load.weight);
if (!parent_entity(se))
update_load_sub(&rq_of(cfs_rq)->load, se->load.weight);
+#ifdef CONFIG_SMP
if (entity_is_task(se)) {
account_numa_dequeue(rq_of(cfs_rq), task_of(se));
list_del_init(&se->group_node);
}
+#endif
cfs_rq->nr_running--;
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-31 9:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-01 22:47 [PATCH] sched: Remove unnecessary numa dequeue update from non-SMP kernel Tim Chen
2016-03-31 9:28 ` [tip:sched/core] sched/numa: Remove unnecessary NUMA dequeue update from non-SMP kernels tip-bot for Tim Chen
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.