On Tue, 29 May 2007 06:01:06 -0700 [EMAIL PROTECTED] wrote: > This example demonstrates how to use the generic container subsystem > for a simple resource tracker that counts, for the processes in a > container, the total CPU time used and the %CPU used in the last > complete 10 second interval. > > ... > > --- /dev/null > +++ container-2.6.22-rc2-mm1/kernel/cpu_acct.c > @@ -0,0 +1,185 @@ > +/* > + * kernel/cpu_acct.c - CPU accounting container subsystem > + * > + * Copyright (C) Google Inc, 2006 > + * > + * Developed by Paul Menage ([EMAIL PROTECTED]) and Balbir Singh > + * ([EMAIL PROTECTED]) > + * > + */ > > ... > > +static u64 cpuusage_read(struct container *cont, > + struct cftype *cft) > +{ > + struct cpuacct *ca = container_ca(cont); > + u64 time; > + > + spin_lock_irq(&ca->lock); > + cpuusage_update(ca); > + time = cputime64_to_jiffies64(ca->time); > + spin_unlock_irq(&ca->lock); > + > + /* Convert 64-bit jiffies to seconds */ > + time *= 1000; > + do_div(time, HZ);
hm, we have jiffies_to_lotsofthings, but we don't appear to have a jiffies_to_seconds. How odd. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/