aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block
diff options
context:
space:
mode:
authorAlex Elder <elder@inktank.com>2012-10-30 20:40:33 -0400
committerAlex Elder <elder@inktank.com>2012-11-01 08:55:42 -0400
commit2c0d0a10ea89456781218f458f6bf72e99d87d2a (patch)
treed813b4eaebe1cadf6964347a304bc40e85fab757 /drivers/block
parent83a06263625b823afa3a842ddbf53473c22f24b2 (diff)
rbd: allow null image name
We will know the image id for format 2 parent images, but won't initially know its image name. Avoid making the query for an image id in rbd_dev_image_id() if it's already known. Signed-off-by: Alex Elder <elder@inktank.com> Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/rbd.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
index 8d26c0f2be14..a8521338bf46 100644
--- a/drivers/block/rbd.c
+++ b/drivers/block/rbd.c
@@ -3068,6 +3068,14 @@ static int rbd_dev_image_id(struct rbd_device *rbd_dev)
3068 void *p; 3068 void *p;
3069 3069
3070 /* 3070 /*
3071 * When probing a parent image, the image id is already
3072 * known (and the image name likely is not). There's no
3073 * need to fetch the image id again in this case.
3074 */
3075 if (rbd_dev->spec->image_id)
3076 return 0;
3077
3078 /*
3071 * First, see if the format 2 image id file exists, and if 3079 * First, see if the format 2 image id file exists, and if
3072 * so, get the image's persistent id from it. 3080 * so, get the image's persistent id from it.
3073 */ 3081 */