Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1367821

[PATCH net-next 1/6] net: skbuff: don't use union for napi_id and sender_cpu

From Jason Wang <jasowang@redhat.com>
Newsgroups linux.kernel
Subject [PATCH net-next 1/6] net: skbuff: don't use union for napi_id and sender_cpu
Date 2016-03-31 08:00 +0200
Message-ID <riDOa-iF-7@gated-at.bofh.it> (permalink)
References <riDOa-iF-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


We use a union for napi_id and send_cpu, this is ok for most of the
cases except when we want to support busy polling for tun which needs
napi_id to be stored and passed to socket during tun_net_xmit(). In
this case, napi_id was overridden with sender_cpu before tun_net_xmit()
was called if XPS was enabled. Fixing by not using union for napi_id
and sender_cpu.

Signed-off-by: Jason Wang <jasowang@redhat.com>
---
 include/linux/skbuff.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 15d0df9..8aee891 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -743,11 +743,11 @@ struct sk_buff {
 	__u32			hash;
 	__be16			vlan_proto;
 	__u16			vlan_tci;
-#if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
-	union {
-		unsigned int	napi_id;
-		unsigned int	sender_cpu;
-	};
+#if defined(CONFIG_NET_RX_BUSY_POLL)
+	unsigned int		napi_id;
+#endif
+#if defined(CONFIG_XPS)
+	unsigned int		sender_cpu;
 #endif
 	union {
 #ifdef CONFIG_NETWORK_SECMARK
-- 
2.5.0

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH net-next 1/6] net: skbuff: don't use union for napi_id and sender_cpu Jason Wang <jasowang@redhat.com> - 2016-03-31 08:00 +0200
  Re: [PATCH net-next 1/6] net: skbuff: don't use union for napi_id  and sender_cpu Eric Dumazet <eric.dumazet@gmail.com> - 2016-03-31 12:40 +0200
    Re: [PATCH net-next 1/6] net: skbuff: don't use union for napi_id  and sender_cpu David Miller <davem@davemloft.net> - 2016-03-31 22:10 +0200
      Re: [PATCH net-next 1/6] net: skbuff: don't use union for napi_id and  sender_cpu Jason Wang <jasowang@redhat.com> - 2016-04-01 04:50 +0200
    Re: [PATCH net-next 1/6] net: skbuff: don't use union for napi_id and  sender_cpu Jason Wang <jasowang@redhat.com> - 2016-04-01 04:20 +0200
      Re: [PATCH net-next 1/6] net: skbuff: don't use union for napi_id  and sender_cpu Eric Dumazet <eric.dumazet@gmail.com> - 2016-04-01 05:00 +0200
        Re: [PATCH net-next 1/6] net: skbuff: don't use union for napi_id and  sender_cpu Jason Wang <jasowang@redhat.com> - 2016-04-01 06:50 +0200
          Re: [PATCH net-next 1/6] net: skbuff: don't use union for napi_id  and sender_cpu Eric Dumazet <eric.dumazet@gmail.com> - 2016-04-01 15:10 +0200

csiph-web