Skip to content

Commit

Permalink
audit: audit_dummy_context can be boolean
Browse files Browse the repository at this point in the history
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: Yaowei Bai <[email protected]>
[PM: subject line tweak]
Signed-off-by: Paul Moore <[email protected]>
  • Loading branch information
baihuahua authored and pcmoore committed Nov 4, 2015
1 parent 32a1dba commit 3673481
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/linux/audit.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_ptrace(struct task_struct *t);

static inline int audit_dummy_context(void)
static inline bool audit_dummy_context(void)
{
void *p = current->audit_context;
return !p || *(int *)p;
Expand Down Expand Up @@ -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 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)
{
Expand Down

0 comments on commit 3673481

Please sign in to comment.