1
0
Fork 0

net/tls: Make function tls_sw_do_sendpage static

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>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
YueHaibing 2019-01-16 10:39:28 +08:00 committed by David S. Miller
parent f3de19af0f
commit 01cb8a1a64
1 changed files with 2 additions and 2 deletions

View File

@ -1020,8 +1020,8 @@ send_end:
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);