On Thu, Jul 16, 2015 at 4:46 AM, Brian Gerst <brge...@gmail.com> wrote:
> Allocate a separate structure for the vm86 fields.
>

> --- a/arch/x86/mm/fault.c
> +++ b/arch/x86/mm/fault.c
> @@ -315,12 +315,12 @@ check_v8086_mode(struct pt_regs *regs, unsigned long 
> address,
>  {
>         unsigned long bit;
>
> -       if (!v8086_mode(regs))
> +       if (!v8086_mode(regs) || !tsk->thread.vm86)
>                 return;
>

What's this for?  Shouldn't that "if (!v8086_mode(regs) ||
WARN_ON(!tsk->thread.vm86))"?

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

Reply via email to