Re: [FIB]: removes a memset() call in tnode_new()

2008-01-13 Thread David Miller
From: Eric Dumazet <[EMAIL PROTECTED]> Date: Sun, 13 Jan 2008 08:35:07 +0100 > tnode_alloc() already clears allocated memory, using kcalloc() > or alloc_pages(GFP_KERNEL|__GFP_ZERO, ...) > > Signed-off-by: Eric Dumazet <[EMAIL PROTECTED]> Applied, thanks Eric. -- To unsubscribe from this list: s

[FIB]: removes a memset() call in tnode_new()

2008-01-12 Thread Eric Dumazet
tnode_alloc() already clears allocated memory, using kcalloc() or alloc_pages(GFP_KERNEL|__GFP_ZERO, ...) Signed-off-by: Eric Dumazet <[EMAIL PROTECTED]> diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c index a418498..f26ba31 100644 --- a/net/ipv4/fib_trie.c +++ b/net/ipv4/fib_trie.c @@ -3