ipc ns: fix memory leak (idr)
commit4bd80d995548d3b3ee059e61f01a4196fae7d9d3
authorSerge E. Hallyn <serue@us.ibm.com>
Wed, 16 Dec 2009 00:47:27 +0000 (15 16:47 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 1 Apr 2010 22:55:42 +0000 (1 15:55 -0700)
treed96a585d7a951fff0c2462ba2d7245d321d44b3f
parentb453242d287012673d7f089b15cee032941a6838
ipc ns: fix memory leak (idr)

commit 7d6feeb287c61aafa88f06345387b1188edf4b86 upstream.

We have apparently had a memory leak since
7ca7e564e049d8b350ec9d958ff25eaa24226352 "ipc: store ipcs into IDRs" in
2007.  The idr of which 3 exist for each ipc namespace is never freed.

This patch simply frees them when the ipcns is freed.  I don't believe any
idr_remove() are done from rcu (and could therefore be delayed until after
this idr_destroy()), so the patch should be safe.  Some quick testing
showed no harm, and the memory leak fixed.

Caught by kmemleak.

Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Acked-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
ipc/msg.c
ipc/sem.c
ipc/shm.c