From: "Chris Friesen" <cfriesen@nortel.com>
To: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
linux-kernel@vger.kernel.org,
Steven Rostedt <rostedt@goodmis.org>,
David Miller <davem@davemloft.net>,
linuxppc-dev@ozlabs.org, Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@elte.hu>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH 0/2] ftrace: fixes for PPC
Date: Thu, 16 Oct 2008 23:37:05 -0600 [thread overview]
Message-ID: <48F82481.8070201@nortel.com> (raw)
In-Reply-To: <20081016181452.GA29739@yoda.jdub.homelinux.org>
Josh Boyer wrote:
> Are these two merged yet? I just spent the better part of the morning
> trying to figure out why various Fedora kernels based on 2.6.27-rcX and
> 2.6.27 final hung on my G5 and finally got one booting with FTRACE
> disabled.
Until recently I could boot my G5 with FTRACE enabled, but it totally screwed
up load balancing.
As of a couple days ago, -tip hung on boot due to the following genirq
issue:
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c
index 570d1ea..1c178ae 100644
--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -132,7 +132,7 @@ int set_irq_type(unsigned int irq, unsigned int type)
return 0;
spin_lock_irqsave(&desc->lock, flags);
- ret = __irq_set_trigger(desc, irq, flags);
+ ret = __irq_set_trigger(desc, irq, type);
spin_unlock_irqrestore(&desc->lock, flags);
return ret;
}
Chris
WARNING: multiple messages have this Message-ID (diff)
From: "Chris Friesen" <cfriesen@nortel.com>
To: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Cc: Ingo Molnar <mingo@elte.hu>,
Andrew Morton <akpm@linux-foundation.org>,
Peter Zijlstra <peterz@infradead.org>,
linux-kernel@vger.kernel.org,
Steven Rostedt <rostedt@goodmis.org>,
linuxppc-dev@ozlabs.org, Thomas Gleixner <tglx@linutronix.de>,
David Miller <davem@davemloft.net>
Subject: Re: [PATCH 0/2] ftrace: fixes for PPC
Date: Thu, 16 Oct 2008 23:37:05 -0600 [thread overview]
Message-ID: <48F82481.8070201@nortel.com> (raw)
In-Reply-To: <20081016181452.GA29739@yoda.jdub.homelinux.org>
Josh Boyer wrote:
> Are these two merged yet? I just spent the better part of the morning
> trying to figure out why various Fedora kernels based on 2.6.27-rcX and
> 2.6.27 final hung on my G5 and finally got one booting with FTRACE
> disabled.
Until recently I could boot my G5 with FTRACE enabled, but it totally screwed
up load balancing.
As of a couple days ago, -tip hung on boot due to the following genirq
issue:
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c
index 570d1ea..1c178ae 100644
--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -132,7 +132,7 @@ int set_irq_type(unsigned int irq, unsigned int type)
return 0;
spin_lock_irqsave(&desc->lock, flags);
- ret = __irq_set_trigger(desc, irq, flags);
+ ret = __irq_set_trigger(desc, irq, type);
spin_unlock_irqrestore(&desc->lock, flags);
return ret;
}
Chris
next prev parent reply other threads:[~2008-10-17 5:37 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-06 5:06 [PATCH 0/2] ftrace: fixes for PPC Steven Rostedt
2008-09-06 5:06 ` Steven Rostedt
2008-09-06 5:06 ` [PATCH 1/2] ftrace: use ftrace_release for all dynamic ftrace functions Steven Rostedt
2008-09-06 5:06 ` Steven Rostedt
2008-09-06 5:06 ` [PATCH 2/2] ftrace: fix unlocking of hash Steven Rostedt
2008-09-06 5:06 ` Steven Rostedt
2008-09-06 12:03 ` [PATCH 0/2] ftrace: fixes for PPC Ingo Molnar
2008-09-06 12:03 ` Ingo Molnar
2008-10-16 18:14 ` Josh Boyer
2008-10-16 18:14 ` Josh Boyer
2008-10-16 18:22 ` Steven Rostedt
2008-10-16 18:22 ` Steven Rostedt
2008-10-16 18:35 ` Josh Boyer
2008-10-16 18:35 ` Josh Boyer
2008-10-16 18:42 ` Steven Rostedt
2008-10-16 18:42 ` Steven Rostedt
2008-10-16 18:45 ` Steven Rostedt
2008-10-16 18:45 ` Steven Rostedt
2008-10-16 19:01 ` Josh Boyer
2008-10-16 19:01 ` Josh Boyer
2008-10-20 16:30 ` Steven Rostedt
2008-10-20 16:30 ` Steven Rostedt
2008-10-20 17:08 ` Josh Boyer
2008-10-20 17:08 ` Josh Boyer
2008-10-20 17:28 ` Steven Rostedt
2008-10-20 17:28 ` Steven Rostedt
2008-10-20 17:42 ` Frédéric Weisbecker
2008-10-20 17:42 ` Frédéric Weisbecker
2008-10-20 17:53 ` Steven Rostedt
2008-10-20 17:53 ` Steven Rostedt
2008-10-20 21:47 ` Frédéric Weisbecker
2008-10-20 21:47 ` Frédéric Weisbecker
2008-10-17 0:48 ` [PATCH] ftrace: powerpc: remove startup functions from tracing Steven Rostedt
2008-10-17 0:48 ` Steven Rostedt
2008-10-17 0:50 ` Benjamin Herrenschmidt
2008-10-17 0:50 ` Benjamin Herrenschmidt
2008-10-17 1:04 ` Steven Rostedt
2008-10-17 1:04 ` Steven Rostedt
2008-10-17 5:37 ` Chris Friesen [this message]
2008-10-17 5:37 ` [PATCH 0/2] ftrace: fixes for PPC Chris Friesen
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=48F82481.8070201@nortel.com \
--to=cfriesen@nortel.com \
--cc=akpm@linux-foundation.org \
--cc=davem@davemloft.net \
--cc=jwboyer@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=mingo@elte.hu \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
/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.