From e2befc8736e115d9148a3330477a4b83a2416cbd Mon Sep 17 00:00:00 2001 From: Mark Fasheh Date: Tue, 29 Aug 2017 18:45:02 -0500 Subject: [PATCH] scoutfs: silence dlmglue mlog() These debug prints are spamming the console, send them to the trace buffer instead. Signed-off-by: Mark Fasheh --- kmod/src/dlmglue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmod/src/dlmglue.c b/kmod/src/dlmglue.c index 47aca6b0..63aae298 100644 --- a/kmod/src/dlmglue.c +++ b/kmod/src/dlmglue.c @@ -38,7 +38,7 @@ #include "dlmglue.h" -#define mlog(mask, fmt, args...) printk(KERN_INFO fmt , ##args) +#define mlog(mask, fmt, args...) trace_printk(fmt , ##args) #define mlog_errno(st) do { \ int _st = (st); \ if (_st != -ERESTARTSYS && _st != -EINTR && \