1. 18 9月, 2009 1 次提交
  2. 03 7月, 2009 5 次提交
  3. 25 6月, 2009 3 次提交
  4. 17 6月, 2009 3 次提交
  5. 08 6月, 2009 2 次提交
  6. 14 5月, 2009 2 次提交
  7. 30 3月, 2009 2 次提交
  8. 14 3月, 2009 1 次提交
  9. 28 2月, 2009 2 次提交
  10. 31 1月, 2009 2 次提交
  11. 11 1月, 2009 2 次提交
  12. 11 11月, 2008 1 次提交
  13. 30 10月, 2008 1 次提交
  14. 28 10月, 2008 3 次提交
  15. 20 10月, 2008 1 次提交
    • M
      container freezer: implement freezer cgroup subsystem · dc52ddc0
      Matt Helsley 提交于
      This patch implements a new freezer subsystem in the control groups
      framework.  It provides a way to stop and resume execution of all tasks in
      a cgroup by writing in the cgroup filesystem.
      
      The freezer subsystem in the container filesystem defines a file named
      freezer.state.  Writing "FROZEN" to the state file will freeze all tasks
      in the cgroup.  Subsequently writing "RUNNING" will unfreeze the tasks in
      the cgroup.  Reading will return the current state.
      
      * 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 is the basic mechanism which should do the right thing for user space
      task in a simple scenario.
      
      It's important to note that freezing can be incomplete.  In that case we
      return EBUSY.  This means that some tasks in the cgroup are busy doing
      something that prevents us from completely freezing the cgroup at this
      time.  After EBUSY, the cgroup will remain partially frozen -- reflected
      by freezer.state reporting "FREEZING" when read.  The state will remain
      "FREEZING" until one of these things happens:
      
      	1) Userspace cancels the freezing operation by writing "RUNNING" to
      		the freezer.state file
      	2) Userspace retries the freezing operation by writing "FROZEN" to
      		the freezer.state file (writing "FREEZING" is not legal
      		and returns EIO)
      	3) The tasks that blocked the cgroup from entering the "FROZEN"
      		state disappear from the cgroup's set of tasks.
      
      [akpm@linux-foundation.org: coding-style fixes]
      [akpm@linux-foundation.org: export thaw_process]
      Signed-off-by: NCedric Le Goater <clg@fr.ibm.com>
      Signed-off-by: NMatt Helsley <matthltc@us.ibm.com>
      Acked-by: NSerge E. Hallyn <serue@us.ibm.com>
      Tested-by: NMatt Helsley <matthltc@us.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      dc52ddc0
  16. 15 10月, 2008 1 次提交
  17. 11 10月, 2008 4 次提交
  18. 06 10月, 2008 1 次提交
  19. 04 10月, 2008 1 次提交
  20. 06 9月, 2008 1 次提交
  21. 31 7月, 2008 1 次提交
    • J
      [MIPS] kgdb: add arch support for the kernel's kgdb core · 88547001
      Jason Wessel 提交于
      The new kgdb architecture specific handler registers and unregisters
      dynamically for exceptions depending on when you configure a kgdb I/O
      driver.
      
      Aside from initializing the exceptions earlier in the boot process,
      kgdb should have no impact on a device when it is compiled in so long
      as an I/O module is not configured for use.
      
      There have been quite a number of contributors during the existence of
      this patch (see arch/mips/kernel/kgdb.c).  Most recently Jason
      re-wrote the mips kgdb logic to use the die notification handlers.
      Signed-off-by: NJason Wessel <jason.wessel@windriver.com>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      88547001