]> git.baikalelectronics.ru Git - kernel.git/commit
GFS2: Fix slab memory leak in gfs2_bufdata
authorBob Peterson <rpeterso@redhat.com>
Fri, 13 Dec 2013 13:31:06 +0000 (08:31 -0500)
committerSteven Whitehouse <swhiteho@redhat.com>
Fri, 13 Dec 2013 21:42:40 +0000 (21:42 +0000)
commit957c1f67e2d58899fc9aedb7753a442f9b367d9d
treeea89d072b44346858e3fa5eb06652675e7e1b6ff
parent7cffa4b1208554ce3ec4155d41966d573c3edeca
GFS2: Fix slab memory leak in gfs2_bufdata

This patch fixes a slab memory leak that sometimes can occur
for files with a very short lifespan. The problem occurs when
a dinode is deleted before it has gotten to the journal properly.
In the leak scenario, the bd object is pinned for journal
committment (queued to the metadata buffers queue: sd_log_le_buf)
but is subsequently unpinned and dequeued before it finds its way
to the ail or the revoke queue. In this rare circumstance, the bd
object needs to be freed from slab memory, or it is forgotten.
We have to be very careful how we do it, though, because
multiple processes can call gfs2_remove_from_journal. In order to
avoid double-frees, only the process that does the unpinning is
allowed to free the bd.

Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/meta_io.c