netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [net] skbuff: Fix skb checksum flag on skb pull
@ 2015-09-28  9:46 Andrew Vagin
  2015-09-28 23:51 ` Pravin Shelar
  2015-09-29  0:27 ` Pravin Shelar
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Vagin @ 2015-09-28  9:46 UTC (permalink / raw)
  To: Pravin B Shelar; +Cc: netdev

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))

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-09-29  7:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).