]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
bcache: explicitly destroy mutex while exiting
authorLiang Chen <liangchen.linux@gmail.com>
Mon, 30 Oct 2017 21:46:35 +0000 (14:46 -0700)
committerSasha Levin <alexander.levin@microsoft.com>
Wed, 17 Jan 2018 17:55:39 +0000 (12:55 -0500)
commita7a5473af8b85c8604b5ae5bbbd3e3c077584436
treeb2fdc2bcdfaea1aee56960984b629149d5627982
parentb45f3bb8f1a532b92922ff15a41435679eafdae8
bcache: explicitly destroy mutex while exiting

[ Upstream commit 330a4db89d39a6b43f36da16824eaa7a7509d34d ]

mutex_destroy does nothing most of time, but it's better to call
it to make the code future proof and it also has some meaning
for like mutex debug.

As Coly pointed out in a previous review, bcache_exit() may not be
able to handle all the references properly if userspace registers
cache and backing devices right before bch_debug_init runs and
bch_debug_init failes later. So not exposing userspace interface
until everything is ready to avoid that issue.

Signed-off-by: Liang Chen <liangchen.linux@gmail.com>
Reviewed-by: Michael Lyle <mlyle@lyle.org>
Reviewed-by: Coly Li <colyli@suse.de>
Reviewed-by: Eric Wheeler <bcache@linux.ewheeler.net>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/md/bcache/super.c