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: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Alexey Dobriyan and committed by David S. Miller 7cfd2609 a05d2ad1

-3
-3
net/ipv4/fib_trie.c
··· 1978 t = (struct trie *) tb->tb_data; 1979 memset(t, 0, sizeof(*t)); 1980 1981 - if (id == RT_TABLE_LOCAL) 1982 - pr_info("IPv4 FIB: Using LC-trie version %s\n", VERSION); 1983 - 1984 return tb; 1985 } 1986
··· 1978 t = (struct trie *) tb->tb_data; 1979 memset(t, 0, sizeof(*t)); 1980 1981 return tb; 1982 } 1983