Re: [Qemu-devel] [PATCH v1 3/3] scsi-block: adding flag at realize to enable Block Limits emulation

2018-06-21 Thread Daniel Henrique Barboza
On 06/21/2018 07:01 AM, Paolo Bonzini wrote: On 08/06/2018 22:07, Daniel Henrique Barboza wrote: The previous patches implemented a way to deliver an emulated Block Limits (BL) response for the guest in case the underlying hardware does not support this page. However, the approach used is

Re: [Qemu-devel] [PATCH v1 3/3] scsi-block: adding flag at realize to enable Block Limits emulation

2018-06-21 Thread Paolo Bonzini
On 08/06/2018 22:07, Daniel Henrique Barboza wrote: > The previous patches implemented a way to deliver an emulated > Block Limits (BL) response for the guest in case the underlying > hardware does not support this page. > > However, the approach used is crude. We're executing the logic for > all

[Qemu-devel] [PATCH v1 3/3] scsi-block: adding flag at realize to enable Block Limits emulation

2018-06-08 Thread Daniel Henrique Barboza
The previous patches implemented a way to deliver an emulated Block Limits (BL) response for the guest in case the underlying hardware does not support this page. However, the approach used is crude. We're executing the logic for all SCSI devices, regardless of whether they need it or not.