From: Dan Mick <dan.mick@inktank.com>
To: Alex Elder <elder@inktank.com>
Cc: "ceph-devel@vger.kernel.org" <ceph-devel@vger.kernel.org>
Subject: Re: [PATCH REPOST 1/4] rbd: define and use rbd_warn()
Date: Thu, 03 Jan 2013 17:11:34 -0800 [thread overview]
Message-ID: <50E62C46.1060901@inktank.com> (raw)
In-Reply-To: <50E5D7E7.40609@inktank.com>
Nifty.
Reviewed-by: Dan Mick <dan.mick@inktank.com>
On 01/03/2013 11:11 AM, Alex Elder wrote:
> Define a new function rbd_warn() that produces a boilerplate warning
> message, identifying in the resulting message the affected rbd
> device in the best way available. Use it in a few places that now
> use pr_warning().
>
> Signed-off-by: Alex Elder <elder@inktank.com>
> ---
> drivers/block/rbd.c | 43 +++++++++++++++++++++++++++++++++----------
> 1 file changed, 33 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
> index d97611e..635b81d 100644
> --- a/drivers/block/rbd.c
> +++ b/drivers/block/rbd.c
> @@ -294,6 +294,33 @@ static struct device rbd_root_dev = {
> .release = rbd_root_dev_release,
> };
>
> +static __printf(2, 3)
> +void rbd_warn(struct rbd_device *rbd_dev, const char *fmt, ...)
> +{
> + struct va_format vaf;
> + va_list args;
> +
> + va_start(args, fmt);
> + vaf.fmt = fmt;
> + vaf.va = &args;
> +
> + if (!rbd_dev)
> + printk(KERN_WARNING "%s: %pV\n", RBD_DRV_NAME, &vaf);
> + else if (rbd_dev->disk)
> + printk(KERN_WARNING "%s: %s: %pV\n",
> + RBD_DRV_NAME, rbd_dev->disk->disk_name, &vaf);
> + else if (rbd_dev->spec && rbd_dev->spec->image_name)
> + printk(KERN_WARNING "%s: image %s: %pV\n",
> + RBD_DRV_NAME, rbd_dev->spec->image_name, &vaf);
> + else if (rbd_dev->spec && rbd_dev->spec->image_id)
> + printk(KERN_WARNING "%s: id %s: %pV\n",
> + RBD_DRV_NAME, rbd_dev->spec->image_id, &vaf);
> + else /* punt */
> + printk(KERN_WARNING "%s: rbd_dev %p: %pV\n",
> + RBD_DRV_NAME, rbd_dev, &vaf);
> + va_end(args);
> +}
> +
> #ifdef RBD_DEBUG
> #define rbd_assert(expr) \
> if (unlikely(!(expr))) { \
> @@ -1403,8 +1430,8 @@ static void rbd_watch_cb(u64 ver, u64 notify_id,
> u8 opcode, void *data)
> (unsigned int) opcode);
> rc = rbd_dev_refresh(rbd_dev, &hver);
> if (rc)
> - pr_warning(RBD_DRV_NAME "%d got notification but failed to "
> - " update snaps: %d\n", rbd_dev->major, rc);
> + rbd_warn(rbd_dev, "got notification but failed to "
> + " update snaps: %d\n", rc);
>
> rbd_req_sync_notify_ack(rbd_dev, hver, notify_id);
> }
> @@ -1767,15 +1794,13 @@ rbd_dev_v1_header_read(struct rbd_device
> *rbd_dev, u64 *version)
> goto out_err;
> if (WARN_ON((size_t) ret < size)) {
> ret = -ENXIO;
> - pr_warning("short header read for image %s"
> - " (want %zd got %d)\n",
> - rbd_dev->spec->image_name, size, ret);
> + rbd_warn(rbd_dev, "short header read (want %zd got %d)",
> + size, ret);
> goto out_err;
> }
> if (!rbd_dev_ondisk_valid(ondisk)) {
> ret = -ENXIO;
> - pr_warning("invalid header for image %s\n",
> - rbd_dev->spec->image_name);
> + rbd_warn(rbd_dev, "invalid header");
> goto out_err;
> }
>
> @@ -2630,9 +2655,7 @@ static int rbd_dev_probe_update_spec(struct
> rbd_device *rbd_dev)
> if (name)
> rbd_dev->spec->image_name = (char *) name;
> else
> - pr_warning(RBD_DRV_NAME "%d "
> - "unable to get image name for image id %s\n",
> - rbd_dev->major, rbd_dev->spec->image_id);
> + rbd_warn(rbd_dev, "unable to get image name");
>
> /* Look up the snapshot name. */
>
next prev parent reply other threads:[~2013-01-04 1:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-03 19:10 [PATCH REPOST 0/4] rbd: add warnings Alex Elder
2013-01-03 19:11 ` [PATCH REPOST 1/4] rbd: define and use rbd_warn() Alex Elder
2013-01-04 1:11 ` Dan Mick [this message]
2013-01-04 16:22 ` [PATCH, v2] " Alex Elder
2013-01-17 17:33 ` Josh Durgin
2013-01-03 19:11 ` [PATCH REPOST 2/4] rbd: add warning messages for missing arguments Alex Elder
2013-01-04 1:10 ` Dan Mick
2013-01-04 15:24 ` Alex Elder
2013-01-03 19:12 ` [PATCH REPOST 3/4] rbd: add a warning in bio_chain_clone_range() Alex Elder
2013-01-17 17:36 ` Josh Durgin
2013-01-03 19:12 ` [PATCH REPOST 4/4] rbd: add warnings to rbd_dev_probe_update_spec() Alex Elder
2013-01-17 17:39 ` 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=50E62C46.1060901@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.