On 07/20/2011 08:29 PM, Blue Swirl wrote:
> +
> +static bool memory_region_ioeventfd_before(MemoryRegionIoeventfd a,
> + MemoryRegionIoeventfd b)
> +{
> +if (a.addr.start< b.addr.start) return true;
> +if (a.addr.start> b.addr.start) retur
On Sun, Jul 17, 2011 at 2:13 PM, Avi Kivity wrote:
> As with the rest of the memory API, the caller associates an eventfd
> with an address, and the memory API takes care of registering or
> unregistering when the address is made visible or invisible to the
> guest.
>
> Signed-off-by: Avi Kivity