Linux Container Development
 help / color / mirror / Atom feed
From: Oren Laadan <orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
To: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
Cc: containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org
Subject: Re: [PATCH 0/9] powerpc checkpoint/restart kernel support
Date: Wed, 16 Sep 2009 11:11:04 -0400	[thread overview]
Message-ID: <4AB10008.8040401@librato.com> (raw)
In-Reply-To: <1253091418-14807-1-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>

Thanks Nathan,

I'll apply the general fixes right away.

I'm about to push ckpt-v18-rc1 today. Would you like that to include
the remaining patches as well ?

Oren.


Nathan Lynch wrote:
> Patches 1-3 fix general issues and can be applied immediately.
> 
> Patches 4-8 implement the checkpoint and restart syscalls and
> architecture callbacks.
> 
> Patch 9 implements the clone_with_pids syscall, but I think the shape
> of that interface is yet to be finalized, so I guess it's FYI for now.
> 
> Simple single task checkpoint and restart work, as does
> clone_with_pids, apparently.  Multiple task restart fails; the
> coordinator task appears to be receiving a signal during
> wait_all_tasks_finish() -> wait_for_completion_interruptible() for
> some reason I am still trying to tracking down.
> 
> Nathan Lynch (9):
>   checkpoint: fix integer-pointer conversion warnings
>   fix trivial build breaks in compat code
>   futex.h: fix compat builds
>   powerpc: reserve checkpoint arch identifiers
>   powerpc: provide APIs for validating and updating DABR
>   powerpc: checkpoint/restart implementation
>   powerpc: wire up checkpoint and restart syscalls
>   powerpc: enable checkpoint support in Kconfig
>   powerpc: clone_with_pids implementation
> 
>  arch/powerpc/Kconfig                      |    3 +
>  arch/powerpc/include/asm/Kbuild           |    1 +
>  arch/powerpc/include/asm/checkpoint_hdr.h |   22 ++
>  arch/powerpc/include/asm/ptrace.h         |    7 +
>  arch/powerpc/include/asm/syscalls.h       |    4 +
>  arch/powerpc/include/asm/systbl.h         |    3 +
>  arch/powerpc/include/asm/unistd.h         |    5 +-
>  arch/powerpc/kernel/entry_32.S            |    8 +
>  arch/powerpc/kernel/entry_64.S            |    5 +
>  arch/powerpc/kernel/process.c             |   18 +
>  arch/powerpc/kernel/ptrace.c              |   88 ++++--
>  arch/powerpc/mm/Makefile                  |    1 +
>  arch/powerpc/mm/checkpoint.c              |  531 +++++++++++++++++++++++++++++
>  checkpoint/process.c                      |   14 +-
>  include/linux/checkpoint_hdr.h            |    2 +
>  include/linux/futex.h                     |    4 +
>  16 files changed, 679 insertions(+), 37 deletions(-)
>  create mode 100644 arch/powerpc/include/asm/checkpoint_hdr.h
>  create mode 100644 arch/powerpc/mm/checkpoint.c
> 

  parent reply	other threads:[~2009-09-16 15:11 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-16  8:56 [PATCH 0/9] powerpc checkpoint/restart kernel support Nathan Lynch
     [not found] ` <1253091418-14807-1-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
2009-09-16  8:56   ` [PATCH 1/9] checkpoint: fix integer-pointer conversion warnings Nathan Lynch
     [not found]     ` <1253091418-14807-2-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
2009-09-16 14:21       ` Serge E. Hallyn
     [not found]         ` <20090916142137.GA13476-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-09-16 15:08           ` Oren Laadan
     [not found]             ` <4AB0FF6E.6010505-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
2009-09-16 17:03               ` Serge E. Hallyn
2009-09-16  8:56   ` [PATCH 2/9] fix trivial build breaks in compat code Nathan Lynch
2009-09-16  8:56   ` [PATCH 3/9] futex.h: fix compat builds Nathan Lynch
     [not found]     ` <1253091418-14807-4-git-send-email-ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
2009-09-16 15:36       ` Oren Laadan
     [not found]         ` <4AB105F0.4040105-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
2009-09-16 17:46           ` Nathan Lynch
2009-09-16  8:56   ` [PATCH 4/9] powerpc: reserve checkpoint arch identifiers Nathan Lynch
2009-09-16  8:56   ` [PATCH 5/9] powerpc: provide APIs for validating and updating DABR Nathan Lynch
2009-09-16  8:56   ` [PATCH 6/9] powerpc: checkpoint/restart implementation Nathan Lynch
2009-09-16  8:56   ` [PATCH 7/9] powerpc: wire up checkpoint and restart syscalls Nathan Lynch
2009-09-16  8:56   ` [PATCH 8/9] powerpc: enable checkpoint support in Kconfig Nathan Lynch
2009-09-16  8:56   ` [PATCH 9/9] powerpc: clone_with_pids implementation Nathan Lynch
2009-09-16 15:11   ` Oren Laadan [this message]
     [not found]     ` <4AB10008.8040401-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
2009-09-16 17:49       ` [PATCH 0/9] powerpc checkpoint/restart kernel support Nathan Lynch

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4AB10008.8040401@librato.com \
    --to=orenl-rdfvbdnroixbdgjk7y7tuq@public.gmane.org \
    --cc=containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org \
    --cc=ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox