Skip to content

Commit

Permalink
rbd: simplify snap_by_name() interface
Browse files Browse the repository at this point in the history
There is only one caller of snap_by_name(), and it passes two values
to be assigned, both of which are found within an rbd device
structure.

Change the interface so it just passes the address of the rbd_dev,
and make the assignments to its fields directly.

Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
  • Loading branch information
Alex Elder committed Oct 1, 2012
1 parent 4e1105a commit 8836b99
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions drivers/block/rbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -621,10 +621,10 @@ static int rbd_header_from_disk(struct rbd_image_header *header,
return -ENOMEM;
}

static int snap_by_name(struct rbd_image_header *header, const char *snap_name,
u64 *seq, u64 *size)
static int snap_by_name(struct rbd_device *rbd_dev, const char *snap_name)
{
int i;
struct rbd_image_header *header = &rbd_dev->header;
char *p = header->snap_names;

rbd_assert(header->snapc != NULL);
Expand All @@ -633,10 +633,9 @@ static int snap_by_name(struct rbd_image_header *header, const char *snap_name,

/* Found it. Pass back its id and/or size */

if (seq)
*seq = header->snapc->snaps[i];
if (size)
*size = header->snap_sizes[i];
rbd_dev->mapping.snap_id = header->snapc->snaps[i];
rbd_dev->mapping.size = header->snap_sizes[i];

return i;
}
p += strlen(p) + 1; /* Skip ahead to the next name */
Expand All @@ -657,9 +656,7 @@ static int rbd_header_set_snap(struct rbd_device *rbd_dev, char *snap_name)
rbd_dev->mapping.snap_exists = false;
rbd_dev->mapping.read_only = rbd_dev->rbd_opts.read_only;
} else {
ret = snap_by_name(&rbd_dev->header, snap_name,
&rbd_dev->mapping.snap_id,
&rbd_dev->mapping.size);
ret = snap_by_name(rbd_dev, snap_name);
if (ret < 0)
goto done;
rbd_dev->mapping.snap_exists = true;
Expand Down

0 comments on commit 8836b99

Please sign in to comment.