Commit cd81cefb authored by Cong Wang's avatar Cong Wang Committed by Alexei Starovoitov

skmsg: Make __sk_psock_purge_ingress_msg() static

It is only used within skmsg.c so can become static.
Signed-off-by: default avatarCong Wang <cong.wang@bytedance.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Acked-by: default avatarJakub Sitnicki <jakub@cloudflare.com>
Link: https://lore.kernel.org/bpf/20210223184934.6054-8-xiyou.wangcong@gmail.com
parent 4675e234
...@@ -340,8 +340,6 @@ static inline void sk_psock_free_link(struct sk_psock_link *link) ...@@ -340,8 +340,6 @@ static inline void sk_psock_free_link(struct sk_psock_link *link)
struct sk_psock_link *sk_psock_link_pop(struct sk_psock *psock); struct sk_psock_link *sk_psock_link_pop(struct sk_psock *psock);
void __sk_psock_purge_ingress_msg(struct sk_psock *psock);
static inline void sk_psock_cork_free(struct sk_psock *psock) static inline void sk_psock_cork_free(struct sk_psock *psock)
{ {
if (psock->cork) { if (psock->cork) {
......
...@@ -619,7 +619,7 @@ struct sk_psock_link *sk_psock_link_pop(struct sk_psock *psock) ...@@ -619,7 +619,7 @@ struct sk_psock_link *sk_psock_link_pop(struct sk_psock *psock)
return link; return link;
} }
void __sk_psock_purge_ingress_msg(struct sk_psock *psock) static void __sk_psock_purge_ingress_msg(struct sk_psock *psock)
{ {
struct sk_msg *msg, *tmp; struct sk_msg *msg, *tmp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment