Re: [Qemu-devel] [PATCH] qtest: Use cpu address space instead of system memory

2018-07-02 Thread Paolo Bonzini
On 02/07/2018 08:52, Julia Suvorova wrote: > Some devices (like nvic in armv7m) are not accessable through > address_space_memory, therefore can not be tested with qtest. > > Signed-off-by: Julia Suvorova > --- > qtest.c | 39 ++- > 1 file changed, 26 insertio

Re: [Qemu-devel] [PATCH] qtest: Use cpu address space instead of system memory

2018-07-02 Thread Stefan Hajnoczi
On Mon, Jul 02, 2018 at 09:52:37AM +0300, Julia Suvorova via Qemu-devel wrote: > Some devices (like nvic in armv7m) are not accessable through > address_space_memory, therefore can not be tested with qtest. > > Signed-off-by: Julia Suvorova > --- > qtest.c | 39 ++

[Qemu-devel] [PATCH] qtest: Use cpu address space instead of system memory

2018-07-01 Thread Julia Suvorova via Qemu-devel
Some devices (like nvic in armv7m) are not accessable through address_space_memory, therefore can not be tested with qtest. Signed-off-by: Julia Suvorova --- qtest.c | 39 ++- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/qtest.c b/qtest.c in