All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] CFS CGroup: Report usage
@ 2007-10-23  0:49 Paul Menage
  2007-10-23  2:40 ` Srivatsa Vaddagiri
                   ` (3 more replies)
  0 siblings, 4 replies; 36+ messages in thread
From: Paul Menage @ 2007-10-23  0:49 UTC (permalink / raw)
  To: Andrew Morton, Ingo Molnar, Srivatsa Vaddagiri; +Cc: containers, linux-kernel

Report CPU usage in CFS Cgroup directories

Adds a cpu.usage file to the CFS cgroup that reports CPU usage in
milliseconds for that cgroup's tasks

This replaces the "example CPU Accounting CGroup subsystem" that
was merged into mainline last week.

Signed-off-by: Paul Menage <menage@google.com>

---
 kernel/sched.c |   32 +++++++++++++++++++++++++++-----
 1 file changed, 27 insertions(+), 5 deletions(-)

Index: container-2.6.23-mm1/kernel/sched.c
===================================================================
--- container-2.6.23-mm1.orig/kernel/sched.c
+++ container-2.6.23-mm1/kernel/sched.c
@@ -7005,15 +7005,37 @@ static u64 cpu_shares_read_uint(struct c
 	return (u64) tg->shares;
 }
 
-static struct cftype cpu_shares = {
-	.name = "shares",
-	.read_uint = cpu_shares_read_uint,
-	.write_uint = cpu_shares_write_uint,
+static u64 cpu_usage_read(struct cgroup *cgrp, struct cftype *cft)
+{
+	struct task_group *tg = cgroup_tg(cgrp);
+	int i;
+	u64 res = 0;
+	for_each_possible_cpu(i) {
+		unsigned long flags;
+		spin_lock_irqsave(&tg->cfs_rq[i]->rq->lock, flags);
+		res += tg->se[i]->sum_exec_runtime;
+		spin_unlock_irqrestore(&tg->cfs_rq[i]->rq->lock, flags);
+	}
+	/* Convert from ns to ms */
+	do_div(res, 1000000);
+	return res;
+}
+
+static struct cftype cpu_files[] = {
+	{
+		.name = "shares",
+		.read_uint = cpu_shares_read_uint,
+		.write_uint = cpu_shares_write_uint,
+	},
+	{
+		.name = "usage",
+		.read_uint = cpu_usage_read,
+	},
 };
 
 static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
 {
-	return cgroup_add_file(cont, ss, &cpu_shares);
+	return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
 }
 
 struct cgroup_subsys cpu_cgroup_subsys = {

^ permalink raw reply	[flat|nested] 36+ messages in thread
* [PATCH 2/2] CFS CGroup: Report usage
@ 2007-10-23  0:49 Paul Menage
  0 siblings, 0 replies; 36+ messages in thread
From: Paul Menage @ 2007-10-23  0:49 UTC (permalink / raw)
  To: Andrew Morton, Ingo Molnar, Srivatsa Vaddagiri
  Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

Report CPU usage in CFS Cgroup directories

Adds a cpu.usage file to the CFS cgroup that reports CPU usage in
milliseconds for that cgroup's tasks

This replaces the "example CPU Accounting CGroup subsystem" that
was merged into mainline last week.

Signed-off-by: Paul Menage <menage-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>

---
 kernel/sched.c |   32 +++++++++++++++++++++++++++-----
 1 file changed, 27 insertions(+), 5 deletions(-)

Index: container-2.6.23-mm1/kernel/sched.c
===================================================================
--- container-2.6.23-mm1.orig/kernel/sched.c
+++ container-2.6.23-mm1/kernel/sched.c
@@ -7005,15 +7005,37 @@ static u64 cpu_shares_read_uint(struct c
 	return (u64) tg->shares;
 }
 
-static struct cftype cpu_shares = {
-	.name = "shares",
-	.read_uint = cpu_shares_read_uint,
-	.write_uint = cpu_shares_write_uint,
+static u64 cpu_usage_read(struct cgroup *cgrp, struct cftype *cft)
+{
+	struct task_group *tg = cgroup_tg(cgrp);
+	int i;
+	u64 res = 0;
+	for_each_possible_cpu(i) {
+		unsigned long flags;
+		spin_lock_irqsave(&tg->cfs_rq[i]->rq->lock, flags);
+		res += tg->se[i]->sum_exec_runtime;
+		spin_unlock_irqrestore(&tg->cfs_rq[i]->rq->lock, flags);
+	}
+	/* Convert from ns to ms */
+	do_div(res, 1000000);
+	return res;
+}
+
+static struct cftype cpu_files[] = {
+	{
+		.name = "shares",
+		.read_uint = cpu_shares_read_uint,
+		.write_uint = cpu_shares_write_uint,
+	},
+	{
+		.name = "usage",
+		.read_uint = cpu_usage_read,
+	},
 };
 
 static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
 {
-	return cgroup_add_file(cont, ss, &cpu_shares);
+	return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
 }
 
 struct cgroup_subsys cpu_cgroup_subsys = {

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2007-10-26  1:25 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-23  0:49 [PATCH 2/2] CFS CGroup: Report usage Paul Menage
2007-10-23  2:40 ` Srivatsa Vaddagiri
     [not found]   ` <20071023024036.GC3324-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2007-10-23  6:06     ` Paul Menage
2007-10-23  6:06   ` Paul Menage
2007-10-23  7:21     ` Paul Menage
     [not found]       ` <6599ad830710230021n536908c0xd95250f36aa8a27d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-10-23  7:49         ` Balbir Singh
2007-10-23  7:49       ` Balbir Singh
     [not found]         ` <471DA78F.4090600-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2007-10-23  7:53           ` Paul Menage
2007-10-23  7:53         ` Paul Menage
2007-10-23  7:57           ` Balbir Singh
     [not found]             ` <471DA974.8060509-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2007-10-23  8:08               ` Paul Menage
2007-10-23  8:08             ` Paul Menage
     [not found]           ` <6599ad830710230053l35fffaf5ld8882eaae8b9df7c-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-10-23  7:57             ` Balbir Singh
2007-10-23 16:41     ` Srivatsa Vaddagiri
     [not found]     ` <6599ad830710222306m6a3e3f52k4daf501836c05274-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-10-23  7:21       ` Paul Menage
2007-10-23 16:41       ` Srivatsa Vaddagiri
     [not found] ` <471D4523.4040509-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2007-10-23  2:40   ` Srivatsa Vaddagiri
2007-10-23  3:17   ` Balbir Singh
2007-10-23 16:43   ` Srivatsa Vaddagiri
2007-10-23 16:43     ` Srivatsa Vaddagiri
2007-10-23 16:47   ` Srivatsa Vaddagiri
2007-10-23  3:17 ` Balbir Singh
     [not found]   ` <471D67B5.1020802-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2007-10-23  6:09     ` Paul Menage
2007-10-23  6:09   ` Paul Menage
2007-10-23 16:47 ` Srivatsa Vaddagiri
2007-10-23 16:41   ` Paul Menage
2007-10-23 17:38     ` Srivatsa Vaddagiri
2007-10-24  2:28       ` Paul Menage
2007-10-24  4:39         ` Srivatsa Vaddagiri
     [not found]           ` <20071024043916.GA5357-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2007-10-26  1:24             ` Paul Menage
2007-10-26  1:24           ` Paul Menage
     [not found]         ` <6599ad830710231928n65a80021w582a07b5993377f8-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-10-24  4:39           ` Srivatsa Vaddagiri
     [not found]       ` <20071023173837.GG4667-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2007-10-24  2:28         ` Paul Menage
     [not found]     ` <6599ad830710230941y5d175688ob3a4d9ac42ba8c8f-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-10-23 17:38       ` Srivatsa Vaddagiri
     [not found]   ` <20071023164704.GE4667-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2007-10-23 16:41     ` Paul Menage
  -- strict thread matches above, loose matches on Subject: below --
2007-10-23  0:49 Paul Menage

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.