diff --git a/[refs] b/[refs] index d4689948263a..500a0ebf5863 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 9718769d298f8642d5ef41eb5f55669d7c5b9fd6 +refs/heads/master: a1bf250a6f31afb8caac166ae50dc7b89c38084c diff --git a/trunk/arch/x86/kernel/ioport.c b/trunk/arch/x86/kernel/ioport.c index be72d809bce7..50e5e4a31c85 100644 --- a/trunk/arch/x86/kernel/ioport.c +++ b/trunk/arch/x86/kernel/ioport.c @@ -113,13 +113,9 @@ asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int turn_on) * on system-call entry - see also fork() and the signal handling * code. */ -#ifdef CONFIG_X86_32 -asmlinkage long sys_iopl(unsigned long regsp) +static int do_iopl(unsigned int level, struct pt_regs *regs) { - struct pt_regs *regs = (struct pt_regs *)®sp; - unsigned int level = regs->bx; unsigned int old = (regs->flags >> 12) & 3; - struct thread_struct *t = ¤t->thread; if (level > 3) return -EINVAL; @@ -128,25 +124,31 @@ asmlinkage long sys_iopl(unsigned long regsp) if (!capable(CAP_SYS_RAWIO)) return -EPERM; } - t->iopl = level << 12; regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | (level << 12); - set_iopl_mask(t->iopl); + return 0; } -#else -asmlinkage long sys_iopl(unsigned int level, struct pt_regs *regs) + +#ifdef CONFIG_X86_32 +asmlinkage long sys_iopl(unsigned long regsp) { - unsigned int old = (regs->flags >> 12) & 3; + struct pt_regs *regs = (struct pt_regs *)®sp; + unsigned int level = regs->bx; + struct thread_struct *t = ¤t->thread; + int rc; - if (level > 3) - return -EINVAL; - /* Trying to gain more privileges? */ - if (level > old) { - if (!capable(CAP_SYS_RAWIO)) - return -EPERM; - } - regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | (level << 12); + rc = do_iopl(level, regs); + if (rc < 0) + goto out; - return 0; + t->iopl = level << 12; + 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