summaryrefslogtreecommitdiffstats
path: root/kernel/audit_fsnotify.c
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2018-08-02 17:56:50 -0400
committerPaul Moore <paul@paul-moore.com>2018-11-26 18:40:00 -0500
commitd0a3f18a70f2d9700bf9f5e9c4a505472388a7c1 (patch)
treeb316add3dac38538bff1756da5d4c8c4f2fd2950 /kernel/audit_fsnotify.c
parentc8fc5d49c341805fee7fc295f2ea8a709f78aec4 (diff)
downloadlinux-d0a3f18a70f2d9700bf9f5e9c4a505472388a7c1.tar.gz
linux-d0a3f18a70f2d9700bf9f5e9c4a505472388a7c1.tar.bz2
linux-d0a3f18a70f2d9700bf9f5e9c4a505472388a7c1.zip
audit: minimize our use of audit_log_format()
There are some cases where we are making multiple audit_log_format() calls in a row, for no apparent reason. Squash these down to a single audit_log_format() call whenever possible. Acked-by: Richard Guy Briggs <rgb@redhat.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/audit_fsnotify.c')
-rw-r--r--kernel/audit_fsnotify.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/audit_fsnotify.c b/kernel/audit_fsnotify.c
index f90ffa699e5b..cf4512a33675 100644
--- a/kernel/audit_fsnotify.c
+++ b/kernel/audit_fsnotify.c
@@ -131,8 +131,7 @@ static void audit_mark_log_rule_change(struct audit_fsnotify_mark *audit_mark, c
if (unlikely(!ab))
return;
audit_log_session_info(ab);
- audit_log_format(ab, " op=%s", op);
- audit_log_format(ab, " path=");
+ audit_log_format(ab, " op=%s path=", op);
audit_log_untrustedstring(ab, audit_mark->path);
audit_log_key(ab, rule->filterkey);
audit_log_format(ab, " list=%d res=1", rule->listnr);