diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/include/kern_util.h | 1 | ||||
-rw-r--r-- | arch/um/kernel/skas/syscall.c | 3 | ||||
-rw-r--r-- | arch/um/kernel/syscall.c | 3 |
3 files changed, 0 insertions, 7 deletions
diff --git a/arch/um/include/kern_util.h b/arch/um/include/kern_util.h index 715ffb5b95c1..3c341222d252 100644 --- a/arch/um/include/kern_util.h +++ b/arch/um/include/kern_util.h | |||
@@ -13,7 +13,6 @@ extern int uml_exitcode; | |||
13 | 13 | ||
14 | extern int ncpus; | 14 | extern int ncpus; |
15 | extern int kmalloc_ok; | 15 | extern int kmalloc_ok; |
16 | extern int nsyscalls; | ||
17 | 16 | ||
18 | #define UML_ROUND_UP(addr) \ | 17 | #define UML_ROUND_UP(addr) \ |
19 | ((((unsigned long) addr) + PAGE_SIZE - 1) & PAGE_MASK) | 18 | ((((unsigned long) addr) + PAGE_SIZE - 1) & PAGE_MASK) |
diff --git a/arch/um/kernel/skas/syscall.c b/arch/um/kernel/skas/syscall.c index 50b476f2b38d..6450f024290f 100644 --- a/arch/um/kernel/skas/syscall.c +++ b/arch/um/kernel/skas/syscall.c | |||
@@ -17,9 +17,6 @@ void handle_syscall(struct uml_pt_regs *r) | |||
17 | 17 | ||
18 | syscall_trace(r, 0); | 18 | syscall_trace(r, 0); |
19 | 19 | ||
20 | current->thread.nsyscalls++; | ||
21 | nsyscalls++; | ||
22 | |||
23 | /* | 20 | /* |
24 | * This should go in the declaration of syscall, but when I do that, | 21 | * This should go in the declaration of syscall, but when I do that, |
25 | * strace -f -c bash -c 'ls ; ls' breaks, sometimes not tracing | 22 | * strace -f -c bash -c 'ls ; ls' breaks, sometimes not tracing |
diff --git a/arch/um/kernel/syscall.c b/arch/um/kernel/syscall.c index b9d92b2089ae..9cffc628a37e 100644 --- a/arch/um/kernel/syscall.c +++ b/arch/um/kernel/syscall.c | |||
@@ -13,9 +13,6 @@ | |||
13 | #include "asm/uaccess.h" | 13 | #include "asm/uaccess.h" |
14 | #include "asm/unistd.h" | 14 | #include "asm/unistd.h" |
15 | 15 | ||
16 | /* Unlocked, I don't care if this is a bit off */ | ||
17 | int nsyscalls = 0; | ||
18 | |||
19 | long sys_fork(void) | 16 | long sys_fork(void) |
20 | { | 17 | { |
21 | long ret; | 18 | long ret; |