Message ID | jpgr3nq1cm7.fsf@linux.bootlegged.copy (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 30/07/2015 06:41, Bandan Das wrote: > > diff --git a/x86/cstart64.S b/x86/cstart64.S > index 8d0d95d..8d5ee2d 100644 > --- a/x86/cstart64.S > +++ b/x86/cstart64.S > @@ -213,7 +213,11 @@ idt_descr: > > load_tss: > lidtq idt_descr > - mov $0, %eax > + mov $0x10, %eax > + mov %ax, %ds > + mov %ax, %es > + mov %ax, %fs > + mov %ax, %gs > mov %ax, %ss > mov $(APIC_DEFAULT_PHYS_BASE + APIC_ID), %eax > mov (%rax), %eax > > Paolo, what is the purpose of initializing %gs and %fs ? It seems if I comment > out "mov %ax, %gs", the test works. Oh, you're right! setup_percpu_area writes the GS base. Also the 0x10 selector is the same between the 32-bit and 64-bit GDT, so it should be okay to remove the whole sequence of moves (from mov $0, %eax to mov %ax, %ss). Paolo -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/x86/cstart64.S b/x86/cstart64.S index 8d0d95d..8d5ee2d 100644 --- a/x86/cstart64.S +++ b/x86/cstart64.S @@ -213,7 +213,11 @@ idt_descr: load_tss: lidtq idt_descr - mov $0, %eax + mov $0x10, %eax + mov %ax, %ds + mov %ax, %es + mov %ax, %fs + mov %ax, %gs mov %ax, %ss mov $(APIC_DEFAULT_PHYS_BASE + APIC_ID), %eax mov (%rax), %eax