printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / audit_arch.h
blob0e34d673ef1712f248273d3f05d91803813f6537
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* audit_arch.h -- Arch layer specific support for audit
4 * Copyright 2021 Red Hat Inc., Durham, North Carolina.
5 * All Rights Reserved.
7 * Author: Richard Guy Briggs <rgb@redhat.com>
8 */
9 #ifndef _LINUX_AUDIT_ARCH_H_
10 #define _LINUX_AUDIT_ARCH_H_
12 enum auditsc_class_t {
13 AUDITSC_NATIVE = 0,
14 AUDITSC_COMPAT,
15 AUDITSC_OPEN,
16 AUDITSC_OPENAT,
17 AUDITSC_SOCKETCALL,
18 AUDITSC_EXECVE,
19 AUDITSC_OPENAT2,
21 AUDITSC_NVALS /* count */
24 extern int audit_classify_compat_syscall(int abi, unsigned syscall);
26 #endif