]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commit - drivers/gpio/gpiolib-sysfs.c
gpio: sysfs: use per-gpio locking
authorJohan Hovold <johan@kernel.org>
Mon, 4 May 2015 15:10:44 +0000 (17:10 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 12 May 2015 08:47:39 +0000 (10:47 +0200)
commit6ffcb7971486ea4f1eb14f07f8efb0b6f829a23c
treecf2c8ed5ec678cc8698cd62774c211ac30ea765d
parent56d30ec14c13303eb9e7c34358ba6549fc7b0121
gpio: sysfs: use per-gpio locking

Add a per-gpio mutex to serialise attribute operations rather than use
one global mutex for all gpios and chips.

Having a single global lock for all gpios in a system adds unnecessary
latency to the sysfs interface, and especially when having gpio
controllers connected over slow buses.

Now that the global gpio-sysfs interrupt table is gone and with per-gpio
data in place, we can easily switch to using a more fine-grained locking
scheme.

Keep the global mutex to serialise the global (class) operations of gpio
export and unexport and chip removal.

Also document the locking assumptions made.

Note that this is also needed to fix a race between gpiod_export and
gpiod_unexport.

Signed-off-by: Johan Hovold <johan@kernel.org>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib-sysfs.c