Linux Container Development
 help / color / mirror / Atom feed
From: "Serge E. Hallyn" <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
To: Oren Laadan <orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
	Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>,
	Dave Hansen
	<dave-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Subject: Re: [RFC v14-rc][PATCH 22/23] c/r: Add CR_COPY() macro (v4)
Date: Tue, 24 Mar 2009 10:11:39 -0500	[thread overview]
Message-ID: <20090324151139.GA17589@us.ibm.com> (raw)
In-Reply-To: <1237574868-3371-23-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>

Quoting Oren Laadan (orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org):
> From: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> 
> As suggested by Dave[1], this provides us a way to make the copy-in and
> copy-out processes symmetric.  CR_COPY_ARRAY() provides us a way to do
> the same thing but for arrays.  It's not critical, but it helps us unify
> the checkpoint and restart paths for some things.
> 
> Changelog:
>     Mar 04:
>             . Removed semicolons
>             . Added build-time check for __must_be_array in CR_COPY_ARRAY
>     Feb 27:
>             . Changed CR_COPY() to use assignment, eliminating the need
>               for the CR_COPY_BIT() macro
>             . Add CR_COPY_ARRAY() macro to help copying register arrays,
>               etc
>             . Move the macro definitions inside the CR #ifdef
>     Feb 25:
>             . Changed WARN_ON() to BUILD_BUG_ON()
> 
> Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Oren Laadan <orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
> 
> 1: https://lists.linux-foundation.org/pipermail/containers/2009-February/015821.html (all the way at the bottom)
> ---
>  include/linux/checkpoint.h |   26 ++++++++++++++++++++++++++
>  1 files changed, 26 insertions(+), 0 deletions(-)
> 
> diff --git a/include/linux/checkpoint.h b/include/linux/checkpoint.h
> index 69d14c4..2e99c74 100644
> --- a/include/linux/checkpoint.h
> +++ b/include/linux/checkpoint.h
> @@ -117,6 +117,32 @@ extern int cr_read_mm(struct cr_ctx *ctx);
>  extern int cr_read_fd_table(struct cr_ctx *ctx);
>  extern int cr_read_file(struct cr_ctx *ctx, int objref);
> 
> +/* useful macros to copy fields and buffers to/from cr_hdr_xxx structures */
> +#define CR_CPT 1
> +#define CR_RST 2
> +
> +#define CR_COPY(op, a, b)				        \
> +	do {							\
> +		if (op == CR_CPT)				\
> +			a = b;					\
> +		else						\
> +			b = a;					\
> +	} while (0)
> +

Speaking from experience with similar sets of macros in capability.h,
I'd like to suggest renaming a and b.  Something like:

#define CR_COPY(op, SAVED, LIVE)			        \
	do {							\
		if (op == CR_CPT)				\
			SAVED = LIVE;				\
		else						\
			LIVE = SAVED;				\
	} while (0)

That way the next time I need to use CR_COPY, I don't have to
agonize over which argument goes where.

> +/*
> + * Copy @count items from @b to @a if op is CR_CPT (otherwise,
> + * copy in the reverse direction)
> + */
> +#define CR_COPY_ARRAY(op, a, b, count)				\
> +	do {							\
> +		BUILD_BUG_ON(sizeof(*a) != sizeof(*b));		\
> +		if (op == CR_CPT)				\
> +			memcpy(a, b, count * sizeof(*a));	\
> +		else						\
> +			memcpy(b, a, count * sizeof(*a));	\
> +	} while (__must_be_array(a) && __must_be_array(b) && 0)
> +
> +
>  #define cr_debug(fmt, args...)  \
>  	pr_debug("[%d:c/r:%s] " fmt, task_pid_vnr(current), __func__, ## args)
> 
> -- 
> 1.5.4.3

  parent reply	other threads:[~2009-03-24 15:11 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-20 18:47 [RFC v14-rc1][PATCH 00/23] Kernel based checkpoint/restart Oren Laadan
     [not found] ` <1237574868-3371-1-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 18:47   ` [RFC v14-rc][PATCH 01/23] Create syscalls: sys_checkpoint, sys_restart Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 02/23] Checkpoint/restart: initial documentation Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 03/23] Make file_pos_read/write() public Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 04/23] General infrastructure for checkpoint restart Oren Laadan
     [not found]     ` <1237574868-3371-5-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 21:24       ` Serge E. Hallyn
     [not found]         ` <20090320212400.GA15946-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-03-20 21:34           ` Oren Laadan
     [not found]             ` <49C40BDC.7050304-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 21:42               ` Serge E. Hallyn
2009-03-20 18:47   ` [RFC v14-rc][PATCH 05/23] x86 support for checkpoint/restart Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 06/23] Dump memory address space Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 07/23] Restore " Oren Laadan
     [not found]     ` <1237574868-3371-8-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 23:54       ` Serge E. Hallyn
     [not found]         ` <20090320235433.GA19565-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-03-22 21:51           ` Oren Laadan
     [not found]             ` <49C6B2F6.6080304-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-23 15:01               ` Serge E. Hallyn
2009-03-20 18:47   ` [RFC v14-rc][PATCH 08/23] Infrastructure for shared objects Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 09/23] Dump open file descriptors Oren Laadan
     [not found]     ` <1237574868-3371-10-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 20:09       ` Dave Hansen
2009-03-20 20:55         ` Oren Laadan
     [not found]           ` <49C402BE.4010308-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 21:14             ` Dave Hansen
2009-03-24 15:24               ` Serge E. Hallyn
     [not found]                 ` <20090324152442.GA18066-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-03-24 15:37                   ` Oren Laadan
     [not found]                     ` <49C8FE39.6040605-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-24 15:44                       ` Serge E. Hallyn
2009-03-20 18:47   ` [RFC v14-rc][PATCH 10/23] Restore " Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 11/23] External checkpoint of a task other than ourself Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 12/23] Checkpoint multiple processes Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 13/23] Restart " Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 14/23] A new file type (CR_FD_OBJREF) for a file descriptor already setup Oren Laadan
     [not found]     ` <1237574868-3371-15-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 20:11       ` Dave Hansen
2009-03-20 21:02         ` Oren Laadan
2009-03-20 20:14       ` Dave Hansen
2009-03-20 20:27       ` Dave Hansen
2009-03-20 21:01         ` Oren Laadan
     [not found]           ` <49C40447.3070604-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 21:14             ` Dave Hansen
2009-03-20 20:46       ` Dave Hansen
2009-03-20 18:47   ` [RFC v14-rc][PATCH 15/23] Checkpoint open pipes Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 16/23] Restore " Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 17/23] Record 'struct file' object instead of the file name for VMAs Oren Laadan
     [not found]     ` <1237574868-3371-18-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 20:57       ` Dave Hansen
2009-03-20 21:20         ` Oren Laadan
     [not found]           ` <49C40893.1060602-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 21:30             ` Dave Hansen
2009-03-20 22:02               ` Oren Laadan
     [not found]                 ` <49C41273.5000202-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 22:43                   ` Dave Hansen
2009-03-20 18:47   ` [RFC v14-rc][PATCH 18/23] Prepare to support shared memory Oren Laadan
     [not found]     ` <1237574868-3371-19-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 21:27       ` Dave Hansen
2009-03-27  2:31         ` Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 19/23] Dump anonymous- and file-mapped- " Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 20/23] Restore " Oren Laadan
     [not found]     ` <1237574868-3371-21-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-20 21:42       ` Dave Hansen
2009-03-20 18:47   ` [RFC v14-rc][PATCH 21/23] s390: Expose a constant for the number of words representing the CRs Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 22/23] c/r: Add CR_COPY() macro (v4) Oren Laadan
     [not found]     ` <1237574868-3371-23-git-send-email-orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2009-03-24 15:11       ` Serge E. Hallyn [this message]
     [not found]         ` <20090324151139.GA17589-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-03-27  2:19           ` Oren Laadan
2009-03-20 18:47   ` [RFC v14-rc][PATCH 23/23] s390: define s390-specific checkpoint-restart code (v7) Oren Laadan
2009-03-23 22:18   ` [RFC v14-rc1][PATCH 00/23] Kernel based checkpoint/restart Nathan Lynch
     [not found]     ` <20090323171818.4c238e9d-4v5LP+xe+1byhTdZtsIeww@public.gmane.org>
2009-03-23 23:35       ` Oren Laadan

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=20090324151139.GA17589@us.ibm.com \
    --to=serue-r/jw6+rmf7hqt0dzr+alfa@public.gmane.org \
    --cc=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org \
    --cc=dave-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org \
    --cc=orenl-eQaUEPhvms7ENvBUuze7eA@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