android_kernel_motorola_sm6225/arch/m68knommu
Matt Helsley 83224b0837 container freezer: add TIF_FREEZE flag to all architectures
This patch series introduces a cgroup subsystem that utilizes the swsusp
freezer to freeze a group of tasks.  It's immediately useful for batch job
management scripts.  It should also be useful in the future for
implementing container checkpoint/restart.

The freezer subsystem in the container filesystem defines a cgroup file
named freezer.state.  Reading freezer.state will return the current state
of the cgroup.  Writing "FROZEN" to the state file will freeze all tasks
in the cgroup.  Subsequently writing "RUNNING" will unfreeze the tasks in
the cgroup.

* Examples of usage :

   # mkdir /containers/freezer
   # mount -t cgroup -ofreezer freezer  /containers
   # mkdir /containers/0
   # echo $some_pid > /containers/0/tasks

to get status of the freezer subsystem :

   # cat /containers/0/freezer.state
   RUNNING

to freeze all tasks in the container :

   # echo FROZEN > /containers/0/freezer.state
   # cat /containers/0/freezer.state
   FREEZING
   # cat /containers/0/freezer.state
   FROZEN

to unfreeze all tasks in the container :

   # echo RUNNING > /containers/0/freezer.state
   # cat /containers/0/freezer.state
   RUNNING

This patch:

The first step in making the refrigerator() available to all
architectures, even for those without power management.

The purpose of such a change is to be able to use the refrigerator() in a
new control group subsystem which will implement a control group freezer.

[akpm@linux-foundation.org: fix sparc]
Signed-off-by: Cedric Le Goater <clg@fr.ibm.com>
Signed-off-by: Matt Helsley <matthltc@us.ibm.com>
Acked-by: Pavel Machek <pavel@suse.cz>
Acked-by: Serge E. Hallyn <serue@us.ibm.com>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: Nigel Cunningham <nigel@tuxonice.net>
Tested-by: Matt Helsley <matthltc@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-10-20 08:52:33 -07:00
..
configs m68knommu: defconfig for M5407C3 board 2008-07-23 15:11:27 +10:00
include/asm container freezer: add TIF_FREEZE flag to all architectures 2008-10-20 08:52:33 -07:00
kernel Remove asm/a.out.h files for all architectures without a.out support. 2008-09-06 19:30:24 +01:00
lib Generic semaphore implementation 2008-04-17 10:42:34 -04:00
mm m68knommu: use generic show_mem() 2008-07-26 12:00:11 -07:00
platform m68knommu: put ColdFire head code into .text.head section 2008-07-23 15:11:29 +10:00
defconfig m68knommu: update defconfig 2008-03-04 08:04:11 -08:00
Kconfig Remove redundant CONFIG_ARCH_SUPPORTS_AOUT 2008-09-06 19:30:20 +01:00
Kconfig.debug m68knommu: removing config variable DUMPTOFLASH 2008-02-05 09:44:21 -08:00
Makefile m68knommu: add ffs and __ffs plattform which support ISA A+ or ISA C 2008-07-23 15:11:28 +10:00