mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 16:50:05 +00:00
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>
This commit is contained in:
parent
83a0626362
commit
2c0d0a10ea
@ -3067,6 +3067,14 @@ static int rbd_dev_image_id(struct rbd_device *rbd_dev)
|
|||||||
void *response;
|
void *response;
|
||||||
void *p;
|
void *p;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When probing a parent image, the image id is already
|
||||||
|
* known (and the image name likely is not). There's no
|
||||||
|
* need to fetch the image id again in this case.
|
||||||
|
*/
|
||||||
|
if (rbd_dev->spec->image_id)
|
||||||
|
return 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* First, see if the format 2 image id file exists, and if
|
* First, see if the format 2 image id file exists, and if
|
||||||
* so, get the image's persistent id from it.
|
* so, get the image's persistent id from it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user