summary refs log tree commit diff
path: root/net/bridge
diff options
context:
space:
mode:
authorGeliang Tang <geliangtang@gmail.com>2017-08-07 21:44:25 +0800
committerPablo Neira Ayuso <pablo@netfilter.org>2017-08-19 13:09:31 +0200
commit46b20c38f37c48bbcb832f933e1bee7d951da99b (patch)
tree3d44a04e5e7e9f09bbe8a6f8109c59c24a860082 /net/bridge
parent166327d79d8d44a1668eff0fda8286e9a193a251 (diff)
downloadlinux-46b20c38f37c48bbcb832f933e1bee7d951da99b.tar.gz
netfilter: use audit_log()
Use audit_log() instead of open-coding it.

Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/netfilter/ebtables.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c
index 9c6e619f452b..54c7ef4e970e 100644
--- a/net/bridge/netfilter/ebtables.c
+++ b/net/bridge/netfilter/ebtables.c
@@ -1069,15 +1069,10 @@ static int do_replace_finish(struct net *net, struct ebt_replace *repl,
 
 #ifdef CONFIG_AUDIT
 	if (audit_enabled) {
-		struct audit_buffer *ab;
-
-		ab = audit_log_start(current->audit_context, GFP_KERNEL,
-				     AUDIT_NETFILTER_CFG);
-		if (ab) {
-			audit_log_format(ab, "table=%s family=%u entries=%u",
-					 repl->name, AF_BRIDGE, repl->nentries);
-			audit_log_end(ab);
-		}
+		audit_log(current->audit_context, GFP_KERNEL,
+			  AUDIT_NETFILTER_CFG,
+			  "table=%s family=%u entries=%u",
+			  repl->name, AF_BRIDGE, repl->nentries);
 	}
 #endif
 	return ret;