Re: [PATCH][BRIDGE] Lost call to br_fdb_fini() in br_init() error path

2007-11-29 Thread Herbert Xu
On Tue, Nov 27, 2007 at 05:39:42PM +0300, Pavel Emelyanov wrote: > In case the br_netfilter_init() (or any subsequent call) > fails, the br_fdb_fini() must be called to free the allocated > in br_fdb_init() br_fdb_cache kmem cache. > > Signed-off-by: Pavel Emelyanov <[EMAIL PROTECTED]> Patch app

Re: [PATCH][BRIDGE] Lost call to br_fdb_fini() in br_init() error path

2007-11-27 Thread Stephen Hemminger
On Tue, 27 Nov 2007 17:39:42 +0300 Pavel Emelyanov <[EMAIL PROTECTED]> wrote: > In case the br_netfilter_init() (or any subsequent call) > fails, the br_fdb_fini() must be called to free the allocated > in br_fdb_init() br_fdb_cache kmem cache. > > Signed-off-by: Pavel Emelyanov <[EMAIL PROTECTE

[PATCH][BRIDGE] Lost call to br_fdb_fini() in br_init() error path

2007-11-27 Thread Pavel Emelyanov
In case the br_netfilter_init() (or any subsequent call) fails, the br_fdb_fini() must be called to free the allocated in br_fdb_init() br_fdb_cache kmem cache. Signed-off-by: Pavel Emelyanov <[EMAIL PROTECTED]> --- diff --git a/net/bridge/br.c b/net/bridge/br.c index 93867bb..a901828 100644 --