diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2009-04-02 19:57:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:04:56 -0400 |
commit | bd1a8ab73edd449fecda633449cc277b856ad4f5 (patch) | |
tree | 66095c2a59f8706138e89190ec6c1d9cfaab6916 /include | |
parent | 0b4217b3fdddc4a58939720d3ed809537577d48b (diff) |
cgroups: add 'data' field to struct cgroup_scanner
We need to pass some data to test_task() or process_task() in some cases.
Will be used later.
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Paul Menage <menage@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/cgroup.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 43763bd772b9..4316a546beb5 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
@@ -337,6 +337,7 @@ struct cgroup_scanner { | |||
337 | void (*process_task)(struct task_struct *p, | 337 | void (*process_task)(struct task_struct *p, |
338 | struct cgroup_scanner *scan); | 338 | struct cgroup_scanner *scan); |
339 | struct ptr_heap *heap; | 339 | struct ptr_heap *heap; |
340 | void *data; | ||
340 | }; | 341 | }; |
341 | 342 | ||
342 | /* | 343 | /* |