aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel de Perthuis <[email protected]>2015-11-29 18:40:23 -0800
committerJens Axboe <[email protected]>2015-12-30 20:23:13 -0700
commitd7076f21629f8f329bca4a44dc408d94670f49e2 (patch)
tree6d1685199f00f73be98c21e162e61f6a1866854a
parent2ecf0cdb2b437402110ab57546e02abfa68a716b (diff)
bcache: allows use of register in udev to avoid "device_busy" error.
Allows to use register, not register_quiet in udev to avoid "device_busy" error. The initial patch proposed at https://lkml.org/lkml/2013/8/26/549 by Gabriel de Perthuis <[email protected]> does not unlock the mutex and hangs the kernel. See http://thread.gmane.org/gmane.linux.kernel.bcache.devel/2594 for the discussion. Cc: Denis Bychkov <[email protected]> Cc: Kent Overstreet <[email protected]> Cc: Eric Wheeler <[email protected]> Cc: Gabriel de Perthuis <[email protected]> Cc: [email protected] Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--drivers/md/bcache/super.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index 18f14a246d70..8d0ead98eb6e 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -1938,6 +1938,8 @@ static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
else
err = "device busy";
mutex_unlock(&bch_register_lock);
+ if (attr == &ksysfs_register_quiet)
+ goto out;
}
goto err;
}
@@ -1976,8 +1978,7 @@ out:
err_close:
blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
err:
- if (attr != &ksysfs_register_quiet)
- pr_info("error opening %s: %s", path, err);
+ pr_info("error opening %s: %s", path, err);
ret = -EINVAL;
goto out;
}