aboutsummaryrefslogtreecommitdiffstats
path: root/net/bpfilter/main.c
diff options
context:
space:
mode:
authorGary Lin <GLin@suse.com>2019-07-05 03:54:58 +0000
committerDavid S. Miller <davem@davemloft.net>2019-07-07 22:16:11 -0700
commit36c4357c63f382becfe1d9775ea0872135c8a8ab (patch)
tree48d76c4ea4ebf414aedd393abb468df89e8fa90f /net/bpfilter/main.c
parentnet: nixge: Fix misuse of strlcpy (diff)
downloadlinux-dev-36c4357c63f382becfe1d9775ea0872135c8a8ab.tar.xz
linux-dev-36c4357c63f382becfe1d9775ea0872135c8a8ab.zip
net: bpfilter: print umh messages to /dev/kmsg
bpfilter_umh currently printed all messages to /dev/console and this might interfere the user activity(*). This commit changes the output device to /dev/kmsg so that the messages from bpfilter_umh won't show on the console directly. (*) https://bugzilla.suse.com/show_bug.cgi?id=1140221 Signed-off-by: Gary Lin <glin@suse.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/bpfilter/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bpfilter/main.c b/net/bpfilter/main.c
index 61ce8454a88e..77396a098fbe 100644
--- a/net/bpfilter/main.c
+++ b/net/bpfilter/main.c
@@ -55,7 +55,7 @@ static void loop(void)
int main(void)
{
- debug_fd = open("/dev/console", 00000002);
+ debug_fd = open("/dev/kmsg", 00000002);
dprintf(debug_fd, "Started bpfilter\n");
loop();
close(debug_fd);