From: Jesper Juhl Date: Wed, 18 Jul 2007 07:49:08 +0000 (-0700) Subject: dm: fix memory leak in dm_create_persistent() when starting metadata update thread... X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=851a8a7fd451db3dcd5d44d784083f0f66b24d57;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git dm: fix memory leak in dm_create_persistent() when starting metadata update thread fails If, in dm_create_persistent(), the call to create_singlethread_workqueue() fails then we'll return without freeing the memory allocated to 'ps', thus leaking sizeof(struct pstore) bytes. This patch fixes the leak. Signed-off-by: Jesper Juhl Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/md/dm-exception-store.c b/drivers/md/dm-exception-store.c index 3d65917a1bbb..8fe81e1807e0 100644 --- a/drivers/md/dm-exception-store.c +++ b/drivers/md/dm-exception-store.c @@ -623,6 +623,7 @@ int dm_create_persistent(struct exception_store *store) ps->metadata_wq = create_singlethread_workqueue("ksnaphd"); if (!ps->metadata_wq) { + kfree(ps); DMERR("couldn't start header metadata update thread"); return -ENOMEM; }