Ignore:
Timestamp:
2013-03-07T22:53:05Z (11 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
850235d, e4a1497
Parents:
31399f3
Message:

For all but ia64, make the actual istate_t location match istate_get().

  • Drop SP_DELTA from the calculation of the bottom of the kernel stack.
  • Make the kernel stack start at its last address (except for ia64).
  • Add alignment to istate_t where needed.
  • istate_get() on ia64 still returns a wrong address.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/proc/scheduler.c

    r31399f3 r2277e03  
    5555        asm volatile (
    5656                "mtsprg0 %[ksp]\n"
    57                 :: [ksp] "r" (KA2PA(&THREAD->kstack[STACK_SIZE - SP_DELTA]))
     57                :: [ksp] "r" (KA2PA(&THREAD->kstack[STACK_SIZE]))
    5858        );
    5959}
Note: See TracChangeset for help on using the changeset viewer.