-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 60522 b: refs/heads/master c: 22e38f2 h: refs/heads/master v: v3
- Loading branch information
Benjamin Herrenschmidt
authored and
Paul Mackerras
committed
Jun 14, 2007
1 parent
715f2de
commit ae3c48b
Showing
6 changed files
with
95 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 791cc501d422be96d6e3098faf6471ba29f4dd33 | ||
refs/heads/master: 22e38f29328296d9d4cc33e46fd32a63e807abaf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Common signal handling code for both 32 and 64 bits | ||
* | ||
* Copyright (c) 2007 Benjamin Herrenschmidt, IBM Coproration | ||
* Extracted from signal_32.c and signal_64.c | ||
* | ||
* This file is subject to the terms and conditions of the GNU General | ||
* Public License. See the file README.legal in the main directory of | ||
* this archive for more details. | ||
*/ | ||
|
||
#include <linux/ptrace.h> | ||
#include <linux/signal.h> | ||
#include <asm/unistd.h> | ||
|
||
void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka, | ||
int has_handler) | ||
{ | ||
unsigned long ret = regs->gpr[3]; | ||
int restart = 1; | ||
|
||
/* syscall ? */ | ||
if (TRAP(regs) != 0x0C00) | ||
return; | ||
|
||
/* error signalled ? */ | ||
if (!(regs->ccr & 0x10000000)) | ||
return; | ||
|
||
switch (ret) { | ||
case ERESTART_RESTARTBLOCK: | ||
case ERESTARTNOHAND: | ||
/* ERESTARTNOHAND means that the syscall should only be | ||
* restarted if there was no handler for the signal, and since | ||
* we only get here if there is a handler, we dont restart. | ||
*/ | ||
restart = !has_handler; | ||
break; | ||
case ERESTARTSYS: | ||
/* ERESTARTSYS means to restart the syscall if there is no | ||
* handler or the handler was registered with SA_RESTART | ||
*/ | ||
restart = !has_handler || (ka->sa.sa_flags & SA_RESTART) != 0; | ||
break; | ||
case ERESTARTNOINTR: | ||
/* ERESTARTNOINTR means that the syscall should be | ||
* called again after the signal handler returns. | ||
*/ | ||
break; | ||
default: | ||
return; | ||
} | ||
if (restart) { | ||
if (ret == ERESTART_RESTARTBLOCK) | ||
regs->gpr[0] = __NR_restart_syscall; | ||
else | ||
regs->gpr[3] = regs->orig_gpr3; | ||
regs->nip -= 4; | ||
regs->result = 0; | ||
} else { | ||
regs->result = -EINTR; | ||
regs->gpr[3] = EINTR; | ||
regs->ccr |= 0x10000000; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright (c) 2007 Benjamin Herrenschmidt, IBM Coproration | ||
* Extracted from signal_32.c and signal_64.c | ||
* | ||
* This file is subject to the terms and conditions of the GNU General | ||
* Public License. See the file README.legal in the main directory of | ||
* this archive for more details. | ||
*/ | ||
|
||
#ifndef _POWERPC_ARCH_SIGNAL_H | ||
#define _POWERPC_ARCH_SIGNAL_H | ||
|
||
extern void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka, | ||
int has_handler); | ||
|
||
#endif /* _POWERPC_ARCH_SIGNAL_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters