Re: [PATCH] KVM: PPC: Memset vcpu to zeros

2010-02-24 Thread Avi Kivity
On 02/22/2010 05:52 PM, Alexander Graf wrote: While converting the kzalloc we used to allocate our vcpu struct to vmalloc, I forgot to memset the contents to zeros. That broke quite a lot. This patch memsets it to zero again. Applied, thanks. -- error compiling committee.c: too many

Re: [PATCH] KVM: PPC: Memset vcpu to zeros

2010-02-24 Thread Avi Kivity
On 02/22/2010 05:52 PM, Alexander Graf wrote: While converting the kzalloc we used to allocate our vcpu struct to vmalloc, I forgot to memset the contents to zeros. That broke quite a lot. This patch memsets it to zero again. Applied, thanks. -- error compiling committee.c: too many

[PATCH] KVM: PPC: Memset vcpu to zeros

2010-02-22 Thread Alexander Graf
While converting the kzalloc we used to allocate our vcpu struct to vmalloc, I forgot to memset the contents to zeros. That broke quite a lot. This patch memsets it to zero again. Signed-off-by: Alexander Graf ag...@suse.de --- arch/powerpc/kvm/book3s.c |1 + 1 files changed, 1