bpf: Make symbol 'bpf_task_storage_busy' static
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 11 Mar 2021 13:15:05 +0000 (13:15 +0000)
committerAlexei Starovoitov <ast@kernel.org>
Tue, 16 Mar 2021 19:24:20 +0000 (12:24 -0700)
commit4d0b93896ff8d6795ad8d1b604e41aa850d5a635
treec503ffa25f07113e1d2952771418f6dcbb20b23b
parent6bd45f2e78f31bde335f7720e570a07331031110
bpf: Make symbol 'bpf_task_storage_busy' static

The sparse tool complains as follows:

kernel/bpf/bpf_task_storage.c:23:1: warning:
 symbol '__pcpu_scope_bpf_task_storage_busy' was not declared. Should it be static?

This symbol is not used outside of bpf_task_storage.c, so this
commit marks it static.

Fixes: bc235cdb423a ("bpf: Prevent deadlock from recursive bpf_task_storage_[get|delete]")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Song Liu <songliubraving@fb.com>
Link: https://lore.kernel.org/bpf/20210311131505.1901509-1-weiyongjun1@huawei.com
kernel/bpf/bpf_task_storage.c