aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/udp.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-05-17 09:50:36 +0100
committerDavid S. Miller <davem@davemloft.net>2017-05-18 10:12:40 -0400
commit64f5102dcb811b27d673eccc8cc0d76ce90981a4 (patch)
tree28960b4e201423c24aea140951b0f9dce524408c /net/ipv4/udp.c
parentMerge branch 'vhost_net-rx-batch-dequeuing' (diff)
downloadlinux-dev-64f5102dcb811b27d673eccc8cc0d76ce90981a4.tar.xz
linux-dev-64f5102dcb811b27d673eccc8cc0d76ce90981a4.zip
udp: make function udp_skb_dtor_locked static
Function udp_skb_dtor_locked does not need to be in global scope so make it static to fix sparse warning: net/ipv4/udp.c: warning: symbol 'udp_skb_dtor_locked' was not declared. Should it be static? Fixes: 6dfb4367cd911d ("udp: keep the sk_receive_queue held when splicing") Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/udp.c')
-rw-r--r--net/ipv4/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index 7bd56c9889b3..922a62d45714 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -1218,7 +1218,7 @@ void udp_skb_destructor(struct sock *sk, struct sk_buff *skb)
EXPORT_SYMBOL(udp_skb_destructor);
/* as above, but the caller held the rx queue lock, too */
-void udp_skb_dtor_locked(struct sock *sk, struct sk_buff *skb)
+static void udp_skb_dtor_locked(struct sock *sk, struct sk_buff *skb)
{
udp_rmem_release(sk, skb->dev_scratch, 1, true);
}