diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-19 08:50:47 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-19 08:50:47 -0600 |
commit | ddf83d0173c6a64a95a6640e4bfcea4cd789cad2 (patch) | |
tree | d515cadede7bae9ee72e66a57140a7288b5aac36 /posix-aio-compat.c | |
parent | ea830ebb74461c5ad6d199857fb000d2e0284c69 (diff) | |
parent | bd83b3620517ef9f2079cfda465953e60263f623 (diff) |
Merge remote-tracking branch 'kwolf/for-anthony' into staging
Diffstat (limited to 'posix-aio-compat.c')
-rw-r--r-- | posix-aio-compat.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/posix-aio-compat.c b/posix-aio-compat.c index c380ec148c..cccb673d2e 100644 --- a/posix-aio-compat.c +++ b/posix-aio-compat.c @@ -611,8 +611,6 @@ BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd, struct qemu_paiocb *acb; acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque); - if (!acb) - return NULL; acb->aio_type = type; acb->aio_fildes = fd; @@ -638,8 +636,6 @@ BlockDriverAIOCB *paio_ioctl(BlockDriverState *bs, int fd, struct qemu_paiocb *acb; acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque); - if (!acb) - return NULL; acb->aio_type = QEMU_AIO_IOCTL; acb->aio_fildes = fd; acb->aio_offset = 0; |