OSDN Git Service

tls: make tls_sw_free_resources static
authorTobias Klauser <tklauser@distanz.ch>
Thu, 14 Sep 2017 11:22:25 +0000 (13:22 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 14 Sep 2017 16:55:21 +0000 (09:55 -0700)
Make the needlessly global function tls_sw_free_resources static to fix
a gcc/sparse warning.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tls/tls_sw.c

index fa596fa..7d80040 100644 (file)
@@ -639,7 +639,7 @@ sendpage_end:
        return ret;
 }
 
-void tls_sw_free_resources(struct sock *sk)
+static void tls_sw_free_resources(struct sock *sk)
 {
        struct tls_context *tls_ctx = tls_get_ctx(sk);
        struct tls_sw_context *ctx = tls_sw_ctx(tls_ctx);