Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7cfd2609 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by David S. Miller
Browse files

ipv4: don't spam dmesg with "Using LC-trie" messages



fib_trie_table() is called during netns creation and
Chromium uses clone(CLONE_NEWNET) to sandbox renderer process.

Don't print anything.

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a05d2ad1
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -1978,9 +1978,6 @@ struct fib_table *fib_trie_table(u32 id)
	t = (struct trie *) tb->tb_data;
	memset(t, 0, sizeof(*t));

	if (id == RT_TABLE_LOCAL)
		pr_info("IPv4 FIB: Using LC-trie version %s\n", VERSION);

	return tb;
}