netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next] tcp: Remove use of inet6_sk and add IPv6 checks to tracepoint
@ 2017-10-18 15:17 David Ahern
  2017-10-18 15:28 ` Eric Dumazet
  2017-10-20 12:05 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: David Ahern @ 2017-10-18 15:17 UTC (permalink / raw)
  To: netdev; +Cc: xiyou.wangcong, eric.dumazet, songliubraving, davem, David Ahern

386fd5da401d ("tcp: Check daddr_cache before use in tracepoint") was the
second version of the tracepoint fixup patch. This patch is the delta
between v2 and v3.  Specifically, remove the use of inet6_sk and check
sk_family as requested by Eric and add IS_ENABLED(CONFIG_IPV6) around
the use of sk_v6_rcv_saddr and sk_v6_daddr as done in sock_common (noted
by Cong).

Signed-off-by: David Ahern <dsahern@gmail.com>
---
Eric/Congi/Song: I did not keep your Acked/Reviewed/Tested-by since it is
a different patch. End result is the exact same as v3 patch sent yesterday.

 include/trace/events/tcp.h | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/include/trace/events/tcp.h b/include/trace/events/tcp.h
index f51c130f1e0f..c3220d914475 100644
--- a/include/trace/events/tcp.h
+++ b/include/trace/events/tcp.h
@@ -43,13 +43,15 @@ TRACE_EVENT(tcp_retransmit_skb,
 		p32 = (__be32 *) __entry->daddr;
 		*p32 =  inet->inet_daddr;
 
-		/* IPv6 socket ? */
-		if (inet6_sk(sk)) {
+#if IS_ENABLED(CONFIG_IPV6)
+		if (sk->sk_family == AF_INET6) {
 			pin6 = (struct in6_addr *)__entry->saddr_v6;
 			*pin6 = sk->sk_v6_rcv_saddr;
 			pin6 = (struct in6_addr *)__entry->daddr_v6;
 			*pin6 = sk->sk_v6_daddr;
-		} else {
+		} else
+#endif
+		{
 			pin6 = (struct in6_addr *)__entry->saddr_v6;
 			ipv6_addr_set_v4mapped(inet->inet_saddr, pin6);
 			pin6 = (struct in6_addr *)__entry->daddr_v6;
-- 
2.1.4

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

* Re: [PATCH net-next] tcp: Remove use of inet6_sk and add IPv6 checks to tracepoint
  2017-10-18 15:17 [PATCH net-next] tcp: Remove use of inet6_sk and add IPv6 checks to tracepoint David Ahern
@ 2017-10-18 15:28 ` Eric Dumazet
  2017-10-18 16:27   ` Song Liu
  2017-10-20 12:05 ` David Miller
  1 sibling, 1 reply; 4+ messages in thread
From: Eric Dumazet @ 2017-10-18 15:28 UTC (permalink / raw)
  To: David Ahern; +Cc: netdev, xiyou.wangcong, songliubraving, davem

On Wed, 2017-10-18 at 08:17 -0700, David Ahern wrote:
> 386fd5da401d ("tcp: Check daddr_cache before use in tracepoint") was the
> second version of the tracepoint fixup patch. This patch is the delta
> between v2 and v3.  Specifically, remove the use of inet6_sk and check
> sk_family as requested by Eric and add IS_ENABLED(CONFIG_IPV6) around
> the use of sk_v6_rcv_saddr and sk_v6_daddr as done in sock_common (noted
> by Cong).
> 
> Signed-off-by: David Ahern <dsahern@gmail.com>
> ---

Reviewed-by: Eric Dumazet <edumazet@google.com>

Thanks !

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

* Re: [PATCH net-next] tcp: Remove use of inet6_sk and add IPv6 checks to tracepoint
  2017-10-18 15:28 ` Eric Dumazet
@ 2017-10-18 16:27   ` Song Liu
  0 siblings, 0 replies; 4+ messages in thread
From: Song Liu @ 2017-10-18 16:27 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: David Ahern, netdev@vger.kernel.org, xiyou.wangcong@gmail.com,
	davem@davemloft.net


> On Oct 18, 2017, at 8:28 AM, Eric Dumazet <eric.dumazet@gmail.com> wrote:
> 
> On Wed, 2017-10-18 at 08:17 -0700, David Ahern wrote:
>> 386fd5da401d ("tcp: Check daddr_cache before use in tracepoint") was the
>> second version of the tracepoint fixup patch. This patch is the delta
>> between v2 and v3.  Specifically, remove the use of inet6_sk and check
>> sk_family as requested by Eric and add IS_ENABLED(CONFIG_IPV6) around
>> the use of sk_v6_rcv_saddr and sk_v6_daddr as done in sock_common (noted
>> by Cong).
>> 
>> Signed-off-by: David Ahern <dsahern@gmail.com>
>> ---
> 
> Reviewed-by: Eric Dumazet <edumazet@google.com>
> 
> Thanks !
> 

Tested-by: Song Liu <songliubraving@fb.com>

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

* Re: [PATCH net-next] tcp: Remove use of inet6_sk and add IPv6 checks to tracepoint
  2017-10-18 15:17 [PATCH net-next] tcp: Remove use of inet6_sk and add IPv6 checks to tracepoint David Ahern
  2017-10-18 15:28 ` Eric Dumazet
@ 2017-10-20 12:05 ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2017-10-20 12:05 UTC (permalink / raw)
  To: dsahern; +Cc: netdev, xiyou.wangcong, eric.dumazet, songliubraving

From: David Ahern <dsahern@gmail.com>
Date: Wed, 18 Oct 2017 08:17:29 -0700

> 386fd5da401d ("tcp: Check daddr_cache before use in tracepoint") was the
> second version of the tracepoint fixup patch. This patch is the delta
> between v2 and v3.  Specifically, remove the use of inet6_sk and check
> sk_family as requested by Eric and add IS_ENABLED(CONFIG_IPV6) around
> the use of sk_v6_rcv_saddr and sk_v6_daddr as done in sock_common (noted
> by Cong).
> 
> Signed-off-by: David Ahern <dsahern@gmail.com>

Applied, sorry for the mixup :)

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

end of thread, other threads:[~2017-10-20 12:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-18 15:17 [PATCH net-next] tcp: Remove use of inet6_sk and add IPv6 checks to tracepoint David Ahern
2017-10-18 15:28 ` Eric Dumazet
2017-10-18 16:27   ` Song Liu
2017-10-20 12:05 ` David Miller

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