Re: [Qemu-devel] [RFC][PATCH 10/16] memory: Introduce memory_region_init_reservation

2011-12-04 Thread Jan Kiszka
On 2011-12-04 14:20, Avi Kivity wrote: > On 12/03/2011 01:17 PM, Jan Kiszka wrote: >> From: Jan Kiszka >> >> Introduce a memory region type that can reserve I/O space. Such regions >> are useful for modeling I/O that is only handled outside of QEMU, i.e. >> in the context of an accelerator like KV

Re: [Qemu-devel] [RFC][PATCH 10/16] memory: Introduce memory_region_init_reservation

2011-12-04 Thread Avi Kivity
On 12/03/2011 01:17 PM, Jan Kiszka wrote: > From: Jan Kiszka > > Introduce a memory region type that can reserve I/O space. Such regions > are useful for modeling I/O that is only handled outside of QEMU, i.e. > in the context of an accelerator like KVM. Any access to such a region > from QEMU is

[Qemu-devel] [RFC][PATCH 10/16] memory: Introduce memory_region_init_reservation

2011-12-03 Thread Jan Kiszka
From: Jan Kiszka Introduce a memory region type that can reserve I/O space. Such regions are useful for modeling I/O that is only handled outside of QEMU, i.e. in the context of an accelerator like KVM. Any access to such a region from QEMU is a bug and will be reported as such. Signed-off-by: J