Changeset 3396f59 in mainline for arch/amd64/src/boot/boot.S


Ignore:
Timestamp:
2005-09-04T08:28:55Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8ff2f3f
Parents:
005384ad
Message:

Fixed gdtr naming issues after ia32 changes.
Fixed stack alignment on new thread to by multiple of 16,
we are now ABI-correct and we do not #GP on va_arg to boot.
Fixed bad exception register names reporting.
Fixed bad _hardcoded_load_addr, which caused allocation of kernel text
frames.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/boot/boot.S

    r005384ad r3396f59  
    7171
    7272        # Load gdtr, idtr
    73         lgdt bsp_bootstrap_gdtr
     73        lgdt real_bootstrap_gdtr_boot
    7474       
    7575        movl %cr0,%eax
     
    167167        .quad ptl_1 + (PTL_WRITABLE | PTL_PRESENT)
    168168
    169 .global gdtr_inst                               
    170 bsp_bootstrap_gdtr:
     169.global real_bootstrap_gdtr_boot
     170real_bootstrap_gdtr_boot:
    171171        .word gdtselector(GDT_ITEMS)
    172172        .long KA2PA(gdt)-BOOT_OFFSET
Note: See TracChangeset for help on using the changeset viewer.