Re: [RFC PATCH] cpuacct: per-cgroup utime/stime statistics - v1

From: Bharata B Rao
Date: Wed Mar 11 2009 - 04:55:37 EST


On Wed, Mar 11, 2009 at 09:15:48AM +0800, Li Zefan wrote:
> > +static const struct cpuacct_stat_desc {
> > + const char *msg;
> > + u64 unit;
> > +} cpuacct_stat_desc[] = {
> > + [CPUACCT_STAT_UTIME] = { "utime", 1, },
> > + [CPUACCT_STAT_STIME] = { "stime", 1, },
> > +};
> > +
>
> I think we can just remove 'unit'.

Ok, they are redundant. Will do.

>
> > +static int cpuacct_stats_show(struct cgroup *cgrp, struct cftype *cft,
> > + struct cgroup_map_cb *cb)
> > +{
> > + struct cpuacct *ca = cgroup_ca(cgrp);
> > + int i;
> > +
> > + for (i = 0; i < CPUACCT_STAT_NSTATS; i++) {
> > + s64 val = percpu_counter_read(&ca->cpustat[i]);
> > + val *= cpuacct_stat_desc[i].unit;
> > + cb->fill(cb, cpuacct_stat_desc[i].msg, val);
> > + }
> > + return 0;
> > +}
> > +
> ...
> > +/*
> > + * Account the system/user time to the task's accounting group.
> > + */
> > +static void cpuacct_update_stats(struct task_struct *tsk,
> > + enum cpuacct_stat_index idx, int val)
> > +{
> > + struct cpuacct *ca;
> > +
> > + if (!cpuacct_subsys.active)
>
> if (unlikely(!cpuacct_subsys.active)))

Ok.

>
> > + return;
> > +
> > + ca = task_ca(tsk);
> > +
> > + for (; ca; ca = ca->parent)
> > + percpu_counter_add(&ca->cpustat[idx], val);
> > +}
> > +
>
> We can reduce one NULL check:
>
> do (
> percpu_counter_add();
> ca = ca->parent;
> } while (ca);

Sure. Will address all these in the next iteration.

Regards,
Bharata.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/