Displaying 2 results from an estimated 2 matches for "78d26fe".
Did you mean:
58d66fe
2014 Dec 09
2
Re: [Qemu-devel] Cubietruck: cannot create KVM guests: "kvm_init_vcpu failed: Invalid argument"
On Tue, Dec 09, 2014 at 05:48:04PM +0100, Kashyap Chamarthy wrote:
> On Tue, Dec 09, 2014 at 11:27:02AM +0000, Richard W.M. Jones wrote:
> > On Tue, Dec 09, 2014 at 10:53:41AM +0000, Peter Maydell wrote:
> > > On 9 December 2014 at 10:50, Kashyap Chamarthy <kchamart@redhat.com> wrote:
> > > > Booting a minimal KVM guest throws the below error on Cubietruck:
>
2014 Dec 09
0
Re: [Qemu-devel] Cubietruck: cannot create KVM guests: "kvm_init_vcpu failed: Invalid argument"
...p Chamarthy <kchamart@redhat.com>
> Date: Tue, 9 Dec 2014 16:58:11 +0000
> Subject: [PATCH] arm: Use -cpu host on KVM.
>
> ---
> src/launch.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/src/launch.c b/src/launch.c
> index 9fadce8..78d26fe 100644
> --- a/src/launch.c
> +++ b/src/launch.c
> @@ -400,7 +400,10 @@ const char *
> guestfs___get_cpu_model (int kvm)
> {
> #if defined(__arm__) /* 32 bit ARM. */
> - return NULL;
> + if (kvm)
> + return "host";
> + else
> + retur...