diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2021-01-30 14:08:31 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2021-02-08 14:02:11 +0100 |
commit | 6c6aee009ec34cb7f5ef76f910c1b9417c81efd8 (patch) | |
tree | f05cf0b1d15d4ab1661ef0b00f5a8130df866fce /arch/powerpc/kernel/exceptions-64s.S | |
parent | powerpc/time: move timer_broadcast_interrupt prototype to asm/time.h (diff) | |
download | linux-6c6aee009ec34cb7f5ef76f910c1b9417c81efd8.tar.xz linux-6c6aee009ec34cb7f5ef76f910c1b9417c81efd8.zip |
powerpc: add and use unknown_async_exception
This is currently the same as unknown_exception, but it will diverge
after interrupt wrappers are added and code moved out of asm into the
wrappers (e.g., async handlers will check FINISH_NAP).
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210130130852.2952424-22-npiggin@gmail.com
Diffstat (limited to 'arch/powerpc/kernel/exceptions-64s.S')
-rw-r--r-- | arch/powerpc/kernel/exceptions-64s.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/exceptions-64s.S b/arch/powerpc/kernel/exceptions-64s.S index 6e245e06848e..86eb1c9400b1 100644 --- a/arch/powerpc/kernel/exceptions-64s.S +++ b/arch/powerpc/kernel/exceptions-64s.S @@ -1926,7 +1926,7 @@ EXC_COMMON_BEGIN(doorbell_super_common) #ifdef CONFIG_PPC_DOORBELL bl doorbell_exception #else - bl unknown_exception + bl unknown_async_exception #endif b interrupt_return @@ -2312,7 +2312,7 @@ EXC_COMMON_BEGIN(h_doorbell_common) #ifdef CONFIG_PPC_DOORBELL bl doorbell_exception #else - bl unknown_exception + bl unknown_async_exception #endif b interrupt_return |