From: akpm@linux-foundation.org
To: mm-commits@vger.kernel.org
Cc: jbeulich@novell.com, mingo@elte.hu, tglx@linutronix.de
Subject: + small-irq-management-simplification.patch added to -mm tree
Date: Wed, 14 Feb 2007 15:26:35 -0800 [thread overview]
Message-ID: <200702142326.l1ENQZTN012664@shell0.pdx.osdl.net> (raw)
The patch titled
small irq management simplification
has been added to the -mm tree. Its filename is
small-irq-management-simplification.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: small irq management simplification
From: "Jan Beulich" <jbeulich@novell.com>
Use mask_ack_irq() where possible.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
kernel/irq/chip.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff -puN kernel/irq/chip.c~small-irq-management-simplification kernel/irq/chip.c
--- a/kernel/irq/chip.c~small-irq-management-simplification
+++ a/kernel/irq/chip.c
@@ -565,10 +565,8 @@ __set_irq_handler(unsigned int irq, irq_
/* Uninstall? */
if (handle == handle_bad_irq) {
- if (desc->chip != &no_irq_chip) {
- desc->chip->mask(irq);
- desc->chip->ack(irq);
- }
+ if (desc->chip != &no_irq_chip)
+ mask_ack_irq(desc, irq);
desc->status |= IRQ_DISABLED;
desc->depth = 1;
}
_
Patches currently in -mm which might be from jbeulich@novell.com are
origin.patch
broken-config_compat_vdso-on-i386.patch
x86-fatal-kernel-faults-should-update-thread-struct.patch
i386-adjustments-to-page-table-dump-during-oops-v3.patch
small-irq-management-simplification.patch
x86-mtrr-range-check-correction.patch
x86-consolidate-smp_send_stop.patch
next reply other threads:[~2007-02-14 23:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-14 23:26 akpm [this message]
2007-02-16 15:24 ` + small-irq-management-simplification.patch added to -mm tree Thomas Gleixner
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=200702142326.l1ENQZTN012664@shell0.pdx.osdl.net \
--to=akpm@linux-foundation.org \
--cc=jbeulich@novell.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mm-commits@vger.kernel.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.