diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-11-14 17:50:51 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-12-15 12:40:08 +0100 |
commit | 91977c2e5f6419d00f4ae2800586f009b6070ab1 (patch) | |
tree | 49834b4eb5831a3a15d25a280f66c1b98d270585 /block/rbd.c | |
parent | df9309fb432f3fc9f66f4a567f70970d4e46010a (diff) | |
download | qemu-91977c2e5f6419d00f4ae2800586f009b6070ab1.tar.gz qemu-91977c2e5f6419d00f4ae2800586f009b6070ab1.tar.bz2 qemu-91977c2e5f6419d00f4ae2800586f009b6070ab1.zip |
block: qemu_aio_get does not return NULL
Initially done with the following semantic patch:
@ rule1 @
expression E;
statement S;
@@
E = qemu_aio_get (...);
(
- if (E == NULL) { ... }
|
- if (E)
{ <... S ...> }
)
which however missed occurrences in linux-aio.c and posix-aio-compat.c.
Those were done by hand.
The change in vdi_aio_setup's caller was also done by hand.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/rbd.c')
-rw-r--r-- | block/rbd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/block/rbd.c b/block/rbd.c index 9088c52d24..312584a1bb 100644 --- a/block/rbd.c +++ b/block/rbd.c @@ -632,9 +632,6 @@ static BlockDriverAIOCB *rbd_aio_rw_vector(BlockDriverState *bs, 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); |