| .. | .. |
|---|
| 32 | 32 | * Because some traps use the IST stack, we must keep preemption |
|---|
| 33 | 33 | * disabled while calling do_trap(), but do_trap() may call |
|---|
| 34 | 34 | * force_sig_info() which will grab the signal spin_locks for the |
|---|
| 35 | | - * task, which in PREEMPT_RT_FULL are mutexes. By defining |
|---|
| 35 | + * task, which in PREEMPT_RT are mutexes. By defining |
|---|
| 36 | 36 | * ARCH_RT_DELAYS_SIGNAL_SEND the force_sig_info() will set |
|---|
| 37 | 37 | * TIF_NOTIFY_RESUME and set up the signal to be sent on exit of the |
|---|
| 38 | 38 | * trap. |
|---|
| 39 | 39 | */ |
|---|
| 40 | | -#if defined(CONFIG_PREEMPT_RT_FULL) |
|---|
| 40 | +#if defined(CONFIG_PREEMPT_RT) |
|---|
| 41 | 41 | #define ARCH_RT_DELAYS_SIGNAL_SEND |
|---|
| 42 | 42 | #endif |
|---|
| 43 | 43 | |
|---|
| .. | .. |
|---|
| 48 | 48 | #endif /* __ASSEMBLY__ */ |
|---|
| 49 | 49 | #include <uapi/asm/signal.h> |
|---|
| 50 | 50 | #ifndef __ASSEMBLY__ |
|---|
| 51 | | -extern void do_signal(struct pt_regs *regs); |
|---|
| 52 | 51 | |
|---|
| 53 | 52 | #define __ARCH_HAS_SA_RESTORER |
|---|
| 54 | 53 | |
|---|