]> git.baikalelectronics.ru Git - kernel.git/commit
audit: Move audit_log_task declaration under CONFIG_AUDITSYSCALL
authorJiri Olsa <jolsa@kernel.org>
Thu, 21 Nov 2019 15:58:53 +0000 (16:58 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 Nov 2019 20:14:49 +0000 (12:14 -0800)
commit9ac666a9793ab2014d3ad1f6b9f2cf70c05284d1
treea7ebc80127a1ec2b54d047aa8d37b76cbcba3b32
parent78af4e3bbe7d9a358fe4036664c991eaebc00bf6
audit: Move audit_log_task declaration under CONFIG_AUDITSYSCALL

The 0-DAY found that audit_log_task is not declared under
CONFIG_AUDITSYSCALL which causes compilation error when
it is not defined:

    kernel/bpf/syscall.o: In function `bpf_audit_prog.isra.30':
 >> syscall.c:(.text+0x860): undefined reference to `audit_log_task'

Adding the audit_log_task declaration and stub within
CONFIG_AUDITSYSCALL ifdef.

Fixes: 9bd138e44260 ("bpf: Emit audit messages upon successful prog load and unload")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/audit.h