From: Josh Durgin <josh.durgin@inktank.com>
To: Alex Elder <elder@inktank.com>
Cc: ceph-devel@vger.kernel.org
Subject: Re: [PATCH 1/4] rbd: don't pass rbd_dev to rbd_get_client()
Date: Wed, 31 Oct 2012 11:49:38 -0700 [thread overview]
Message-ID: <509172C2.8040301@inktank.com> (raw)
In-Reply-To: <5090431F.5000203@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
On 10/30/2012 02:14 PM, Alex Elder wrote:
> The only reason rbd_dev is passed to rbd_get_client() is so its
> rbd_client field can get assigned. Instead, just return the
> rbd_client pointer as a result and have the caller do the
> assignment.
>
> Change rbd_put_client() so it takes an rbd_client structure,
> so follows the more typical symmetry with rbd_get_client().
>
> Signed-off-by: Alex Elder <elder@inktank.com>
> ---
> drivers/block/rbd.c | 33 +++++++++++++++------------------
> 1 file changed, 15 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
> index be85d92..a528d4c 100644
> --- a/drivers/block/rbd.c
> +++ b/drivers/block/rbd.c
> @@ -467,23 +467,17 @@ static int parse_rbd_opts_token(char *c, void
> *private)
> * Get a ceph client with specific addr and configuration, if one does
> * not exist create it.
> */
> -static int rbd_get_client(struct rbd_device *rbd_dev,
> - struct ceph_options *ceph_opts)
> +static struct rbd_client *rbd_get_client(struct ceph_options *ceph_opts)
> {
> struct rbd_client *rbdc;
>
> rbdc = rbd_client_find(ceph_opts);
> - if (rbdc) {
> - /* using an existing client */
> + if (rbdc) /* using an existing client */
> ceph_destroy_options(ceph_opts);
> - } else {
> + else
> rbdc = rbd_client_create(ceph_opts);
> - if (IS_ERR(rbdc))
> - return PTR_ERR(rbdc);
> - }
> - rbd_dev->rbd_client = rbdc;
>
> - return 0;
> + return rbdc;
> }
>
> /*
> @@ -508,10 +502,9 @@ static void rbd_client_release(struct kref *kref)
> * Drop reference to ceph client node. If it's not referenced anymore,
> release
> * it.
> */
> -static void rbd_put_client(struct rbd_device *rbd_dev)
> +static void rbd_put_client(struct rbd_client *rbdc)
> {
> - kref_put(&rbd_dev->rbd_client->kref, rbd_client_release);
> - rbd_dev->rbd_client = NULL;
> + kref_put(&rbdc->kref, rbd_client_release);
> }
>
> /*
> @@ -3232,6 +3225,7 @@ static ssize_t rbd_add(struct bus_type *bus,
> struct ceph_options *ceph_opts = NULL;
> struct rbd_options *rbd_opts = NULL;
> struct rbd_spec *spec = NULL;
> + struct rbd_client *rbdc;
> struct ceph_osd_client *osdc;
> int rc = -ENOMEM;
>
> @@ -3255,13 +3249,16 @@ static ssize_t rbd_add(struct bus_type *bus,
>
> rbd_dev->mapping.read_only = rbd_opts->read_only;
>
> - rc = rbd_get_client(rbd_dev, ceph_opts);
> - if (rc < 0)
> + rbdc = rbd_get_client(ceph_opts);
> + if (IS_ERR(rbdc)) {
> + rc = PTR_ERR(rbdc);
> goto err_out_args;
> + }
> + rbd_dev->rbd_client = rbdc;
> ceph_opts = NULL; /* ceph_opts now owned by rbd_dev client */
>
> /* pick the pool */
> - osdc = &rbd_dev->rbd_client->client->osdc;
> + osdc = &rbdc->client->osdc;
> rc = ceph_pg_poolid_by_name(osdc->osdmap, spec->pool_name);
> if (rc < 0)
> goto err_out_client;
> @@ -3353,7 +3350,7 @@ err_out_probe:
> rbd_header_free(&rbd_dev->header);
> err_out_client:
> kfree(rbd_dev->header_name);
> - rbd_put_client(rbd_dev);
> + rbd_put_client(rbdc);
> err_out_args:
> if (ceph_opts)
> ceph_destroy_options(ceph_opts);
> @@ -3398,7 +3395,7 @@ static void rbd_dev_release(struct device *dev)
> if (rbd_dev->watch_event)
> rbd_req_sync_unwatch(rbd_dev);
>
> - rbd_put_client(rbd_dev);
> + rbd_put_client(rbd_dev->rbd_client);
>
> /* clean up and free blkdev */
> rbd_free_disk(rbd_dev);
>
next prev parent reply other threads:[~2012-10-31 18:49 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-30 21:11 rbd: wrap up of initialization rework Alex Elder
2012-10-30 21:14 ` [PATCH 1/4] rbd: don't pass rbd_dev to rbd_get_client() Alex Elder
2012-10-31 18:49 ` Josh Durgin [this message]
2012-10-30 21:14 ` [PATCH 2/4] rbd: consolidate rbd_dev init in rbd_add() Alex Elder
2012-10-31 20:53 ` Josh Durgin
2012-10-30 21:14 ` [PATCH 3/4] rbd: define rbd_dev_{create,destroy}() helpers Alex Elder
2012-10-31 20:56 ` Josh Durgin
2012-10-30 21:14 ` [PATCH 4/4] rbd: encapsulate last part of probe Alex Elder
2012-10-31 21:01 ` 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=509172C2.8040301@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.