Re: [PATCH] rhashtable: initialize all rhashtable walker members

2015-02-22 Thread David Miller
From: Sasha Levin Date: Sun, 22 Feb 2015 16:28:05 -0500 > On 02/22/2015 03:58 PM, David Miller wrote: >> From: Sasha Levin >> Date: Sat, 21 Feb 2015 15:55:11 -0500 >> >>> Commit "rhashtable: Introduce rhashtable_walk_*" forgot to initialize the >>> members of struct rhashtable_walker after allo

Re: [PATCH] rhashtable: initialize all rhashtable walker members

2015-02-22 Thread Sasha Levin
On 02/22/2015 03:58 PM, David Miller wrote: > From: Sasha Levin > Date: Sat, 21 Feb 2015 15:55:11 -0500 > >> Commit "rhashtable: Introduce rhashtable_walk_*" forgot to initialize the >> members of struct rhashtable_walker after allocating it, which caused >> an undefined value for 'resize' which

Re: [PATCH] rhashtable: initialize all rhashtable walker members

2015-02-22 Thread Daniel Borkmann
On 02/21/2015 09:55 PM, Sasha Levin wrote: Commit "rhashtable: Introduce rhashtable_walk_*" forgot to initialize the members of struct rhashtable_walker after allocating it, which caused an undefined value for 'resize' which is used later on. Signed-off-by: Sasha Levin --- lib/rhashtable.c |

Re: [PATCH] rhashtable: initialize all rhashtable walker members

2015-02-22 Thread David Miller
From: Sasha Levin Date: Sat, 21 Feb 2015 15:55:11 -0500 > Commit "rhashtable: Introduce rhashtable_walk_*" forgot to initialize the > members of struct rhashtable_walker after allocating it, which caused > an undefined value for 'resize' which is used later on. > > Signed-off-by: Sasha Levin C