summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorAdrian Bunk2008-02-07 09:13:46 +0100
committerLinus Torvalds2008-02-07 17:42:18 +0100
commite9685a03c8c3162cfa9ff02d254ea5c848f9facb (patch)
tree9267e6f5bbccfb4af41a9efeb170e9d29a838d4f /kernel
parentcgroups: move cgroups destroy() callbacks to cgroup_diput() (diff)
downloadkernel-qcow2-linux-e9685a03c8c3162cfa9ff02d254ea5c848f9facb.tar.gz
kernel-qcow2-linux-e9685a03c8c3162cfa9ff02d254ea5c848f9facb.tar.xz
kernel-qcow2-linux-e9685a03c8c3162cfa9ff02d254ea5c848f9facb.zip
kernel/cgroup.c: make 2 functions static
cgroup_is_releasable() and notify_on_release() should be static, not global inline. Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: 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 'kernel')
-rw-r--r--kernel/cgroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index b0fee0c61445..4d67a39c58a8 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -141,7 +141,7 @@ enum {
ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
};
-inline int cgroup_is_releasable(const struct cgroup *cgrp)
+static int cgroup_is_releasable(const struct cgroup *cgrp)
{
const int bits =
(1 << CGRP_RELEASABLE) |
@@ -149,7 +149,7 @@ inline int cgroup_is_releasable(const struct cgroup *cgrp)
return (cgrp->flags & bits) == bits;
}
-inline int notify_on_release(const struct cgroup *cgrp)
+static int notify_on_release(const struct cgroup *cgrp)
{
return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
}