rbd: complete notifies before cleaning up osd_client and rbd_dev
authorJosh Durgin <josh.durgin@inktank.com>
Fri, 30 Aug 2013 00:31:03 +0000 (17:31 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jan 2014 20:24:26 +0000 (12:24 -0800)
commit 9abc59908e0c5f983aaa91150da32d5b62cf60b7 upstream.

To ensure rbd_dev is not used after it's released, flush all pending
notify callbacks before calling rbd_dev_image_release(). No new
notifies can be added to the queue at this point because the watch has
already be unregistered with the osd_client.

Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/block/rbd.c

index 1d29dab42c0a4cc4a3e24b99c6f7a70d80ded208..d9c3326c571f1c86254bf4be3d915f7979209e22 100644 (file)
@@ -5150,6 +5150,13 @@ static ssize_t rbd_remove(struct bus_type *bus,
        ret = rbd_dev_header_watch_sync(rbd_dev, false);
        if (ret)
                rbd_warn(rbd_dev, "failed to cancel watch event (%d)\n", ret);
+
+       /*
+        * flush remaining watch callbacks - these must be complete
+        * before the osd_client is shutdown
+        */
+       dout("%s: flushing notifies", __func__);
+       ceph_osdc_flush_notifies(&rbd_dev->rbd_client->client->osdc);
        rbd_dev_image_release(rbd_dev);
        module_put(THIS_MODULE);
        ret = count;