Re: [Qemu-devel] [PATCH V3 2/4] target-i386:add coalesced_pio API

2018-08-24 Thread Eduardo Habkost
On Fri, Aug 24, 2018 at 05:18:45PM +0800, peng.h...@zte.com.cn wrote: [...] > > > -cpu_physical_memory_write(ent->phys_addr, ent->data, > > > ent->len); > > > +if (ent->pio == 1) { > > > +address_space_rw(_space_io, ent->phys_addr, > > > +

Re: [Qemu-devel] [PATCH V3 2/4] target-i386:add coalesced_pio API

2018-08-24 Thread peng.hao2
> On Fri, Aug 24, 2018 at 12:14:47AM +0800, Peng Hao wrote: > > Signed-off-by: Peng Hao > > --- > > accel/kvm/kvm-all.c | 58 > > - > > include/exec/memattrs.h | 2 +- > > 2 files changed, 53 insertions(+), 7 deletions(-) > > >> @@ -536,7

Re: [Qemu-devel] [PATCH V3 2/4] target-i386:add coalesced_pio API

2018-08-23 Thread Eduardo Habkost
On Fri, Aug 24, 2018 at 12:14:47AM +0800, Peng Hao wrote: > Signed-off-by: Peng Hao > --- > accel/kvm/kvm-all.c | 58 > - > include/exec/memattrs.h | 2 +- > 2 files changed, 53 insertions(+), 7 deletions(-) > > diff --git

[Qemu-devel] [PATCH V3 2/4] target-i386:add coalesced_pio API

2018-08-23 Thread Peng Hao
Signed-off-by: Peng Hao --- accel/kvm/kvm-all.c | 58 - include/exec/memattrs.h | 2 +- 2 files changed, 53 insertions(+), 7 deletions(-) diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c index eb7db92..830745e 100644 ---