rps: support IPIP encapsulation
authorEric Dumazet <eric.dumazet@gmail.com>
Wed, 24 Aug 2011 10:41:19 +0000 (10:41 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 24 Aug 2011 23:13:55 +0000 (16:13 -0700)
Skip IPIP header to get proper layer-4 information.

Like GRE tunnels, this only works if rxhash is not already provided by
the device itself (ethtool -K ethX rxhash off), to allow kernel compute
a software rxhash.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c

index a4306f7..b668a3d 100644 (file)
@@ -2608,6 +2608,8 @@ again:
                        }
                }
                break;
+       case IPPROTO_IPIP:
+               goto again;
        default:
                break;
        }