Paolo Bonzini ad54ae80c7 block: bdrv_aio_* do not return NULL
Initially done with the following semantic patch:

@ rule1 @
expression E;
statement S;
@@
  E =
(
   bdrv_aio_readv
|  bdrv_aio_writev
|  bdrv_aio_flush
|  bdrv_aio_discard
|  bdrv_aio_ioctl
)
     (...);
(
- if (E == NULL) { ... }
|
- if (E)
    { <... S ...> }
)

which however missed the occurrence in block/blkverify.c
(as it should have done), and left behind some unused
variables.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2011-12-15 12:40:07 +01:00
..
2011-10-26 14:22:40 +01:00
2011-09-21 14:32:20 +02:00
2011-12-15 12:40:07 +01:00
2011-12-15 12:40:07 +01:00
2011-09-21 14:32:20 +02:00
2011-10-11 15:57:11 +02:00
2011-12-15 12:40:07 +01:00
2011-11-24 18:31:59 +02:00
2011-08-08 10:15:54 -05:00
2011-12-06 09:56:41 +00:00