[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1317160344.21836.16.camel@twins>
Date: Tue, 27 Sep 2011 23:52:24 +0200
From: Peter Zijlstra <a.p.zijlstra@...llo.nl>
To: Glauber Costa <glommer@...allels.com>
Cc: linux-kernel@...r.kernel.org, paul@...lmenage.org,
lizf@...fujitsu.com, daniel.lezcano@...e.fr,
jbottomley@...allels.com
Subject: Re: [RFD 3/9] Display /proc/stat information per cgroup
On Fri, 2011-09-23 at 19:20 -0300, Glauber Costa wrote:
> + root_task_group.cpustat = alloc_percpu(struct kernel_stat);
> + /* Failing that early an allocation means we're screwed anyway */
> + BUG_ON(!root_task_group.cpustat);
> + for_each_possible_cpu(i) {
> + kstat = per_cpu_ptr(root_task_group.cpustat, i);
> + kstat->cpustat[IDLE] = 0;
> + kstat->cpustat[IDLE_BASE] = 0;
> + kstat->cpustat[IOWAIT_BASE] = 0;
> + kstat->cpustat[IOWAIT] = 0;
so alloc_percpu() will actually zero your memory for you, which you rely
on for all other fields as well, so why reset these ones?
> + }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists