net: rps: fix the support for PPPOE
authorChangli Gao <xiaosuo@gmail.com>
Tue, 20 Sep 2011 22:36:07 +0000 (22:36 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 28 Sep 2011 17:34:25 +0000 (13:34 -0400)
The upper protocol numbers of PPPOE are different, and should be treated
specially.

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c

index bf49a47ddfdbd05089c085506dc92085effd2559..7f4486e127e97a54ac38fb9bb2e8105b005f3975 100644 (file)
 #include <linux/cpu_rmap.h>
 #include <linux/if_tunnel.h>
 #include <linux/if_pppox.h>
+#include <linux/ppp_defs.h>
 
 #include "net-sysfs.h"
 
@@ -2556,6 +2557,7 @@ void __skb_get_rxhash(struct sk_buff *skb)
 again:
        switch (proto) {
        case __constant_htons(ETH_P_IP):
+ip:
                if (!pskb_may_pull(skb, sizeof(*ip) + nhoff))
                        goto done;
 
@@ -2569,6 +2571,7 @@ again:
                nhoff += ip->ihl * 4;
                break;
        case __constant_htons(ETH_P_IPV6):
+ipv6:
                if (!pskb_may_pull(skb, sizeof(*ip6) + nhoff))
                        goto done;
 
@@ -2591,7 +2594,14 @@ again:
                proto = *((__be16 *) (skb->data + nhoff +
                                      sizeof(struct pppoe_hdr)));
                nhoff += PPPOE_SES_HLEN;
-               goto again;
+               switch (proto) {
+               case __constant_htons(PPP_IP):
+                       goto ip;
+               case __constant_htons(PPP_IPV6):
+                       goto ipv6;
+               default:
+                       goto done;
+               }
        default:
                goto done;
        }
This page took 0.03196 seconds and 5 git commands to generate.