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/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]