| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | Re: [PATCH v3] mips: irq: add stackoverflow detection |
| From: | Adam Jiang <jiang.adam@gmail.com> |
| Date: | Thu, 7 Oct 2010 00:25:54 +0900 |
| Cc: | Sergei Shtylyov <sshtylyov@mvista.com>, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mail-followup-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=iXp14WBDID+2aGz+eVl4yo3HrS8XLwtdI+PSMgqGtPY=; b=CKN4D2K6DlupTFgn2Zq59zE8wwvwJBLPmFwIIi8oUC+6wPEvRid8hsJ3PGiwU4MzSU puliTNVi6hV2y4SH5oV4DP92dEfrNkStkS8Qle6joPWPqR06cVPtnhQXfiwfHcD29uyP MMJYXJAttDhRBMg3zDzREzEgj31lOG4MAFzk0= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; b=IVFy7eugbt3b+epJtEejQoZ7Ai1mgp7RH0i+wRSZUDKnBW3u54F+QDTXtKiCpwHGF7 2Ww2WX5qIZmcjSvUeOL8Ijwz4kQ106GmwcxTEO0txqBi6HAEtJ+4swM7Qqs0zLxcd40z tDyOUpzrWU2qq5XRmRn4MUP5yulOMGbxh2AWs= |
| In-reply-to: | <20101006112114.GA19856@linux-mips.org> |
| Mail-followup-to: | Ralf Baechle <ralf@linux-mips.org>, Sergei Shtylyov <sshtylyov@mvista.com>, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <1286361676-10743-1-git-send-email-jiang.adam@gmail.com> <4CAC5537.9040904@mvista.com> <20101006112114.GA19856@linux-mips.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mutt/1.5.20 (2009-06-14) |
On Wed, Oct 06, 2010 at 12:21:15PM +0100, Ralf Baechle wrote:
> On Wed, Oct 06, 2010 at 02:53:43PM +0400, Sergei Shtylyov wrote:
>
> > >Add stackoverflow detection to mips arch
> >
> > There's no such word: stackoverflow. Space is needed.
> >
> > >This is the 3rd version of the smiple patch. 2K is too big for many
> > >system, so I Modified the warning line by following Ralf's suggestion.
> >
> > >Signed-off-by: Adam Jiang<jiang.adam@gmail.com>
> > [...]
> >
> > >diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c
> > >index c6345f5..b43edb7 100644
> > >--- a/arch/mips/kernel/irq.c
> > >+++ b/arch/mips/kernel/irq.c
> > >@@ -151,6 +151,28 @@ void __init init_IRQ(void)
> > > #endif
> > > }
> > >
> > >+#ifdef CONFIG_DEBUG_STACKOVERFLOW
> > >+static inline void check_stack_overflow(void)
> > >+{
> > >+ unsigned long sp;
> > >+
> > >+ asm volatile("move %0, $sp" : "=r" (sp));
> > >+ sp = sp & THREAD_MASK;
> >
> > Why not:
> >
> > sp &= THREAD_MASK;
> >
> > It's C, after all! :-)
>
> I already had accepted his previous version with minor changes so I've
> combined the two.
Thanks Ralf. I am very glad I can do this small piece of code for Linux
kernel, though with many faults. :) No doubt I will try to do much more
then.
Best regards,
/Adam
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH v3] mips: irq: add stackoverflow detection, Ralf Baechle |
|---|---|
| Next by Date: | [PATCHv3 1/7] pwm: Add pwm core driver, Arun Murthy |
| Previous by Thread: | Re: [PATCH v3] mips: irq: add stackoverflow detection, Ralf Baechle |
| Next by Thread: | [PATCHv3 0/7] PWM core driver for pwm based led and backlight driver, Arun Murthy |
| Indexes: | [Date] [Thread] [Top] [All Lists] |