[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1354292489-18434-1-git-send-email-gaofeng@cn.fujitsu.com>
Date: Sat, 1 Dec 2012 00:21:28 +0800
From: Gao feng <gaofeng@...fujitsu.com>
To: cgroups@...r.kernel.org
Cc: tj@...nel.org, lizefan@...wei.com, linux-kernel@...r.kernel.org,
containers@...ts.linux-foundation.org,
Gao feng <gaofeng@...fujitsu.com>
Subject: [PATCH 1/2] cgroup: use cgroup_addrm_files in cgroup_clear_directory
cgroup_rm_file only remove the first file. after remount,
the cgroup subsystem will be unloaded with it's files left.
use cgroup_addrm_files to remove all files of subsystem.
Signed-off-by: Gao feng <gaofeng@...fujitsu.com>
---
kernel/cgroup.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index f24f724..e5233b7 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -970,6 +970,8 @@ static int cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
return -ENOENT;
}
+static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
+ struct cftype cfts[], bool is_add);
/**
* cgroup_clear_directory - selective removal of base and subsystem files
* @dir: directory containing the files
@@ -987,7 +989,7 @@ static void cgroup_clear_directory(struct dentry *dir, bool base_files,
if (!test_bit(ss->subsys_id, &subsys_mask))
continue;
list_for_each_entry(set, &ss->cftsets, node)
- cgroup_rm_file(cgrp, set->cfts);
+ cgroup_addrm_files(cgrp, NULL, set->cfts, false);
}
if (base_files) {
while (!list_empty(&cgrp->files))
--
1.7.7.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists