From: Alexander Graf Date: Fri, 19 Feb 2010 11:24:33 +0000 (+0100) Subject: KVM: PPC: Allocate vcpu struct using vmalloc X-Git-Tag: v2.6.35-rc1~436^2~233 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=032c3407310c7612db55ab7e1335a21dc2b4690d;p=pandora-kernel.git KVM: PPC: Allocate vcpu struct using vmalloc We used to use get_free_pages to allocate our vcpu struct. Unfortunately that call failed on me several times after my machine had a big enough uptime, as memory became too fragmented by then. Fortunately, we don't need it to be page aligned any more! We can just vmalloc it and everything's great. Signed-off-by: Alexander Graf Signed-off-by: Avi Kivity --- Reading git-diff-tree failed