login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
May
»
28
Re: b44: regression in 2.6.22 (resend)
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Michael Buesch
Subject:
Re: b44: regression in 2.6.22 (resend)
Date: Monday, May 28, 2007 - 7:55 am
On Monday 28 May 2007 16:12:12 Maximilian Engelhardt wrote:
quoted text
> On Monday 28 May 2007, Michael Buesch wrote: > > Can you also test the following patch? > > I think there's a bug in b44 that is doesn't properly discard > > shared IRQs, so it might possibly generate a NAPI storm, dunno. > > Worth a try. > > > > Index: linux-2.6.22-rc3/drivers/net/b44.c > > =================================================================== > > --- linux-2.6.22-rc3.orig/drivers/net/b44.c 2007-05-27 23:01:44.000000000 > > +0200 +++ linux-2.6.22-rc3/drivers/net/b44.c 2007-05-28 12:48:27.000000000 > > +0200 @@ -911,6 +911,8 @@ static irqreturn_t b44_interrupt(int irq > > spin_lock(&bp->lock); > > > > istat = br32(bp, B44_ISTAT); > > + if (istat == 0xFFFFFFFF) > > + goto out; /* Shared IRQ not for us */ > > imask = br32(bp, B44_IMASK); > > > > /* The interrupt mask register controls which interrupt bits > > @@ -942,6 +944,7 @@ irq_ack: > > bw32(bp, B44_ISTAT, istat); > > br32(bp, B44_ISTAT); > > } > > +out: > > spin_unlock(&bp->lock); > > return IRQ_RETVAL(handled); > > } > > I did try this patch on a affected kernel, but I didn't notice any big > difference. Perhaps the kernel is a bit less slow during the test, but It's > hard to tell.
Ok, but anyway. I think this is a bug and needs to be fixed this way. Gary? -- Greetings Michael. -
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Sun May 27, 12:25 pm)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Sun May 27, 12:45 pm)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Sun May 27, 1:36 pm)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Sun May 27, 1:46 pm)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Sun May 27, 2:13 pm)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Sun May 27, 2:16 pm)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Sun May 27, 2:46 pm)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Sun May 27, 2:50 pm)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Sun May 27, 3:15 pm)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Sun May 27, 5:24 pm)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Sun May 27, 5:40 pm)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Mon May 28, 3:16 am)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Mon May 28, 3:49 am)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Mon May 28, 7:09 am)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Mon May 28, 7:12 am)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Mon May 28, 7:55 am)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Mon May 28, 8:14 am)
Re: b44: regression in 2.6.22 (resend)
, Thomas Gleixner
, (Mon May 28, 8:32 am)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Mon May 28, 8:43 am)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Mon May 28, 10:44 am)
Re: b44: regression in 2.6.22 (resend)
, Thomas Gleixner
, (Mon May 28, 12:23 pm)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Mon May 28, 1:55 pm)
Re: b44: regression in 2.6.22 (resend)
, Thomas Gleixner
, (Mon May 28, 2:45 pm)
Re: b44: regression in 2.6.22 (resend)
, Gary Zambrano
, (Tue May 29, 6:58 am)
Re: b44: regression in 2.6.22 (resend)
, Gary Zambrano
, (Tue May 29, 7:14 am)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Tue May 29, 10:23 am)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Tue May 29, 11:28 am)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Tue May 29, 1:45 pm)
Re: b44: regression in 2.6.22 (resend)
, Stephen Hemminger
, (Tue May 29, 2:01 pm)
Re: b44: regression in 2.6.22 (resend)
, Gary Zambrano
, (Tue May 29, 2:05 pm)
Re: b44: regression in 2.6.22 (resend)
, Gary Zambrano
, (Tue May 29, 2:36 pm)
Re: b44: regression in 2.6.22 (resend)
, Jeff Garzik
, (Tue May 29, 3:39 pm)
Re: b44: regression in 2.6.22 (resend)
, Michael Buesch
, (Wed May 30, 3:45 am)
Re: b44: regression in 2.6.22 (resend)
, Maximilian Engelhardt
, (Sun Jun 3, 9:26 am)
Re: b44: regression in 2.6.22 (resend)
, Thomas Gleixner
, (Sun Jun 3, 11:39 pm)
Re: b44: regression in 2.6.22 (resend)
, Stephen Hemminger
, (Mon Jun 4, 9:09 am)
Re: b44: regression in 2.6.22 (resend)
, Thomas Gleixner
, (Mon Jun 4, 9:35 am)
iperf: performance regression (was b44 driver problem?)
, Stephen Hemminger
, (Mon Jun 4, 9:59 am)
Re: iperf: performance regression (was b44 driver problem?)
, Thomas Gleixner
, (Mon Jun 4, 10:32 am)
Re: iperf: performance regression (was b44 driver problem?)
, Stephen Hemminger
, (Mon Jun 4, 10:51 am)
Re: iperf: performance regression (was b44 driver problem?)
, Thomas Gleixner
, (Mon Jun 4, 12:00 pm)
Re: iperf: performance regression (was b44 driver problem?)
, Thomas Gleixner
, (Mon Jun 4, 12:26 pm)
Re: iperf: performance regression (was b44 driver problem?)
, Ingo Molnar
, (Mon Jun 4, 12:32 pm)
Re: iperf: performance regression (was b44 driver problem?)
, Maximilian Engelhardt
, (Mon Jun 4, 12:47 pm)
Re: iperf: performance regression (was b44 driver problem?)
, Stephen Hemminger
, (Mon Jun 4, 1:02 pm)
Re: iperf: performance regression (was b44 driver problem?)
, Maximilian Engelhardt
, (Mon Jun 4, 1:52 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg Kroah-Hartman
[PATCH 041/196] kobject: add kobject_init_and_add function
Lukas Hejtmanek
Re: Another libata error related to OCZ SSD
Greg Kroah-Hartman
[PATCH 023/196] MCP_UCB1200: Convert from class_device to device
Florian Fainelli
Re: System clock runs too fast after 2.6.27 -> 2.6.28.1 upgrade
Christoph Lameter
[patch 1/4] mmu_notifier: Core code
git
:
Johannes Schindelin
Re: [PATCH 1/2] Add strbuf_initf()
John Bito
[EGIT] Push to GitHub caused corruption
Jakub Narebski
Re: [PATCH 0/2] gitweb: patch view
Junio C Hamano
Re: [PATCH] When a remote is added but not fetched, tell the user.
Andy Parkins
Re: [RFC] Submodules in GIT
git-commits-head
:
Linux Kernel Mailing List
ahci: Workaround HW bug for SB600/700 SATA controller PMP support
Linux Kernel Mailing List
V4L/DVB (11086): au0828: rename macro for currently non-function VBI support
Linux Kernel Mailing List
ceph: client types
Linux Kernel Mailing List
ceph: on-wire types
Linux Kernel Mailing List
crypto: chainiv - Use kcrypto_wq instead of keventd_wq
linux-netdev
:
Andrew Morton
Re: [Bugme-new] [Bug 14969] New: b44: WOL does not work in suspended state
Giuseppe CAVALLARO
Re: [PATCH 03/13] stmmac: add the new Header file for stmmac platform data
Taku Izumi
[PATCH 3/3] ixgbe: add registers etc. printout code just before resetting adapters
Eric Dumazet
rps: some comments
Thomas Gleixner
Re: [RFC PATCH 02/12] On Tue, 23 Sep 2008, David Miller wrote:
openbsd-misc
:
Stephan Andreas
problems with login after xlock in OpenBSD release 4.7
pmc
Make A Change. Alcoholism and Drug Addiction Treatment
ropers
Re: what exactly is enc0?
Fuad NAHDI
Re: What does your environment look like?
Matthew Szudzik
Typo on OpenBSD 4.4 CD Set
Colocation donated by:
Syndicate