Re: [PATCH] x86: ioport_{32|64}.c unification

From: Miguel BotÃn
Date: Sat Jan 05 2008 - 20:21:02 EST


I just realize that in some cases 'regs->flags' is a long instead of an
unsigned long so... this would be a proper solution?

static long do_iopl(unsigned int level, long *flags)
{
...
}

#ifdef CONFIG_X86_32
asmlinkage long sys_iopl(unsigned long regsp)
{
volatile struct pt_regs *regs = (struct pt_regs *)&regsp;
unsigned int level = regs->bx;
#else
asmlinkage long sys_iopl(unsigned int level, struct pt_regs *regs)
{
#endif
return do_iopl(level, (long *)&regs->flags);
}

Or maybe would be better if 'do_iopl' prototype is:

static long do_iopl(unsigned int level, struct pt_regs *regs);

--
Miguel BotÃn
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/