Changeset 1065603e in mainline for arch/ia64/src/fpu_context.c


Ignore:
Timestamp:
2006-03-14T20:09:27Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5f62ef9
Parents:
e4ddfa8
Message:

Fix bug in switch to userspace on ia64: ensure start in bank 1.
Fix bug in tlb_invalidate_all() that cause interrupts to be unconditionally enabled.
Optimize context switching by discarding packed attribute of context structures.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia64/src/fpu_context.c

    re4ddfa8 r1065603e  
    2929
    3030#include <fpu_context.h>
     31#include <print.h>
    3132
    3233void fpu_context_save(fpu_context_t *fctx){
     34                return;
    3335                asm volatile(
    3436                        "stf.spill [%2]=f2,0x80\n"
     
    187189void fpu_context_restore(fpu_context_t *fctx)
    188190{
    189 
     191                return;
    190192                asm volatile(
    191193                        "ldf.fill f2=[%2],0x80\n"
Note: See TracChangeset for help on using the changeset viewer.