Message ID | 20220404094158.131124-1-johannes@sipsolutions.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | backports: add netif_rx() | expand |
diff --git a/backport-include/linux/netdevice.h b/backport-include/linux/netdevice.h index 6214a69a3e65..bd31c94bde76 100644 --- a/backport-include/linux/netdevice.h +++ b/backport-include/linux/netdevice.h @@ -247,4 +247,21 @@ struct net_device_path_ctx { }; #endif /* NET_DEVICE_PATH_STACK_MAX */ +#if LINUX_VERSION_IS_LESS(5,18,0) +#define netif_rx LINUX_BACKPORT(netif_rx) +static inline int netif_rx(struct sk_buff *skb) +{ + bool need_bh_off = !(hardirq_count() | softirq_count()); + int ret; + + if (need_bh_off) + local_bh_disable(); + ret = __netif_rx(skb); + if (need_bh_off) + local_bh_enable(); + + return ret; +} +#endif /* < 5.18.0 */ + #endif /* __BACKPORT_NETDEVICE_H */