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.
|
|
|
|
*/
|
|
|
|
|
2011-05-23 18:51:41 +00:00
|
|
|
#include <linux/export.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>
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
/*
|
|
|
|
* A cgroup is freezing if any FREEZING flags are set. FREEZING_SELF is
|
|
|
|
* set if "FROZEN" is written to freezer.state cgroupfs file, and cleared
|
|
|
|
* for "THAWED". FREEZING_PARENT is set if the parent freezer is FREEZING
|
|
|
|
* for whatever reason. IOW, a cgroup has FREEZING_PARENT set if one of
|
|
|
|
* its ancestors has FREEZING_SELF set.
|
|
|
|
*/
|
2012-11-09 17:12:30 +00:00
|
|
|
enum freezer_state_flags {
|
2012-11-09 17:12:30 +00:00
|
|
|
CGROUP_FREEZER_ONLINE = (1 << 0), /* freezer is fully online */
|
2012-11-09 17:12:30 +00:00
|
|
|
CGROUP_FREEZING_SELF = (1 << 1), /* this freezer is freezing */
|
|
|
|
CGROUP_FREEZING_PARENT = (1 << 2), /* the parent freezer is freezing */
|
2012-11-09 17:12:30 +00:00
|
|
|
CGROUP_FROZEN = (1 << 3), /* this and its descendants frozen */
|
2012-11-09 17:12:30 +00:00
|
|
|
|
|
|
|
/* mask for all FREEZING flags */
|
|
|
|
CGROUP_FREEZING = CGROUP_FREEZING_SELF | CGROUP_FREEZING_PARENT,
|
2008-10-19 03:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct freezer {
|
2012-11-09 17:12:29 +00:00
|
|
|
struct cgroup_subsys_state css;
|
2012-11-09 17:12:30 +00:00
|
|
|
unsigned int state;
|
2012-11-09 17:12:29 +00:00
|
|
|
spinlock_t lock;
|
2008-10-19 03:27:21 +00:00
|
|
|
};
|
|
|
|
|
2012-11-09 17:12:29 +00:00
|
|
|
static inline struct freezer *cgroup_freezer(struct cgroup *cgroup)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2012-11-09 17:12:29 +00:00
|
|
|
return container_of(cgroup_subsys_state(cgroup, freezer_subsys_id),
|
|
|
|
struct freezer, css);
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct freezer *task_freezer(struct task_struct *task)
|
|
|
|
{
|
|
|
|
return container_of(task_subsys_state(task, freezer_subsys_id),
|
|
|
|
struct freezer, css);
|
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
static struct freezer *parent_freezer(struct freezer *freezer)
|
|
|
|
{
|
|
|
|
struct cgroup *pcg = freezer->css.cgroup->parent;
|
|
|
|
|
|
|
|
if (pcg)
|
|
|
|
return cgroup_freezer(pcg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-21 20:32:25 +00:00
|
|
|
bool cgroup_freezing(struct task_struct *task)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2011-11-21 20:32:25 +00:00
|
|
|
bool ret;
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2011-11-21 20:32:25 +00:00
|
|
|
rcu_read_lock();
|
2012-11-09 17:12:30 +00:00
|
|
|
ret = task_freezer(task)->state & CGROUP_FREEZING;
|
2011-11-21 20:32:25 +00:00
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
return ret;
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cgroups_write_string() limits the size of freezer state strings to
|
|
|
|
* CGROUP_LOCAL_BUFFER_SIZE
|
|
|
|
*/
|
2012-11-09 17:12:30 +00:00
|
|
|
static const char *freezer_state_strs(unsigned int state)
|
|
|
|
{
|
|
|
|
if (state & CGROUP_FROZEN)
|
|
|
|
return "FROZEN";
|
|
|
|
if (state & CGROUP_FREEZING)
|
|
|
|
return "FREEZING";
|
|
|
|
return "THAWED";
|
2008-10-19 03:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cgroup_subsys freezer_subsys;
|
|
|
|
|
2012-11-19 16:13:38 +00:00
|
|
|
static struct cgroup_subsys_state *freezer_css_alloc(struct cgroup *cgroup)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
|
|
|
struct freezer *freezer;
|
|
|
|
|
|
|
|
freezer = kzalloc(sizeof(struct freezer), GFP_KERNEL);
|
|
|
|
if (!freezer)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
spin_lock_init(&freezer->lock);
|
|
|
|
return &freezer->css;
|
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
/**
|
2012-11-19 16:13:38 +00:00
|
|
|
* freezer_css_online - commit creation of a freezer cgroup
|
2012-11-09 17:12:30 +00:00
|
|
|
* @cgroup: cgroup being created
|
|
|
|
*
|
2012-11-09 17:12:30 +00:00
|
|
|
* We're committing to creation of @cgroup. Mark it online and inherit
|
|
|
|
* parent's freezing state while holding both parent's and our
|
|
|
|
* freezer->lock.
|
2012-11-09 17:12:30 +00:00
|
|
|
*/
|
2012-11-19 16:13:38 +00:00
|
|
|
static int freezer_css_online(struct cgroup *cgroup)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2011-11-21 20:32:25 +00:00
|
|
|
struct freezer *freezer = cgroup_freezer(cgroup);
|
2012-11-09 17:12:30 +00:00
|
|
|
struct freezer *parent = parent_freezer(freezer);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following double locking and freezing state inheritance
|
|
|
|
* guarantee that @cgroup can never escape ancestors' freezing
|
|
|
|
* states. See cgroup_for_each_descendant_pre() for details.
|
|
|
|
*/
|
|
|
|
if (parent)
|
|
|
|
spin_lock_irq(&parent->lock);
|
|
|
|
spin_lock_nested(&freezer->lock, SINGLE_DEPTH_NESTING);
|
2011-11-21 20:32:25 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
freezer->state |= CGROUP_FREEZER_ONLINE;
|
2012-11-09 17:12:30 +00:00
|
|
|
|
|
|
|
if (parent && (parent->state & CGROUP_FREEZING)) {
|
|
|
|
freezer->state |= CGROUP_FREEZING_PARENT | CGROUP_FROZEN;
|
|
|
|
atomic_inc(&system_freezing_cnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock(&freezer->lock);
|
|
|
|
if (parent)
|
|
|
|
spin_unlock_irq(&parent->lock);
|
2012-11-19 16:13:38 +00:00
|
|
|
|
|
|
|
return 0;
|
2012-11-09 17:12:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-11-19 16:13:38 +00:00
|
|
|
* freezer_css_offline - initiate destruction of @cgroup
|
2012-11-09 17:12:30 +00:00
|
|
|
* @cgroup: cgroup being destroyed
|
|
|
|
*
|
|
|
|
* @cgroup is going away. Mark it dead and decrement system_freezing_count
|
|
|
|
* if it was holding one.
|
|
|
|
*/
|
2012-11-19 16:13:38 +00:00
|
|
|
static void freezer_css_offline(struct cgroup *cgroup)
|
2012-11-09 17:12:30 +00:00
|
|
|
{
|
|
|
|
struct freezer *freezer = cgroup_freezer(cgroup);
|
|
|
|
|
|
|
|
spin_lock_irq(&freezer->lock);
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
if (freezer->state & CGROUP_FREEZING)
|
2011-11-21 20:32:25 +00:00
|
|
|
atomic_dec(&system_freezing_cnt);
|
2012-11-09 17:12:30 +00:00
|
|
|
|
|
|
|
freezer->state = 0;
|
|
|
|
|
|
|
|
spin_unlock_irq(&freezer->lock);
|
|
|
|
}
|
|
|
|
|
2012-11-19 16:13:38 +00:00
|
|
|
static void freezer_css_free(struct cgroup *cgroup)
|
2012-11-09 17:12:30 +00:00
|
|
|
{
|
|
|
|
kfree(cgroup_freezer(cgroup));
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
2008-10-19 03:27:22 +00:00
|
|
|
/*
|
2012-10-16 22:03:15 +00:00
|
|
|
* Tasks can be migrated into a different freezer anytime regardless of its
|
|
|
|
* current state. freezer_attach() is responsible for making new tasks
|
|
|
|
* conform to the current state.
|
|
|
|
*
|
|
|
|
* Freezer state changes and task migration are synchronized via
|
|
|
|
* @freezer->lock. freezer_attach() makes the new tasks conform to the
|
|
|
|
* current state and all following state changes can see the new tasks.
|
2008-10-19 03:27:22 +00:00
|
|
|
*/
|
2012-10-16 22:03:14 +00:00
|
|
|
static void freezer_attach(struct cgroup *new_cgrp, struct cgroup_taskset *tset)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2012-10-16 22:03:14 +00:00
|
|
|
struct freezer *freezer = cgroup_freezer(new_cgrp);
|
2011-12-13 02:12:21 +00:00
|
|
|
struct task_struct *task;
|
2012-11-09 17:12:30 +00:00
|
|
|
bool clear_frozen = false;
|
2008-10-19 03:27:22 +00:00
|
|
|
|
2012-10-16 22:03:14 +00:00
|
|
|
spin_lock_irq(&freezer->lock);
|
|
|
|
|
2008-10-29 21:00:52 +00:00
|
|
|
/*
|
2012-10-16 22:03:14 +00:00
|
|
|
* Make the new tasks conform to the current state of @new_cgrp.
|
|
|
|
* For simplicity, when migrating any task to a FROZEN cgroup, we
|
|
|
|
* revert it to FREEZING and let update_if_frozen() determine the
|
|
|
|
* correct state later.
|
|
|
|
*
|
|
|
|
* Tasks in @tset are on @new_cgrp but may not conform to its
|
|
|
|
* current state before executing the following - !frozen tasks may
|
|
|
|
* be visible in a FROZEN cgroup and frozen tasks in a THAWED one.
|
2008-10-29 21:00:52 +00:00
|
|
|
*/
|
2012-10-16 22:03:14 +00:00
|
|
|
cgroup_taskset_for_each(task, new_cgrp, tset) {
|
2012-11-09 17:12:30 +00:00
|
|
|
if (!(freezer->state & CGROUP_FREEZING)) {
|
2012-10-16 22:03:14 +00:00
|
|
|
__thaw_task(task);
|
|
|
|
} else {
|
|
|
|
freeze_task(task);
|
2012-11-09 17:12:30 +00:00
|
|
|
freezer->state &= ~CGROUP_FROZEN;
|
2012-11-09 17:12:30 +00:00
|
|
|
clear_frozen = true;
|
2012-10-16 22:03:14 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2012-10-16 22:03:14 +00:00
|
|
|
spin_unlock_irq(&freezer->lock);
|
2012-11-09 17:12:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Propagate FROZEN clearing upwards. We may race with
|
|
|
|
* update_if_frozen(), but as long as both work bottom-up, either
|
|
|
|
* update_if_frozen() sees child's FROZEN cleared or we clear the
|
|
|
|
* parent's FROZEN later. No parent w/ !FROZEN children can be
|
|
|
|
* left FROZEN.
|
|
|
|
*/
|
|
|
|
while (clear_frozen && (freezer = parent_freezer(freezer))) {
|
|
|
|
spin_lock_irq(&freezer->lock);
|
|
|
|
freezer->state &= ~CGROUP_FROZEN;
|
|
|
|
clear_frozen = freezer->state & CGROUP_FREEZING;
|
|
|
|
spin_unlock_irq(&freezer->lock);
|
|
|
|
}
|
2011-05-26 23:25:19 +00:00
|
|
|
}
|
|
|
|
|
2012-01-31 05:47:36 +00:00
|
|
|
static void freezer_fork(struct task_struct *task)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
|
|
|
struct freezer *freezer;
|
|
|
|
|
2010-04-21 20:02:08 +00:00
|
|
|
rcu_read_lock();
|
2008-10-19 03:27:21 +00:00
|
|
|
freezer = task_freezer(task);
|
|
|
|
|
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)
|
2012-10-16 22:03:14 +00:00
|
|
|
goto out;
|
2008-11-12 21:26:50 +00:00
|
|
|
|
2008-10-19 03:27:21 +00:00
|
|
|
spin_lock_irq(&freezer->lock);
|
2012-11-09 17:12:30 +00:00
|
|
|
if (freezer->state & CGROUP_FREEZING)
|
2011-11-21 20:32:26 +00:00
|
|
|
freeze_task(task);
|
2008-10-19 03:27:21 +00:00
|
|
|
spin_unlock_irq(&freezer->lock);
|
2012-10-16 22:03:14 +00:00
|
|
|
out:
|
|
|
|
rcu_read_unlock();
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
/**
|
|
|
|
* update_if_frozen - update whether a cgroup finished freezing
|
|
|
|
* @cgroup: cgroup of interest
|
|
|
|
*
|
|
|
|
* Once FREEZING is initiated, transition to FROZEN is lazily updated by
|
|
|
|
* calling this function. If the current state is FREEZING but not FROZEN,
|
|
|
|
* this function checks whether all tasks of this cgroup and the descendant
|
|
|
|
* cgroups finished freezing and, if so, sets FROZEN.
|
|
|
|
*
|
|
|
|
* The caller is responsible for grabbing RCU read lock and calling
|
|
|
|
* update_if_frozen() on all descendants prior to invoking this function.
|
2012-10-16 22:03:14 +00:00
|
|
|
*
|
|
|
|
* Task states and freezer state might disagree while tasks are being
|
2012-10-16 22:03:15 +00:00
|
|
|
* migrated into or out of @cgroup, so we can't verify task states against
|
|
|
|
* @freezer state here. See freezer_attach() for details.
|
2008-10-19 03:27:21 +00:00
|
|
|
*/
|
2012-11-09 17:12:30 +00:00
|
|
|
static void update_if_frozen(struct cgroup *cgroup)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2012-11-09 17:12:30 +00:00
|
|
|
struct freezer *freezer = cgroup_freezer(cgroup);
|
|
|
|
struct cgroup *pos;
|
2008-10-19 03:27:21 +00:00
|
|
|
struct cgroup_iter it;
|
|
|
|
struct task_struct *task;
|
2012-10-16 22:03:14 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
WARN_ON_ONCE(!rcu_read_lock_held());
|
|
|
|
|
|
|
|
spin_lock_irq(&freezer->lock);
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
if (!(freezer->state & CGROUP_FREEZING) ||
|
|
|
|
(freezer->state & CGROUP_FROZEN))
|
2012-11-09 17:12:30 +00:00
|
|
|
goto out_unlock;
|
|
|
|
|
|
|
|
/* are all (live) children frozen? */
|
|
|
|
cgroup_for_each_child(pos, cgroup) {
|
|
|
|
struct freezer *child = cgroup_freezer(pos);
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
if ((child->state & CGROUP_FREEZER_ONLINE) &&
|
|
|
|
!(child->state & CGROUP_FROZEN))
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* are all tasks frozen? */
|
2008-10-19 03:27:21 +00:00
|
|
|
cgroup_iter_start(cgroup, &it);
|
2012-10-16 22:03:14 +00:00
|
|
|
|
2008-10-19 03:27:21 +00:00
|
|
|
while ((task = cgroup_iter_next(cgroup, &it))) {
|
2012-10-16 22:03:14 +00:00
|
|
|
if (freezing(task)) {
|
|
|
|
/*
|
|
|
|
* freezer_should_skip() indicates that the task
|
|
|
|
* should be skipped when determining freezing
|
|
|
|
* completion. Consider it frozen in addition to
|
|
|
|
* the usual frozen condition.
|
|
|
|
*/
|
2012-10-26 17:46:06 +00:00
|
|
|
if (!frozen(task) && !freezer_should_skip(task))
|
2012-11-09 17:12:30 +00:00
|
|
|
goto out_iter_end;
|
2012-10-16 22:03:14 +00:00
|
|
|
}
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
freezer->state |= CGROUP_FROZEN;
|
2012-11-09 17:12:30 +00:00
|
|
|
out_iter_end:
|
2008-10-19 03:27:21 +00:00
|
|
|
cgroup_iter_end(cgroup, &it);
|
2012-11-09 17:12:30 +00:00
|
|
|
out_unlock:
|
|
|
|
spin_unlock_irq(&freezer->lock);
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int freezer_read(struct cgroup *cgroup, struct cftype *cft,
|
|
|
|
struct seq_file *m)
|
|
|
|
{
|
2012-11-09 17:12:30 +00:00
|
|
|
struct cgroup *pos;
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
rcu_read_lock();
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
/* update states bottom-up */
|
|
|
|
cgroup_for_each_descendant_post(pos, cgroup)
|
|
|
|
update_if_frozen(pos);
|
|
|
|
update_if_frozen(cgroup);
|
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
seq_puts(m, freezer_state_strs(cgroup_freezer(cgroup)->state));
|
2008-10-19 03:27:21 +00:00
|
|
|
seq_putc(m, '\n');
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:29 +00:00
|
|
|
static void freeze_cgroup(struct freezer *freezer)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2012-11-09 17:12:29 +00:00
|
|
|
struct cgroup *cgroup = freezer->css.cgroup;
|
2008-10-19 03:27:21 +00:00
|
|
|
struct cgroup_iter it;
|
|
|
|
struct task_struct *task;
|
|
|
|
|
|
|
|
cgroup_iter_start(cgroup, &it);
|
2012-10-16 22:03:14 +00:00
|
|
|
while ((task = cgroup_iter_next(cgroup, &it)))
|
|
|
|
freeze_task(task);
|
2008-10-19 03:27:21 +00:00
|
|
|
cgroup_iter_end(cgroup, &it);
|
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:29 +00:00
|
|
|
static void unfreeze_cgroup(struct freezer *freezer)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2012-11-09 17:12:29 +00:00
|
|
|
struct cgroup *cgroup = freezer->css.cgroup;
|
2008-10-19 03:27:21 +00:00
|
|
|
struct cgroup_iter it;
|
|
|
|
struct task_struct *task;
|
|
|
|
|
|
|
|
cgroup_iter_start(cgroup, &it);
|
2011-11-21 20:32:23 +00:00
|
|
|
while ((task = cgroup_iter_next(cgroup, &it)))
|
|
|
|
__thaw_task(task);
|
2008-10-19 03:27:21 +00:00
|
|
|
cgroup_iter_end(cgroup, &it);
|
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
/**
|
|
|
|
* freezer_apply_state - apply state change to a single cgroup_freezer
|
|
|
|
* @freezer: freezer to apply state change to
|
|
|
|
* @freeze: whether to freeze or unfreeze
|
2012-11-09 17:12:30 +00:00
|
|
|
* @state: CGROUP_FREEZING_* flag to set or clear
|
|
|
|
*
|
|
|
|
* Set or clear @state on @cgroup according to @freeze, and perform
|
|
|
|
* freezing or thawing as necessary.
|
2012-11-09 17:12:30 +00:00
|
|
|
*/
|
2012-11-09 17:12:30 +00:00
|
|
|
static void freezer_apply_state(struct freezer *freezer, bool freeze,
|
|
|
|
unsigned int state)
|
2008-10-19 03:27:21 +00:00
|
|
|
{
|
2012-10-16 22:03:15 +00:00
|
|
|
/* also synchronizes against task migration, see freezer_attach() */
|
2012-11-09 17:12:30 +00:00
|
|
|
lockdep_assert_held(&freezer->lock);
|
2008-10-29 21:00:54 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
if (!(freezer->state & CGROUP_FREEZER_ONLINE))
|
|
|
|
return;
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
if (freeze) {
|
2012-11-09 17:12:30 +00:00
|
|
|
if (!(freezer->state & CGROUP_FREEZING))
|
2011-11-21 20:32:25 +00:00
|
|
|
atomic_inc(&system_freezing_cnt);
|
2012-11-09 17:12:30 +00:00
|
|
|
freezer->state |= state;
|
2012-11-09 17:12:29 +00:00
|
|
|
freeze_cgroup(freezer);
|
2012-11-09 17:12:30 +00:00
|
|
|
} else {
|
2012-11-09 17:12:30 +00:00
|
|
|
bool was_freezing = freezer->state & CGROUP_FREEZING;
|
|
|
|
|
|
|
|
freezer->state &= ~state;
|
|
|
|
|
|
|
|
if (!(freezer->state & CGROUP_FREEZING)) {
|
|
|
|
if (was_freezing)
|
|
|
|
atomic_dec(&system_freezing_cnt);
|
|
|
|
freezer->state &= ~CGROUP_FROZEN;
|
|
|
|
unfreeze_cgroup(freezer);
|
|
|
|
}
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
2012-11-09 17:12:30 +00:00
|
|
|
}
|
2011-11-21 20:32:25 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
/**
|
|
|
|
* freezer_change_state - change the freezing state of a cgroup_freezer
|
|
|
|
* @freezer: freezer of interest
|
|
|
|
* @freeze: whether to freeze or thaw
|
|
|
|
*
|
2012-11-09 17:12:30 +00:00
|
|
|
* Freeze or thaw @freezer according to @freeze. The operations are
|
|
|
|
* recursive - all descendants of @freezer will be affected.
|
2012-11-09 17:12:30 +00:00
|
|
|
*/
|
|
|
|
static void freezer_change_state(struct freezer *freezer, bool freeze)
|
|
|
|
{
|
2012-11-09 17:12:30 +00:00
|
|
|
struct cgroup *pos;
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
/* update @freezer */
|
|
|
|
spin_lock_irq(&freezer->lock);
|
2012-11-09 17:12:30 +00:00
|
|
|
freezer_apply_state(freezer, freeze, CGROUP_FREEZING_SELF);
|
2008-10-19 03:27:21 +00:00
|
|
|
spin_unlock_irq(&freezer->lock);
|
2012-11-09 17:12:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update all its descendants in pre-order traversal. Each
|
|
|
|
* descendant will try to inherit its parent's FREEZING state as
|
|
|
|
* CGROUP_FREEZING_PARENT.
|
|
|
|
*/
|
|
|
|
rcu_read_lock();
|
|
|
|
cgroup_for_each_descendant_pre(pos, freezer->css.cgroup) {
|
|
|
|
struct freezer *pos_f = cgroup_freezer(pos);
|
|
|
|
struct freezer *parent = parent_freezer(pos_f);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Our update to @parent->state is already visible which is
|
|
|
|
* all we need. No need to lock @parent. For more info on
|
|
|
|
* synchronization, see freezer_post_create().
|
|
|
|
*/
|
|
|
|
spin_lock_irq(&pos_f->lock);
|
|
|
|
freezer_apply_state(pos_f, parent->state & CGROUP_FREEZING,
|
|
|
|
CGROUP_FREEZING_PARENT);
|
|
|
|
spin_unlock_irq(&pos_f->lock);
|
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:29 +00:00
|
|
|
static int freezer_write(struct cgroup *cgroup, struct cftype *cft,
|
2008-10-19 03:27:21 +00:00
|
|
|
const char *buffer)
|
|
|
|
{
|
2012-11-09 17:12:30 +00:00
|
|
|
bool freeze;
|
2008-10-19 03:27:21 +00:00
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
if (strcmp(buffer, freezer_state_strs(0)) == 0)
|
2012-11-09 17:12:30 +00:00
|
|
|
freeze = false;
|
2012-11-09 17:12:30 +00:00
|
|
|
else if (strcmp(buffer, freezer_state_strs(CGROUP_FROZEN)) == 0)
|
2012-11-09 17:12:30 +00:00
|
|
|
freeze = true;
|
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
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
freezer_change_state(cgroup_freezer(cgroup), freeze);
|
2012-10-16 22:03:14 +00:00
|
|
|
return 0;
|
2008-10-19 03:27:21 +00:00
|
|
|
}
|
|
|
|
|
2012-11-09 17:12:30 +00:00
|
|
|
static u64 freezer_self_freezing_read(struct cgroup *cgroup, struct cftype *cft)
|
|
|
|
{
|
|
|
|
struct freezer *freezer = cgroup_freezer(cgroup);
|
|
|
|
|
|
|
|
return (bool)(freezer->state & CGROUP_FREEZING_SELF);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 freezer_parent_freezing_read(struct cgroup *cgroup, struct cftype *cft)
|
|
|
|
{
|
|
|
|
struct freezer *freezer = cgroup_freezer(cgroup);
|
|
|
|
|
|
|
|
return (bool)(freezer->state & CGROUP_FREEZING_PARENT);
|
|
|
|
}
|
|
|
|
|
2008-10-19 03:27:21 +00:00
|
|
|
static struct cftype files[] = {
|
|
|
|
{
|
|
|
|
.name = "state",
|
2012-04-01 19:09:55 +00:00
|
|
|
.flags = CFTYPE_NOT_ON_ROOT,
|
2008-10-19 03:27:21 +00:00
|
|
|
.read_seq_string = freezer_read,
|
|
|
|
.write_string = freezer_write,
|
|
|
|
},
|
2012-11-09 17:12:30 +00:00
|
|
|
{
|
|
|
|
.name = "self_freezing",
|
|
|
|
.flags = CFTYPE_NOT_ON_ROOT,
|
|
|
|
.read_u64 = freezer_self_freezing_read,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "parent_freezing",
|
|
|
|
.flags = CFTYPE_NOT_ON_ROOT,
|
|
|
|
.read_u64 = freezer_parent_freezing_read,
|
|
|
|
},
|
2012-04-01 19:09:55 +00:00
|
|
|
{ } /* terminate */
|
2008-10-19 03:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cgroup_subsys freezer_subsys = {
|
|
|
|
.name = "freezer",
|
2012-11-19 16:13:38 +00:00
|
|
|
.css_alloc = freezer_css_alloc,
|
|
|
|
.css_online = freezer_css_online,
|
|
|
|
.css_offline = freezer_css_offline,
|
|
|
|
.css_free = freezer_css_free,
|
2008-10-19 03:27:21 +00:00
|
|
|
.subsys_id = freezer_subsys_id,
|
2012-10-16 22:03:14 +00:00
|
|
|
.attach = freezer_attach,
|
2008-10-19 03:27:21 +00:00
|
|
|
.fork = freezer_fork,
|
2012-04-01 19:09:55 +00:00
|
|
|
.base_cftypes = files,
|
2008-10-19 03:27:21 +00:00
|
|
|
};
|