diff options
Diffstat (limited to 'arch/s390/mm/fault.c')
-rw-r--r-- | arch/s390/mm/fault.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/mm/fault.c b/arch/s390/mm/fault.c index e8fcd928dc78..b17c42df61c9 100644 --- a/arch/s390/mm/fault.c +++ b/arch/s390/mm/fault.c | |||
@@ -532,7 +532,7 @@ void pfault_fini(void) | |||
532 | static DEFINE_SPINLOCK(pfault_lock); | 532 | static DEFINE_SPINLOCK(pfault_lock); |
533 | static LIST_HEAD(pfault_list); | 533 | static LIST_HEAD(pfault_list); |
534 | 534 | ||
535 | static void pfault_interrupt(unsigned int ext_int_code, | 535 | static void pfault_interrupt(struct ext_code ext_code, |
536 | unsigned int param32, unsigned long param64) | 536 | unsigned int param32, unsigned long param64) |
537 | { | 537 | { |
538 | struct task_struct *tsk; | 538 | struct task_struct *tsk; |
@@ -545,7 +545,7 @@ static void pfault_interrupt(unsigned int ext_int_code, | |||
545 | * in the 'cpu address' field associated with the | 545 | * in the 'cpu address' field associated with the |
546 | * external interrupt. | 546 | * external interrupt. |
547 | */ | 547 | */ |
548 | subcode = ext_int_code >> 16; | 548 | subcode = ext_code.subcode; |
549 | if ((subcode & 0xff00) != __SUBCODE_MASK) | 549 | if ((subcode & 0xff00) != __SUBCODE_MASK) |
550 | return; | 550 | return; |
551 | kstat_cpu(smp_processor_id()).irqs[EXTINT_PFL]++; | 551 | kstat_cpu(smp_processor_id()).irqs[EXTINT_PFL]++; |