Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67264
b: refs/heads/master
c: 5b072ba
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Rothwell authored and Paul Mackerras committed Aug 22, 2007
1 parent 3fd887b commit cb4e2a5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7180e3e636deff82f8810291878a184f21142fa9
refs/heads/master: 5b072ba453078293b8f6de8cdd79d9c26f015238
24 changes: 12 additions & 12 deletions trunk/arch/powerpc/platforms/iseries/exception.S
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ iSeries_secondary_smp_loop:

/*** ISeries-LPAR interrupt handlers ***/

STD_EXCEPTION_ISERIES(0x200, machine_check, PACA_EXMC)
STD_EXCEPTION_ISERIES(machine_check, PACA_EXMC)

.globl data_access_iSeries
data_access_iSeries:
Expand Down Expand Up @@ -137,7 +137,7 @@ data_access_slb_iSeries:
ld r12,LPPACASRR1(r12)
b .slb_miss_realmode

STD_EXCEPTION_ISERIES(0x400, instruction_access, PACA_EXGEN)
STD_EXCEPTION_ISERIES(instruction_access, PACA_EXGEN)

.globl instruction_access_slb_iSeries
instruction_access_slb_iSeries:
Expand Down Expand Up @@ -176,13 +176,13 @@ slb_miss_user_iseries:
b slb_miss_user_common
#endif

MASKABLE_EXCEPTION_ISERIES(0x500, hardware_interrupt)
STD_EXCEPTION_ISERIES(0x600, alignment, PACA_EXGEN)
STD_EXCEPTION_ISERIES(0x700, program_check, PACA_EXGEN)
STD_EXCEPTION_ISERIES(0x800, fp_unavailable, PACA_EXGEN)
MASKABLE_EXCEPTION_ISERIES(0x900, decrementer)
STD_EXCEPTION_ISERIES(0xa00, trap_0a, PACA_EXGEN)
STD_EXCEPTION_ISERIES(0xb00, trap_0b, PACA_EXGEN)
MASKABLE_EXCEPTION_ISERIES(hardware_interrupt)
STD_EXCEPTION_ISERIES(alignment, PACA_EXGEN)
STD_EXCEPTION_ISERIES(program_check, PACA_EXGEN)
STD_EXCEPTION_ISERIES(fp_unavailable, PACA_EXGEN)
MASKABLE_EXCEPTION_ISERIES(decrementer)
STD_EXCEPTION_ISERIES(trap_0a, PACA_EXGEN)
STD_EXCEPTION_ISERIES(trap_0b, PACA_EXGEN)

.globl system_call_iSeries
system_call_iSeries:
Expand All @@ -191,9 +191,9 @@ system_call_iSeries:
EXCEPTION_PROLOG_ISERIES_1
b system_call_common

STD_EXCEPTION_ISERIES( 0xd00, single_step, PACA_EXGEN)
STD_EXCEPTION_ISERIES( 0xe00, trap_0e, PACA_EXGEN)
STD_EXCEPTION_ISERIES( 0xf00, performance_monitor, PACA_EXGEN)
STD_EXCEPTION_ISERIES(single_step, PACA_EXGEN)
STD_EXCEPTION_ISERIES(trap_0e, PACA_EXGEN)
STD_EXCEPTION_ISERIES(performance_monitor, PACA_EXGEN)

decrementer_iSeries_masked:
/* We may not have a valid TOC pointer in here. */
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/platforms/iseries/exception.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
ori r10,r10,MSR_RI; \
mtmsrd r10,1

#define STD_EXCEPTION_ISERIES(n, label, area) \
#define STD_EXCEPTION_ISERIES(label, area) \
.globl label##_iSeries; \
label##_iSeries: \
HMT_MEDIUM; \
Expand All @@ -43,7 +43,7 @@ label##_iSeries: \
EXCEPTION_PROLOG_ISERIES_1; \
b label##_common

#define MASKABLE_EXCEPTION_ISERIES(n, label) \
#define MASKABLE_EXCEPTION_ISERIES(label) \
.globl label##_iSeries; \
label##_iSeries: \
HMT_MEDIUM; \
Expand Down

0 comments on commit cb4e2a5

Please sign in to comment.