From: Phil Sutter Date: Thu, 24 Mar 2022 14:02:40 +0000 (+0100) Subject: netfilter: egress: Report interface as outgoing X-Git-Tag: v5.16.19~300 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efd489886c09709a88150471fe10398b28c9e7d3;p=thirdparty%2Fkernel%2Fstable.git netfilter: egress: Report interface as outgoing [ Upstream commit d645552e9bd96671079b27015294ec7f9748fa2b ] Otherwise packets in egress chains seem like they are being received by the interface, not sent out via it. Fixes: 42df6e1d221dd ("netfilter: Introduce egress hook") Signed-off-by: Phil Sutter Signed-off-by: Florian Westphal Signed-off-by: Sasha Levin --- diff --git a/include/linux/netfilter_netdev.h b/include/linux/netfilter_netdev.h index e6487a6911360..8676316547cc4 100644 --- a/include/linux/netfilter_netdev.h +++ b/include/linux/netfilter_netdev.h @@ -99,7 +99,7 @@ static inline struct sk_buff *nf_hook_egress(struct sk_buff *skb, int *rc, return skb; nf_hook_state_init(&state, NF_NETDEV_EGRESS, - NFPROTO_NETDEV, dev, NULL, NULL, + NFPROTO_NETDEV, NULL, dev, NULL, dev_net(dev), NULL); /* nf assumes rcu_read_lock, not just read_lock_bh */