Commit 36734810 authored by Yaowei Bai's avatar Yaowei Bai Committed by Paul Moore

audit: audit_dummy_context can be boolean

This patch makes audit_dummy_context return bool due to this
particular function only using either one or zero as its return
value.

No functional change.
Signed-off-by: default avatarYaowei Bai <bywxiaobai@163.com>
[PM: subject line tweak]
Signed-off-by: default avatarPaul Moore <pmoore@redhat.com>
parent 32a1dbae
...@@ -143,7 +143,7 @@ extern void __audit_inode_child(const struct inode *parent, ...@@ -143,7 +143,7 @@ extern void __audit_inode_child(const struct inode *parent,
extern void __audit_seccomp(unsigned long syscall, long signr, int code); extern void __audit_seccomp(unsigned long syscall, long signr, int code);
extern void __audit_ptrace(struct task_struct *t); extern void __audit_ptrace(struct task_struct *t);
static inline int audit_dummy_context(void) static inline bool audit_dummy_context(void)
{ {
void *p = current->audit_context; void *p = current->audit_context;
return !p || *(int *)p; return !p || *(int *)p;
...@@ -345,9 +345,9 @@ static inline void audit_syscall_entry(int major, unsigned long a0, ...@@ -345,9 +345,9 @@ static inline void audit_syscall_entry(int major, unsigned long a0,
{ } { }
static inline void audit_syscall_exit(void *pt_regs) static inline void audit_syscall_exit(void *pt_regs)
{ } { }
static inline int audit_dummy_context(void) static inline bool audit_dummy_context(void)
{ {
return 1; return true;
} }
static inline struct filename *audit_reusename(const __user char *name) static inline struct filename *audit_reusename(const __user char *name)
{ {
......
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