Skip to content

Commit

Permalink
rbd: don't look up snapshot id in rbd_dev_mapping_set()
Browse files Browse the repository at this point in the history
Currently rbd_dev_mapping_set() looks up the snapshot id for the
snapshot whose name is found in the rbd device's spec structure.

That function gets called by rbd_dev_device_setup(), which is
called by rbd_add() *after* rbd_dev_image_probe().  If the
image probe succeeds, the rbd device's spec will already have
been updated to include names and ids for all fields.

Therefore there's no need to look up the snapshot id in
rbd_dev_mapping_set().

Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
  • Loading branch information
Alex Elder committed May 8, 2013
1 parent c734b79 commit 8f4b7d9
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions drivers/block/rbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -936,20 +936,11 @@ static int rbd_snap_features(struct rbd_device *rbd_dev, u64 snap_id,

static int rbd_dev_mapping_set(struct rbd_device *rbd_dev)
{
const char *snap_name = rbd_dev->spec->snap_name;
u64 snap_id;
u64 snap_id = rbd_dev->spec->snap_id;
u64 size = 0;
u64 features = 0;
int ret;

if (strcmp(snap_name, RBD_SNAP_HEAD_NAME)) {
snap_id = rbd_snap_id_by_name(rbd_dev, snap_name);
if (snap_id == CEPH_NOSNAP)
return -ENOENT;
} else {
snap_id = CEPH_NOSNAP;
}

ret = rbd_snap_size(rbd_dev, snap_id, &size);
if (ret)
return ret;
Expand Down

0 comments on commit 8f4b7d9

Please sign in to comment.