aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2020-08-17 11:48:05 -0700
committerDavid S. Miller <davem@davemloft.net>2020-08-17 11:48:05 -0700
commit7f9bf6e82461b97ce43a912cb4a959c5a41367ac (patch)
treee55b787b7f7af7a2723ff4e35ccf45d812c3ac35
parent0b76e642f9ad2471e899e2dd71b9543b7e85e9f6 (diff)
downloadlinux-7f9bf6e82461b97ce43a912cb4a959c5a41367ac.tar.gz
Revert "net: xdp: pull ethernet header off packet after computing skb->protocol"
This reverts commit f8414a8d886b613b90d9fdf7cda6feea313b1069. eth_type_trans() does the necessary pull on the skb. Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/core/dev.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 7592d7dd61097..b5d1129d83103 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -4676,7 +4676,6 @@ static u32 netif_receive_generic_xdp(struct sk_buff *skb,
(orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
__skb_push(skb, ETH_HLEN);
skb->protocol = eth_type_trans(skb, skb->dev);
- __skb_pull(skb, ETH_HLEN);
}
switch (act) {