backports.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] backports: add netif_rx()
@ 2022-04-04  9:41 Johannes Berg
  0 siblings, 0 replies; only message in thread
From: Johannes Berg @ 2022-04-04  9:41 UTC (permalink / raw)
  To: backports; +Cc: Johannes Berg

From: Johannes Berg <johannes.berg@intel.com>

We need this to auto-detect the context now, since that's
what was done upstream.

Change-Id: Ie974d61fc51bd6ae44a6a92cee7da674bb179680
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
 backport-include/linux/netdevice.h | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

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 */
-- 
2.35.1

--
To unsubscribe from this list: send the line "unsubscribe backports" in

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-04  9:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-04  9:41 [PATCH] backports: add netif_rx() Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).