浏览代码

MN10300: Wire up missing system calls

Wire up missing system calls preadv() and pwritev().

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
David Howells 16 年之前
父节点
当前提交
76d320a507
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 2 0
      arch/mn10300/include/asm/unistd.h
  2. 2 0
      arch/mn10300/kernel/entry.S

+ 2 - 0
arch/mn10300/include/asm/unistd.h

@@ -344,6 +344,8 @@
 #define __NR_dup3		331
 #define __NR_pipe2		332
 #define __NR_inotify_init1	333
+#define __NR_preadv		334
+#define __NR_pwritev		335
 
 #ifdef __KERNEL__
 

+ 2 - 0
arch/mn10300/kernel/entry.S

@@ -723,6 +723,8 @@ ENTRY(sys_call_table)
 	.long sys_dup3
 	.long sys_pipe2
 	.long sys_inotify_init1
+	.long sys_preadv
+	.long sys_pwritev		/* 335 */
 
 
 nr_syscalls=(.-sys_call_table)/4