Message ID | 20240820162053.3870927-1-edumazet@google.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 007d4271a5f10638cba6f0b99698557ef30014b9 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] netpoll: do not export netpoll_poll_[disable|enable]() | expand |
On Tue, Aug 20, 2024 at 04:20:53PM +0000, Eric Dumazet wrote: > netpoll_poll_disable() and netpoll_poll_enable() are only used > from core networking code, there is no need to export them. > > Signed-off-by: Eric Dumazet <edumazet@google.com> Reviewed-by: Simon Horman <horms@kernel.org>
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski <kuba@kernel.org>: On Tue, 20 Aug 2024 16:20:53 +0000 you wrote: > netpoll_poll_disable() and netpoll_poll_enable() are only used > from core networking code, there is no need to export them. > > Signed-off-by: Eric Dumazet <edumazet@google.com> > --- > net/core/netpoll.c | 2 -- > 1 file changed, 2 deletions(-) Here is the summary with links: - [net] netpoll: do not export netpoll_poll_[disable|enable]() https://git.kernel.org/netdev/net/c/007d4271a5f1 You are awesome, thank you!
diff --git a/net/core/netpoll.c b/net/core/netpoll.c index a58ea724790ce772004f4053afab0f7da458aff1..cff1f89719b6d6ba66b4687db03596d8362b6571 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c @@ -228,7 +228,6 @@ void netpoll_poll_disable(struct net_device *dev) down(&ni->dev_lock); srcu_read_unlock(&netpoll_srcu, idx); } -EXPORT_SYMBOL(netpoll_poll_disable); void netpoll_poll_enable(struct net_device *dev) { @@ -239,7 +238,6 @@ void netpoll_poll_enable(struct net_device *dev) up(&ni->dev_lock); rcu_read_unlock(); } -EXPORT_SYMBOL(netpoll_poll_enable); static void refill_skbs(void) {
netpoll_poll_disable() and netpoll_poll_enable() are only used from core networking code, there is no need to export them. Signed-off-by: Eric Dumazet <edumazet@google.com> --- net/core/netpoll.c | 2 -- 1 file changed, 2 deletions(-)