Commit a5df0d1a authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds

[PATCH] uml: tidy longjmp macro

The UML_SETJMP macro was requiring its users to pass in a argument which it
could supply itself, since it wasn't used outside that invocation of the
macro.
Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8477b55b
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
longjmp(*buf, val); \ longjmp(*buf, val); \
} while(0) } while(0)
#define UML_SETJMP(buf, enable) ({ \ #define UML_SETJMP(buf) ({ \
int n; \ int n, enable; \
enable = get_signals(); \ enable = get_signals(); \
n = setjmp(*buf); \ n = setjmp(*buf); \
if(n != 0) \ if(n != 0) \
......
...@@ -273,12 +273,12 @@ void init_new_thread_signals(void) ...@@ -273,12 +273,12 @@ void init_new_thread_signals(void)
int run_kernel_thread(int (*fn)(void *), void *arg, void **jmp_ptr) int run_kernel_thread(int (*fn)(void *), void *arg, void **jmp_ptr)
{ {
jmp_buf buf; jmp_buf buf;
int n, enable; int n;
*jmp_ptr = &buf; *jmp_ptr = &buf;
n = UML_SETJMP(&buf, enable); n = UML_SETJMP(&buf);
if(n != 0) if(n != 0)
return(n); return n;
(*fn)(arg); (*fn)(arg);
return(0); return 0;
} }
...@@ -435,7 +435,6 @@ void new_thread(void *stack, void **switch_buf_ptr, void **fork_buf_ptr, ...@@ -435,7 +435,6 @@ void new_thread(void *stack, void **switch_buf_ptr, void **fork_buf_ptr,
{ {
unsigned long flags; unsigned long flags;
jmp_buf switch_buf, fork_buf; jmp_buf switch_buf, fork_buf;
int enable;
*switch_buf_ptr = &switch_buf; *switch_buf_ptr = &switch_buf;
*fork_buf_ptr = &fork_buf; *fork_buf_ptr = &fork_buf;
...@@ -450,7 +449,7 @@ void new_thread(void *stack, void **switch_buf_ptr, void **fork_buf_ptr, ...@@ -450,7 +449,7 @@ void new_thread(void *stack, void **switch_buf_ptr, void **fork_buf_ptr,
*/ */
flags = get_signals(); flags = get_signals();
block_signals(); block_signals();
if(UML_SETJMP(&fork_buf, enable) == 0) if(UML_SETJMP(&fork_buf) == 0)
new_thread_proc(stack, handler); new_thread_proc(stack, handler);
remove_sigstack(); remove_sigstack();
...@@ -467,21 +466,19 @@ void new_thread(void *stack, void **switch_buf_ptr, void **fork_buf_ptr, ...@@ -467,21 +466,19 @@ void new_thread(void *stack, void **switch_buf_ptr, void **fork_buf_ptr,
void thread_wait(void *sw, void *fb) void thread_wait(void *sw, void *fb)
{ {
jmp_buf buf, **switch_buf = sw, *fork_buf; jmp_buf buf, **switch_buf = sw, *fork_buf;
int enable;
*switch_buf = &buf; *switch_buf = &buf;
fork_buf = fb; fork_buf = fb;
if(UML_SETJMP(&buf, enable) == 0) if(UML_SETJMP(&buf) == 0)
siglongjmp(*fork_buf, INIT_JMP_REMOVE_SIGSTACK); siglongjmp(*fork_buf, INIT_JMP_REMOVE_SIGSTACK);
} }
void switch_threads(void *me, void *next) void switch_threads(void *me, void *next)
{ {
jmp_buf my_buf, **me_ptr = me, *next_buf = next; jmp_buf my_buf, **me_ptr = me, *next_buf = next;
int enable;
*me_ptr = &my_buf; *me_ptr = &my_buf;
if(UML_SETJMP(&my_buf, enable) == 0) if(UML_SETJMP(&my_buf) == 0)
UML_LONGJMP(next_buf, 1); UML_LONGJMP(next_buf, 1);
} }
...@@ -495,14 +492,14 @@ static jmp_buf *cb_back; ...@@ -495,14 +492,14 @@ static jmp_buf *cb_back;
int start_idle_thread(void *stack, void *switch_buf_ptr, void **fork_buf_ptr) int start_idle_thread(void *stack, void *switch_buf_ptr, void **fork_buf_ptr)
{ {
jmp_buf **switch_buf = switch_buf_ptr; jmp_buf **switch_buf = switch_buf_ptr;
int n, enable; int n;
set_handler(SIGWINCH, (__sighandler_t) sig_handler, set_handler(SIGWINCH, (__sighandler_t) sig_handler,
SA_ONSTACK | SA_RESTART, SIGUSR1, SIGIO, SIGALRM, SA_ONSTACK | SA_RESTART, SIGUSR1, SIGIO, SIGALRM,
SIGVTALRM, -1); SIGVTALRM, -1);
*fork_buf_ptr = &initial_jmpbuf; *fork_buf_ptr = &initial_jmpbuf;
n = UML_SETJMP(&initial_jmpbuf, enable); n = UML_SETJMP(&initial_jmpbuf);
switch(n){ switch(n){
case INIT_JMP_NEW_THREAD: case INIT_JMP_NEW_THREAD:
new_thread_proc((void *) stack, new_thread_handler); new_thread_proc((void *) stack, new_thread_handler);
...@@ -529,14 +526,13 @@ int start_idle_thread(void *stack, void *switch_buf_ptr, void **fork_buf_ptr) ...@@ -529,14 +526,13 @@ int start_idle_thread(void *stack, void *switch_buf_ptr, void **fork_buf_ptr)
void initial_thread_cb_skas(void (*proc)(void *), void *arg) void initial_thread_cb_skas(void (*proc)(void *), void *arg)
{ {
jmp_buf here; jmp_buf here;
int enable;
cb_proc = proc; cb_proc = proc;
cb_arg = arg; cb_arg = arg;
cb_back = &here; cb_back = &here;
block_signals(); block_signals();
if(UML_SETJMP(&here, enable) == 0) if(UML_SETJMP(&here) == 0)
UML_LONGJMP(&initial_jmpbuf, INIT_JMP_CALLBACK); UML_LONGJMP(&initial_jmpbuf, INIT_JMP_CALLBACK);
unblock_signals(); unblock_signals();
......
...@@ -14,11 +14,10 @@ unsigned long __do_user_copy(void *to, const void *from, int n, ...@@ -14,11 +14,10 @@ unsigned long __do_user_copy(void *to, const void *from, int n,
int n), int *faulted_out) int n), int *faulted_out)
{ {
unsigned long *faddrp = (unsigned long *) fault_addr, ret; unsigned long *faddrp = (unsigned long *) fault_addr, ret;
int enable;
jmp_buf jbuf; jmp_buf jbuf;
*fault_catcher = &jbuf; *fault_catcher = &jbuf;
if(UML_SETJMP(&jbuf, enable) == 0){ if(UML_SETJMP(&jbuf) == 0){
(*op)(to, from, n); (*op)(to, from, n);
ret = 0; ret = 0;
*faulted_out = 0; *faulted_out = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment