[PATCH] uml: change interface to boot_timer_handler
Current implementation of boot_timer_handler isn't usable for s390. So I changed its name to do_boot_timer_handler, taking (struct sigcontext *)sc as argument. do_boot_timer_handler is called from new boot_timer_handler() in arch/um/os-Linux/signal.c, which uses the same mechanisms as other signal handler to find out sigcontext pointer. Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com> Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Родитель
cff65c4f0e
Коммит
2c332a2513
|
@ -84,12 +84,11 @@ void timer_irq(union uml_pt_regs *regs)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void boot_timer_handler(int sig)
|
void do_boot_timer_handler(struct sigcontext * sc)
|
||||||
{
|
{
|
||||||
struct pt_regs regs;
|
struct pt_regs regs;
|
||||||
|
|
||||||
CHOOSE_MODE((void)
|
CHOOSE_MODE((void) (UPT_SC(®s.regs) = sc),
|
||||||
(UPT_SC(®s.regs) = (struct sigcontext *) (&sig + 1)),
|
|
||||||
(void) (regs.regs.skas.is_user = 0));
|
(void) (regs.regs.skas.is_user = 0));
|
||||||
do_timer(®s);
|
do_timer(®s);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include "user_util.h"
|
#include "user_util.h"
|
||||||
#include "kern_util.h"
|
|
||||||
#include "user.h"
|
#include "user.h"
|
||||||
#include "signal_kern.h"
|
#include "signal_kern.h"
|
||||||
#include "sysdep/sigcontext.h"
|
#include "sysdep/sigcontext.h"
|
||||||
|
@ -49,6 +48,17 @@ void alarm_handler(ARCH_SIGHDLR_PARAM)
|
||||||
switch_timers(1);
|
switch_timers(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern void do_boot_timer_handler(struct sigcontext * sc);
|
||||||
|
|
||||||
|
void boot_timer_handler(ARCH_SIGHDLR_PARAM)
|
||||||
|
{
|
||||||
|
struct sigcontext *sc;
|
||||||
|
|
||||||
|
ARCH_GET_SIGCONTEXT(sc, sig);
|
||||||
|
|
||||||
|
do_boot_timer_handler(sc);
|
||||||
|
}
|
||||||
|
|
||||||
void set_sigstack(void *sig_stack, int size)
|
void set_sigstack(void *sig_stack, int size)
|
||||||
{
|
{
|
||||||
stack_t stack = ((stack_t) { .ss_flags = 0,
|
stack_t stack = ((stack_t) { .ss_flags = 0,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче