All of lore.kernel.org
 help / color / mirror / Atom feed
From: Josh Durgin <josh.durgin@inktank.com>
To: Alex Elder <elder@inktank.com>
Cc: ceph-devel@vger.kernel.org
Subject: Re: [PATCH 3/4] rbd: have snap_by_name() return a snapshot
Date: Mon, 29 Apr 2013 08:28:28 -0700	[thread overview]
Message-ID: <517E919C.70009@inktank.com> (raw)
In-Reply-To: <517A94C0.3000006@inktank.com>

Reviewed-by: Josh Durgin <josh.durgin@inktank.com>

On 04/26/2013 07:52 AM, Alex Elder wrote:
> A function called snap_by_name() ought to just look up a snapshot by
> name.  It does that, but then it assigns some stuff to the rbd
> device structure as well.
>
> Change the function to do just the lookup, and have the caller do
> the assignments that follow.
>
> Signed-off-by: Alex Elder <elder@inktank.com>
> ---
>   drivers/block/rbd.c |   35 +++++++++++++++--------------------
>   1 file changed, 15 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
> index e79dfe2..5f97137 100644
> --- a/drivers/block/rbd.c
> +++ b/drivers/block/rbd.c
> @@ -830,44 +830,39 @@ static const char *rbd_snap_name(struct rbd_device
> *rbd_dev, u64 snap_id)
>   	return NULL;
>   }
>
> -static int snap_by_name(struct rbd_device *rbd_dev, const char *snap_name)
> +static struct rbd_snap *snap_by_name(struct rbd_device *rbd_dev,
> +					const char *snap_name)
>   {
> -
>   	struct rbd_snap *snap;
>
> -	list_for_each_entry(snap, &rbd_dev->snaps, node) {
> -		if (!strcmp(snap_name, snap->name)) {
> -			rbd_dev->spec->snap_id = snap->id;
> -			rbd_dev->mapping.size = snap->size;
> -			rbd_dev->mapping.features = snap->features;
> -
> -			return 0;
> -		}
> -	}
> +	list_for_each_entry(snap, &rbd_dev->snaps, node)
> +		if (!strcmp(snap_name, snap->name))
> +			return snap;
>
> -	return -ENOENT;
> +	return NULL;
>   }
>
>   static int rbd_dev_set_mapping(struct rbd_device *rbd_dev)
>   {
> -	int ret;
> -
>   	if (!memcmp(rbd_dev->spec->snap_name, RBD_SNAP_HEAD_NAME,
>   		    sizeof (RBD_SNAP_HEAD_NAME))) {
>   		rbd_dev->spec->snap_id = CEPH_NOSNAP;
>   		rbd_dev->mapping.size = rbd_dev->header.image_size;
>   		rbd_dev->mapping.features = rbd_dev->header.features;
> -		ret = 0;
>   	} else {
> -		ret = snap_by_name(rbd_dev, rbd_dev->spec->snap_name);
> -		if (ret < 0)
> -			goto done;
> +		struct rbd_snap *snap;
> +
> +		snap = snap_by_name(rbd_dev, rbd_dev->spec->snap_name);
> +		if (!snap)
> +			return -ENOENT;
> +		rbd_dev->spec->snap_id = snap->id;
> +		rbd_dev->mapping.size = snap->size;
> +		rbd_dev->mapping.features = snap->features;
>   		rbd_dev->mapping.read_only = true;
>   	}
>   	set_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags);
>
> -done:
> -	return ret;
> +	return 0;
>   }
>
>   static void rbd_header_free(struct rbd_image_header *header)
>


  reply	other threads:[~2013-04-29 15:28 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-26 14:51 [PATCH 0/4] rbd: cleanup and leaks #2 Alex Elder
2013-04-26 14:52 ` [PATCH 1/4] rbd: have rbd_dev_image_id() set format 1 image id Alex Elder
2013-04-29 15:26   ` Josh Durgin
2013-04-26 14:52 ` [PATCH 2/4] rbd: fix image id leak in initial probe Alex Elder
2013-04-29 15:27   ` Josh Durgin
2013-04-26 14:52 ` [PATCH 3/4] rbd: have snap_by_name() return a snapshot Alex Elder
2013-04-29 15:28   ` Josh Durgin [this message]
2013-04-26 14:53 ` [PATCH 4/4] rbd: set snapshot id in rbd_dev_probe_update_spec() Alex Elder
2013-04-29 15:31   ` Josh Durgin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=517E919C.70009@inktank.com \
    --to=josh.durgin@inktank.com \
    --cc=ceph-devel@vger.kernel.org \
    --cc=elder@inktank.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.