All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
To: netdev@vger.kernel.org
Cc: Russell King <linux@armlinux.org.uk> (maintainer:ARM PORT),
	linux-arm-kernel@lists.infradead.org (moderated list:ARM PORT),
	Ralf Baechle <ralf@linux-mips.org> (supporter:MIPS),
	linux-mips@linux-mips.org (open list:MIPS),
	Benjamin Herrenschmidt <benh@kernel.crashing.org>
	(supporter:LINUX FOR POWERPC (32-BIT AND 64-BIT)),
	Paul Mackerras <paulus@samba.org> (supporter:LINUX FOR POWERPC
	(32-BIT AND 64-BIT)),
	Michael Ellerman <mpe@ellerman.id.au> (supporter:LINUX FOR
	POWERPC (32-BIT AND 64-BIT),commit_signer:2/5=40%),
	linuxppc-dev@lists.ozlabs.org (open list:LINUX FOR POWERPC
	(32-BIT AND 64-BIT)),
	"David S. Miller" <davem@davemloft.net> (maintainer:SPARC +
	UltraSPARC (sparc/sparc64),commit_signer:2/4=50%),
	sparclinux@vger.kernel.org (open list:SPARC + UltraSPARC
	(sparc/sp
Subject: [PATCH net-next 18/27] net/skbuff: add macros for VLAN_PRESENT bit
Date: Tue, 13 Dec 2016 01:12:38 +0100 (CET)	[thread overview]
Message-ID: <3cad1213a287755f5b6d698b45d839ca76d6d841.1481586602.git.mirq-linux@rere.qmqm.pl> (raw)
In-Reply-To: <cover.1481586602.git.mirq-linux@rere.qmqm.pl>

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
---
 include/linux/skbuff.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 332e767..4a85a1f 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -768,6 +768,12 @@ struct sk_buff {
 	__u32			priority;
 	int			skb_iif;
 	__u32			hash;
+#define PKT_VLAN_PRESENT_BIT	4	// CFI (12-th bit) in TCI
+#ifdef __BIG_ENDIAN
+#define PKT_VLAN_PRESENT_OFFSET()	offsetof(struct sk_buff, vlan_tci)
+#else
+#define PKT_VLAN_PRESENT_OFFSET()	(offsetof(struct sk_buff, vlan_tci) + 1)
+#endif
 	__be16			vlan_proto;
 	__u16			vlan_tci;
 #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
-- 
2.10.2

WARNING: multiple messages have this Message-ID (diff)
From: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
To: netdev@vger.kernel.org
Cc: Russell King <linux@armlinux.org.uk> (maintainer:ARM PORT),
	linux-arm-kernel@lists.infradead.org (moderated list:ARM PORT),
	Ralf Baechle <ralf@linux-mips.org> (supporter:MIPS),
	linux-mips@linux-mips.org (open list:MIPS),
	Benjamin Herrenschmidt <benh@kernel.crashing.org>
	(supporter:LINUX FOR POWERPC (32-BIT AND 64-BIT)),
	Paul Mackerras <paulus@samba.org> (supporter:LINUX FOR POWERPC
	(32-BIT AND 64-BIT)),
	Michael Ellerman <mpe@ellerman.id.au> (supporter:LINUX FOR
	POWERPC (32-BIT AND 64-BIT),commit_signer:2/5=40%),
	linuxppc-dev@lists.ozlabs.org (open list:LINUX FOR POWERPC
	(32-BIT AND 64-BIT)),
	"David S. Miller" <davem@davemloft.net> (maintainer:SPARC +
	UltraSPARC (sparc/sparc64),commit_signer:2/4=50%),
	sparclinux@vger.kernel.org (open list:SPARC + UltraSPARC
	(sparc/sparc64))
Subject: [PATCH net-next 18/27] net/skbuff: add macros for VLAN_PRESENT bit
Date: Tue, 13 Dec 2016 01:12:38 +0100 (CET)	[thread overview]
Message-ID: <3cad1213a287755f5b6d698b45d839ca76d6d841.1481586602.git.mirq-linux@rere.qmqm.pl> (raw)
In-Reply-To: <cover.1481586602.git.mirq-linux@rere.qmqm.pl>

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
---
 include/linux/skbuff.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 332e767..4a85a1f 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -768,6 +768,12 @@ struct sk_buff {
 	__u32			priority;
 	int			skb_iif;
 	__u32			hash;
+#define PKT_VLAN_PRESENT_BIT	4	// CFI (12-th bit) in TCI
+#ifdef __BIG_ENDIAN
+#define PKT_VLAN_PRESENT_OFFSET()	offsetof(struct sk_buff, vlan_tci)
+#else
+#define PKT_VLAN_PRESENT_OFFSET()	(offsetof(struct sk_buff, vlan_tci) + 1)
+#endif
 	__be16			vlan_proto;
 	__u16			vlan_tci;
 #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
-- 
2.10.2

WARNING: multiple messages have this Message-ID (diff)
From: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
To: netdev@vger.kernel.org
Cc: Russell King <linux@armlinux.org.uk>,
	"moderated list:ARM PORT" <linux-arm-kernel@lists.infradead.org>,
	Ralf Baechle <ralf@linux-mips.org>,
	"open list:MIPS" <linux-mips@linux-mips.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Paul Mackerras <paulus@samba.org>,
	Michael Ellerman <mpe@ellerman.id.au>,
	"open list:LINUX FOR POWERPC 32-BIT AND 64-BIT"
	<linuxppc-dev@lists.ozlabs.org>,
	"David S. Miller" <davem@davemloft.net>,
	"open list:SPARC + UltraSPARC sparc/sparc64"
	<sparclinux@vger.kernel.org>
Subject: [PATCH net-next 18/27] net/skbuff: add macros for VLAN_PRESENT bit
Date: Tue, 13 Dec 2016 01:12:38 +0100 (CET)	[thread overview]
Message-ID: <3cad1213a287755f5b6d698b45d839ca76d6d841.1481586602.git.mirq-linux@rere.qmqm.pl> (raw)
Message-ID: <20161213001238.E14nqrUrv914I9O76wi1Cg1Q-jjAGsk7pk_-eT2Bl4Q@z> (raw)
In-Reply-To: <cover.1481586602.git.mirq-linux@rere.qmqm.pl>

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
---
 include/linux/skbuff.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 332e767..4a85a1f 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -768,6 +768,12 @@ struct sk_buff {
 	__u32			priority;
 	int			skb_iif;
 	__u32			hash;
+#define PKT_VLAN_PRESENT_BIT	4	// CFI (12-th bit) in TCI
+#ifdef __BIG_ENDIAN
+#define PKT_VLAN_PRESENT_OFFSET()	offsetof(struct sk_buff, vlan_tci)
+#else
+#define PKT_VLAN_PRESENT_OFFSET()	(offsetof(struct sk_buff, vlan_tci) + 1)
+#endif
 	__be16			vlan_proto;
 	__u16			vlan_tci;
 #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
-- 
2.10.2

WARNING: multiple messages have this Message-ID (diff)
From: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH net-next 18/27] net/skbuff: add macros for VLAN_PRESENT bit
Date: Tue, 13 Dec 2016 00:12:38 +0000	[thread overview]
Message-ID: <3cad1213a287755f5b6d698b45d839ca76d6d841.1481586602.git.mirq-linux@rere.qmqm.pl> (raw)
In-Reply-To: <cover.1481586602.git.mirq-linux@rere.qmqm.pl>

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
---
 include/linux/skbuff.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 332e767..4a85a1f 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -768,6 +768,12 @@ struct sk_buff {
 	__u32			priority;
 	int			skb_iif;
 	__u32			hash;
+#define PKT_VLAN_PRESENT_BIT	4	// CFI (12-th bit) in TCI
+#ifdef __BIG_ENDIAN
+#define PKT_VLAN_PRESENT_OFFSET()	offsetof(struct sk_buff, vlan_tci)
+#else
+#define PKT_VLAN_PRESENT_OFFSET()	(offsetof(struct sk_buff, vlan_tci) + 1)
+#endif
 	__be16			vlan_proto;
 	__u16			vlan_tci;
 #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
-- 
2.10.2


WARNING: multiple messages have this Message-ID (diff)
From: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
To: netdev@vger.kernel.org
Cc: Russell King <linux@armlinux.org.uk> (maintainer:ARM PORT),
	linux-arm-kernel@lists.infradead.org (moderated list:ARM PORT),
	Ralf Baechle <ralf@linux-mips.org> (supporter:MIPS),
	linux-mips@linux-mips.org (open list:MIPS),
	Benjamin Herrenschmidt <benh@kernel.crashing.org>
	(supporter:LINUX FOR POWERPC (32-BIT AND 64-BIT)),
	Paul Mackerras <paulus@samba.org> (supporter:LINUX FOR POWERPC
	(32-BIT AND 64-BIT)),
	Michael Ellerman <mpe@ellerman.id.au> (supporter:LINUX FOR
	POWERPC (32-BIT AND 64-BIT), commit_signer:2/5=40%),
	linuxppc-dev@lists.ozlabs.org (open list:LINUX FOR POWERPC
	(32-BIT AND 64-BIT)),
	"David S. Miller" <davem@davemloft.net> (maintainer:SPARC +
	UltraSPARC (sparc/sparc64), commit_signer:2/4=50%),
	sparclinux@vger.kernel.org (open list:SPARC + UltraSPARC
	(sparc/sparc64))
Subject: [PATCH net-next 18/27] net/skbuff: add macros for VLAN_PRESENT bit
Date: Tue, 13 Dec 2016 01:12:38 +0100 (CET)	[thread overview]
Message-ID: <3cad1213a287755f5b6d698b45d839ca76d6d841.1481586602.git.mirq-linux@rere.qmqm.pl> (raw)
In-Reply-To: <cover.1481586602.git.mirq-linux@rere.qmqm.pl>

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
---
 include/linux/skbuff.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 332e767..4a85a1f 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -768,6 +768,12 @@ struct sk_buff {
 	__u32			priority;
 	int			skb_iif;
 	__u32			hash;
+#define PKT_VLAN_PRESENT_BIT	4	// CFI (12-th bit) in TCI
+#ifdef __BIG_ENDIAN
+#define PKT_VLAN_PRESENT_OFFSET()	offsetof(struct sk_buff, vlan_tci)
+#else
+#define PKT_VLAN_PRESENT_OFFSET()	(offsetof(struct sk_buff, vlan_tci) + 1)
+#endif
 	__be16			vlan_proto;
 	__u16			vlan_tci;
 #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
-- 
2.10.2

WARNING: multiple messages have this Message-ID (diff)
From: mirq-linux@rere.qmqm.pl (Michał Mirosław)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH net-next 18/27] net/skbuff: add macros for VLAN_PRESENT bit
Date: Tue, 13 Dec 2016 01:12:38 +0100 (CET)	[thread overview]
Message-ID: <3cad1213a287755f5b6d698b45d839ca76d6d841.1481586602.git.mirq-linux@rere.qmqm.pl> (raw)
In-Reply-To: <cover.1481586602.git.mirq-linux@rere.qmqm.pl>

Signed-off-by: Micha? Miros?aw <mirq-linux@rere.qmqm.pl>
---
 include/linux/skbuff.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 332e767..4a85a1f 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -768,6 +768,12 @@ struct sk_buff {
 	__u32			priority;
 	int			skb_iif;
 	__u32			hash;
+#define PKT_VLAN_PRESENT_BIT	4	// CFI (12-th bit) in TCI
+#ifdef __BIG_ENDIAN
+#define PKT_VLAN_PRESENT_OFFSET()	offsetof(struct sk_buff, vlan_tci)
+#else
+#define PKT_VLAN_PRESENT_OFFSET()	(offsetof(struct sk_buff, vlan_tci) + 1)
+#endif
 	__be16			vlan_proto;
 	__u16			vlan_tci;
 #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
-- 
2.10.2

  parent reply	other threads:[~2016-12-13  0:12 UTC|newest]

Thread overview: 114+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-03  9:22 [PATCH net-next] net: remove abuse of VLAN DEI/CFI bit Michał Mirosław
2016-12-03  9:22 ` [Bridge] " Michał Mirosław
2016-12-03 23:27 ` [ovs-dev] " Ben Pfaff
2016-12-03 23:27   ` [Bridge] " Ben Pfaff
2016-12-05 17:24   ` Michał Mirosław
2016-12-05 17:24     ` [Bridge] " Michał Mirosław
2016-12-05 18:55     ` Ben Pfaff
2016-12-05 18:55       ` [Bridge] " Ben Pfaff
     [not found]       ` <20161205185545.GB3129-LZ6Gd1LRuIk@public.gmane.org>
2016-12-05 22:52         ` Michał Mirosław
2016-12-05 22:52           ` [Bridge] [ovs-dev] " Michał Mirosław
     [not found]           ` <20161205225247.e3dd6dcw3ryjjlp2-CoA6ZxLDdyEEUmgCuDUIdw@public.gmane.org>
2016-12-06  0:59             ` Ben Pfaff
2016-12-06  0:59               ` [Bridge] [ovs-dev] " Ben Pfaff
2016-12-13  0:12 ` [PATCH net-next 00/27] Remove VLAN CFI bit abuse Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 02/27] net/vlan: introduce __vlan_hwaccel_copy_tag() helper Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 03/27] ibmvnic: fix accelerated VLAN handling Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 01/27] net/vlan: introduce __vlan_hwaccel_clear_tag() helper Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 04/27] qlcnic: remove assumption that vlan_tci != 0 Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 05/27] i40iw: remove use of VLAN_TAG_PRESENT Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 08/27] net/hyperv: " Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 07/27] gianfar: " Michał Mirosław
2016-12-13 12:09     ` Claudiu Manoil
2016-12-13  0:12   ` [PATCH net-next 06/27] cnic: " Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 11/27] sky2: use __vlan_hwaccel helpers Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 09/27] cxgb4: " Michał Mirosław
2016-12-13  1:40     ` Steve Wise
2016-12-13  0:12   ` [PATCH net-next 13/27] bridge: " Michał Mirosław
2016-12-13  0:12     ` [Bridge] " Michał Mirosław
2016-12-13 12:59     ` Sergei Shtylyov
2016-12-13 12:59       ` [Bridge] " Sergei Shtylyov
2016-12-13 15:11       ` Michał Mirosław
2016-12-13 15:11         ` [Bridge] " Michał Mirosław
2016-12-14  0:40         ` Toshiaki Makita
2016-12-14  0:40           ` [Bridge] " Toshiaki Makita
2016-12-13  0:12   ` [PATCH net-next 14/27] 8021q: " Michał Mirosław
2016-12-13  0:12   ` Michał Mirosław [this message]
2016-12-13  0:12     ` [PATCH net-next 18/27] net/skbuff: add macros for VLAN_PRESENT bit Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 16/27] nfnetlink/queue: use __vlan_hwaccel helpers Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 15/27] ipv4/tunnel: " Michał Mirosław
     [not found]   ` <cover.1481586602.git.mirq-linux-CoA6ZxLDdyEEUmgCuDUIdw@public.gmane.org>
2016-12-13  0:12     ` [PATCH net-next 17/27] OVS: remove assumptions about VLAN_TAG_PRESENT bit Michał Mirosław
     [not found]       ` <e44219bc56d3e44aa0711c83c626adabf4c4ecd8.1481586602.git.mirq-linux-CoA6ZxLDdyEEUmgCuDUIdw@public.gmane.org>
2016-12-13 10:40         ` Jiri Benc
2016-12-13 15:14           ` Michał Mirosław
2016-12-13 15:31         ` [PATCH/replace net-next 17/27] OVS: remove use of VLAN_TAG_PRESENT Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 19/27] net/bpf_jit: ARM: split VLAN_PRESENT bit handling from VLAN_TCI Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 21/27] net/bpf_jit: PPC: " Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 20/27] net/bpf_jit: MIPS: " Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  1:22     ` Ralf Baechle
2016-12-13  0:12   ` [PATCH net-next 23/27] net/bpf: " Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 22/27] net/bpf_jit: SPARC: " Michał Mirosław
2016-12-13  0:12     ` Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 24/27] bpf_test: prepare for VLAN_TAG_PRESENT removal Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 25/27] net: remove VLAN_TAG_PRESENT Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 26/27] net/hyperv: enable passing of VLAN.CFI bit Michał Mirosław
2016-12-13  0:12   ` [PATCH net-next 27/27] net/vlan: remove unused #define HAVE_VLAN_GET_TAG Michał Mirosław
2016-12-13  5:18   ` [PATCH net-next 00/27] Remove VLAN CFI bit abuse Michał Mirosław
2016-12-14  1:16   ` Stephen Hemminger
2016-12-14  2:00     ` Michał Mirosław
2017-01-03 20:52   ` [PATCH net-next v2 00/27] Allow passing of VLAN CFI bit through network stack Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 02/27] net/vlan: introduce __vlan_hwaccel_copy_tag() helper Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 03/27] ibmvnic: fix accelerated VLAN handling Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 01/27] net/vlan: introduce __vlan_hwaccel_clear_tag() helper Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 05/27] i40iw: remove use of VLAN_TAG_PRESENT Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 04/27] qlcnic: remove assumption that vlan_tci != 0 Michał Mirosław
2017-01-04 11:29       ` Chopra, Manish
2017-01-03 20:52     ` [PATCH net-next v2 06/27] cnic: remove use of VLAN_TAG_PRESENT Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 07/27] gianfar: " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 09/27] cxgb4: use __vlan_hwaccel helpers Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 11/27] sky2: " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 12/27] net/core: " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 08/27] net/hyperv: remove use of VLAN_TAG_PRESENT Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 10/27] benet: use __vlan_hwaccel helpers Michał Mirosław
     [not found]       ` <CACZ4nhsUxWYvM5HoASHb7-m2uZtnk3DN6cQigp+cObyLqPJXdA@mail.gmail.com>
2017-01-03 23:11         ` [PATCH net-next v3 " Michał Mirosław
2017-01-11  5:29           ` Somnath Kotur
2017-01-03 20:52     ` [PATCH net-next v2 13/27] bridge: " Michał Mirosław
2017-01-03 20:52       ` [Bridge] " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 14/27] 8021q: " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 15/27] ipv4/tunnel: " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 16/27] nfnetlink/queue: " Michał Mirosław
     [not found]     ` <cover.1483475202.git.mirq-linux-CoA6ZxLDdyEEUmgCuDUIdw@public.gmane.org>
2017-01-03 20:52       ` [PATCH net-next v2 17/27] OVS: remove use of VLAN_TAG_PRESENT Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 19/27] net/bpf_jit: ARM: split VLAN_PRESENT bit handling from VLAN_TCI Michał Mirosław
2017-01-03 20:52       ` Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 18/27] net/skbuff: add macros for VLAN_PRESENT bit Michał Mirosław
2017-01-03 20:52       ` Michał Mirosław
2017-01-03 20:52       ` Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 20/27] net/bpf_jit: MIPS: split VLAN_PRESENT bit handling from VLAN_TCI Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 22/27] net/bpf_jit: SPARC: " Michał Mirosław
2017-01-03 20:52       ` Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 21/27] net/bpf_jit: PPC: " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 23/27] net/bpf: " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 24/27] bpf_test: prepare for VLAN_TAG_PRESENT removal Michał Mirosław
2017-01-03 21:16       ` Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 25/27] net: remove VLAN_TAG_PRESENT Michał Mirosław
     [not found]       ` <cover.1483477925.git.mirq-linux@rere.qmqm.pl>
2017-01-03 21:15         ` [PATCH net-next v3 " Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 26/27] net/hyperv: enable passing of VLAN.CFI bit Michał Mirosław
2017-01-03 20:52     ` [PATCH net-next v2 27/27] net/vlan: remove unused #define HAVE_VLAN_GET_TAG Michał Mirosław
2017-01-03 21:32     ` [PATCH net-next v2 00/27] Allow passing of VLAN CFI bit through network stack David Miller
2017-01-03 23:21       ` Michał Mirosław
2017-01-03 23:36         ` Michał Mirosław
2017-01-04  0:13       ` Michał Mirosław
2016-12-14  1:21 ` [PATCH net-next] net: remove abuse of VLAN DEI/CFI bit Stephen Hemminger
2016-12-14  1:21   ` [Bridge] " Stephen Hemminger
2016-12-14  2:03   ` Michał Mirosław
2016-12-14  2:03     ` [Bridge] " Michał Mirosław
     [not found]     ` <20161214020305.qck2bpxmfh6ltrw7-CoA6ZxLDdyEEUmgCuDUIdw@public.gmane.org>
2016-12-14  2:21       ` Alexei Starovoitov
2016-12-14  2:21         ` [Bridge] " Alexei Starovoitov
2016-12-14 14:28   ` Michał Mirosław
2016-12-14 14:28     ` [Bridge] " Michał Mirosław

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=3cad1213a287755f5b6d698b45d839ca76d6d841.1481586602.git.mirq-linux@rere.qmqm.pl \
    --to=mirq-linux@rere.qmqm.pl \
    --cc=benh@kernel.crashing.org \
    --cc=davem@davemloft.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mips@linux-mips.org \
    --cc=linux@armlinux.org.uk \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mpe@ellerman.id.au \
    --cc=netdev@vger.kernel.org \
    --cc=paulus@samba.org \
    --cc=ralf@linux-mips.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 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.