mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
handle_sysrq lost its pt_regs * argument
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
e24bb60e11
commit
b104189c20
@ -441,7 +441,7 @@ siccuart_rx_chars(struct SICC_info *info, struct pt_regs *regs)
|
||||
#ifdef SUPPORT_SYSRQ
|
||||
if (info->sysrq) {
|
||||
if (ch && time_before(jiffies, info->sysrq)) {
|
||||
handle_sysrq(ch, regs, NULL);
|
||||
handle_sysrq(ch, NULL);
|
||||
info->sysrq = 0;
|
||||
goto ignore_char;
|
||||
}
|
||||
|
@ -675,7 +675,7 @@ static void sysrq_proc(void *arg)
|
||||
{
|
||||
char *op = arg;
|
||||
|
||||
handle_sysrq(*op, ¤t->thread.regs, NULL);
|
||||
handle_sysrq(*op, NULL);
|
||||
}
|
||||
|
||||
void mconsole_sysrq(struct mc_request *req)
|
||||
|
Loading…
Reference in New Issue
Block a user