On Wed, 14 Nov 2007 00:37:57 -0800 David Brownell <david-b@pacbell.net> wrote:But isn't there any way we can remove the lock from the fast path altogether? What is it really protecting? Since this is the code that runs under the lock (excluding the "extra checks" case): +static inline struct gpio_chip *gpio_to_chip(unsigned gpio) +{ + return chips[gpio / ARCH_GPIOS_PER_CHIP]; +} I'd say it protects against chips being removed in the middle of the operation. However, this comment says that chips cannot be removed while any gpio on it is requested: +/* gpio_lock protects the table of chips and to gpio_chip->requested. + * While any gpio is requested, its gpio_chip is not removable. It's + * a raw spinlock to ensure safe access from hardirq contexts, and to + * shrink bitbang overhead: per-bit preemption would be very wrong. + */ And since we drop the lock before calling the actual get/set bit operation, we would be screwed anyway if the chip was removed during the call to __gpio_set_value(). So what does the lock really buy us? Håvard -
| Bart Van Assche | Integration of SCST in the mainstream Linux kernel |
| KAMEZAWA Hiroyuki | Re: 2.6.23-mm1 |
| Oliver Neukum | Re: Linux 2.6.21 |
| Greg Kroah-Hartman | [PATCH 002/196] Chinese: rephrase English introduction in HOWTO |
| David Miller | Re: [PATCH 3/3] Convert the UDP hash lock to RCU |
| David Miller | [GIT]: Networking |
| Gerrit Renker | [PATCH 0/37] dccp: Feature negotiation - last call for comments |
| David Miller | Re: 2.6.25-rc8: FTP transfer errors |
git: | |
