Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91061
b: refs/heads/master
c: 32cd756
h: refs/heads/master
i:
  91059: 29ba9d6
v: v3
  • Loading branch information
Dhaval Giani authored and Ingo Molnar committed Apr 19, 2008
1 parent c08df6c commit 0aa2c6b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 48f20a9a9488c432fc86df1ff4b7f4fa895d1183
refs/heads/master: 32cd756a80aaef657ac09c76e6eff3ba65567790
18 changes: 9 additions & 9 deletions trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -8318,9 +8318,9 @@ struct cpuacct {
struct cgroup_subsys cpuacct_subsys;

/* return cpu accounting group corresponding to this container */
static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
{
return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
struct cpuacct, css);
}

Expand All @@ -8333,7 +8333,7 @@ static inline struct cpuacct *task_ca(struct task_struct *tsk)

/* create a new cpu accounting group */
static struct cgroup_subsys_state *cpuacct_create(
struct cgroup_subsys *ss, struct cgroup *cont)
struct cgroup_subsys *ss, struct cgroup *cgrp)
{
struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);

Expand All @@ -8351,18 +8351,18 @@ static struct cgroup_subsys_state *cpuacct_create(

/* destroy an existing cpu accounting group */
static void
cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
{
struct cpuacct *ca = cgroup_ca(cont);
struct cpuacct *ca = cgroup_ca(cgrp);

free_percpu(ca->cpuusage);
kfree(ca);
}

/* return total cpu usage (in nanoseconds) of a group */
static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
{
struct cpuacct *ca = cgroup_ca(cont);
struct cpuacct *ca = cgroup_ca(cgrp);
u64 totalcpuusage = 0;
int i;

Expand All @@ -8388,9 +8388,9 @@ static struct cftype files[] = {
},
};

static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
{
return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
}

/*
Expand Down

0 comments on commit 0aa2c6b

Please sign in to comment.