Changeset 65f3117 in mainline for kernel/arch
- Timestamp:
- 2023-02-25T13:16:38Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6188fee
- Parents:
- 4f84ee42
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-14 13:38:14)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-25 13:16:38)
- Location:
- kernel/arch
- Files:
-
- 4 edited
-
amd64/src/smp/ap.S (modified) (1 diff)
-
ia32/src/smp/ap.S (modified) (1 diff)
-
mips32/src/mm/frame.c (modified) (1 diff)
-
sparc64/src/sun4u/start.S (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/smp/ap.S
r4f84ee42 r65f3117 98 98 .code64 99 99 start64: 100 movabsq $ ctx, %rsp101 movq CONTEXT_OFFSET_SP(%rsp), %rsp100 movabsq $bootstrap_stack_top, %rsp 101 movq (%rsp), %rsp 102 102 103 pushq $0 103 104 pushq $0 104 105 movq %rsp, %rbp -
kernel/arch/ia32/src/smp/ap.S
r4f84ee42 r65f3117 75 75 movw %ax, %es 76 76 movw %ax, %ss 77 movl $KA2PA( ctx), %eax /* KA2PA((uintptr_t) &ctx) */78 movl CONTEXT_OFFSET_SP(%eax), %esp77 movl $KA2PA(bootstrap_stack_top), %eax /* KA2PA((uintptr_t) &bootstrap_stack_top) */ 78 movl (%eax), %esp 79 79 leal KA2PA(0)(%esp), %esp /* KA2PA(ctx.sp) */ 80 80 -
kernel/arch/mips32/src/mm/frame.c
r4f84ee42 r65f3117 111 111 if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE, 112 112 KA2PA(config.base), config.kernel_size)) 113 return false;114 115 /* Kernel stack */116 if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE,117 KA2PA(config.stack_base), config.stack_size))118 113 return false; 119 114 -
kernel/arch/sparc64/src/sun4u/start.S
r4f84ee42 r65f3117 356 356 * in the ctx global variable. 357 357 */ 358 set ctx, %g1 359 add %g1, CONTEXT_OFFSET_SP, %g1 358 set bootstrap_stack_top, %g1 360 359 ldx [%g1], %o6 361 360
Note:
See TracChangeset
for help on using the changeset viewer.
