login
Login
/
Register
Search
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
October
»
27
Re: [linux-usb-devel] USB HCD: avoid duplicate local_irq_disable()
view
thread
!MAILaRCHIVE_VOTE_RePLACE
Previous message: [
thread
] [
date
] [
author
]
Next message: [thread] [
date
] [
author
]
[view in full thread]
From:
Alan Stern <stern@...>
To: Greg KH <greg@...>
Cc: Arnd Bergmann <arnd@...>, <gregkh@...>, <linux-arch@...>, <linux-usb-devel@...>, <matthew@...>, Peter Zijlstra <peterz@...>, Ingo Molnar <mingo@...>, LKML <linux-kernel@...>, <ralf@...>, Thomas Gleixner <tglx@...>, <viro@...>, <viro@...>, Andrew Morton <akpm@...>, Linus Torvalds <torvalds@...>, <adobriyan@...>
Subject:
Re: [linux-usb-devel] USB HCD: avoid duplicate local_irq_disable()
Date: Saturday, October 27, 2007 - 3:14 pm
On Thu, 25 Oct 2007, Greg KH wrote:
quoted text
> On Tue, Oct 23, 2007 at 12:01:37AM -0400, Alan Stern wrote: > > On Tue, 23 Oct 2007, Arnd Bergmann wrote: > > > > > usb_hcd_flush_endpoint() has a retry loop that starts with a spin_lock_irq(), > > > but only gives up the spinlock, not the irq_disable before jumping to the > > > rescan label. > > > > > > Split the spin_lock_irq into the retryable part and the local_irq_disable() > > > that is only done once as a micro-optimization and slight cleanup. > > > > I agree with your sentiment, but it would be better to solve this > > problem without using local_irq_disable(). The patch below does this. > > > > --- > > > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > > Alan, is this something you want added to the tree and in before 2.6.24 > is out?
Yes. It's a small thing, but we're better off keeping IRQ enable/disable calls properly balanced. Alan Stern -
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:
[PATCH 1/2] irq_flags_t: intro and core annotations
, Alexey Dobriyan
, (Sat Oct 20, 7:55 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Roman Zippel
, (Sat Oct 27, 3:20 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Alexey Dobriyan
, (Sat Oct 27, 4:14 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Roman Zippel
, (Sat Oct 27, 5:22 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Peter Zijlstra
, (Sat Oct 27, 5:07 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Jan Engelhardt
, (Thu Oct 25, 11:40 am)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Alexey Dobriyan
, (Sat Oct 27, 4:24 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Herbert Xu
, (Sat Oct 27, 9:24 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Jan Engelhardt
, (Sat Oct 27, 4:32 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Al Viro
, (Sat Oct 20, 8:54 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Alexey Dobriyan
, (Sun Oct 21, 5:30 am)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Ralf Baechle
, (Mon Oct 22, 11:29 am)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Andrew Morton
, (Mon Oct 22, 2:21 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Arnd Bergmann
, (Mon Oct 22, 3:10 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Matthew Wilcox
, (Mon Oct 22, 3:47 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Linus Torvalds
, (Mon Oct 22, 3:56 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Jeff Garzik
, (Mon Oct 22, 4:47 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Herbert Xu
, (Mon Oct 22, 11:33 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Jeff Garzik
, (Tue Oct 23, 10:11 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Arnd Bergmann
, (Wed Oct 24, 4:55 am)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, David Miller
, (Mon Oct 22, 8:21 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Andrew Morton
, (Mon Oct 22, 4:02 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Arnd Bergmann
, (Mon Oct 22, 5:34 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Thomas Gleixner
, (Mon Oct 22, 5:46 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Arnd Bergmann
, (Mon Oct 22, 9:06 pm)
USB HCD: avoid duplicate local_irq_disable()
, Arnd Bergmann
, (Mon Oct 22, 9:28 pm)
Re: [linux-usb-devel] USB HCD: avoid duplicate local_irq_dis...
, Alan Stern
, (Tue Oct 23, 12:01 am)
Re: [linux-usb-devel] USB HCD: avoid duplicate local_irq_dis...
, Greg KH
, (Thu Oct 25, 2:33 pm)
Re: [linux-usb-devel] USB HCD: avoid duplicate local_irq_dis...
, Alan Stern
, (Sat Oct 27, 3:14 pm)
Re: [PATCH 1/2] irq_flags_t: intro and core annotations
, Geert Uytterhoeven
, (Mon Oct 22, 2:50 pm)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg Kroah-Hartman
[PATCH 002/196] Chinese: rephrase English introduction in HOWTO
David Brown
Re: Linux 2.6.21-rc2
James Bottomley
Re: Integration of SCST in the mainstream Linux kernel
Justin C. Sherrill
Re: dragonflybsd.org website link?
git
:
linux-netdev
:
Ben Hutchings
Re: [GIT]: Networking
Gerrit Renker
[PATCH 15/37] dccp: Set per-connection CCIDs via socket options
Jarek Poplawski
Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock().
openbsd-misc
:
Colocation donated by:
Who's online
There are currently
3 users
and
578 guests
online.
Online users
juegosiles
olecom
cristalyoung72
Syndicate