Changeset f126c87 in mainline for kernel/arch/ia32/src/smp/ap.S
- Timestamp:
- 2016-09-01T16:46:27Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2a2fbc8
- Parents:
- 9befb0d (diff), bdfdc51c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/smp/ap.S
r9befb0d rf126c87 75 75 movw %ax, %es 76 76 movw %ax, %ss 77 movl $KA2PA(ctx), %eax 77 movl $KA2PA(ctx), %eax /* KA2PA((uintptr_t) &ctx) */ 78 78 movl CONTEXT_OFFSET_SP(%eax), %esp 79 leal KA2PA(0)(%esp), %esp 79 leal KA2PA(0)(%esp), %esp /* KA2PA(ctx.sp) */ 80 80 81 81 /* … … 85 85 call map_kernel_pse 86 86 87 addl $PA2KA(0), %esp 87 addl $PA2KA(0), %esp /* PA2KA(ctx.sp) */ 88 88 89 89 /* create the first stack frame */
Note:
See TracChangeset
for help on using the changeset viewer.