Move the loop that finds a new unique rbd id to use into
its own helper function.

Signed-off-by: Alex Elder <el...@dreamhost.com>
---
 drivers/block/rbd.c |   30 +++++++++++++++++++-----------
 1 files changed, 19 insertions(+), 11 deletions(-)

diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
index 25ed3c0..35290b1 100644
--- a/drivers/block/rbd.c
+++ b/drivers/block/rbd.c
@@ -2148,6 +2148,23 @@ static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
        return ret;
 }

+/* caller must hold ctl_mutex */
+static int rbd_id_get(void)
+{
+       struct list_head *tmp;
+       int new_id = 0;
+
+       list_for_each(tmp, &rbd_dev_list) {
+               struct rbd_device *rbd_dev;
+
+               rbd_dev = list_entry(tmp, struct rbd_device, node);
+               if (rbd_dev->id >= new_id)
+                       new_id = rbd_dev->id + 1;
+       }
+
+       return new_id;
+}
+
 static ssize_t rbd_add(struct bus_type *bus,
                       const char *buf,
                       size_t count)
@@ -2155,8 +2172,7 @@ static ssize_t rbd_add(struct bus_type *bus,
        struct ceph_osd_client *osdc;
        struct rbd_device *rbd_dev;
        ssize_t rc = -ENOMEM;
-       int irc, new_id = 0;
-       struct list_head *tmp;
+       int irc;
        char *mon_dev_name;
        char *options;

@@ -2184,15 +2200,7 @@ static ssize_t rbd_add(struct bus_type *bus,
        /* generate unique id: find highest unique id, add one */
        mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);

-       list_for_each(tmp, &rbd_dev_list) {
-               struct rbd_device *rbd_dev;
-
-               rbd_dev = list_entry(tmp, struct rbd_device, node);
-               if (rbd_dev->id >= new_id)
-                       new_id = rbd_dev->id + 1;
-       }
-
-       rbd_dev->id = new_id;
+       rbd_dev->id = rbd_id_get();

        /* add to global list */
        list_add_tail(&rbd_dev->node, &rbd_dev_list);
--
1.7.5.4

--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to