Linux Container Development
 help / color / mirror / Atom feed
From: Oren Laadan <orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
To: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Cc: containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org
Subject: Re: [PATCH 1/2] Fix net buffer logic
Date: Tue, 27 Jul 2010 15:47:28 -0400	[thread overview]
Message-ID: <4C4F37D0.8030301@cs.columbia.edu> (raw)
In-Reply-To: <1280246238-26637-2-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>



Dan Smith wrote:
> The previous change to the buffer save/restore logic caused us to
> incorrectly attempt to restore buffers on a socket in a few instances
> where flags may not be restored yet or we are in a temporarily altered
> state.
> 
> So, keep the same logic, but save a flag to indicate whether buffers were
> checkpointed to avoid the ambiguity at restore time.
> 
> Also, move the UNIX buffer restore point to the main function to avoid
> potentially ignoring the flag on a socket we assume wouldn't have saved
> buffers.
> 
> Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>

Looks good.

So now that ckpt_sock_need_buffers() is used only inside
net/checkpoint.c and only in one place, let's make it static
(inline) there, or even code in-place ?

Otherwise - Ack.

Oren.

> ---
>  include/linux/checkpoint_hdr.h |    2 ++
>  net/checkpoint.c               |    4 +++-
>  net/ipv4/checkpoint.c          |    2 +-
>  net/unix/checkpoint.c          |    9 ++++++---
>  4 files changed, 12 insertions(+), 5 deletions(-)
> 
> diff --git a/include/linux/checkpoint_hdr.h b/include/linux/checkpoint_hdr.h
> index 9e8d518..f4f9577 100644
> --- a/include/linux/checkpoint_hdr.h
> +++ b/include/linux/checkpoint_hdr.h
> @@ -596,6 +596,8 @@ struct ckpt_hdr_file_eventfd {
>  struct ckpt_hdr_socket {
>  	struct ckpt_hdr h;
>  
> +	__u8 has_buffers;
> +
>  	struct { /* struct socket */
>  		__u64 flags;
>  		__u8 state;
> diff --git a/net/checkpoint.c b/net/checkpoint.c
> index 0d90af2..de8e454 100644
> --- a/net/checkpoint.c
> +++ b/net/checkpoint.c
> @@ -761,6 +761,8 @@ static int __do_sock_checkpoint(struct ckpt_ctx *ctx, struct sock *sk)
>  	if (!h)
>  		return -ENOMEM;
>  
> +	h->has_buffers = ckpt_sock_need_buffers(sk);
> +
>  	/* part I: common to all sockets */
>  	ret = sock_cptrst(ctx, sk, h, CKPT_CPT);
>  	if (ret < 0)
> @@ -776,7 +778,7 @@ static int __do_sock_checkpoint(struct ckpt_ctx *ctx, struct sock *sk)
>  		goto out;
>  
>  	/* part III: socket buffers */
> -	if (ckpt_sock_need_buffers(sk))
> +	if (h->has_buffers)
>  		ret = sock_defer_write_buffers(ctx, sk);
>   out:
>  	ckpt_hdr_put(ctx, h);
> diff --git a/net/ipv4/checkpoint.c b/net/ipv4/checkpoint.c
> index eb02175..ec42e57 100644
> --- a/net/ipv4/checkpoint.c
> +++ b/net/ipv4/checkpoint.c
> @@ -539,7 +539,7 @@ int inet_restore(struct ckpt_ctx *ctx,
>  		}
>  	}
>  
> -	if (ckpt_sock_need_buffers(sock->sk))
> +	if (h->has_buffers)
>  		ret = inet_defer_restore_buffers(ctx, sock->sk);
>   out:
>  	ckpt_hdr_put(ctx, in);
> diff --git a/net/unix/checkpoint.c b/net/unix/checkpoint.c
> index 1fa3d7e..47d38e2 100644
> --- a/net/unix/checkpoint.c
> +++ b/net/unix/checkpoint.c
> @@ -443,9 +443,6 @@ static int unix_restore_connected(struct ckpt_ctx *ctx,
>  		ckpt_debug("unix_defer_join: %i\n", ret);
>  	}
>  
> -	if (ckpt_sock_need_buffers(sock->sk) && !ret)
> -		ret = unix_defer_restore_buffers(ctx, un->this);
> -
>  	return ret;
>  }
>  
> @@ -639,6 +636,12 @@ int unix_restore(struct ckpt_ctx *ctx, struct socket *sock,
>  	else
>  		ckpt_err(ctx, ret, "bad af_unix state %i\n", h->sock.state);
>  
> +	if (ret < 0)
> +		goto out;
> +
> +	if (h->has_buffers)
> +		ret = unix_defer_restore_buffers(ctx, un->this);
> +
>   out:
>  	ckpt_hdr_put(ctx, un);
>  	kfree(cwd);

  parent reply	other threads:[~2010-07-27 19:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-27 15:57 AF_UNIX fixes Dan Smith
     [not found] ` <1280246238-26637-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-07-27 15:57   ` [PATCH 1/2] Fix net buffer logic Dan Smith
     [not found]     ` <1280246238-26637-2-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-07-27 19:47       ` Oren Laadan [this message]
     [not found]         ` <4C4F37D0.8030301-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2010-07-27 19:56           ` Dan Smith
2010-07-27 15:57   ` [PATCH 2/2] Fix restoring unlinked UNIX sockets Dan Smith

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=4C4F37D0.8030301@cs.columbia.edu \
    --to=orenl-eqauephvms7envbuuze7ea@public.gmane.org \
    --cc=containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org \
    --cc=danms-r/Jw6+rmf7HQT0dZR+AlfA@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