Re: [Qemu-devel] [PATCHv2-repost 1/3] qemu: memory notifiers

2010-01-27 Thread Anthony Liguori
On 01/27/2010 01:47 PM, Michael S. Tsirkin wrote: Ugh, this will fix it. Want me to repost the series? Please do. Regards, Anthony Liguori diff --git a/exec.c b/exec.c index 63caca0..2e7434e 100644 --- a/exec.c +++ b/exec.c @@ -1623,6 +1623,7 @@ const CPULogItem cpu_log_items[] = { {

Re: [Qemu-devel] [PATCHv2-repost 1/3] qemu: memory notifiers

2010-01-27 Thread Michael S. Tsirkin
On Tue, Jan 26, 2010 at 05:07:43PM -0600, Anthony Liguori wrote: > On 01/25/2010 08:29 AM, Michael S. Tsirkin wrote: >> This adds notifiers for phys memory changes: a set of callbacks that >> vhost can register and update kernel accordingly. Down the road, kvm >> code can be switched to use these

Re: [Qemu-devel] [PATCHv2-repost 1/3] qemu: memory notifiers

2010-01-26 Thread Anthony Liguori
On 01/25/2010 08:29 AM, Michael S. Tsirkin wrote: This adds notifiers for phys memory changes: a set of callbacks that vhost can register and update kernel accordingly. Down the road, kvm code can be switched to use these as well, instead of calling kvm code directly from exec.c as is done now.

[Qemu-devel] [PATCHv2-repost 1/3] qemu: memory notifiers

2010-01-25 Thread Michael S. Tsirkin
This adds notifiers for phys memory changes: a set of callbacks that vhost can register and update kernel accordingly. Down the road, kvm code can be switched to use these as well, instead of calling kvm code directly from exec.c as is done now. Signed-off-by: Michael S. Tsirkin Acked-by: Avi Ki