mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 04:41:26 +00:00
ipv4: fix debug info in tnode_new
It should print size of struct rt_trie_node * allocated instead of size of struct rt_trie_node. Signed-off-by: Lin Ming <mlin@ss.pku.edu.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1a0150a93c
commit
4ea4bf7ebc
@ -473,7 +473,7 @@ static struct tnode *tnode_new(t_key key, int pos, int bits)
|
||||
}
|
||||
|
||||
pr_debug("AT %p s=%zu %zu\n", tn, sizeof(struct tnode),
|
||||
sizeof(struct rt_trie_node) << bits);
|
||||
sizeof(struct rt_trie_node *) << bits);
|
||||
return tn;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user