[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <49AB40DE.4090704@cn.fujitsu.com>
Date: Mon, 02 Mar 2009 10:13:50 +0800
From: Li Zefan <lizf@...fujitsu.com>
To: Li Zefan <lizf@...fujitsu.com>
CC: Andrew Morton <akpm@...ux-foundation.org>,
Paul Menage <menage@...gle.com>,
KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>,
LKML <linux-kernel@...r.kernel.org>,
Linux Containers <containers@...ts.linux-foundation.org>
Subject: [PATCH 1/4] cgroup debug: show correct file mode
All control files in debug subsystem are read-only.
Signed-off-by: Li Zefan <lizf@...fujitsu.com>
---
kernel/cgroup_debug.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/kernel/cgroup_debug.c b/kernel/cgroup_debug.c
index daca620..2ba54c6 100644
--- a/kernel/cgroup_debug.c
+++ b/kernel/cgroup_debug.c
@@ -71,25 +71,30 @@ static struct cftype files[] = {
{
.name = "cgroup_refcount",
.read_u64 = cgroup_refcount_read,
+ .mode = 0444,
},
{
.name = "taskcount",
.read_u64 = taskcount_read,
+ .mode = 0444,
},
{
.name = "current_css_set",
.read_u64 = current_css_set_read,
+ .mode = 0444,
},
{
.name = "current_css_set_refcount",
.read_u64 = current_css_set_refcount_read,
+ .mode = 0444,
},
{
.name = "releasable",
.read_u64 = releasable_read,
+ .mode = 0444,
},
};
-- 1.5.4.rc3
--
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