[SRU][F:linux-bluefield][PATCH 03/32] netpoll: move netpoll_send_skb() out of line
Daniel Jurgens
danielj at nvidia.com
Mon May 3 19:38:48 UTC 2021
From: Eric Dumazet <edumazet at google.com>
BugLink: https://bugs.launchpad.net/bugs/1926994
There is no need to inline this helper, as we intend to add more
code in this function.
Signed-off-by: Eric Dumazet <edumazet at google.com>
Signed-off-by: David S. Miller <davem at davemloft.net>
(cherry picked from commit fb1eee476b0d3be3e58dac1a3a96f726c6278bed)
Signed-off-by: Daniel Jurgens <danielj at nvidia.com>
---
include/linux/netpoll.h | 9 +--------
net/core/netpoll.c | 13 +++++++++++--
2 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/include/linux/netpoll.h b/include/linux/netpoll.h
index 00e0bae..e466ddf 100644
--- a/include/linux/netpoll.h
+++ b/include/linux/netpoll.h
@@ -63,14 +63,7 @@ struct netpoll_info {
void __netpoll_cleanup(struct netpoll *np);
void __netpoll_free(struct netpoll *np);
void netpoll_cleanup(struct netpoll *np);
-void __netpoll_send_skb(struct netpoll *np, struct sk_buff *skb);
-static inline void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
-{
- unsigned long flags;
- local_irq_save(flags);
- __netpoll_send_skb(np, skb);
- local_irq_restore(flags);
-}
+void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb);
#ifdef CONFIG_NETPOLL
static inline void *netpoll_poll_lock(struct napi_struct *napi)
diff --git a/net/core/netpoll.c b/net/core/netpoll.c
index 4b482aa..2fb8a6e 100644
--- a/net/core/netpoll.c
+++ b/net/core/netpoll.c
@@ -306,7 +306,7 @@ static int netpoll_owner_active(struct net_device *dev)
}
/* call with IRQ disabled */
-void __netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
+static void __netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
{
netdev_tx_t status = NETDEV_TX_BUSY;
struct net_device *dev;
@@ -361,7 +361,16 @@ void __netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
schedule_delayed_work(&npinfo->tx_work,0);
}
}
-EXPORT_SYMBOL(__netpoll_send_skb);
+
+void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
+{
+ unsigned long flags;
+
+ local_irq_save(flags);
+ __netpoll_send_skb(np, skb);
+ local_irq_restore(flags);
+}
+EXPORT_SYMBOL(netpoll_send_skb);
void netpoll_send_udp(struct netpoll *np, const char *msg, int len)
{
--
1.8.3.1
More information about the kernel-team
mailing list