]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: prevent memory leaks from ext4_mb_init_backend() on error path
authorYu Jian <yujian@whamcloud.com>
Mon, 1 Aug 2011 21:41:46 +0000 (17:41 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 1 Aug 2011 21:41:46 +0000 (17:41 -0400)
commit1ccd304540229010b16306470fc2df75c883a91a
tree0217516fde94d1dea524ee4f40279cc03fc5cefa
parent0470c1ede50c7603dfc096a64c9b006de1714176
ext4: prevent memory leaks from ext4_mb_init_backend() on error path

In ext4_mb_init(), if the s_locality_group allocation fails it will
currently cause the allocations made in ext4_mb_init_backend() to
be leaked.  Moving the ext4_mb_init_backend() allocation after the
s_locality_group allocation avoids that problem.

Signed-off-by: Yu Jian <yujian@whamcloud.com>
Signed-off-by: Andreas Dilger <adilger@whamcloud.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/mballoc.c