[Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-26 Thread Luiz Capitulino
This commit adds support to the BlockDriverState type to keep track of devices' I/O status. There are three possible status: BDRV_IOS_OK (no error), BDRV_IOS_ENOSPC (no space error) and BDRV_IOS_FAILED (any other error). The distinction between no space and other errors is important because a mana

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-26 Thread Markus Armbruster
Luiz Capitulino writes: > On Mon, 26 Sep 2011 11:34:34 +0200 > Markus Armbruster wrote: > >> Luiz Capitulino writes: >> >> > On Fri, 23 Sep 2011 17:36:53 +0200 >> > Markus Armbruster wrote: >> > >> >> Luiz Capitulino writes: >> >> >> >> > On Fri, 23 Sep 2011 09:51:24 +0200 >> >> > Markus Ar

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-26 Thread Luiz Capitulino
On Mon, 26 Sep 2011 11:34:34 +0200 Markus Armbruster wrote: > Luiz Capitulino writes: > > > On Fri, 23 Sep 2011 17:36:53 +0200 > > Markus Armbruster wrote: > > > >> Luiz Capitulino writes: > >> > >> > On Fri, 23 Sep 2011 09:51:24 +0200 > >> > Markus Armbruster wrote: > >> > > >> >> Luiz Cap

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-26 Thread Markus Armbruster
Luiz Capitulino writes: > On Fri, 23 Sep 2011 17:36:53 +0200 > Markus Armbruster wrote: > >> Luiz Capitulino writes: >> >> > On Fri, 23 Sep 2011 09:51:24 +0200 >> > Markus Armbruster wrote: >> > >> >> Luiz Capitulino writes: >> >> >> >> > This commit adds support to the BlockDriverState typ

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-23 Thread Luiz Capitulino
On Fri, 23 Sep 2011 17:36:53 +0200 Markus Armbruster wrote: > Luiz Capitulino writes: > > > On Fri, 23 Sep 2011 09:51:24 +0200 > > Markus Armbruster wrote: > > > >> Luiz Capitulino writes: > >> > >> > This commit adds support to the BlockDriverState type to keep track > >> > of devices' I/O

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-23 Thread Markus Armbruster
Luiz Capitulino writes: > On Fri, 23 Sep 2011 09:51:24 +0200 > Markus Armbruster wrote: > >> Luiz Capitulino writes: >> >> > This commit adds support to the BlockDriverState type to keep track >> > of devices' I/O status. >> > >> > There are three possible status: BDRV_IOS_OK (no error), BDRV_

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-23 Thread Luiz Capitulino
On Fri, 23 Sep 2011 09:51:24 +0200 Markus Armbruster wrote: > Luiz Capitulino writes: > > > This commit adds support to the BlockDriverState type to keep track > > of devices' I/O status. > > > > There are three possible status: BDRV_IOS_OK (no error), BDRV_IOS_ENOSPC > > (no space error) and B

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-23 Thread Markus Armbruster
Markus Armbruster writes: > Luiz Capitulino writes: > >> This commit adds support to the BlockDriverState type to keep track >> of devices' I/O status. >> >> There are three possible status: BDRV_IOS_OK (no error), BDRV_IOS_ENOSPC >> (no space error) and BDRV_IOS_FAILED (any other error). The di

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-23 Thread Markus Armbruster
Luiz Capitulino writes: > This commit adds support to the BlockDriverState type to keep track > of devices' I/O status. > > There are three possible status: BDRV_IOS_OK (no error), BDRV_IOS_ENOSPC > (no space error) and BDRV_IOS_FAILED (any other error). The distinction > between no space and oth

Re: [Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-23 Thread Zhi Yong Wu
On Fri, Sep 23, 2011 at 2:19 AM, Luiz Capitulino wrote: > This commit adds support to the BlockDriverState type to keep track > of devices' I/O status. > > There are three possible status: BDRV_IOS_OK (no error), BDRV_IOS_ENOSPC > (no space error) and BDRV_IOS_FAILED (any other error). The distinc

[Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-22 Thread Luiz Capitulino
This commit adds support to the BlockDriverState type to keep track of devices' I/O status. There are three possible status: BDRV_IOS_OK (no error), BDRV_IOS_ENOSPC (no space error) and BDRV_IOS_FAILED (any other error). The distinction between no space and other errors is important because a mana

[Qemu-devel] [PATCH 1/6] block: Keep track of devices' I/O status

2011-09-01 Thread Luiz Capitulino
This commit adds support to the BlockDriverState type to keep track of the devices' I/O status. There are three possible status: BDRV_IOS_OK (no error so far), BDRV_IOS_ENOSPC (no space error) and BDRV_IOS_FAILED (any other error). The distinction between no space and other errors is important bec