|
@@ -10,8 +10,10 @@
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
* published by the Free Software Foundation.
|
|
|
*/
|
|
|
+
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
|
+#include <linux/kernel.h>
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/spinlock.h>
|
|
|
#include <linux/skbuff.h>
|
|
@@ -27,7 +29,7 @@ static struct nf_loginfo default_loginfo = {
|
|
|
.type = NF_LOG_TYPE_LOG,
|
|
|
.u = {
|
|
|
.log = {
|
|
|
- .level = 5,
|
|
|
+ .level = LOGLEVEL_NOTICE,
|
|
|
.logflags = NF_LOG_MASK,
|
|
|
},
|
|
|
},
|