search for: kvm_vcpu_enable_cap

Displaying 2 results from an estimated 2 matches for "kvm_vcpu_enable_cap".

2014 Jun 04
2
Re: libguestfs supermin error
Hi Rich.. I'm now getting following logs after following your instructions.. libguestfs-test-tool ************************************************************ * IMPORTANT NOTICE * * When reporting bugs, include the COMPLETE, UNEDITED * output below in your bug report. * ************************************************************
2014 Jun 10
2
Re: libguestfs supermin error
...viously the problem. The solution is less obvious ... > > Here is the code. It seems to be checking a kernel capability which > is missing on your (host) kernel: > > void kvmppc_set_papr(PowerPCCPU *cpu) > { > CPUState *cs = CPU(cpu); > int ret; > > ret = kvm_vcpu_enable_cap(cs, KVM_CAP_PPC_PAPR, 0); > if (ret) { > cpu_abort(cs, "This KVM version does not support PAPR\n"); > } > > /* Update the capability flag so we sync the right information > * with kvm */ > cap_papr = 1; > } > > I suggest asking on...