public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cpuacct: reduce one NULL check in fast-path
@ 2009-03-11  2:15 Li Zefan
  2009-03-11  9:47 ` Ingo Molnar
  0 siblings, 1 reply; 4+ messages in thread
From: Li Zefan @ 2009-03-11  2:15 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Peter Zijlstra, Paul Menage, Balbir Singh, Bharata B Rao, LKML

In cpuacct_charge(), task_ca() will never return NULL, so change
for(...) to do{}while(...) to save one NULL check.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 kernel/sched.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index 9bb6d24..bc8a91e 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -9768,10 +9768,11 @@ static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
 	cpu = task_cpu(tsk);
 	ca = task_ca(tsk);
 
-	for (; ca; ca = ca->parent) {
+	do {
 		u64 *cpuusage = percpu_ptr(ca->cpuusage, cpu);
 		*cpuusage += cputime;
-	}
+		ca = ca->parent;
+	} while (ca);
 }
 
 struct cgroup_subsys cpuacct_subsys = {
-- 
1.5.4.rc3




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

end of thread, other threads:[~2009-03-13  4:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-11  2:15 [PATCH] cpuacct: reduce one NULL check in fast-path Li Zefan
2009-03-11  9:47 ` Ingo Molnar
2009-03-12  1:23   ` [PATCH -tip] " Li Zefan
2009-03-13  4:03     ` [tip:core/percpu] " Li Zefan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox