From: Dan Mick <dan.mick@inktank.com>
To: Alex Elder <elder@inktank.com>
Cc: ceph-devel <ceph-devel@vger.kernel.org>
Subject: Re: [PATCH] rbd: get rid of rbd_{get,put}_dev()
Date: Mon, 19 Nov 2012 12:15:47 -0800 [thread overview]
Message-ID: <50AA9373.8070501@inktank.com> (raw)
In-Reply-To: <50A65F24.7000002@inktank.com>
Reviewed-by: Dan Mick <dan.mick@inktank.com>
On 11/16/2012 07:43 AM, Alex Elder wrote:
> The functions rbd_get_dev() and rbd_put_dev() are trivial wrappers
> that add no values, and their existence suggests they may do more
> than what they do.
>
> Get rid of them.
>
> Signed-off-by: Alex Elder <elder@inktank.com>
> ---
> drivers/block/rbd.c | 14 ++------------
> 1 file changed, 2 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
> index 9d9a2f3..f4b5a64 100644
> --- a/drivers/block/rbd.c
> +++ b/drivers/block/rbd.c
> @@ -337,16 +337,6 @@ void rbd_warn(struct rbd_device *rbd_dev, const
> char *fmt, ...)
> # define rbd_assert(expr) ((void) 0)
> #endif /* !RBD_DEBUG */
>
> -static struct device *rbd_get_dev(struct rbd_device *rbd_dev)
> -{
> - return get_device(&rbd_dev->dev);
> -}
> -
> -static void rbd_put_dev(struct rbd_device *rbd_dev)
> -{
> - put_device(&rbd_dev->dev);
> -}
> -
> static int rbd_dev_refresh(struct rbd_device *rbd_dev, u64 *hver);
> static int rbd_dev_v2_refresh(struct rbd_device *rbd_dev, u64 *hver);
>
> @@ -357,7 +347,7 @@ static int rbd_open(struct block_device *bdev,
> fmode_t mode)
> if ((mode & FMODE_WRITE) && rbd_dev->mapping.read_only)
> return -EROFS;
>
> - rbd_get_dev(rbd_dev);
> + (void) get_device(&rbd_dev->dev);
> set_device_ro(bdev, rbd_dev->mapping.read_only);
> rbd_dev->open_count++;
>
> @@ -370,7 +360,7 @@ static int rbd_release(struct gendisk *disk, fmode_t
> mode)
>
> rbd_assert(rbd_dev->open_count > 0);
> rbd_dev->open_count--;
> - rbd_put_dev(rbd_dev);
> + put_device(&rbd_dev->dev);
>
> return 0;
> }
>
prev parent reply other threads:[~2012-11-19 20:15 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-16 15:43 [PATCH] rbd: get rid of rbd_{get,put}_dev() Alex Elder
2012-11-19 20:15 ` Dan Mick [this message]
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=50AA9373.8070501@inktank.com \
--to=dan.mick@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.