All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] backports: add netif_receive_skb_list
@ 2020-08-14 14:29 Felix Fietkau
  2020-08-14 14:29 ` [PATCH v2 2/2] backports: add skb_list_del_init Felix Fietkau
  0 siblings, 1 reply; 8+ messages in thread
From: Felix Fietkau @ 2020-08-14 14:29 UTC (permalink / raw)
  To: backports

It is needed for mac80211

Signed-off-by: Felix Fietkau <nbd@nbd.name>
---
 backport/backport-include/linux/netdevice.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/backport/backport-include/linux/netdevice.h b/backport/backport-include/linux/netdevice.h
index edb0aaf33cde..fc69c2165e38 100644
--- a/backport/backport-include/linux/netdevice.h
+++ b/backport/backport-include/linux/netdevice.h
@@ -372,6 +372,18 @@ static inline int _bp_netdev_upper_dev_link(struct net_device *dev,
 	macro_dispatcher(netdev_upper_dev_link, __VA_ARGS__)(__VA_ARGS__)
 #endif
 
+#if LINUX_VERSION_IS_LESS(4,19,0)
+static inline void netif_receive_skb_list(struct list_head *head)
+{
+	struct sk_buff *skb, *next;
+
+	list_for_each_entry_safe(skb, next, head, list) {
+		skb_list_del_init(skb);
+		netif_receive_skb(skb);
+	}
+}
+#endif
+
 #if LINUX_VERSION_IS_LESS(5,0,0)
 static inline int backport_dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
 {
-- 
2.28.0

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

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-11-11  7:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-14 14:29 [PATCH v2 1/2] backports: add netif_receive_skb_list Felix Fietkau
2020-08-14 14:29 ` [PATCH v2 2/2] backports: add skb_list_del_init Felix Fietkau
2020-08-31 18:46   ` Hauke Mehrtens
2020-09-28  6:31     ` Felix Fietkau
2020-09-28  7:20       ` Johannes Berg
2020-09-28  9:12         ` Coelho, Luciano
2020-11-10 23:24           ` Hauke Mehrtens
2020-11-11  7:43             ` Johannes Berg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.