diff options
author | Rami Rosen <ramirose@gmail.com> | 2013-04-16 16:24:55 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2013-04-18 14:34:35 -0400 |
commit | e57d5cf2f894e3f2727f8cf74bed0bc81cae70c8 (patch) | |
tree | fef5ebac1e3291e772d0852a8716b0b4bd2c27ef /security/device_cgroup.c | |
parent | f00baae7ad6c5f1503528efa852f0be8e9513f0e (diff) |
devcg: remove parent_cgroup.
In devcgroup_css_alloc(), there is no longer need for parent_cgroup.
bd2953ebbb("devcg: propagate local changes down the hierarchy") made
the variable parent_cgroup redundant. This patch removes parent_cgroup
from devcgroup_css_alloc().
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Acked-by: Aristeu Rozanski <aris@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'security/device_cgroup.c')
-rw-r--r-- | security/device_cgroup.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/security/device_cgroup.c b/security/device_cgroup.c index 994aeccea518..dd0dc574d78d 100644 --- a/security/device_cgroup.c +++ b/security/device_cgroup.c | |||
@@ -236,7 +236,6 @@ static void devcgroup_offline(struct cgroup *cgroup) | |||
236 | static struct cgroup_subsys_state *devcgroup_css_alloc(struct cgroup *cgroup) | 236 | static struct cgroup_subsys_state *devcgroup_css_alloc(struct cgroup *cgroup) |
237 | { | 237 | { |
238 | struct dev_cgroup *dev_cgroup; | 238 | struct dev_cgroup *dev_cgroup; |
239 | struct cgroup *parent_cgroup; | ||
240 | 239 | ||
241 | dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL); | 240 | dev_cgroup = kzalloc(sizeof(*dev_cgroup), GFP_KERNEL); |
242 | if (!dev_cgroup) | 241 | if (!dev_cgroup) |
@@ -244,7 +243,6 @@ static struct cgroup_subsys_state *devcgroup_css_alloc(struct cgroup *cgroup) | |||
244 | INIT_LIST_HEAD(&dev_cgroup->exceptions); | 243 | INIT_LIST_HEAD(&dev_cgroup->exceptions); |
245 | INIT_LIST_HEAD(&dev_cgroup->propagate_pending); | 244 | INIT_LIST_HEAD(&dev_cgroup->propagate_pending); |
246 | dev_cgroup->behavior = DEVCG_DEFAULT_NONE; | 245 | dev_cgroup->behavior = DEVCG_DEFAULT_NONE; |
247 | parent_cgroup = cgroup->parent; | ||
248 | 246 | ||
249 | return &dev_cgroup->css; | 247 | return &dev_cgroup->css; |
250 | } | 248 | } |