From: Dennis Gilmore <dennis@ausil.us>
To: sparclinux@vger.kernel.org
Subject: Re: opps building sparc64 packages
Date: Fri, 23 Jan 2009 17:31:48 +0000 [thread overview]
Message-ID: <200901231131.58907.dennis@ausil.us> (raw)
In-Reply-To: <200901021435.23972.dgilmore@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 2438 bytes --]
On Tuesday 20 January 2009 12:52:28 am David Miller wrote:
> From: David Miller <davem@davemloft.net>
> Date: Mon, 19 Jan 2009 22:35:17 -0800 (PST)
>
> > The code in sun4v_data_access_exception() needs some logic to properly
> > handle the case of the kernel doing a userspace access. Currently it
> > does an OOPS unconditionally when triggered from kernel space, which
> > is wrong.
> >
> > I'll fix this up and post a patch.
Dave,
The patch does fix the issue.
Dennis
> Dennis, here is a 2.6.27 based patch that should fix this bug.
>
> sparc64: Fix DAX handling via userspace access from kernel.
>
> If we do a userspace access from kernel mode, and get a
> data access exception, we need to check the exception
> table just like a normal fault does.
>
> The spitfire DAX handler was doing this, but such logic
> was missing from the sun4v DAX code.
>
> Reported-by: Dennis Gilmore <dgilmore@redhat.com>
> Signed-off-by: David S. Miller <davem@davemloft.net>
>
> diff --git a/arch/sparc64/kernel/traps.c b/arch/sparc64/kernel/traps.c
> index c824df1..eb19724 100644
> --- a/arch/sparc64/kernel/traps.c
> +++ b/arch/sparc64/kernel/traps.c
> @@ -1,6 +1,6 @@
> /* arch/sparc64/kernel/traps.c
> *
> - * Copyright (C) 1995,1997,2008 David S. Miller (davem@davemloft.net)
> + * Copyright (C) 1995,1997,2008,2009 David S. Miller (davem@davemloft.net)
> * Copyright (C) 1997,1999,2000 Jakub Jelinek (jakub@redhat.com)
> */
>
> @@ -262,6 +262,21 @@ void sun4v_data_access_exception(struct pt_regs *regs,
> unsigned long addr, unsig return;
>
> if (regs->tstate & TSTATE_PRIV) {
> + /* Test if this comes from uaccess places. */
> + const struct exception_table_entry *entry;
> +
> + entry = search_exception_tables(regs->tpc);
> + if (entry) {
> + /* Ouch, somebody is trying VM hole tricks on us... */
> +#ifdef DEBUG_EXCEPTIONS
> + printk("Exception: PC<%016lx> faddr<UNKNOWN>\n", regs->tpc);
> + printk("EX_TABLE: insn<%016lx> fixup<%016lx>\n",
> + regs->tpc, entry->fixup);
> +#endif
> + regs->tpc = entry->fixup;
> + regs->tnpc = regs->tpc + 4;
> + return;
> + }
> printk("sun4v_data_access_exception: ADDR[%016lx] "
> "CTX[%04x] TYPE[%04x], going.\n",
> addr, ctx, type);
> --
> To unsubscribe from this list: send the line "unsubscribe sparclinux" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
next prev parent reply other threads:[~2009-01-23 17:31 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-02 20:35 opps building sparc64 packages Dennis Gilmore
2009-01-20 6:35 ` David Miller
2009-01-20 6:52 ` David Miller
2009-01-23 17:31 ` Dennis Gilmore [this message]
2009-01-24 3:50 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200901231131.58907.dennis@ausil.us \
--to=dennis@ausil.us \
--cc=sparclinux@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.