All of lore.kernel.org
 help / color / mirror / Atom feed
From: Josh Durgin <josh.durgin@dreamhost.com>
To: kvm@vger.kernel.org, qemu-devel@nongnu.org
Cc: ceph-devel@vger.kernel.org, Kevin Wolf <kwolf@redhat.com>
Subject: [PATCH v3 3/4] rbd: check return values when scheduling aio
Date: Tue, 12 Apr 2011 17:45:25 -0700	[thread overview]
Message-ID: <c5962037945a72d2e8a027aaf770f957cd48984b.1302653035.git.josh.durgin@dreamhost.com> (raw)
In-Reply-To: <cover.1302653035.git.josh.durgin@dreamhost.com>
In-Reply-To: <cover.1302653035.git.josh.durgin@dreamhost.com>

If scheduling fails, the number of outstanding I/Os must be correct,
or there will be a hang when waiting for everything to be flushed.

Reported-by: Stefan Hajnoczi <stefanha@gmail.com>
Signed-off-by: Josh Durgin <josh.durgin@dreamhost.com>
---
 block/rbd.c |   24 ++++++++++++++++++++----
 1 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/block/rbd.c b/block/rbd.c
index 19014fb..ac20282 100644
--- a/block/rbd.c
+++ b/block/rbd.c
@@ -579,10 +579,14 @@ static BlockDriverAIOCB *rbd_aio_rw_vector(BlockDriverState *bs,
     rbd_completion_t c;
     int64_t off, size;
     char *buf;
+    int r;
 
     BDRVRBDState *s = bs->opaque;
 
     acb = qemu_aio_get(&rbd_aio_pool, bs, cb, opaque);
+    if (!acb) {
+        return NULL;
+    }
     acb->write = write;
     acb->qiov = qiov;
     acb->bounce = qemu_blockalign(bs, qiov->size);
@@ -609,16 +613,28 @@ static BlockDriverAIOCB *rbd_aio_rw_vector(BlockDriverState *bs,
     rcb->buf = buf;
     rcb->s = acb->s;
     rcb->size = size;
+    r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
+    if (r < 0) {
+        goto failed;
+    }
 
     if (write) {
-        rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
-        rbd_aio_write(s->image, off, size, buf, c);
+        r = rbd_aio_write(s->image, off, size, buf, c);
     } else {
-        rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
-        rbd_aio_read(s->image, off, size, buf, c);
+        r = rbd_aio_read(s->image, off, size, buf, c);
+    }
+
+    if (r < 0) {
+        goto failed;
     }
 
     return &acb->common;
+
+failed:
+    qemu_free(rcb);
+    s->qemu_aio_count--;
+    qemu_aio_release(acb);
+    return NULL;
 }
 
 static BlockDriverAIOCB *qemu_rbd_aio_readv(BlockDriverState *bs,
-- 
1.7.2.3


WARNING: multiple messages have this Message-ID (diff)
From: Josh Durgin <josh.durgin@dreamhost.com>
To: kvm@vger.kernel.org, qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>, ceph-devel@vger.kernel.org
Subject: [Qemu-devel] [PATCH v3 3/4] rbd: check return values when scheduling aio
Date: Tue, 12 Apr 2011 17:45:25 -0700	[thread overview]
Message-ID: <c5962037945a72d2e8a027aaf770f957cd48984b.1302653035.git.josh.durgin@dreamhost.com> (raw)
In-Reply-To: <cover.1302653035.git.josh.durgin@dreamhost.com>
In-Reply-To: <cover.1302653035.git.josh.durgin@dreamhost.com>

If scheduling fails, the number of outstanding I/Os must be correct,
or there will be a hang when waiting for everything to be flushed.

Reported-by: Stefan Hajnoczi <stefanha@gmail.com>
Signed-off-by: Josh Durgin <josh.durgin@dreamhost.com>
---
 block/rbd.c |   24 ++++++++++++++++++++----
 1 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/block/rbd.c b/block/rbd.c
index 19014fb..ac20282 100644
--- a/block/rbd.c
+++ b/block/rbd.c
@@ -579,10 +579,14 @@ static BlockDriverAIOCB *rbd_aio_rw_vector(BlockDriverState *bs,
     rbd_completion_t c;
     int64_t off, size;
     char *buf;
+    int r;
 
     BDRVRBDState *s = bs->opaque;
 
     acb = qemu_aio_get(&rbd_aio_pool, bs, cb, opaque);
+    if (!acb) {
+        return NULL;
+    }
     acb->write = write;
     acb->qiov = qiov;
     acb->bounce = qemu_blockalign(bs, qiov->size);
@@ -609,16 +613,28 @@ static BlockDriverAIOCB *rbd_aio_rw_vector(BlockDriverState *bs,
     rcb->buf = buf;
     rcb->s = acb->s;
     rcb->size = size;
+    r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
+    if (r < 0) {
+        goto failed;
+    }
 
     if (write) {
-        rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
-        rbd_aio_write(s->image, off, size, buf, c);
+        r = rbd_aio_write(s->image, off, size, buf, c);
     } else {
-        rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
-        rbd_aio_read(s->image, off, size, buf, c);
+        r = rbd_aio_read(s->image, off, size, buf, c);
+    }
+
+    if (r < 0) {
+        goto failed;
     }
 
     return &acb->common;
+
+failed:
+    qemu_free(rcb);
+    s->qemu_aio_count--;
+    qemu_aio_release(acb);
+    return NULL;
 }
 
 static BlockDriverAIOCB *qemu_rbd_aio_readv(BlockDriverState *bs,
-- 
1.7.2.3

  parent reply	other threads:[~2011-04-13  0:45 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-13  0:45 [PATCH v3 0/4] rbd improvements Josh Durgin
2011-04-13  0:45 ` [Qemu-devel] " Josh Durgin
2011-04-13  0:45 ` [PATCH v3 1/4] rbd: use the higher level librbd instead of just librados Josh Durgin
2011-04-13  0:45   ` [Qemu-devel] " Josh Durgin
2011-04-13  0:45 ` [PATCH v3 2/4] rbd: allow configuration of rados from the rbd filename Josh Durgin
2011-04-13  0:45   ` [Qemu-devel] " Josh Durgin
2011-04-13  0:45 ` Josh Durgin [this message]
2011-04-13  0:45   ` [Qemu-devel] [PATCH v3 3/4] rbd: check return values when scheduling aio Josh Durgin
2011-04-13  0:45 ` [PATCH v3 4/4] rbd: Add bdrv_truncate implementation Josh Durgin
2011-04-13  0:45   ` [Qemu-devel] " Josh Durgin
2011-04-13  0:47 ` [qemu-iotests][PATCH] Update rbd support Josh Durgin
2011-04-13  0:47   ` [Qemu-devel] " Josh Durgin
2011-04-13  2:43   ` Christoph Hellwig
2011-04-13  2:43     ` Christoph Hellwig
2011-04-13  5:42     ` Josh Durgin
2011-04-13  5:42       ` [Qemu-devel] " Josh Durgin
2011-04-21  6:49       ` Christoph Hellwig
2011-04-21  6:49         ` Christoph Hellwig

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=c5962037945a72d2e8a027aaf770f957cd48984b.1302653035.git.josh.durgin@dreamhost.com \
    --to=josh.durgin@dreamhost.com \
    --cc=ceph-devel@vger.kernel.org \
    --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.