From: Josh Durgin <josh.durgin@dreamhost.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: ceph-devel@vger.kernel.org, qemu-devel@nongnu.org,
kvm@vger.kernel.org, Christian Brunner <chb@muc.de>
Subject: Re: [PATCH v5 4/4] rbd: Add bdrv_truncate implementation
Date: Thu, 26 May 2011 16:09:36 -0700 [thread overview]
Message-ID: <4DDEDDB0.3010501@dreamhost.com> (raw)
In-Reply-To: <4DDE09D4.6020705@redhat.com>
On 05/26/2011 01:05 AM, Kevin Wolf wrote:
> Am 25.05.2011 22:34, schrieb Josh Durgin:
>> Signed-off-by: Josh Durgin<josh.durgin@dreamhost.com>
>> ---
>> block/rbd.c | 15 +++++++++++++++
>> 1 files changed, 15 insertions(+), 0 deletions(-)
>>
>> diff --git a/block/rbd.c b/block/rbd.c
>> index a44d160..b95b1eb 100644
>> --- a/block/rbd.c
>> +++ b/block/rbd.c
>> @@ -688,6 +688,20 @@ static int64_t qemu_rbd_getlength(BlockDriverState *bs)
>> return info.size;
>> }
>>
>> +static int qemu_rbd_truncate(BlockDriverState *bs, int64_t offset)
>> +{
>> + BDRVRBDState *s = bs->opaque;
>> + int r;
>> +
>> + r = rbd_resize(s->image, offset);
>> + if (r< 0) {
>> + error_report("failed to resize rbd image");
>> + return -EIO;
>> + }
>
> Don't print an error message here. The caller will do it, too, so we end
> up with two error messages saying the same.
Fixed.
> What kind of error code does rbd_resize return? If it is a valid errno
> value, you should return r instead of turning it into EIO.
>
> Kevin
The error code is a standard errno value.
Josh
WARNING: multiple messages have this Message-ID (diff)
From: Josh Durgin <josh.durgin@dreamhost.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: ceph-devel@vger.kernel.org, qemu-devel@nongnu.org,
kvm@vger.kernel.org, Christian Brunner <chb@muc.de>
Subject: Re: [Qemu-devel] [PATCH v5 4/4] rbd: Add bdrv_truncate implementation
Date: Thu, 26 May 2011 16:09:36 -0700 [thread overview]
Message-ID: <4DDEDDB0.3010501@dreamhost.com> (raw)
In-Reply-To: <4DDE09D4.6020705@redhat.com>
On 05/26/2011 01:05 AM, Kevin Wolf wrote:
> Am 25.05.2011 22:34, schrieb Josh Durgin:
>> Signed-off-by: Josh Durgin<josh.durgin@dreamhost.com>
>> ---
>> block/rbd.c | 15 +++++++++++++++
>> 1 files changed, 15 insertions(+), 0 deletions(-)
>>
>> diff --git a/block/rbd.c b/block/rbd.c
>> index a44d160..b95b1eb 100644
>> --- a/block/rbd.c
>> +++ b/block/rbd.c
>> @@ -688,6 +688,20 @@ static int64_t qemu_rbd_getlength(BlockDriverState *bs)
>> return info.size;
>> }
>>
>> +static int qemu_rbd_truncate(BlockDriverState *bs, int64_t offset)
>> +{
>> + BDRVRBDState *s = bs->opaque;
>> + int r;
>> +
>> + r = rbd_resize(s->image, offset);
>> + if (r< 0) {
>> + error_report("failed to resize rbd image");
>> + return -EIO;
>> + }
>
> Don't print an error message here. The caller will do it, too, so we end
> up with two error messages saying the same.
Fixed.
> What kind of error code does rbd_resize return? If it is a valid errno
> value, you should return r instead of turning it into EIO.
>
> Kevin
The error code is a standard errno value.
Josh
next prev parent reply other threads:[~2011-05-26 23:09 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-25 20:34 [PATCH v5 0/4] rbd improvements Josh Durgin
2011-05-25 20:34 ` [Qemu-devel] " Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [PATCH v5 1/4] rbd: use the higher level librbd instead of just librados Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [Qemu-devel] " Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [PATCH v5 2/4] rbd: allow configuration of rados from the rbd filename Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [Qemu-devel] " Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-26 8:13 ` Kevin Wolf
2011-05-26 8:13 ` [Qemu-devel] " Kevin Wolf
2011-05-26 23:06 ` Josh Durgin
2011-05-26 23:06 ` [Qemu-devel] " Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [PATCH v5 3/4] rbd: check return values when scheduling aio Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [Qemu-devel] " Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [PATCH v5 4/4] rbd: Add bdrv_truncate implementation Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-25 20:34 ` [Qemu-devel] " Josh Durgin
2011-05-25 20:34 ` Josh Durgin
2011-05-26 8:05 ` Kevin Wolf
2011-05-26 8:05 ` [Qemu-devel] " Kevin Wolf
2011-05-26 23:09 ` Josh Durgin [this message]
2011-05-26 23:09 ` 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=4DDEDDB0.3010501@dreamhost.com \
--to=josh.durgin@dreamhost.com \
--cc=ceph-devel@vger.kernel.org \
--cc=chb@muc.de \
--cc=kvm@vger.kernel.org \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
/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.