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 4/9] rbd: get image features for a v2 image
Date: Wed, 19 Sep 2012 12:02:15 -0700	[thread overview]
Message-ID: <505A16B7.1040202@inktank.com> (raw)
In-Reply-To: <504A638A.8030007@inktank.com>

On 09/07/2012 02:13 PM, Alex Elder wrote:
> The features values for an rbd format 2 image are fetched from the
> server using a "get_features" method.  The same method is used for
> getting the features for a snapshot, so structure this addition with
> a generic helper routine that can get this information for either.
>
> The server will provide two 64-bit feature masks, one representing
> the features used for this image (or snapshot) and one representing
> features which cannot be used by the client when working with the
> image (or snapshot).

This second mask is features that are required for the client to
access the image correctly. They are called incompatible because
the are the subset of features used for this image that are not
backwards compatible with clients that do not support them.

With the commit message fixed:

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

> For the time being, neither of these is really used so we keep
> things simple and just record the first feature vector.  Once we
> start using these feature masks, what we record and what we expose
> to the user will most likely change.
>
> Signed-off-by: Alex Elder <elder@inktank.com>
> ---
>   drivers/block/rbd.c |   40 ++++++++++++++++++++++++++++++++++++++++
>   1 file changed, 40 insertions(+)
>
> diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
> index 36e848a..d48f025 100644
> --- a/drivers/block/rbd.c
> +++ b/drivers/block/rbd.c
> @@ -2200,6 +2200,40 @@ out:
>   	return ret;
>   }
>
> +static int _rbd_dev_v2_snap_features(struct rbd_device *rbd_dev, u64
> snap_id,
> +		u64 *snap_features)
> +{
> +	__le64 snapid = cpu_to_le64(snap_id);
> +	struct {
> +		__le64 features;
> +		__le64 incompat;
> +	} features_buf = { 0 };
> +	int ret;
> +
> +	ret = rbd_req_sync_exec(rbd_dev, rbd_dev->header_name,
> +				"rbd", "get_features",
> +				(char *) &snapid, sizeof (snapid),
> +				(char *) &features_buf, sizeof (features_buf),
> +				CEPH_OSD_FLAG_READ, NULL);
> +	dout("%s: rbd_req_sync_exec returned %d\n", __func__, ret);
> +	if (ret < 0)
> +		return ret;
> +	*snap_features = le64_to_cpu(features_buf.features);
> +
> +	dout("  snap_id 0x%016llx features = 0x%016llx incompat = 0x%016llx\n",
> +		(unsigned long long) snap_id,
> +		(unsigned long long) *snap_features,
> +		(unsigned long long) le64_to_cpu(features_buf.incompat));
> +
> +	return 0;
> +}
> +
> +static int rbd_dev_v2_features(struct rbd_device *rbd_dev)
> +{
> +	return _rbd_dev_v2_snap_features(rbd_dev, CEPH_NOSNAP,
> +						&rbd_dev->header.features);
> +}
> +
>   /*
>    * Scan the rbd device's current snapshot list and compare it to the
>    * newly-received snapshot context.  Remove any existing snapshots
> @@ -2733,6 +2767,12 @@ static int rbd_dev_v2_probe(struct rbd_device
> *rbd_dev)
>   	ret = rbd_dev_v2_object_prefix(rbd_dev);
>   	if (ret < 0)
>   		goto out_err;
> +
> +	/* Get the features for the image */
> +
> +	ret = rbd_dev_v2_features(rbd_dev);
> +	if (ret < 0)
> +		goto out_err;
>   	rbd_dev->image_format = 2;
>
>   	dout("discovered version 2 image, header name is %s\n",
>


  reply	other threads:[~2012-09-19 19:02 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-07 21:09 [PATCH 0/9] rbd: activate v2 image support Alex Elder
2012-09-07 21:13 ` [PATCH 1/9] rbd: lay out header probe infrastructure Alex Elder
2012-09-19 18:35   ` Josh Durgin
2012-09-07 21:13 ` [PATCH 2/9] rbd: add code to get the size of a v2 rbd image Alex Elder
2012-09-19 18:52   ` Josh Durgin
2012-09-07 21:13 ` [PATCH 3/9] rbd: get the object prefix for " Alex Elder
2012-09-19 18:57   ` Josh Durgin
2012-09-07 21:13 ` [PATCH 4/9] rbd: get image features for a v2 image Alex Elder
2012-09-19 19:02   ` Josh Durgin [this message]
2012-09-07 21:13 ` [PATCH 5/9] rbd: get the snapshot context " Alex Elder
2012-09-19 19:17   ` Josh Durgin
2012-09-07 21:14 ` [PATCH 6/9] rbd: get snapshot name " Alex Elder
2012-09-19 19:31   ` Josh Durgin
2012-09-07 21:15 ` [PATCH 7/9] rbd: update remaining header fields for v2 Alex Elder
2012-09-19 19:38   ` Josh Durgin
2012-09-07 21:15 ` [PATCH 8/9] rbd: define rbd_dev_v2_snapc_refresh() Alex Elder
2012-09-19 21:00   ` Josh Durgin
2012-09-07 21:15 ` [PATCH 9/9] rbd: activate v2 image support Alex Elder
2012-09-19 19:56   ` Josh Durgin
2012-09-19 19:57     ` 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=505A16B7.1040202@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.