Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 83755
b: refs/heads/master
c: e9685a0
h: refs/heads/master
i:
  83753: 99573b7
  83751: efb942e
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Feb 7, 2008
1 parent 594f01c commit 2765ffd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8dc4f3e17dd5f7e59ce568155ccd8974af879315
refs/heads/master: e9685a03c8c3162cfa9ff02d254ea5c848f9facb
4 changes: 2 additions & 2 deletions trunk/kernel/cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,15 @@ 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) |
(1 << CGRP_NOTIFY_ON_RELEASE);
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);
}
Expand Down

0 comments on commit 2765ffd

Please sign in to comment.