From: Asias He Date: Fri, 28 May 2010 07:48:16 +0000 (+0800) Subject: kvm: reimplement kvm__setup_sregs X-Git-Tag: next-20110824~3^2~528^2~143 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6ad05844bad0f99c546c6bcb230b77a7cec22a1d;p=karo-tx-linux.git kvm: reimplement kvm__setup_sregs It's better to get sregs which was initialized by kernel and change what we need precisely. Actually vmx_vcpu_reset does the cpu initialization before us. This solves the problem of failing to run on x86-32 host kernel. Signed-off-by: Asias He Signed-off-by: Cyrill Gorcunov --- diff --git a/tools/kvm/kvm.c b/tools/kvm/kvm.c index 3aac4d49a1c3..cf18be7a9177 100644 --- a/tools/kvm/kvm.c +++ b/tools/kvm/kvm.c @@ -491,80 +491,11 @@ static void kvm__setup_regs(struct kvm *self) static void kvm__setup_sregs(struct kvm *self) { - self->sregs = (struct kvm_sregs) { - .cr0 = 0x60000010ULL, - .cs = (struct kvm_segment) { - .selector = self->boot_selector, - .base = selector_to_base(self->boot_selector), - .limit = 0xffffU, - .type = 0x0bU, - .present = 1, - .dpl = 0x03, - .s = 1, - }, - .ss = (struct kvm_segment) { - .selector = self->boot_selector, - .base = selector_to_base(self->boot_selector), - .limit = 0xffffU, - .type = 0x03U, - .present = 1, - .dpl = 0x03, - .s = 1, - }, - .ds = (struct kvm_segment) { - .selector = self->boot_selector, - .base = selector_to_base(self->boot_selector), - .limit = 0xffffU, - .type = 0x03U, - .present = 1, - .dpl = 0x03, - .s = 1, - }, - .es = (struct kvm_segment) { - .selector = self->boot_selector, - .base = selector_to_base(self->boot_selector), - .limit = 0xffffU, - .type = 0x03U, - .present = 1, - .dpl = 0x03, - .s = 1, - }, - .fs = (struct kvm_segment) { - .selector = self->boot_selector, - .base = selector_to_base(self->boot_selector), - .limit = 0xffffU, - .type = 0x03U, - .present = 1, - .dpl = 0x03, - .s = 1, - }, - .gs = (struct kvm_segment) { - .selector = self->boot_selector, - .base = selector_to_base(self->boot_selector), - .limit = 0xffffU, - .type = 0x03U, - .present = 1, - .dpl = 0x03, - .s = 1, - }, - .tr = (struct kvm_segment) { - .limit = 0xffffU, - .present = 1, - .type = 0x03U, - }, - .ldt = (struct kvm_segment) { - .limit = 0xffffU, - .present = 1, - .type = 0x02U, - }, - .gdt = (struct kvm_dtable) { - .limit = 0xffffU, - }, - .idt = (struct kvm_dtable) { - .limit = 0xffffU, - }, - }; + if (ioctl(self->vcpu_fd, KVM_GET_SREGS, &self->sregs) < 0) + die_perror("KVM_GET_SREGS failed"); + self->sregs.cs.selector = self->boot_selector; + self->sregs.cs.base = selector_to_base(self->boot_selector); if (ioctl(self->vcpu_fd, KVM_SET_SREGS, &self->sregs) < 0) die_perror("KVM_SET_SREGS failed"); }