diff options
author | Kent Overstreet <koverstreet@google.com> | 2013-04-05 13:46:13 -0700 |
---|---|---|
committer | Kent Overstreet <koverstreet@google.com> | 2013-04-08 13:33:48 -0700 |
commit | 8ef747909cef0dd1ae018beef4bb2e75f26e3f98 (patch) | |
tree | 086bda710cd80e639bbbe94475ea4df8bcc2b08d | |
parent | 7b41b51a705ec0eb5f88060c9f724c8bc0e79eab (diff) | |
download | op-kernel-dev-8ef747909cef0dd1ae018beef4bb2e75f26e3f98.zip op-kernel-dev-8ef747909cef0dd1ae018beef4bb2e75f26e3f98.tar.gz |
bcache: Fix a minor memory leak on device teardown
Reported-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Kent Overstreet <koverstreet@google.com>
-rw-r--r-- | drivers/md/bcache/super.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c index f47ecb5..5fa3cd2 100644 --- a/drivers/md/bcache/super.c +++ b/drivers/md/bcache/super.c @@ -64,9 +64,11 @@ struct workqueue_struct *bcache_wq; static void bio_split_pool_free(struct bio_split_pool *p) { + if (p->bio_split_hook) + mempool_destroy(p->bio_split_hook); + if (p->bio_split) bioset_free(p->bio_split); - } static int bio_split_pool_init(struct bio_split_pool *p) |