aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/cgroup.h2
-rw-r--r--kernel/cgroup.c32
2 files changed, 34 insertions, 0 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h
index 5047355b9a0f..383c630f36f9 100644
--- a/include/linux/cgroup.h
+++ b/include/linux/cgroup.h
@@ -542,6 +542,8 @@ int cgroup_is_removed(const struct cgroup *cgrp);
542bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor); 542bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor);
543 543
544int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen); 544int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen);
545int task_cgroup_path_from_hierarchy(struct task_struct *task, int hierarchy_id,
546 char *buf, size_t buflen);
545 547
546int cgroup_task_count(const struct cgroup *cgrp); 548int cgroup_task_count(const struct cgroup *cgrp);
547 549
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index dcb417c6c242..6b2b1d945df2 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -1827,6 +1827,38 @@ out:
1827} 1827}
1828EXPORT_SYMBOL_GPL(cgroup_path); 1828EXPORT_SYMBOL_GPL(cgroup_path);
1829 1829
1830/**
1831 * task_cgroup_path_from_hierarchy - cgroup path of a task on a hierarchy
1832 * @task: target task
1833 * @hierarchy_id: the hierarchy to look up @task's cgroup from
1834 * @buf: the buffer to write the path into
1835 * @buflen: the length of the buffer
1836 *
1837 * Determine @task's cgroup on the hierarchy specified by @hierarchy_id and
1838 * copy its path into @buf. This function grabs cgroup_mutex and shouldn't
1839 * be used inside locks used by cgroup controller callbacks.
1840 */
1841int task_cgroup_path_from_hierarchy(struct task_struct *task, int hierarchy_id,
1842 char *buf, size_t buflen)
1843{
1844 struct cgroupfs_root *root;
1845 struct cgroup *cgrp = NULL;
1846 int ret = -ENOENT;
1847
1848 mutex_lock(&cgroup_mutex);
1849
1850 root = idr_find(&cgroup_hierarchy_idr, hierarchy_id);
1851 if (root) {
1852 cgrp = task_cgroup_from_root(task, root);
1853 ret = cgroup_path(cgrp, buf, buflen);
1854 }
1855
1856 mutex_unlock(&cgroup_mutex);
1857
1858 return ret;
1859}
1860EXPORT_SYMBOL_GPL(task_cgroup_path_from_hierarchy);
1861
1830/* 1862/*
1831 * Control Group taskset 1863 * Control Group taskset
1832 */ 1864 */