aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/cgroup.h11
-rw-r--r--kernel/cgroup.c9
2 files changed, 15 insertions, 5 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h
index ed3e92e41c6e..5a53d8f039a2 100644
--- a/include/linux/cgroup.h
+++ b/include/linux/cgroup.h
@@ -578,7 +578,11 @@ struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
578void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it); 578void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it);
579int cgroup_scan_tasks(struct cgroup_scanner *scan); 579int cgroup_scan_tasks(struct cgroup_scanner *scan);
580int cgroup_attach_task(struct cgroup *, struct task_struct *); 580int cgroup_attach_task(struct cgroup *, struct task_struct *);
581int cgroup_attach_task_current_cg(struct task_struct *); 581int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
582static inline int cgroup_attach_task_current_cg(struct task_struct *tsk)
583{
584 return cgroup_attach_task_all(current, tsk);
585}
582 586
583/* 587/*
584 * CSS ID is ID for cgroup_subsys_state structs under subsys. This only works 588 * CSS ID is ID for cgroup_subsys_state structs under subsys. This only works
@@ -636,6 +640,11 @@ static inline int cgroupstats_build(struct cgroupstats *stats,
636} 640}
637 641
638/* No cgroups - nothing to do */ 642/* No cgroups - nothing to do */
643static inline int cgroup_attach_task_all(struct task_struct *from,
644 struct task_struct *t)
645{
646 return 0;
647}
639static inline int cgroup_attach_task_current_cg(struct task_struct *t) 648static inline int cgroup_attach_task_current_cg(struct task_struct *t)
640{ 649{
641 return 0; 650 return 0;
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index a8ce09954404..9d90c08f3bde 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -1789,10 +1789,11 @@ out:
1789} 1789}
1790 1790
1791/** 1791/**
1792 * cgroup_attach_task_current_cg - attach task 'tsk' to current task's cgroup 1792 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1793 * @from: attach to all cgroups of a given task
1793 * @tsk: the task to be attached 1794 * @tsk: the task to be attached
1794 */ 1795 */
1795int cgroup_attach_task_current_cg(struct task_struct *tsk) 1796int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
1796{ 1797{
1797 struct cgroupfs_root *root; 1798 struct cgroupfs_root *root;
1798 struct cgroup *cur_cg; 1799 struct cgroup *cur_cg;
@@ -1800,7 +1801,7 @@ int cgroup_attach_task_current_cg(struct task_struct *tsk)
1800 1801
1801 cgroup_lock(); 1802 cgroup_lock();
1802 for_each_active_root(root) { 1803 for_each_active_root(root) {
1803 cur_cg = task_cgroup_from_root(current, root); 1804 cur_cg = task_cgroup_from_root(from, root);
1804 retval = cgroup_attach_task(cur_cg, tsk); 1805 retval = cgroup_attach_task(cur_cg, tsk);
1805 if (retval) 1806 if (retval)
1806 break; 1807 break;
@@ -1809,7 +1810,7 @@ int cgroup_attach_task_current_cg(struct task_struct *tsk)
1809 1810
1810 return retval; 1811 return retval;
1811} 1812}
1812EXPORT_SYMBOL_GPL(cgroup_attach_task_current_cg); 1813EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
1813 1814
1814/* 1815/*
1815 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex 1816 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex