浏览代码

x86: Merge sys_iopl

Change 32-bit sys_iopl to PTREGSCALL1, and merge with 64-bit.

Signed-off-by: Brian Gerst <brgerst@gmail.com>
LKML-Reference: <1260403316-5679-3-git-send-email-brgerst@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Brian Gerst 15 年之前
父节点
当前提交
27f59559d6
共有 3 个文件被更改,包括 7 次插入29 次删除
  1. 1 5
      arch/x86/include/asm/syscalls.h
  2. 1 1
      arch/x86/kernel/entry_32.S
  3. 5 23
      arch/x86/kernel/ioport.c

+ 1 - 5
arch/x86/include/asm/syscalls.h

@@ -18,6 +18,7 @@
 /* Common in X86_32 and X86_64 */
 /* Common in X86_32 and X86_64 */
 /* kernel/ioport.c */
 /* kernel/ioport.c */
 asmlinkage long sys_ioperm(unsigned long, unsigned long, int);
 asmlinkage long sys_ioperm(unsigned long, unsigned long, int);
+long sys_iopl(unsigned int, struct pt_regs *);
 
 
 /* kernel/process.c */
 /* kernel/process.c */
 int sys_fork(struct pt_regs *);
 int sys_fork(struct pt_regs *);
@@ -35,8 +36,6 @@ asmlinkage int sys_get_thread_area(struct user_desc __user *);
 
 
 /* X86_32 only */
 /* X86_32 only */
 #ifdef CONFIG_X86_32
 #ifdef CONFIG_X86_32
-/* kernel/ioport.c */
-long sys_iopl(struct pt_regs *);
 
 
 /* kernel/process_32.c */
 /* kernel/process_32.c */
 int sys_clone(struct pt_regs *);
 int sys_clone(struct pt_regs *);
@@ -70,9 +69,6 @@ int sys_vm86(struct pt_regs *);
 #else /* CONFIG_X86_32 */
 #else /* CONFIG_X86_32 */
 
 
 /* X86_64 only */
 /* X86_64 only */
-/* kernel/ioport.c */
-asmlinkage long sys_iopl(unsigned int, struct pt_regs *);
-
 /* kernel/process_64.c */
 /* kernel/process_64.c */
 asmlinkage long sys_clone(unsigned long, unsigned long,
 asmlinkage long sys_clone(unsigned long, unsigned long,
 			  void __user *, void __user *,
 			  void __user *, void __user *,

+ 1 - 1
arch/x86/kernel/entry_32.S

@@ -758,7 +758,7 @@ ptregs_##name: \
 	addl $4,%esp; \
 	addl $4,%esp; \
 	ret
 	ret
 
 
-PTREGSCALL0(iopl)
+PTREGSCALL1(iopl)
 PTREGSCALL0(fork)
 PTREGSCALL0(fork)
 PTREGSCALL0(clone)
 PTREGSCALL0(clone)
 PTREGSCALL0(vfork)
 PTREGSCALL0(vfork)

+ 5 - 23
arch/x86/kernel/ioport.c

@@ -103,9 +103,10 @@ asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int turn_on)
  * on system-call entry - see also fork() and the signal handling
  * on system-call entry - see also fork() and the signal handling
  * code.
  * code.
  */
  */
-static int do_iopl(unsigned int level, struct pt_regs *regs)
+long sys_iopl(unsigned int level, struct pt_regs *regs)
 {
 {
 	unsigned int old = (regs->flags >> 12) & 3;
 	unsigned int old = (regs->flags >> 12) & 3;
+	struct thread_struct *t = &current->thread;
 
 
 	if (level > 3)
 	if (level > 3)
 		return -EINVAL;
 		return -EINVAL;
@@ -115,29 +116,10 @@ static int do_iopl(unsigned int level, struct pt_regs *regs)
 			return -EPERM;
 			return -EPERM;
 	}
 	}
 	regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | (level << 12);
 	regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | (level << 12);
-
-	return 0;
-}
-
 #ifdef CONFIG_X86_32
 #ifdef CONFIG_X86_32
-long sys_iopl(struct pt_regs *regs)
-{
-	unsigned int level = regs->bx;
-	struct thread_struct *t = &current->thread;
-	int rc;
-
-	rc = do_iopl(level, regs);
-	if (rc < 0)
-		goto out;
-
 	t->iopl = level << 12;
 	t->iopl = level << 12;
 	set_iopl_mask(t->iopl);
 	set_iopl_mask(t->iopl);
-out:
-	return rc;
-}
-#else
-asmlinkage long sys_iopl(unsigned int level, struct pt_regs *regs)
-{
-	return do_iopl(level, regs);
-}
 #endif
 #endif
+
+	return 0;
+}