Fork us on GitHub Follow us on Facebook Follow us on Twitter

Changeset 6c3106f in mainline for kernel/arch/ppc32/src/interrupt.c


Ignore:
Timestamp:
2011-05-18T17:16:06Z (12 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial
Children:
9c757820
Parents:
1182d79
Message:

ppc32: get rid of the real-mode TLB/PHT exception handlers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/interrupt.c

    r1182d79 r6c3106f  
    153153        exc_register(VECTOR_DECREMENTER, "timer", true,
    154154            exception_decrementer);
     155        exc_register(VECTOR_ITLB_MISS, "itlb_miss", true,
     156            tlb_refill);
     157        exc_register(VECTOR_DTLB_MISS_LOAD, "dtlb_miss_load", true,
     158            tlb_refill);
     159        exc_register(VECTOR_DTLB_MISS_STORE, "dtlb_miss_store", true,
     160            tlb_refill);
    155161}
    156162
Note: See TracChangeset for help on using the changeset viewer.