diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-05 13:06:22 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-29 00:01:24 -0500 |
commit | b7f9591c44505ee16ed4561cfeb3642798bdd132 (patch) | |
tree | d7e0ac4a0f36440fffe487c71130a844df566878 | |
parent | 22062a96300dabfef93368a28c34bdf35c9b8308 (diff) |
get rid of ptrace_signal_deliver() arguments
the first one is equal to signal_pt_regs(), the second is never used
(and always NULL, while we are at it).
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | arch/m68k/include/asm/signal.h | 3 | ||||
-rw-r--r-- | arch/m68k/kernel/signal.c | 3 | ||||
-rw-r--r-- | include/linux/ptrace.h | 2 | ||||
-rw-r--r-- | kernel/signal.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/arch/m68k/include/asm/signal.h b/arch/m68k/include/asm/signal.h index eb51a5241187..9c8c46b06b0c 100644 --- a/arch/m68k/include/asm/signal.h +++ b/arch/m68k/include/asm/signal.h | |||
@@ -87,8 +87,7 @@ static inline int sigfindinword(unsigned long word) | |||
87 | #endif /* !CONFIG_CPU_HAS_NO_BITFIELDS */ | 87 | #endif /* !CONFIG_CPU_HAS_NO_BITFIELDS */ |
88 | 88 | ||
89 | #ifndef __uClinux__ | 89 | #ifndef __uClinux__ |
90 | struct pt_regs; | 90 | extern void ptrace_signal_deliver(void); |
91 | extern void ptrace_signal_deliver(struct pt_regs *regs, void *cookie); | ||
92 | #define ptrace_signal_deliver ptrace_signal_deliver | 91 | #define ptrace_signal_deliver ptrace_signal_deliver |
93 | #endif /* __uClinux__ */ | 92 | #endif /* __uClinux__ */ |
94 | 93 | ||
diff --git a/arch/m68k/kernel/signal.c b/arch/m68k/kernel/signal.c index 710a528b928b..9a396cda3147 100644 --- a/arch/m68k/kernel/signal.c +++ b/arch/m68k/kernel/signal.c | |||
@@ -108,8 +108,9 @@ int handle_kernel_fault(struct pt_regs *regs) | |||
108 | return 1; | 108 | return 1; |
109 | } | 109 | } |
110 | 110 | ||
111 | void ptrace_signal_deliver(struct pt_regs *regs, void *cookie) | 111 | void ptrace_signal_deliver(void) |
112 | { | 112 | { |
113 | struct pt_regs *regs = signal_pt_regs(); | ||
113 | if (regs->orig_d0 < 0) | 114 | if (regs->orig_d0 < 0) |
114 | return; | 115 | return; |
115 | switch (regs->d0) { | 116 | switch (regs->d0) { |
diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index b8e6dcec78ae..a89ff04bddd9 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h | |||
@@ -330,7 +330,7 @@ static inline void user_single_step_siginfo(struct task_struct *tsk, | |||
330 | #endif | 330 | #endif |
331 | 331 | ||
332 | #ifndef ptrace_signal_deliver | 332 | #ifndef ptrace_signal_deliver |
333 | #define ptrace_signal_deliver(regs, cookie) do { } while (0) | 333 | #define ptrace_signal_deliver() ((void)0) |
334 | #endif | 334 | #endif |
335 | 335 | ||
336 | /* | 336 | /* |
diff --git a/kernel/signal.c b/kernel/signal.c index 0af8868525d6..17d4e17fd614 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -2141,7 +2141,7 @@ static void do_jobctl_trap(void) | |||
2141 | static int ptrace_signal(int signr, siginfo_t *info, | 2141 | static int ptrace_signal(int signr, siginfo_t *info, |
2142 | struct pt_regs *regs, void *cookie) | 2142 | struct pt_regs *regs, void *cookie) |
2143 | { | 2143 | { |
2144 | ptrace_signal_deliver(regs, cookie); | 2144 | ptrace_signal_deliver(); |
2145 | /* | 2145 | /* |
2146 | * We do not check sig_kernel_stop(signr) but set this marker | 2146 | * We do not check sig_kernel_stop(signr) but set this marker |
2147 | * unconditionally because we do not know whether debugger will | 2147 | * unconditionally because we do not know whether debugger will |