macvlan: implement .parse_protocol hook function in macvlan_hard_header_ops
authorZhengchao Shao <shaozhengchao@huawei.com>
Sat, 2 Dec 2023 13:06:58 +0000 (21:06 +0800)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 5 Dec 2023 12:41:48 +0000 (13:41 +0100)
The .parse_protocol hook function in the macvlan_header_ops structure is
not implemented. As a result, when the AF_PACKET family is used to send
packets, skb->protocol will be set to 0.
Macvlan is a device of type ARPHRD_ETHER (ether_setup). Therefore, use
eth_header_parse_protocol function to obtain the protocol.

Suggested-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Link: https://lore.kernel.org/r/20231202130658.2266526-1-shaozhengchao@huawei.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/macvlan.c

index 88dd8a2245b0c5090fa3adc497fc99521744123a..a3cc665757e8727d3ffb24d8dbfbcd321fc93ffd 100644 (file)
@@ -609,6 +609,7 @@ static const struct header_ops macvlan_hard_header_ops = {
        .parse          = eth_header_parse,
        .cache          = eth_header_cache,
        .cache_update   = eth_header_cache_update,
+       .parse_protocol = eth_header_parse_protocol,
 };
 
 static int macvlan_open(struct net_device *dev)