mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Replace all S390_lowcore usages in arch/s390/ by get_lowcore(). Acked-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
14 lines
372 B
C
14 lines
372 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef __ASM_S390_SOFTIRQ_STACK_H
|
|
#define __ASM_S390_SOFTIRQ_STACK_H
|
|
|
|
#include <asm/lowcore.h>
|
|
#include <asm/stacktrace.h>
|
|
|
|
#ifdef CONFIG_SOFTIRQ_ON_OWN_STACK
|
|
static inline void do_softirq_own_stack(void)
|
|
{
|
|
call_on_stack(0, get_lowcore()->async_stack, void, __do_softirq);
|
|
}
|
|
#endif
|
|
#endif /* __ASM_S390_SOFTIRQ_STACK_H */
|