]> git.karo-electronics.de Git - karo-tx-linux.git/commit
rbd: don't hold ctl_mutex to get/put device
authorAlex Elder <elder@inktank.com>
Fri, 31 May 2013 20:17:01 +0000 (15:17 -0500)
committerSage Weil <sage@inktank.com>
Thu, 13 Jun 2013 15:46:26 +0000 (08:46 -0700)
commit87f11b7221f72a1f5db9c00b170bda75c79c8d32
tree8960a66de516d40085f9b85ee6339401a1f34fe9
parent41b6520db69378386c846f125a1091ba8ea13de9
rbd: don't hold ctl_mutex to get/put device

When an rbd device is first getting mapped, its device registration
is protected the control mutex.  There is no need to do that though,
because the device has already been assigned an id that's guaranteed
to be unique.

An unmap of an rbd device won't proceed if the device has a non-zero
open count or is already being unmapped.  So there's no need to hold
the control mutex in that case either.

Finally, an rbd device can't be opened if it is being removed, and
it won't go away if there is a non-zero open count.  So here too
there's no need to hold the control mutex while getting or putting a
reference to an rbd device's Linux device structure.

Drop the mutex calls in these cases.

Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
drivers/block/rbd.c