]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
block/swim3: Fix -EBUSY error when re-opening device after unmount
authorFinn Thain <fthain@telegraphics.com.au>
Mon, 31 Dec 2018 05:44:09 +0000 (16:44 +1100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Feb 2019 09:09:03 +0000 (10:09 +0100)
commit47a63b2b2e37dfb44f7d4595388cc209ce265d0f
tree1fec37de48267794b81cdbf7365829f1ecab9585
parentaff0981b2ab5ca522f98dc0e664fb84bec473158
block/swim3: Fix -EBUSY error when re-opening device after unmount

[ Upstream commit 296dcc40f2f2e402facf7cd26cf3f2c8f4b17d47 ]

When the block device is opened with FMODE_EXCL, ref_count is set to -1.
This value doesn't get reset when the device is closed which means the
device cannot be opened again. Fix this by checking for refcount <= 0
in the release method.

Reported-and-tested-by: Stan Johnson <userm57@yahoo.com>
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Cc: linuxppc-dev@lists.ozlabs.org
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/block/swim3.c