Linux Container Development
 help / color / mirror / Atom feed
 messages from 2009-05-21 11:56:56 to 2009-05-27 17:33:04 UTC [more...]

[RFC v16][PATCH 01/43] c/r: extend arch_setup_additional_pages()
 2009-05-27 17:33 UTC  (38+ messages)
  ` [RFC v16][PATCH 02/43] c/r: make file_pos_read/write() public
  ` [RFC v16][PATCH 03/43] c/r: create syscalls: sys_checkpoint, sys_restart
  ` [RFC v16][PATCH 04/43] c/r: documentation
  ` [RFC v16][PATCH 05/43] c/r: basic infrastructure for checkpoint/restart
  ` [RFC v16][PATCH 06/43] c/r: x86_32 support "
  ` [RFC v16][PATCH 07/43] c/r: infrastructure for shared objects
  ` [RFC v16][PATCH 08/43] c/r: introduce '->checkpoint()' method in 'struct file_operations'
  ` [RFC v16][PATCH 09/43] c/r: dump open file descriptors
  ` [RFC v16][PATCH 10/43] c/r: restore "
  ` [RFC v16][PATCH 11/43] c/r: add generic '->checkpoint' f_op to ext fses
  ` [RFC v16][PATCH 12/43] c/r: add generic '->checkpoint()' f_op to simple devices
  ` [RFC v16][PATCH 13/43] c/r: introduce method '->checkpoint()' in struct vm_operations_struct
  ` [RFC v16][PATCH 14/43] c/r: dump memory address space (private memory)
  ` [RFC v16][PATCH 15/43] c/r: restore "
  ` [RFC v16][PATCH 16/43] c/r: export shmem_getpage() to support shared memory
  ` [RFC v16][PATCH 17/43] c/r: dump anonymous- and file-mapped- "
  ` [RFC v16][PATCH 18/43] c/r: restore "
  ` [RFC v16][PATCH 19/43] c/r: external checkpoint of a task other than ourself
  ` [RFC v16][PATCH 20/43] c/r: export functionality used in next patch for restart-blocks
  ` [RFC v16][PATCH 21/43] c/r: restart-blocks
  ` [RFC v16][PATCH 22/43] c/r: checkpoint multiple processes
  ` [RFC v16][PATCH 23/43] c/r: restart "
  ` [RFC v16][PATCH 24/43] c/r: detect resource leaks for whole-container checkpoint
  ` [RFC v16][PATCH 25/43] tee: don't return 0 when another task drains/fills a pipe
  ` [RFC v16][PATCH 26/43] splice: added support for pipe-to-pipe splice()
  ` [RFC v16][PATCH 27/43] c/r: support for open pipes
  ` [RFC v16][PATCH 28/43] c/r: make ckpt_may_checkpoint_task() check each namespace individually
  ` [RFC v16][PATCH 29/43] c/r: support for UTS namespace
  ` [RFC v16][PATCH 30/43] c/r: stub implementation for IPC namespace
  ` [RFC v16][PATCH 31/43] deferqueue: generic queue to defer work
  ` [RFC v16][PATCH 32/43] c/r (ipc): allow allocation of a desired ipc identifier
  ` [RFC v16][PATCH 33/43] c/r (ipc): helpers to save and restore kern_ipc_perm structures
  ` [RFC v16][PATCH 34/43] c/r: save and restore ipc namespace basics
  ` [RFC v16][PATCH 35/43] c/r (ipc): export interface from ipc/shm.c to delete ipc shm
  ` [RFC v16][PATCH 36/43] c/r: support share-memory sysv-ipc
  ` [RFC v16][PATCH 37/43] c/r (ipc): make 'struct msg_msgseg' visible in ipc/util.h
  ` [RFC v16][PATCH 38/43] c/r: support message-queues sysv-ipc

[PATCH] io-controller: Add io group reference handling for request
 2009-05-27 17:32 UTC  (6+ messages)

[RFC v16][PATCH 00/43] Kernel based checkpoint/restart
 2009-05-27 17:32 UTC 

[PATCH 1/7] [PATCH] Factor out code to allocate pidmap page
 2009-05-27 17:27 UTC  (9+ messages)
  ` [PATCH 2/7] [PATCH] Have alloc_pidmap() return actual error code
  ` [PATCH 3/7] [PATCH] Add target_pid parameter to alloc_pidmap()
  ` [PATCH 4/7] [PATCH] Add target_pids parameter to alloc_pid()
  ` [PATCH 5/7] [PATCH] Add target_pids parameter to copy_process()
  ` [PATCH 6/7] [PATCH] Define do_fork_with_pids()
  ` [PATCH 7/7] [PATCH] Define clone_with_pids syscall

[PATCH 1/1] cr: safely restore a task's securebits
 2009-05-27 16:31 UTC 

[PATCH 01/38] cred: #include init.h in cred.h
 2009-05-27 16:28 UTC  (60+ messages)
  ` [PATCH 02/38] utsns: extract create_uts_ns()
  ` [PATCH 03/38] ipcns 1/4: remove useless get/put while CLONE_NEWIPC
  ` [PATCH 04/38] ipcns 2/4: extract create_ipc_ns()
  ` [PATCH 05/38] ipcns 3/4: make free_ipc_ns() static
  ` [PATCH 06/38] ipcns 4/2: move free_ipcs() proto
  ` [PATCH 07/38] pidns 1/2: make create_pid_namespace() accept parent pidns
  ` [PATCH 08/38] pidns 2/2: rewrite copy_pid_ns()
  ` [PATCH 09/38] netns 1/2: don't get/put old netns on CLONE_NEWNET
  ` [PATCH 10/38] netns 2/2: extract net_create()
  ` [PATCH 11/38] nsproxy: extract create_nsproxy()
  ` [PATCH 12/38] i386: ifdef out struct thread_struct::fs
  ` [PATCH 13/38] x86_64: ifdef out struct thread_struct::ip
  ` [PATCH 14/38] Remove struct mm_struct::exe_file et al
  ` [PATCH 15/38] dcache: extract and use d_unlinked()
  ` [PATCH 16/38] x86: ptrace debugreg checks rewrite
  ` [PATCH 17/38] groups: move code to kernel/groups.c
  ` [PATCH 18/38] C/R: core stuff
  ` [PATCH 19/38] C/R: multiple tasks
  ` [PATCH 20/38] C/R: i386 support
  ` [PATCH 21/38] C/R: i386 debug registers
  ` [PATCH 22/38] C/R: i386 xstate
  ` [PATCH 23/38] C/R: x86_64 support
  ` [PATCH 24/38] C/R: x86_64 debug registers
  ` [PATCH 25/38] C/R: x86_64 xstate
  ` [PATCH 26/38] C/R: nsproxy
  ` [PATCH 27/38] C/R: checkpoint/restore struct uts_namespace
  ` [PATCH 28/38] C/R: formally checkpoint/restore struct ipc_namespace
  ` [PATCH 29/38] C/R: formally checkpoint/restore struct mnt_namespace
  ` [PATCH 30/38] C/R: checkpoint/restore struct pid_namespace
  ` [PATCH 31/38] C/R: formally checkpoint/restore struct net_namespace
  ` [PATCH 32/38] C/R: checkpoint/restore struct cred
  ` [PATCH 33/38] C/R: checkpoint/restore aux groups (structy group_info)
  ` [PATCH 34/38] C/R: checkpoint/restore struct user
  ` [PATCH 35/38] C/R: checkpoint/restore struct user_namespace
  ` [PATCH 36/38] C/R: checkpoint/restore struct pid
  ` [PATCH 37/38] C/R: checkpoint/restore opened files
  ` [PATCH 38/38] C/R: checkpoint/restart struct sighand_struct

[PATCH 0/8] a start to credentials c/r
 2009-05-27 16:03 UTC  (13+ messages)
` [PATCH 1/8] cr: break out new_user_ns()
` [PATCH 2/8] cr: split core function out of some set*{u,g}id functions
` [PATCH 3/8] cr: capabilities: define checkpoint and restore fns
` [PATCH 4/8] groups: move code to kernel/groups.c
` [PATCH 5/8] groups: allow compilation on s390x
  ` [PATCH 6/8] cr: checkpoint and restore task credentials
` [PATCH 7/8] cr: restore file->f_cred
` [PATCH 8/8] user namespaces: debug refcounts

[PATCH] cgroups: handle failure of cgroup_populate_dir() at mount/remount
 2009-05-27  6:16 UTC  (14+ messages)

Hola, friend
 2009-05-27  2:34 UTC 

[PATCH 14/38] Remove struct mm_struct::exe_file et al
 2009-05-26 23:24 UTC 

[PATCH 01/20] io-controller: Documentation
 2009-05-26 22:42 UTC  (20+ messages)
  ` [PATCH 02/20] io-controller: Common flat fair queuing code in elevaotor layer
  ` [PATCH 03/20] io-controller: Charge for time slice based on average disk rate
  ` [PATCH 04/20] io-controller: Modify cfq to make use of flat elevator fair queuing
  ` [PATCH 05/20] io-controller: Common hierarchical fair queuing code in elevaotor layer
  ` [PATCH 06/20] io-controller: cfq changes to use "
  ` [PATCH 07/20] io-controller: Export disk time used and nr sectors dipatched through cgroups
  ` [PATCH 08/20] io-controller: idle for sometime on sync queue before expiring it
  ` [PATCH 09/20] io-controller: Separate out queue and data
  ` [PATCH 10/20] io-conroller: Prepare elevator layer for single queue schedulers
  ` [PATCH 11/20] io-controller: noop changes for hierarchical fair queuing
  ` [PATCH 12/20] io-controller: deadline "
  ` [PATCH 13/20] io-controller: anticipatory "
  ` [PATCH 14/20] blkio_cgroup patches from Ryo to track async bios
  ` [PATCH 15/20] io-controller: map async requests to appropriate cgroup
  ` [PATCH 16/20] io-controller: IO group refcounting support
  ` [PATCH 17/20] io-controller: Per cgroup request descriptor support
  ` [PATCH 18/20] io-controller: Support per cgroup per device weights and io class
  ` [PATCH 19/20] io-controller: Debug hierarchical IO scheduling
  ` [PATCH 20/20] io-controller: experimental debug patch for async queue wait before expiry

[RFC] IO scheduler based IO controller V3
 2009-05-26 22:41 UTC 

[PATCH 1/1] cr: nsproxy: fix refcounting
 2009-05-26 22:03 UTC 

nsproxy c/r bug?
 2009-05-26 18:37 UTC  (2+ messages)

[C/R Test][PATCH 1/4] Add -P <pid-file> option to ns_exec
 2009-05-26 13:47 UTC 

[PATCH 14/38] Remove struct mm_struct::exe_file et al
 2009-05-26 11:36 UTC 

Donor offers mower driver a csooter
 2009-05-24 16:09 UTC 

Account Re-Activation,
 2009-05-24 12:00 UTC  (2+ messages)

[PATCH 02/18] io-controller: Common flat fair queuing code in elevaotor layer
 2009-05-23 20:04 UTC  (6+ messages)
    ` [PATCH 04/18] io-controller: Modify cfq to make use of flat elevator fair queuing

No limitation in physical memory in cgroups
 2009-05-22  9:25 UTC  (11+ messages)

How Too Talk Dirty To My Boyfriend - How Do I Do It The Right Way?
 2009-05-22  9:12 UTC 

[PATCH 2/2] ipcns: move free_ipcs() proto
 2009-05-22  8:46 UTC  (2+ messages)

[PATCH 1/2] ipcns: make free_ipc_ns() static
 2009-05-22  8:45 UTC  (2+ messages)

css_id numbering
 2009-05-22  5:50 UTC  (5+ messages)

LINDAVE VISION
 2009-05-22  2:52 UTC 

Make Your Woman Orgasm With Ease - Great Techniques You Can Impleemnt Easily
 2009-05-22  1:30 UTC 

[PATCH 3/4] Add test case ptree1 - process tree using fileio
 2009-05-21 17:28 UTC  (3+ messages)

[PATCH 4/4] Add test case: pthread1
 2009-05-21 17:26 UTC 

[PATCH 2/4] Define some common helper functions
 2009-05-21 17:04 UTC 

[PATCH 1/4] Add -P <pid-file> option to ns_exec
 2009-05-21 16:35 UTC 

[PATCH 0/6] cr: credentials
 2009-05-21 14:14 UTC  (8+ messages)
` [PATCH 4/6] cr: checkpoint and restore task credentials


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox