]> git.baikalelectronics.ru Git - kernel.git/commit
kernel/bpf/syscall: fix warning defined but not used
authorAnders Roxell <anders.roxell@linaro.org>
Tue, 3 Apr 2018 12:09:47 +0000 (14:09 +0200)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 4 Apr 2018 09:08:36 +0000 (11:08 +0200)
commitdd90bb81c134b5aab31dd6a242f0e98137d468ef
tree24c992d27bcb56eec8b175cbdce7b5c4fa200c32
parentf10546d5d64c9b77304ceb45949381f3ef078820
kernel/bpf/syscall: fix warning defined but not used

There will be a build warning -Wunused-function if CONFIG_CGROUP_BPF
isn't defined, since the only user is inside #ifdef CONFIG_CGROUP_BPF:
kernel/bpf/syscall.c:1229:12: warning: ‘bpf_prog_attach_check_attach_type’
    defined but not used [-Wunused-function]
 static int bpf_prog_attach_check_attach_type(const struct bpf_prog *prog,
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Current code moves function bpf_prog_attach_check_attach_type inside
ifdef CONFIG_CGROUP_BPF.

Fixes: fab05fade032 ("bpf: Check attach type at prog load time")
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
kernel/bpf/syscall.c