diff options
Diffstat (limited to 'drivers/block/rbd.c')
-rw-r--r-- | drivers/block/rbd.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index 4ad2ad9a5bb0..191cd177fef2 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c | |||
@@ -397,15 +397,19 @@ static ssize_t rbd_remove(struct bus_type *bus, const char *buf, | |||
397 | static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping); | 397 | static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping); |
398 | static void rbd_spec_put(struct rbd_spec *spec); | 398 | static void rbd_spec_put(struct rbd_spec *spec); |
399 | 399 | ||
400 | static struct bus_attribute rbd_bus_attrs[] = { | 400 | static BUS_ATTR(add, S_IWUSR, NULL, rbd_add); |
401 | __ATTR(add, S_IWUSR, NULL, rbd_add), | 401 | static BUS_ATTR(remove, S_IWUSR, NULL, rbd_remove); |
402 | __ATTR(remove, S_IWUSR, NULL, rbd_remove), | 402 | |
403 | __ATTR_NULL | 403 | static struct attribute *rbd_bus_attrs[] = { |
404 | &bus_attr_add.attr, | ||
405 | &bus_attr_remove.attr, | ||
406 | NULL, | ||
404 | }; | 407 | }; |
408 | ATTRIBUTE_GROUPS(rbd_bus); | ||
405 | 409 | ||
406 | static struct bus_type rbd_bus_type = { | 410 | static struct bus_type rbd_bus_type = { |
407 | .name = "rbd", | 411 | .name = "rbd", |
408 | .bus_attrs = rbd_bus_attrs, | 412 | .bus_groups = rbd_bus_groups, |
409 | }; | 413 | }; |
410 | 414 | ||
411 | static void rbd_root_dev_release(struct device *dev) | 415 | static void rbd_root_dev_release(struct device *dev) |