All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrey Vagin <avagin@odin.com>
To: Pravin Shelar <pshelar@nicira.com>
Cc: netdev <netdev@vger.kernel.org>
Subject: Re: [net] skbuff: Fix skb checksum flag on skb pull
Date: Tue, 29 Sep 2015 10:30:44 +0300	[thread overview]
Message-ID: <20150929073043.GA29815@odin.com> (raw)
In-Reply-To: <CALnjE+o1==Z7NA2JzyfcKUuPGqjKU9rLsy20e7Gi8njo4-Ye-g@mail.gmail.com>

On Tue, Sep 29, 2015 at 03:27:03AM +0300, Pravin Shelar wrote:
> On Mon, Sep 28, 2015 at 2:46 AM, Andrew Vagin <avagin@odin.com> wrote:
> > Hi,
> >
> > With this patch, I can't connect two local tcp ipv6 sockets.
> >
> > [root@fc22-vm criu]# strace -e network python ipv6.py
> > socket(PF_INET6, SOCK_STREAM, IPPROTO_IP) = 3
> > bind(3, {sa_family=AF_INET6, sin6_port=htons(8976), inet_pton(AF_INET6, "::", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = 0
> > listen(3, 1)                            = 0
> > socket(PF_INET6, SOCK_STREAM, IPPROTO_IP) = 4
> > connect(4, {sa_family=AF_INET6, sin6_port=htons(8976), inet_pton(AF_INET6, "::1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = -1 ETIMEDOUT (Connection timed out)
> >
> > [root@fc22-vm criu]# cat ipv6.py
> > import socket
> >
> > srv = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
> > srv.bind(("::0", 8976))
> > srv.listen(1)
> > c = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
> > c.connect(("::1", 8976))
> >
> 
> Can you try following patch.
> https://patchwork.ozlabs.org/patch/523632/

It works for me. Thanks.

      reply	other threads:[~2015-09-29  7:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-28  9:46 [net] skbuff: Fix skb checksum flag on skb pull Andrew Vagin
2015-09-28 23:51 ` Pravin Shelar
2015-09-29  0:27 ` Pravin Shelar
2015-09-29  7:30   ` Andrey Vagin [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=20150929073043.GA29815@odin.com \
    --to=avagin@odin.com \
    --cc=netdev@vger.kernel.org \
    --cc=pshelar@nicira.com \
    /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.