* [2.6.13.4 patch] kernel/audit.c: changing audit loglevel
@ 2005-11-12 20:23 Durval Menezes
0 siblings, 0 replies; only message in thread
From: Durval Menezes @ 2005-11-12 20:23 UTC (permalink / raw)
To: linux-kernel; +Cc: Durval Menezes
Hello folks,
Here's a (very simple) patch to change the loglevel of messages
produced by the audit facility.
I was getting sick of the console polution the default loglevel
(KERNEL_WARN) was producing; I investigated and found out that
kernel/audit.c simply wasn't setting the loglevel of most messages,
so they were getting tagged with the default (KERNEL_WARN) in
kernel/printk.c
I know I could have set the default console logging level to KERN_ERR
or lower, but it seems much more reasonable to set the audit loglevel
to KERN_NOTICE instead.
I'm submiting this in hope it could be useful to someone else.
Please Cc: any comments to me directly (durval AT tmp DOT com DOT br).
Best regards,
--
Durval Menezes (durval AT tmp DOT com DOT br)
--- linux-2.6.13.4/kernel/audit.c.orig-20051111 2005-10-10 15:54:29.000000000 -0300
+++ linux-2.6.13.4-dm/kernel/audit.c 2005-11-12 16:43:39.000000000 -0200
@@ -673,7 +673,7 @@
audit_get_stamp(ab->ctx, &t, &serial);
- audit_log_format(ab, "audit(%lu.%03lu:%u): ",
+ audit_log_format(ab, KERN_NOTICE "audit(%lu.%03lu:%u): ",
t.tv_sec, t.tv_nsec/1000000, serial);
return ab;
}
==Eof==
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-11-12 20:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-12 20:23 [2.6.13.4 patch] kernel/audit.c: changing audit loglevel Durval Menezes
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.