diff options
author | Maciej Żenczykowski <maze@google.com> | 2019-01-24 03:07:02 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-03-05 17:58:51 +0100 |
commit | 61fe1005f334a0db551983982bf95857be8389c0 (patch) | |
tree | 249bbbe0e95292b444b79575159fc94a1e1f0c77 /include/linux/if_arp.h | |
parent | f7901f15d6f3a9c1c9756c640eed465432fe3ce6 (diff) | |
download | linux-stable-61fe1005f334a0db551983982bf95857be8389c0.tar.gz linux-stable-61fe1005f334a0db551983982bf95857be8389c0.tar.bz2 linux-stable-61fe1005f334a0db551983982bf95857be8389c0.zip |
net: dev_is_mac_header_xmit() true for ARPHRD_RAWIP
[ Upstream commit 3b707c3008cad04604c1f50e39f456621821c414 ]
__bpf_redirect() and act_mirred checks this boolean
to determine whether to prefix an ethernet header.
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'include/linux/if_arp.h')
-rw-r--r-- | include/linux/if_arp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/if_arp.h b/include/linux/if_arp.h index 6756fea18b69..e44746de95cd 100644 --- a/include/linux/if_arp.h +++ b/include/linux/if_arp.h @@ -54,6 +54,7 @@ static inline bool dev_is_mac_header_xmit(const struct net_device *dev) case ARPHRD_IPGRE: case ARPHRD_VOID: case ARPHRD_NONE: + case ARPHRD_RAWIP: return false; default: return true; |