public inbox for linux-audit@redhat.com
 help / color / mirror / Atom feed
* [PATCH 1/3] kernel/audit: audit_dummy_context can be boolean
@ 2015-09-29 14:15 Yaowei Bai
  2015-09-29 14:15 ` [PATCH 2/3] kernel/audit: audit_string_contains_control " Yaowei Bai
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Yaowei Bai @ 2015-09-29 14:15 UTC (permalink / raw)
  To: paul, eparis; +Cc: linux-audit, linux-kernel

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 <bywxiaobai@163.com>
---
 include/linux/audit.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/linux/audit.h b/include/linux/audit.h
index b2abc99..69844b6 100644
--- a/include/linux/audit.h
+++ b/include/linux/audit.h
@@ -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;
@@ -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)
 {
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-09-29 18:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-29 14:15 [PATCH 1/3] kernel/audit: audit_dummy_context can be boolean Yaowei Bai
2015-09-29 14:15 ` [PATCH 2/3] kernel/audit: audit_string_contains_control " Yaowei Bai
2015-09-29 18:37   ` Paul Moore
2015-09-29 14:15 ` [PATCH 3/3] kernel/audit: audit_tree_match " Yaowei Bai
2015-09-29 18:47   ` Paul Moore
2015-09-29 18:23 ` [PATCH 1/3] kernel/audit: audit_dummy_context " Paul Moore

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox