aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/cgroup.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 9a890a2e58fc..750d0e1e7e56 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -242,7 +242,6 @@ bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
242 } 242 }
243 return false; 243 return false;
244} 244}
245EXPORT_SYMBOL_GPL(cgroup_is_descendant);
246 245
247static int cgroup_is_releasable(const struct cgroup *cgrp) 246static int cgroup_is_releasable(const struct cgroup *cgrp)
248{ 247{
@@ -1664,7 +1663,6 @@ struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1664 return tset->single.task; 1663 return tset->single.task;
1665 } 1664 }
1666} 1665}
1667EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1668 1666
1669/** 1667/**
1670 * cgroup_taskset_next - iterate to the next task in taskset 1668 * cgroup_taskset_next - iterate to the next task in taskset
@@ -1683,7 +1681,6 @@ struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1683 tc = flex_array_get(tset->tc_array, tset->idx++); 1681 tc = flex_array_get(tset->tc_array, tset->idx++);
1684 return tc->task; 1682 return tc->task;
1685} 1683}
1686EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1687 1684
1688/** 1685/**
1689 * cgroup_task_migrate - move a task from one cgroup to another. 1686 * cgroup_task_migrate - move a task from one cgroup to another.
@@ -2365,7 +2362,6 @@ int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
2365 mutex_unlock(&cgroup_tree_mutex); 2362 mutex_unlock(&cgroup_tree_mutex);
2366 return ret; 2363 return ret;
2367} 2364}
2368EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2369 2365
2370/** 2366/**
2371 * cgroup_task_count - count the number of tasks in a cgroup. 2367 * cgroup_task_count - count the number of tasks in a cgroup.
@@ -2439,7 +2435,6 @@ css_next_child(struct cgroup_subsys_state *pos_css,
2439 2435
2440 return cgroup_css(next, parent_css->ss); 2436 return cgroup_css(next, parent_css->ss);
2441} 2437}
2442EXPORT_SYMBOL_GPL(css_next_child);
2443 2438
2444/** 2439/**
2445 * css_next_descendant_pre - find the next descendant for pre-order walk 2440 * css_next_descendant_pre - find the next descendant for pre-order walk
@@ -2482,7 +2477,6 @@ css_next_descendant_pre(struct cgroup_subsys_state *pos,
2482 2477
2483 return NULL; 2478 return NULL;
2484} 2479}
2485EXPORT_SYMBOL_GPL(css_next_descendant_pre);
2486 2480
2487/** 2481/**
2488 * css_rightmost_descendant - return the rightmost descendant of a css 2482 * css_rightmost_descendant - return the rightmost descendant of a css
@@ -2514,7 +2508,6 @@ css_rightmost_descendant(struct cgroup_subsys_state *pos)
2514 2508
2515 return last; 2509 return last;
2516} 2510}
2517EXPORT_SYMBOL_GPL(css_rightmost_descendant);
2518 2511
2519static struct cgroup_subsys_state * 2512static struct cgroup_subsys_state *
2520css_leftmost_descendant(struct cgroup_subsys_state *pos) 2513css_leftmost_descendant(struct cgroup_subsys_state *pos)
@@ -2568,7 +2561,6 @@ css_next_descendant_post(struct cgroup_subsys_state *pos,
2568 /* no sibling left, visit parent */ 2561 /* no sibling left, visit parent */
2569 return css_parent(pos); 2562 return css_parent(pos);
2570} 2563}
2571EXPORT_SYMBOL_GPL(css_next_descendant_post);
2572 2564
2573/** 2565/**
2574 * css_advance_task_iter - advance a task itererator to the next css_set 2566 * css_advance_task_iter - advance a task itererator to the next css_set