Skip to content

Commit

Permalink
um: sanitize paths in sys_call_table* includes
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
  • Loading branch information
Al Viro authored and Richard Weinberger committed Nov 2, 2011
1 parent 1bbd5f2 commit 8edc414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/x86/um/sys_call_table_32.S
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

.section .rodata,"a"

#include "../../x86/kernel/syscall_table_32.S"
#include "../kernel/syscall_table_32.S"

ENTRY(syscall_table_size)
.long .-sys_call_table
2 changes: 1 addition & 1 deletion arch/x86/um/sys_call_table_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ extern void sys_ni_syscall(void);
*/

sys_call_ptr_t sys_call_table[] __cacheline_aligned = {
#include "../../x86/include/asm/unistd_64.h"
#include <asm/unistd_64.h>
};

int syscall_table_size = sizeof(sys_call_table);

0 comments on commit 8edc414

Please sign in to comment.