Linus Torvalds wrote:
>
> On Mon, 7 May 2001, Brian Gerst wrote:
> >
> > Keep in mind that regs->eflags could be from user space, and could have
> > some undesirable flags set. That's why I did a test/sti instead of
> > reloading eflags. Plus my patch leaves interrupts disabled for the
> > minimum time possible.
>
> The plain "popf" should be ok: the way intel works, you cannot actually
> use popf to set any of the strange flags (if vm86 mode etc).
TF (trap flag) would be one that I wouldn't want to get reset. You
could use
local_irq_restore(regs->eflags & ~(TF|RF|VM|NT))
which are all the flags cleared by an interrupt/trap gate. Or
if (regs->eflags & IF) sti();
Take your pick.
--
Brian Gerst
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Re: [PATCH] x86 page fault handler not interru... Brian Gerst
- Re: [PATCH] x86 page fault handler not int... Alan Cox
- Re: [PATCH] x86 page fault handler not... Linus Torvalds
- Re: [PATCH] x86 page fault handle... David Woodhouse
- Re: [PATCH] x86 page fault handle... Anton Altaparmakov
- Re: [PATCH] x86 page fault handle... Brian Gerst
- Re: [PATCH] x86 page fault ha... Linus Torvalds
- Re: [PATCH] x86 page fault ha... Nigel Gamble
- Re: [PATCH] x86 page fault ha... Brian Gerst
- Re: [PATCH] x86 page fault ha... Linus Torvalds
- Re: [PATCH] x86 page fault ha... Brian Gerst
- Re: [PATCH] x86 page fault ha... Alan Cox
- Re: [PATCH] x86 page fault ha... Linus Torvalds
- Re: [PATCH] x86 page fault ha... Brian Gerst
- Re: [PATCH] x86 page fault ha... Nigel Gamble
- Re: [PATCH] x86 page fault handle... Jesper Juhl
- Re: [PATCH] x86 page fault handle... Alan Cox
- Re: [PATCH] x86 page fault handler not interru... Linus Torvalds
- RE: [PATCH] x86 page fault handler not interrupt safe Dunlap, Randy
- Re: [PATCH] x86 page fault handler not interrupt s... David Woodhouse
- RE: [PATCH] x86 page fault handler not interrupt s... Anton Altaparmakov

