aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/cgroup_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/cgroup_debug.c')
-rw-r--r--kernel/cgroup_debug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/cgroup_debug.c b/kernel/cgroup_debug.c
index 37301e877cb0..cbb7a26f4ea3 100644
--- a/kernel/cgroup_debug.c
+++ b/kernel/cgroup_debug.c
@@ -65,21 +65,21 @@ static u64 current_css_set_refcount_read(struct cgroup *cont,
65static struct cftype files[] = { 65static struct cftype files[] = {
66 { 66 {
67 .name = "cgroup_refcount", 67 .name = "cgroup_refcount",
68 .read_uint = cgroup_refcount_read, 68 .read_u64 = cgroup_refcount_read,
69 }, 69 },
70 { 70 {
71 .name = "taskcount", 71 .name = "taskcount",
72 .read_uint = taskcount_read, 72 .read_u64 = taskcount_read,
73 }, 73 },
74 74
75 { 75 {
76 .name = "current_css_set", 76 .name = "current_css_set",
77 .read_uint = current_css_set_read, 77 .read_u64 = current_css_set_read,
78 }, 78 },
79 79
80 { 80 {
81 .name = "current_css_set_refcount", 81 .name = "current_css_set_refcount",
82 .read_uint = current_css_set_refcount_read, 82 .read_u64 = current_css_set_refcount_read,
83 }, 83 },
84}; 84};
85 85