diff mbox series

[net-next] net/tls: Make function tls_sw_do_sendpage static

Message ID 20190116023928.28796-2-yuehaibing@huawei.com
State Accepted
Delegated to: David Miller
Headers show
Series [net-next] net/tls: Make function tls_sw_do_sendpage static | expand

Commit Message

Yue Haibing Jan. 16, 2019, 2:39 a.m. UTC
Fixes the following sparse warning:

 net/tls/tls_sw.c:1023:5: warning:
 symbol 'tls_sw_do_sendpage' was not declared. Should it be static?

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 net/tls/tls_sw.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

David Miller Jan. 17, 2019, 7:45 p.m. UTC | #1
From: YueHaibing <yuehaibing@huawei.com>
Date: Wed, 16 Jan 2019 10:39:28 +0800

> Fixes the following sparse warning:
> 
>  net/tls/tls_sw.c:1023:5: warning:
>  symbol 'tls_sw_do_sendpage' was not declared. Should it be static?
> 
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>

Applied.
diff mbox series

Patch

diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c
index c475538..b8e50e2 100644
--- a/net/tls/tls_sw.c
+++ b/net/tls/tls_sw.c
@@ -1020,8 +1020,8 @@  int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size)
 	return copied ? copied : ret;
 }
 
-int tls_sw_do_sendpage(struct sock *sk, struct page *page,
-		       int offset, size_t size, int flags)
+static int tls_sw_do_sendpage(struct sock *sk, struct page *page,
+			      int offset, size_t size, int flags)
 {
 	long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
 	struct tls_context *tls_ctx = tls_get_ctx(sk);