From: Haavard Skinnemoen <hskinnemoen@atmel.com>
To: michael <trimarchi@gandalf.sssup.it>
Cc: Remy Bohmer <linux@bohmer.net>,
fabio@gandalf.sssup.it, Andrew Victor <linux@maxim.org.za>,
Chip Coldwell <coldwell@redhat.com>,
Marc Pignat <marc.pignat@hevs.ch>,
David Brownell <david-b@pacbell.net>,
linux-kernel@vger.kernel.org, Alan Cox <alan@lxorguk.ukuu.org.uk>
Subject: Re: [PATCH -mm v4 6/9] atmel_serial: Split the interrupt handler
Date: Mon, 4 Feb 2008 21:25:23 +0100 [thread overview]
Message-ID: <20080204212523.07a6da9e@siona> (raw)
In-Reply-To: <47A76106.3000103@gandalf.sssup.it>
On Mon, 04 Feb 2008 20:01:26 +0100
michael <trimarchi@gandalf.sssup.it> wrote:
> I think the the atmel_interrupt handler
> must check the
> pass_counter before return IRQ_HANDLED.
I'm not sure if it helps in this particular case but yeah, since the
interrupt may be shared, it's definitely wrong to always return
IRQ_HANDLED.
Nice catch. Could you try the patch below?
Haavard
diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c
index cb70cc5..f310a80 100644
--- a/drivers/serial/atmel_serial.c
+++ b/drivers/serial/atmel_serial.c
@@ -552,7 +552,7 @@ static irqreturn_t atmel_interrupt(int irq, void *dev_id)
atmel_handle_transmit(port, pending);
} while (pass_counter++ < ATMEL_ISR_PASS_LIMIT);
- return IRQ_HANDLED;
+ return pass_counter ? IRQ_HANDLED : IRQ_NONE;
}
/*
next prev parent reply other threads:[~2008-02-04 20:25 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20080129224316.GA23155@gandalf.sssup.it>
2008-01-29 23:12 ` [PATCH -mm v4 6/9] atmel_serial: Split the interrupt handler michael
2008-01-30 9:41 ` Haavard Skinnemoen
2008-01-30 10:21 ` Remy Bohmer
2008-01-30 10:34 ` Haavard Skinnemoen
2008-01-30 11:05 ` Remy Bohmer
2008-01-30 12:43 ` Haavard Skinnemoen
2008-01-30 15:25 ` michael
2008-01-30 10:29 ` michael
2008-01-30 12:36 ` Haavard Skinnemoen
2008-01-30 15:26 ` michael
2008-01-30 15:46 ` Haavard Skinnemoen
2008-01-31 1:53 ` michael
2008-01-31 15:07 ` Haavard Skinnemoen
2008-01-31 19:36 ` Remy Bohmer
2008-02-04 12:39 ` Haavard Skinnemoen
2008-02-04 19:44 ` Remy Bohmer
2008-02-06 12:19 ` michael
2008-02-06 19:41 ` Remy Bohmer
2008-02-13 11:07 ` michael
2008-02-13 20:13 ` Remy Bohmer
2008-02-14 7:30 ` michael
2008-02-04 19:01 ` michael
2008-02-04 20:25 ` Haavard Skinnemoen [this message]
2008-02-05 12:29 ` michael
2008-02-06 12:30 ` Haavard Skinnemoen
2008-02-06 13:41 ` michael
2008-02-06 15:22 ` Haavard Skinnemoen
2008-01-24 12:41 [PATCH -mm v4 0/9] atmel_serial cleanups and improvements Haavard Skinnemoen
2008-01-24 12:41 ` [PATCH -mm v4 1/9] MAINTAINERS: Add myself as maintainer of the atmel_serial driver Haavard Skinnemoen
2008-01-24 12:41 ` [PATCH -mm v4 2/9] atmel_serial: Clean up the code Haavard Skinnemoen
2008-01-24 12:41 ` [PATCH -mm v4 3/9] atmel_serial: Use cpu_relax() when busy-waiting Haavard Skinnemoen
2008-01-24 12:41 ` [PATCH -mm v4 4/9] atmel_serial: Use existing console options only if BRG is running Haavard Skinnemoen
2008-01-24 12:41 ` [PATCH -mm v4 5/9] atmel_serial: Fix bugs in probe() error path and remove() Haavard Skinnemoen
2008-01-24 12:41 ` [PATCH -mm v4 6/9] atmel_serial: Split the interrupt handler Haavard Skinnemoen
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=20080204212523.07a6da9e@siona \
--to=hskinnemoen@atmel.com \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=coldwell@redhat.com \
--cc=david-b@pacbell.net \
--cc=fabio@gandalf.sssup.it \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@bohmer.net \
--cc=linux@maxim.org.za \
--cc=marc.pignat@hevs.ch \
--cc=trimarchi@gandalf.sssup.it \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox