Re: [Qemu-devel] [PATCH 3/8] block: Support to keep track of I/O status

2011-07-12 Thread Luiz Capitulino
On Tue, 12 Jul 2011 16:25:22 +0200 Kevin Wolf wrote: > Am 05.07.2011 20:17, schrieb Luiz Capitulino: > > This commit adds support to the BlockDriverState type to keep track > > of the last I/O status. That is, at every I/O operation we update > > a status field in the BlockDriverState instance. V

Re: [Qemu-devel] [PATCH 3/8] block: Support to keep track of I/O status

2011-07-12 Thread Luiz Capitulino
On Tue, 12 Jul 2011 11:12:04 +0200 Markus Armbruster wrote: > Kevin Wolf writes: > > > Am 12.07.2011 09:45, schrieb Markus Armbruster: > >> Luiz Capitulino writes: > >> > >>> This commit adds support to the BlockDriverState type to keep track > >>> of the last I/O status. That is, at every I/

Re: [Qemu-devel] [PATCH 3/8] block: Support to keep track of I/O status

2011-07-12 Thread Kevin Wolf
Am 05.07.2011 20:17, schrieb Luiz Capitulino: > This commit adds support to the BlockDriverState type to keep track > of the last I/O status. That is, at every I/O operation we update > a status field in the BlockDriverState instance. Valid statuses are: > OK, FAILED and ENOSPC. > > ENOSPC is dist

Re: [Qemu-devel] [PATCH 3/8] block: Support to keep track of I/O status

2011-07-12 Thread Markus Armbruster
Kevin Wolf writes: > Am 12.07.2011 09:45, schrieb Markus Armbruster: >> Luiz Capitulino writes: >> >>> This commit adds support to the BlockDriverState type to keep track >>> of the last I/O status. That is, at every I/O operation we update >>> a status field in the BlockDriverState instance. V

Re: [Qemu-devel] [PATCH 3/8] block: Support to keep track of I/O status

2011-07-12 Thread Kevin Wolf
Am 12.07.2011 09:45, schrieb Markus Armbruster: > Luiz Capitulino writes: > >> This commit adds support to the BlockDriverState type to keep track >> of the last I/O status. That is, at every I/O operation we update >> a status field in the BlockDriverState instance. Valid statuses are: >> OK, FA

Re: [Qemu-devel] [PATCH 3/8] block: Support to keep track of I/O status

2011-07-12 Thread Markus Armbruster
Luiz Capitulino writes: > This commit adds support to the BlockDriverState type to keep track > of the last I/O status. That is, at every I/O operation we update > a status field in the BlockDriverState instance. Valid statuses are: > OK, FAILED and ENOSPC. > > ENOSPC is distinguished from FAILED

[Qemu-devel] [PATCH 3/8] block: Support to keep track of I/O status

2011-07-05 Thread Luiz Capitulino
This commit adds support to the BlockDriverState type to keep track of the last I/O status. That is, at every I/O operation we update a status field in the BlockDriverState instance. Valid statuses are: OK, FAILED and ENOSPC. ENOSPC is distinguished from FAILED because an management application ca