2008-10-19 03:27:21 +00:00
|
|
|
/*
|
|
|
|
* cgroup_freezer.c - control group freezer subsystem
|
|
|
|
*
|
|
|
|
* Copyright IBM Corporation, 2007
|
|
|
|
*
|
|
|
|
* Author : Cedric Le Goater <clg@fr.ibm.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of version 2.1 of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it would be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2008-10-19 03:27:21 +00:00
|
|
|
#include <linux/cgroup.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <linux/freezer.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
|
|
|
|
enum freezer_state {
|
2008-10-19 03:27:23 +00:00
|
|
|
CGROUP_THAWED = 0,
|
|
|
|
CGROUP_FREEZING,
|
|
|
|
CGROUP_FROZEN,
|
2008-10-19 03:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct freezer {
|
|
|
|
struct cgroup_subsys_state css;
|
|
|
|
enum freezer_state state;
|
|
|
|
spinlock_t lock; /* protects _writes_ to state */
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct freezer *cgroup_freezer(
|
|
|
|
struct cgroup *cgroup)
|
|
|
|
{
|
|
|
|
return container_of(
|
|
|
|
cgroup_subsys_state(cgroup, freezer_subsys_id),
|
|
|
|
struct freezer, css);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct freezer *task_freezer(struct task_struct *task)
|
|
|
|
{
|
|
|
|
return container_of(task_subsys_state(task, freezer_subsys_id),
|
|
|
|
struct freezer, css);
|
|
|
|
}
|
|
|
|
|
2010-10-27 22:33:32 +00:00
|
|
|
static inline int __cgroup_freezing_or_frozen(struct task_struct *task)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2010-10-27 22:33:32 +00:00
|
|
|
enum freezer_state state = task_freezer(task)->state;
|
|
|
|
return (state == CGROUP_FREEZING) || (state == CGROUP_FROZEN);
|
|
|
|
}
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2010-10-27 22:33:32 +00:00
|
|
|
int cgroup_freezing_or_frozen(struct task_struct *task)
|
|
|
|
{
|
|
|
|
int result;
|
2008-10-19 03:27:21 +00:00
|
|
|
task_lock(task);
|
2010-10-27 22:33:32 +00:00
|
|
|
result = __cgroup_freezing_or_frozen(task);
|
2008-10-19 03:27:21 +00:00
|
|
|
task_unlock(task);
|
2010-10-27 22:33:32 +00:00
|
|
|
return result;
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cgroups_write_string() limits the size of freezer state strings to
|
|
|
|
* CGROUP_LOCAL_BUFFER_SIZE
|
|
|
|
*/
|
|
|
|
static const char *freezer_state_strs[] = {
|
2008-10-19 03:27:23 +00:00
|
|
|
"THAWED",
|
2008-10-19 03:27:21 +00:00
|
|
|
"FREEZING",
|
|
|
|
"FROZEN",
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* State diagram
|
|
|
|
* Transitions are caused by userspace writes to the freezer.state file.
|
|
|
|
* The values in parenthesis are state labels. The rest are edge labels.
|
|
|
|
*
|
2008-10-19 03:27:23 +00:00
|
|
|
* (THAWED) --FROZEN--> (FREEZING) --FROZEN--> (FROZEN)
|
|
|
|
* ^ ^ | |
|
|
|
|
* | \_______THAWED_______/ |
|
|
|
|
* \__________________________THAWED____________/
|
2008-10-19 03:27:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct cgroup_subsys freezer_subsys;
|
|
|
|
|
|
|
|
/* Locks taken and their ordering
|
|
|
|
* ------------------------------
|
|
|
|
* cgroup_mutex (AKA cgroup_lock)
|
|
|
|
* freezer->lock
|
2010-05-10 21:18:47 +00:00
|
|
|
* css_set_lock
|
|
|
|
* task->alloc_lock (AKA task_lock)
|
2008-10-19 03:27:21 +00:00
|
|
|
* task->sighand->siglock
|
|
|
|
*
|
|
|
|
* cgroup code forces css_set_lock to be taken before task->alloc_lock
|
|
|
|
*
|
|
|
|
* freezer_create(), freezer_destroy():
|
|
|
|
* cgroup_mutex [ by cgroup core ]
|
|
|
|
*
|
2010-05-10 21:18:47 +00:00
|
|
|
* freezer_can_attach():
|
|
|
|
* cgroup_mutex (held by caller of can_attach)
|
2008-10-19 03:27:21 +00:00
|
|
|
*
|
2010-05-10 21:18:47 +00:00
|
|
|
* cgroup_freezing_or_frozen():
|
2008-10-19 03:27:21 +00:00
|
|
|
* task->alloc_lock (to get task's cgroup)
|
|
|
|
*
|
|
|
|
* freezer_fork() (preserving fork() performance means can't take cgroup_mutex):
|
|
|
|
* freezer->lock
|
|
|
|
* sighand->siglock (if the cgroup is freezing)
|
|
|
|
*
|
|
|
|
* freezer_read():
|
|
|
|
* cgroup_mutex
|
|
|
|
* freezer->lock
|
2010-05-10 21:18:47 +00:00
|
|
|
* write_lock css_set_lock (cgroup iterator start)
|
|
|
|
* task->alloc_lock
|
2008-10-19 03:27:21 +00:00
|
|
|
* read_lock css_set_lock (cgroup iterator start)
|
|
|
|
*
|
|
|
|
* freezer_write() (freeze):
|
|
|
|
* cgroup_mutex
|
|
|
|
* freezer->lock
|
2010-05-10 21:18:47 +00:00
|
|
|
* write_lock css_set_lock (cgroup iterator start)
|
|
|
|
* task->alloc_lock
|
2008-10-19 03:27:21 +00:00
|
|
|
* read_lock css_set_lock (cgroup iterator start)
|
2010-05-10 21:18:47 +00:00
|
|
|
* sighand->siglock (fake signal delivery inside freeze_task())
|
2008-10-19 03:27:21 +00:00
|
|
|
*
|
|
|
|
* freezer_write() (unfreeze):
|
|
|
|
* cgroup_mutex
|
|
|
|
* freezer->lock
|
2010-05-10 21:18:47 +00:00
|
|
|
* write_lock css_set_lock (cgroup iterator start)
|
|
|
|
* task->alloc_lock
|
2008-10-19 03:27:21 +00:00
|
|
|
* read_lock css_set_lock (cgroup iterator start)
|
2010-05-10 21:18:47 +00:00
|
|
|
* task->alloc_lock (inside thaw_process(), prevents race with refrigerator())
|
2008-10-19 03:27:21 +00:00
|
|
|
* sighand->siglock
|
|
|
|
*/
|
|
|
|
static struct cgroup_subsys_state *freezer_create(struct cgroup_subsys *ss,
|
|
|
|
struct cgroup *cgroup)
|
|
|
|
{
|
|
|
|
struct freezer *freezer;
|
|
|
|
|
|
|
|
freezer = kzalloc(sizeof(struct freezer), GFP_KERNEL);
|
|
|
|
if (!freezer)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
spin_lock_init(&freezer->lock);
|
2008-10-19 03:27:23 +00:00
|
|
|
freezer->state = CGROUP_THAWED;
|
2008-10-19 03:27:21 +00:00
|
|
|
return &freezer->css;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void freezer_destroy(struct cgroup_subsys *ss,
|
|
|
|
struct cgroup *cgroup)
|
|
|
|
{
|
|
|
|
kfree(cgroup_freezer(cgroup));
|
|
|
|
}
|
|
|
|
|
2008-10-19 03:27:22 +00:00
|
|
|
/*
|
|
|
|
* The call to cgroup_lock() in the freezer.state write method prevents
|
|
|
|
* a write to that file racing against an attach, and hence the
|
|
|
|
* can_attach() result will remain valid until the attach completes.
|
|
|
|
*/
|
2008-10-19 03:27:21 +00:00
|
|
|
static int freezer_can_attach(struct cgroup_subsys *ss,
|
|
|
|
struct cgroup *new_cgroup,
|
2009-09-23 22:56:31 +00:00
|
|
|
struct task_struct *task, bool threadgroup)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
|
|
|
struct freezer *freezer;
|
2008-10-19 03:27:22 +00:00
|
|
|
|
2008-10-29 21:00:52 +00:00
|
|
|
/*
|
|
|
|
* Anything frozen can't move or be moved to/from.
|
|
|
|
*/
|
2008-10-19 03:27:22 +00:00
|
|
|
|
2010-10-27 22:33:33 +00:00
|
|
|
freezer = cgroup_freezer(new_cgroup);
|
|
|
|
if (freezer->state != CGROUP_THAWED)
|
2008-10-19 03:27:22 +00:00
|
|
|
return -EBUSY;
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2010-10-27 22:33:33 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
if (__cgroup_freezing_or_frozen(task)) {
|
|
|
|
rcu_read_unlock();
|
2008-10-19 03:27:22 +00:00
|
|
|
return -EBUSY;
|
2010-10-27 22:33:33 +00:00
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
2008-10-19 03:27:22 +00:00
|
|
|
|
2009-09-23 22:56:31 +00:00
|
|
|
if (threadgroup) {
|
|
|
|
struct task_struct *c;
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(c, &task->thread_group, thread_group) {
|
2010-10-27 22:33:33 +00:00
|
|
|
if (__cgroup_freezing_or_frozen(c)) {
|
2009-09-23 22:56:31 +00:00
|
|
|
rcu_read_unlock();
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
|
|
|
}
|
|
|
|
|
2008-10-29 21:00:52 +00:00
|
|
|
return 0;
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void freezer_fork(struct cgroup_subsys *ss, struct task_struct *task)
|
|
|
|
{
|
|
|
|
struct freezer *freezer;
|
|
|
|
|
2008-11-12 21:26:49 +00:00
|
|
|
/*
|
|
|
|
* No lock is needed, since the task isn't on tasklist yet,
|
|
|
|
* so it can't be moved to another cgroup, which means the
|
|
|
|
* freezer won't be removed and will be valid during this
|
2010-04-21 20:02:08 +00:00
|
|
|
* function call. Nevertheless, apply RCU read-side critical
|
|
|
|
* section to suppress RCU lockdep false positives.
|
2008-11-12 21:26:49 +00:00
|
|
|
*/
|
2010-04-21 20:02:08 +00:00
|
|
|
rcu_read_lock();
|
2008-10-19 03:27:21 +00:00
|
|
|
freezer = task_freezer(task);
|
2010-04-21 20:02:08 +00:00
|
|
|
rcu_read_unlock();
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2008-11-12 21:26:50 +00:00
|
|
|
/*
|
|
|
|
* The root cgroup is non-freezable, so we can skip the
|
|
|
|
* following check.
|
|
|
|
*/
|
|
|
|
if (!freezer->css.cgroup->parent)
|
|
|
|
return;
|
|
|
|
|
2008-10-19 03:27:21 +00:00
|
|
|
spin_lock_irq(&freezer->lock);
|
2008-10-29 21:00:51 +00:00
|
|
|
BUG_ON(freezer->state == CGROUP_FROZEN);
|
|
|
|
|
2008-10-19 03:27:23 +00:00
|
|
|
/* Locking avoids race with FREEZING -> THAWED transitions. */
|
|
|
|
if (freezer->state == CGROUP_FREEZING)
|
2008-10-19 03:27:21 +00:00
|
|
|
freeze_task(task, true);
|
|
|
|
spin_unlock_irq(&freezer->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* caller must hold freezer->lock
|
|
|
|
*/
|
2010-10-27 22:33:34 +00:00
|
|
|
static void update_if_frozen(struct cgroup *cgroup,
|
2008-10-19 03:27:24 +00:00
|
|
|
struct freezer *freezer)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
|
|
|
struct cgroup_iter it;
|
|
|
|
struct task_struct *task;
|
|
|
|
unsigned int nfrozen = 0, ntotal = 0;
|
2010-10-27 22:33:34 +00:00
|
|
|
enum freezer_state old_state = freezer->state;
|
2008-10-19 03:27:21 +00:00
|
|
|
|
|
|
|
cgroup_iter_start(cgroup, &it);
|
|
|
|
while ((task = cgroup_iter_next(cgroup, &it))) {
|
|
|
|
ntotal++;
|
2010-10-27 22:33:34 +00:00
|
|
|
if (frozen(task))
|
2008-10-19 03:27:21 +00:00
|
|
|
nfrozen++;
|
|
|
|
}
|
|
|
|
|
2010-10-27 22:33:34 +00:00
|
|
|
if (old_state == CGROUP_THAWED) {
|
|
|
|
BUG_ON(nfrozen > 0);
|
|
|
|
} else if (old_state == CGROUP_FREEZING) {
|
|
|
|
if (nfrozen == ntotal)
|
|
|
|
freezer->state = CGROUP_FROZEN;
|
|
|
|
} else { /* old_state == CGROUP_FROZEN */
|
|
|
|
BUG_ON(nfrozen != ntotal);
|
|
|
|
}
|
|
|
|
|
2008-10-19 03:27:21 +00:00
|
|
|
cgroup_iter_end(cgroup, &it);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int freezer_read(struct cgroup *cgroup, struct cftype *cft,
|
|
|
|
struct seq_file *m)
|
|
|
|
{
|
|
|
|
struct freezer *freezer;
|
|
|
|
enum freezer_state state;
|
|
|
|
|
|
|
|
if (!cgroup_lock_live_group(cgroup))
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
freezer = cgroup_freezer(cgroup);
|
|
|
|
spin_lock_irq(&freezer->lock);
|
|
|
|
state = freezer->state;
|
2008-10-19 03:27:23 +00:00
|
|
|
if (state == CGROUP_FREEZING) {
|
2008-10-19 03:27:21 +00:00
|
|
|
/* We change from FREEZING to FROZEN lazily if the cgroup was
|
|
|
|
* only partially frozen when we exitted write. */
|
2010-10-27 22:33:34 +00:00
|
|
|
update_if_frozen(cgroup, freezer);
|
2008-10-19 03:27:21 +00:00
|
|
|
state = freezer->state;
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&freezer->lock);
|
|
|
|
cgroup_unlock();
|
|
|
|
|
|
|
|
seq_puts(m, freezer_state_strs[state]);
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int try_to_freeze_cgroup(struct cgroup *cgroup, struct freezer *freezer)
|
|
|
|
{
|
|
|
|
struct cgroup_iter it;
|
|
|
|
struct task_struct *task;
|
|
|
|
unsigned int num_cant_freeze_now = 0;
|
|
|
|
|
2008-10-19 03:27:23 +00:00
|
|
|
freezer->state = CGROUP_FREEZING;
|
2008-10-19 03:27:21 +00:00
|
|
|
cgroup_iter_start(cgroup, &it);
|
|
|
|
while ((task = cgroup_iter_next(cgroup, &it))) {
|
|
|
|
if (!freeze_task(task, true))
|
|
|
|
continue;
|
2010-10-27 22:33:34 +00:00
|
|
|
if (frozen(task))
|
2008-10-19 03:27:21 +00:00
|
|
|
continue;
|
|
|
|
if (!freezing(task) && !freezer_should_skip(task))
|
|
|
|
num_cant_freeze_now++;
|
|
|
|
}
|
|
|
|
cgroup_iter_end(cgroup, &it);
|
|
|
|
|
|
|
|
return num_cant_freeze_now ? -EBUSY : 0;
|
|
|
|
}
|
|
|
|
|
2008-10-29 21:00:53 +00:00
|
|
|
static void unfreeze_cgroup(struct cgroup *cgroup, struct freezer *freezer)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
|
|
|
struct cgroup_iter it;
|
|
|
|
struct task_struct *task;
|
|
|
|
|
|
|
|
cgroup_iter_start(cgroup, &it);
|
|
|
|
while ((task = cgroup_iter_next(cgroup, &it))) {
|
2008-10-29 21:00:53 +00:00
|
|
|
thaw_process(task);
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
cgroup_iter_end(cgroup, &it);
|
|
|
|
|
2008-10-29 21:00:53 +00:00
|
|
|
freezer->state = CGROUP_THAWED;
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int freezer_change_state(struct cgroup *cgroup,
|
|
|
|
enum freezer_state goal_state)
|
|
|
|
{
|
|
|
|
struct freezer *freezer;
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
freezer = cgroup_freezer(cgroup);
|
2008-10-29 21:00:54 +00:00
|
|
|
|
2008-10-19 03:27:21 +00:00
|
|
|
spin_lock_irq(&freezer->lock);
|
2008-10-29 21:00:54 +00:00
|
|
|
|
2010-10-27 22:33:34 +00:00
|
|
|
update_if_frozen(cgroup, freezer);
|
2008-10-19 03:27:21 +00:00
|
|
|
if (goal_state == freezer->state)
|
|
|
|
goto out;
|
2008-10-29 21:00:54 +00:00
|
|
|
|
|
|
|
switch (goal_state) {
|
2008-10-19 03:27:23 +00:00
|
|
|
case CGROUP_THAWED:
|
2008-10-29 21:00:54 +00:00
|
|
|
unfreeze_cgroup(cgroup, freezer);
|
2008-10-19 03:27:21 +00:00
|
|
|
break;
|
2008-10-19 03:27:23 +00:00
|
|
|
case CGROUP_FROZEN:
|
2008-10-29 21:00:54 +00:00
|
|
|
retval = try_to_freeze_cgroup(cgroup, freezer);
|
2008-10-19 03:27:21 +00:00
|
|
|
break;
|
|
|
|
default:
|
2008-10-29 21:00:54 +00:00
|
|
|
BUG();
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
out:
|
|
|
|
spin_unlock_irq(&freezer->lock);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int freezer_write(struct cgroup *cgroup,
|
|
|
|
struct cftype *cft,
|
|
|
|
const char *buffer)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
enum freezer_state goal_state;
|
|
|
|
|
2008-10-19 03:27:23 +00:00
|
|
|
if (strcmp(buffer, freezer_state_strs[CGROUP_THAWED]) == 0)
|
|
|
|
goal_state = CGROUP_THAWED;
|
|
|
|
else if (strcmp(buffer, freezer_state_strs[CGROUP_FROZEN]) == 0)
|
|
|
|
goal_state = CGROUP_FROZEN;
|
2008-10-19 03:27:21 +00:00
|
|
|
else
|
2008-11-12 21:26:50 +00:00
|
|
|
return -EINVAL;
|
2008-10-19 03:27:21 +00:00
|
|
|
|
|
|
|
if (!cgroup_lock_live_group(cgroup))
|
|
|
|
return -ENODEV;
|
|
|
|
retval = freezer_change_state(cgroup, goal_state);
|
|
|
|
cgroup_unlock();
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cftype files[] = {
|
|
|
|
{
|
|
|
|
.name = "state",
|
|
|
|
.read_seq_string = freezer_read,
|
|
|
|
.write_string = freezer_write,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int freezer_populate(struct cgroup_subsys *ss, struct cgroup *cgroup)
|
|
|
|
{
|
2008-11-12 21:26:50 +00:00
|
|
|
if (!cgroup->parent)
|
|
|
|
return 0;
|
2008-10-19 03:27:21 +00:00
|
|
|
return cgroup_add_files(cgroup, ss, files, ARRAY_SIZE(files));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct cgroup_subsys freezer_subsys = {
|
|
|
|
.name = "freezer",
|
|
|
|
.create = freezer_create,
|
|
|
|
.destroy = freezer_destroy,
|
|
|
|
.populate = freezer_populate,
|
|
|
|
.subsys_id = freezer_subsys_id,
|
|
|
|
.can_attach = freezer_can_attach,
|
|
|
|
.attach = NULL,
|
|
|
|
.fork = freezer_fork,
|
|
|
|
.exit = NULL,
|
|
|
|
};
|