[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1299417916-14198-1-git-send-email-nicolas.2p.debian@free.fr>
Date: Sun, 6 Mar 2011 14:25:16 +0100
From: Nicolas de Pesloüan
<nicolas.2p.debian@...e.fr>
To: netdev@...r.kernel.org
Cc: davem@...emloft.net, shemminger@...tta.com, eric.dumazet@...il.com,
kaber@...sh.net, fubar@...ibm.com, andy@...yhouse.net,
Nicolas de Pesloüan
<nicolas.2p.debian@...e.fr>
Subject: [PATCH net-next-2.6] net: harmonize the call to ptype_all and ptype_base handlers.
Until now, ptype_all and ptype_base delivery in __netif_receive_skb() is
inconsistent.
- For ptype_all, we deliver to every device crossed while walking the
rx_handler path (inside the another_round loop), and there is no way to stop
wildcard delivery (no exact match logic).
- For ptype_base, we deliver to the lowest device (orig_dev) and to the highest
(skb->dev) and we can ask for exact match delivery.
This patch try and fix this, by:
1/ Doing exact match delivery for both ptype_all and ptype_base, while walking
the rx_handler path.
2/ Doing wildcard match delivery at the end of __netif_receive_skb(), if not
asked to do exact match delivery only.
Signed-off-by: Nicolas de Pesloüan <nicolas.2p.debian@...e.fr>
---
This apply on top of the last batch of patch from Jiri Pirko.
---
net/core/dev.c | 32 ++++++++++++++++++++++++--------
1 files changed, 24 insertions(+), 8 deletions(-)
diff --git a/net/core/dev.c b/net/core/dev.c
index c71bd18..a368223 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -3117,8 +3117,6 @@ static int __netif_receive_skb(struct sk_buff *skb)
{
struct packet_type *ptype, *pt_prev;
rx_handler_func_t *rx_handler;
- struct net_device *orig_dev;
- struct net_device *null_or_dev;
bool deliver_exact = false;
int ret = NET_RX_DROP;
__be16 type;
@@ -3134,7 +3132,6 @@ static int __netif_receive_skb(struct sk_buff *skb)
if (!skb->skb_iif)
skb->skb_iif = skb->dev->ifindex;
- orig_dev = skb->dev;
skb_reset_network_header(skb);
skb_reset_transport_header(skb);
@@ -3156,7 +3153,17 @@ another_round:
#endif
list_for_each_entry_rcu(ptype, &ptype_all, list) {
- if (!ptype->dev || ptype->dev == skb->dev) {
+ if (ptype->dev == skb->dev) {
+ if (pt_prev)
+ ret = deliver_skb(skb, pt_prev);
+ pt_prev = ptype;
+ }
+ }
+
+ type = skb->protocol;
+ list_for_each_entry_rcu(ptype,
+ &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
+ if (ptype->type == type && ptype->dev == skb->dev) {
if (pt_prev)
ret = deliver_skb(skb, pt_prev);
pt_prev = ptype;
@@ -3205,20 +3212,29 @@ ncls:
vlan_on_bond_hook(skb);
/* deliver only exact match when indicated */
- null_or_dev = deliver_exact ? skb->dev : NULL;
+ if (deliver_exact)
+ goto skip_wildcard_delivery;
+
+ list_for_each_entry_rcu(ptype, &ptype_all, list) {
+ if (!ptype->dev) {
+ if (pt_prev)
+ ret = deliver_skb(skb, pt_prev);
+ pt_prev = ptype;
+ }
+ }
type = skb->protocol;
list_for_each_entry_rcu(ptype,
&ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
- if (ptype->type == type &&
- (ptype->dev == null_or_dev || ptype->dev == skb->dev ||
- ptype->dev == orig_dev)) {
+ if (ptype->type == type && !ptype->dev) {
if (pt_prev)
ret = deliver_skb(skb, pt_prev);
pt_prev = ptype;
}
}
+skip_wildcard_delivery:
+
if (pt_prev) {
ret = pt_prev->func(skb, skb->dev, pt_prev);
} else {
--
1.7.2.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists