All of lore.kernel.org
 help / color / mirror / Atom feed
From: Oren Laadan <orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
To: Sukadev Bhattiprolu
	<sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Cc: Containers
	<containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Subject: Re: [PATCH 1/2] Fix app_checkpoint() return code
Date: Thu, 01 Apr 2010 00:59:45 -0400	[thread overview]
Message-ID: <4BB42841.5010807@cs.columbia.edu> (raw)
In-Reply-To: <20100331065443.GA21065-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>


Both patches applies in user-cr:ckpt-v20-dev.

Oren.

Sukadev Bhattiprolu wrote:
> From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> Date: Tue, 30 Mar 2010 18:59:10 -0700
> Subject: [PATCH 1/2] Fix app_checkpoint() return code
> 
> Have app_checkpoint() return the return value from the system call
> so callers find some useful information. Have main() can convert the
> return value into a suitable exit status.
> 
> Signed-off-by: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> ---
>  checkpoint-main.c |    4 +++-
>  checkpoint.c      |    2 +-
>  2 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/checkpoint-main.c b/checkpoint-main.c
> index f6faa32..bac65cc 100644
> --- a/checkpoint-main.c
> +++ b/checkpoint-main.c
> @@ -145,6 +145,7 @@ static void parse_args(struct app_checkpoint_args *args, int argc, char *argv[])
>  
>  int main(int argc, char *argv[])
>  {
> +	int ret;
>  	struct app_checkpoint_args args;
>  	unsigned long flags = 0;
>  	pid_t pid;
> @@ -167,5 +168,6 @@ int main(int argc, char *argv[])
>  	if (!args.container)
>  		flags |= CHECKPOINT_SUBTREE;
>  
> -	return app_checkpoint(pid, flags, &args);
> +	ret = app_checkpoint(pid, flags, &args);
> +	return (ret > 0) ? 0 : 1;
>  }
> diff --git a/checkpoint.c b/checkpoint.c
> index e3a1ce8..e0290c9 100644
> --- a/checkpoint.c
> +++ b/checkpoint.c
> @@ -55,5 +55,5 @@ int app_checkpoint(int pid, unsigned long flags,
>  		ckpt_err("checkpoint id %d\n", ret);
>  	}
>  
> -	return (ret > 0 ? 0 : 1);
> +	return ret;
>  }

      parent reply	other threads:[~2010-04-01  4:59 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-31  6:54 [PATCH 1/2] Fix app_checkpoint() return code Sukadev Bhattiprolu
     [not found] ` <20100331065443.GA21065-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-03-31  6:56   ` [PATCH 2/2] Add keep_frozen field to struct app_restart_args Sukadev Bhattiprolu
2010-04-01  4:59   ` Oren Laadan [this message]

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=4BB42841.5010807@cs.columbia.edu \
    --to=orenl-eqauephvms7envbuuze7ea@public.gmane.org \
    --cc=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.