提交 28ef3584 编写于 作者: I Ingo Molnar 提交者: Linus Torvalds

[PATCH] small kernel_stat.h cleanup

cleanup: use for_each_cpu() instead of an open-coded NR_CPUS loop.
Signed-off-by: NIngo Molnar <mingo@elte.hu>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 a4331366
......@@ -6,6 +6,7 @@
#include <linux/smp.h>
#include <linux/threads.h>
#include <linux/percpu.h>
#include <linux/cpumask.h>
#include <asm/cputime.h>
/*
......@@ -43,11 +44,10 @@ extern unsigned long long nr_context_switches(void);
*/
static inline int kstat_irqs(int irq)
{
int i, sum=0;
int cpu, sum = 0;
for (i = 0; i < NR_CPUS; i++)
if (cpu_possible(i))
sum += kstat_cpu(i).irqs[irq];
for_each_cpu(cpu)
sum += kstat_cpu(cpu).irqs[irq];
return sum;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册