linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
@ 2015-06-30  8:01 Jacek Anaszewski
  2015-06-30  8:27 ` Jacek Anaszewski
  2015-06-30 11:58 ` Pavel Machek
  0 siblings, 2 replies; 12+ messages in thread
From: Jacek Anaszewski @ 2015-06-30  8:01 UTC (permalink / raw)
  To: linux-leds
  Cc: linux-kernel, Jacek Anaszewski, Bryan Wu, Richard Purdie,
	Stas Sergeev, Pavel Machek, Sakari Ailus, Andreas Werner,
	Andrew Lunn, Antonio Ospite, Atsushi Nemoto, Ben Dooks,
	Chris Boot, Dan Murphy, Daniel Jeong, Daniel Mack,
	David S. Miller, Fabio Baltieri, Felipe Balbi, Florian Fainelli,
	G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

This patch rearranges the core LED subsystem code, so that it
now removes from drivers the responsibility of using work queues
internally in case their brightness_set ops can sleep.
Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
as well as new_brightness_value property to the struct led_classdev
allows for employing existing set_brightness_work to do the job.
The modifications allow also to get rid of brightness_set_sync op,
as flash LED devices can now be handled properly only basing on the
SET_BRIGHTNESS_SYNC flag.


Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Cc: Bryan Wu <cooloney@gmail.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Stas Sergeev <stsp@users.sourceforge.net>
Cc: Pavel Machek <pavel@ucw.cz>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
Cc: Andreas Werner <andreas.werner@men.de>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Antonio Ospite <ospite@studenti.unina.it>
Cc: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Cc: Ben Dooks <ben@simtec.co.uk>
Cc: Chris Boot <bootc@bootc.net>
Cc: Dan Murphy <dmurphy@ti.com>
Cc: Daniel Jeong <daniel.jeong@ti.com>
Cc: Daniel Mack <daniel@zonque.org>
Cc: David S. Miller <davem@davemloft.net>
Cc: Fabio Baltieri <fabio.baltieri@gmail.com>
Cc: Felipe Balbi <balbi@ti.com>
Cc: Florian Fainelli <florian@openwrt.org>
Cc: G.Shark Jeong <gshark.jeong@gmail.com>
Cc: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Cc: Ingi Kim <ingi2.kim@samsung.com>
Cc: Jan-Simon Moeller <dl9pf@gmx.de>
Cc: Johan Hovold <johan@kernel.org>
Cc: John Lenz <lenz@cs.wisc.edu>
Cc: Jonas Gorski <jogo@openwrt.org>
Cc: Kim Kyuwon <q1.kim@samsung.com>
Cc: Kristian Kielhofner <kris@krisk.org>
Cc: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Mark Brown <broonie@kernel.org>
Cc: Michael Hennerich <michael.hennerich@analog.com>
Cc: Milo Kim <milo.kim@ti.com>
Cc: Márton Németh <nm127@freemail.hu>
Cc: Nate Case <ncase@xes-inc.com>
Cc: NeilBrown <neilb@suse.de>
Cc: Nick Forbes <nick.forbes@incepta.com>
Cc: Paul Parsons <lost.distance@yahoo.com>
Cc: Peter Meerwald <p.meerwald@bct-electronic.com>
Cc: Phil Sutter <n0-1@freewrt.org>
Cc: Philippe Retornaz <philippe.retornaz@epfl.ch>
Cc: Raphael Assenat <raph@8d.com>
Cc: Richard Purdie <rpurdie@openedhand.com>
Cc: Rod Whitby <rod@whitby.id.au>
Cc: Dave Hansen <dave@sr71.net>
Cc: Rodolfo Giometti <giometti@linux.it>
Cc: Sebastian A. Siewior <bigeasy@linutronix.de>
Cc: Shuah Khan <shuahkhan@gmail.com>
Cc: Simon Guinot <sguinot@lacie.com>
Cc: Álvaro Fernández Rojas <noltari@gmail.com>
---

Resending because previously this patch failed to reach
linux-leds list. Also updated/removed defunct Cc addresses.

Hi All,

Since this patch will affect all the LED subsystem drivers
I'd like it was tested by as many developers as possible
to make sure that I haven't missed something.

For the drivers which can sleep in their brightness_set ops
(e.g. use mutex or gpio "cansleep" API) you only need to
remove the work queues and move the code executed currently
in the work queue task to the brightness_set op, as now
LED core does the job.

For drivers that are capable of setting brightness with use
of MMIO you need to set the LED_BRIGHTNESS_FAST flag, so
that LED core would know that it doesn't have to employ
work queue.

After the patch is positively verified I will create relevant
patches for every LED class driver.

This patch is based on linux-next_20150622.

I am looking forward to your cooperation.

Best Regards,
Jacek Anaszewski


 drivers/leds/led-class.c                  |   18 +++++++----
 drivers/leds/led-core.c                   |   50 +++++++++++++++++------------
 drivers/leds/leds.h                       |   41 +++++++++++++----------
 drivers/leds/trigger/ledtrig-backlight.c  |    8 ++---
 drivers/leds/trigger/ledtrig-default-on.c |    2 +-
 drivers/leds/trigger/ledtrig-gpio.c       |    6 ++--
 drivers/leds/trigger/ledtrig-heartbeat.c  |    2 +-
 drivers/leds/trigger/ledtrig-oneshot.c    |    4 +--
 drivers/leds/trigger/ledtrig-transient.c  |    8 ++---
 include/linux/leds.h                      |    9 ++----
 10 files changed, 83 insertions(+), 65 deletions(-)

diff --git a/drivers/leds/led-class.c b/drivers/leds/led-class.c
index beabfbc..07ccaeb 100644
--- a/drivers/leds/led-class.c
+++ b/drivers/leds/led-class.c
@@ -109,7 +109,7 @@ static void led_timer_function(unsigned long data)
 	unsigned long delay;
 
 	if (!led_cdev->blink_delay_on || !led_cdev->blink_delay_off) {
-		led_set_brightness_async(led_cdev, LED_OFF);
+		led_set_brightness_nosleep(led_cdev, LED_OFF);
 		return;
 	}
 
@@ -121,10 +121,10 @@ static void led_timer_function(unsigned long data)
 	brightness = led_get_brightness(led_cdev);
 	if (!brightness) {
 		/* Time to switch the LED on. */
-		if (led_cdev->delayed_set_value) {
+		if (led_cdev->new_brightness_value) {
 			led_cdev->blink_brightness =
-					led_cdev->delayed_set_value;
-			led_cdev->delayed_set_value = 0;
+					led_cdev->new_brightness_value;
+			led_cdev->new_brightness_value = 0;
 		}
 		brightness = led_cdev->blink_brightness;
 		delay = led_cdev->blink_delay_on;
@@ -137,7 +137,7 @@ static void led_timer_function(unsigned long data)
 		delay = led_cdev->blink_delay_off;
 	}
 
-	led_set_brightness_async(led_cdev, brightness);
+	led_set_brightness_nosleep(led_cdev, brightness);
 
 	/* Return in next iteration if led is in one-shot mode and we are in
 	 * the final blink state so that the led is toggled each delay_on +
@@ -161,9 +161,13 @@ static void set_brightness_delayed(struct work_struct *ws)
 	struct led_classdev *led_cdev =
 		container_of(ws, struct led_classdev, set_brightness_work);
 
-	led_stop_software_blink(led_cdev);
+	if (led_cdev->flags & LED_BLINK_DISABLE) {
+		led_stop_software_blink(led_cdev);
+		led_cdev->flags &= ~LED_BLINK_DISABLE;
+		return;
+	}
 
-	led_set_brightness_async(led_cdev, led_cdev->delayed_set_value);
+	__led_set_brightness(led_cdev, led_cdev->delayed_set_value);
 }
 
 /**
diff --git a/drivers/leds/led-core.c b/drivers/leds/led-core.c
index 549de7e..0e13fb0 100644
--- a/drivers/leds/led-core.c
+++ b/drivers/leds/led-core.c
@@ -42,13 +42,14 @@ static void led_set_software_blink(struct led_classdev *led_cdev,
 
 	/* never on - just set to off */
 	if (!delay_on) {
-		led_set_brightness_async(led_cdev, LED_OFF);
+		led_set_brightness_nosleep(led_cdev, LED_OFF);
 		return;
 	}
 
 	/* never off - just set to brightness */
 	if (!delay_off) {
-		led_set_brightness_async(led_cdev, led_cdev->blink_brightness);
+		led_set_brightness_nosleep(led_cdev,
+					   led_cdev->blink_brightness);
 		return;
 	}
 
@@ -117,27 +118,36 @@ EXPORT_SYMBOL_GPL(led_stop_software_blink);
 void led_set_brightness(struct led_classdev *led_cdev,
 			enum led_brightness brightness)
 {
-	int ret = 0;
-
-	/* delay brightness if soft-blink is active */
+	/*
+	 * In case blinking is on delay brightness setting
+	 * to the next timer tick.
+	 */
 	if (led_cdev->blink_delay_on || led_cdev->blink_delay_off) {
-		led_cdev->delayed_set_value = brightness;
-		if (brightness == LED_OFF)
-			schedule_work(&led_cdev->set_brightness_work);
-		return;
+		led_cdev->new_brightness_value = brightness;
+
+		/* New brightness will be set on next timer tick. */
+		if (brightness != LED_OFF)
+			return;
+		/*
+		 * If need to disable soft blinking delegate this to the
+		 * work queue task to avoid problems in case we are
+		 * called from hard irq context.
+		 */
+		led_cdev->flags |= LED_BLINK_DISABLE;
+	} else {
+		/*
+		 * Don't use work queue if brightness has to be set as quickly
+		 * as possible or if this is fast LED.
+		 */
+		if ((led_cdev->flags & SET_BRIGHTNESS_SYNC) ||
+		    (led_cdev->flags & LED_BRIGHTNESS_FAST)) {
+			__led_set_brightness(led_cdev, brightness);
+			return;
+		}
 	}
 
-	if (led_cdev->flags & SET_BRIGHTNESS_ASYNC) {
-		led_set_brightness_async(led_cdev, brightness);
-		return;
-	} else if (led_cdev->flags & SET_BRIGHTNESS_SYNC)
-		ret = led_set_brightness_sync(led_cdev, brightness);
-	else
-		ret = -EINVAL;
-
-	if (ret < 0)
-		dev_dbg(led_cdev->dev, "Setting LED brightness failed (%d)\n",
-			ret);
+	led_cdev->delayed_set_value = brightness;
+	schedule_work(&led_cdev->set_brightness_work);
 }
 EXPORT_SYMBOL(led_set_brightness);
 
diff --git a/drivers/leds/leds.h b/drivers/leds/leds.h
index bc89d7a..dd9dd9b 100644
--- a/drivers/leds/leds.h
+++ b/drivers/leds/leds.h
@@ -2,8 +2,10 @@
  * LED Core
  *
  * Copyright 2005 Openedhand Ltd.
+ * Copyright 2014, 2015 Samsung Electronics Co., Ltd.
  *
  * Author: Richard Purdie <rpurdie@openedhand.com>
+ * Author: Jacek Anaszewski <j.anaszewski@samsung.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -16,27 +18,15 @@
 #include <linux/rwsem.h>
 #include <linux/leds.h>
 
-static inline void led_set_brightness_async(struct led_classdev *led_cdev,
+static inline void __led_set_brightness(struct led_classdev *led_cdev,
 					enum led_brightness value)
 {
-	value = min(value, led_cdev->max_brightness);
-	led_cdev->brightness = value;
-
-	if (!(led_cdev->flags & LED_SUSPENDED))
-		led_cdev->brightness_set(led_cdev, value);
-}
-
-static inline int led_set_brightness_sync(struct led_classdev *led_cdev,
-					enum led_brightness value)
-{
-	int ret = 0;
-
 	led_cdev->brightness = min(value, led_cdev->max_brightness);
 
-	if (!(led_cdev->flags & LED_SUSPENDED))
-		ret = led_cdev->brightness_set_sync(led_cdev,
-						led_cdev->brightness);
-	return ret;
+	if (led_cdev->flags & LED_SUSPENDED)
+		return;
+
+	led_cdev->brightness_set(led_cdev, led_cdev->brightness);
 }
 
 static inline int led_get_brightness(struct led_classdev *led_cdev)
@@ -44,6 +34,23 @@ static inline int led_get_brightness(struct led_classdev *led_cdev)
 	return led_cdev->brightness;
 }
 
+static inline void led_set_brightness_nosleep(struct led_classdev *led_cdev,
+					      enum led_brightness value)
+{
+	/*
+	 * Delegate setting brightness to a work queue task only for slow LEDs
+	 * as the FAST ones are guaranteed not to sleep while setting
+	 * brightness.
+	 */
+	if (!(led_cdev->flags & LED_BRIGHTNESS_FAST)) {
+		led_cdev->delayed_set_value = value;
+		schedule_work(&led_cdev->set_brightness_work);
+		return;
+	}
+
+	__led_set_brightness(led_cdev, value);
+}
+
 void led_stop_software_blink(struct led_classdev *led_cdev);
 
 extern struct rw_semaphore leds_list_lock;
diff --git a/drivers/leds/trigger/ledtrig-backlight.c b/drivers/leds/trigger/ledtrig-backlight.c
index 59eca17..1ca1f16 100644
--- a/drivers/leds/trigger/ledtrig-backlight.c
+++ b/drivers/leds/trigger/ledtrig-backlight.c
@@ -51,9 +51,9 @@ static int fb_notifier_callback(struct notifier_block *p,
 
 	if ((n->old_status == UNBLANK) ^ n->invert) {
 		n->brightness = led->brightness;
-		led_set_brightness_async(led, LED_OFF);
+		led_set_brightness_nosleep(led, LED_OFF);
 	} else {
-		led_set_brightness_async(led, n->brightness);
+		led_set_brightness_nosleep(led, n->brightness);
 	}
 
 	n->old_status = new_status;
@@ -89,9 +89,9 @@ static ssize_t bl_trig_invert_store(struct device *dev,
 
 	/* After inverting, we need to update the LED. */
 	if ((n->old_status == BLANK) ^ n->invert)
-		led_set_brightness_async(led, LED_OFF);
+		led_set_brightness_nosleep(led, LED_OFF);
 	else
-		led_set_brightness_async(led, n->brightness);
+		led_set_brightness_nosleep(led, n->brightness);
 
 	return num;
 }
diff --git a/drivers/leds/trigger/ledtrig-default-on.c b/drivers/leds/trigger/ledtrig-default-on.c
index 6f38f88..ff455cb 100644
--- a/drivers/leds/trigger/ledtrig-default-on.c
+++ b/drivers/leds/trigger/ledtrig-default-on.c
@@ -19,7 +19,7 @@
 
 static void defon_trig_activate(struct led_classdev *led_cdev)
 {
-	led_set_brightness_async(led_cdev, led_cdev->max_brightness);
+	led_set_brightness_nosleep(led_cdev, led_cdev->max_brightness);
 }
 
 static struct led_trigger defon_led_trigger = {
diff --git a/drivers/leds/trigger/ledtrig-gpio.c b/drivers/leds/trigger/ledtrig-gpio.c
index 4cc7040..51288a4 100644
--- a/drivers/leds/trigger/ledtrig-gpio.c
+++ b/drivers/leds/trigger/ledtrig-gpio.c
@@ -54,12 +54,12 @@ static void gpio_trig_work(struct work_struct *work)
 
 	if (tmp) {
 		if (gpio_data->desired_brightness)
-			led_set_brightness_async(gpio_data->led,
+			led_set_brightness_nosleep(gpio_data->led,
 					   gpio_data->desired_brightness);
 		else
-			led_set_brightness_async(gpio_data->led, LED_FULL);
+			led_set_brightness_nosleep(gpio_data->led, LED_FULL);
 	} else {
-		led_set_brightness_async(gpio_data->led, LED_OFF);
+		led_set_brightness_nosleep(gpio_data->led, LED_OFF);
 	}
 }
 
diff --git a/drivers/leds/trigger/ledtrig-heartbeat.c b/drivers/leds/trigger/ledtrig-heartbeat.c
index fea6871..44c9f23 100644
--- a/drivers/leds/trigger/ledtrig-heartbeat.c
+++ b/drivers/leds/trigger/ledtrig-heartbeat.c
@@ -74,7 +74,7 @@ static void led_heartbeat_function(unsigned long data)
 		break;
 	}
 
-	led_set_brightness_async(led_cdev, brightness);
+	led_set_brightness_nosleep(led_cdev, brightness);
 	mod_timer(&heartbeat_data->timer, jiffies + delay);
 }
 
diff --git a/drivers/leds/trigger/ledtrig-oneshot.c b/drivers/leds/trigger/ledtrig-oneshot.c
index fbd02cd..6729317 100644
--- a/drivers/leds/trigger/ledtrig-oneshot.c
+++ b/drivers/leds/trigger/ledtrig-oneshot.c
@@ -63,9 +63,9 @@ static ssize_t led_invert_store(struct device *dev,
 	oneshot_data->invert = !!state;
 
 	if (oneshot_data->invert)
-		led_set_brightness_async(led_cdev, LED_FULL);
+		led_set_brightness_nosleep(led_cdev, LED_FULL);
 	else
-		led_set_brightness_async(led_cdev, LED_OFF);
+		led_set_brightness_nosleep(led_cdev, LED_OFF);
 
 	return size;
 }
diff --git a/drivers/leds/trigger/ledtrig-transient.c b/drivers/leds/trigger/ledtrig-transient.c
index 3c34de4..1dddd8f 100644
--- a/drivers/leds/trigger/ledtrig-transient.c
+++ b/drivers/leds/trigger/ledtrig-transient.c
@@ -41,7 +41,7 @@ static void transient_timer_function(unsigned long data)
 	struct transient_trig_data *transient_data = led_cdev->trigger_data;
 
 	transient_data->activate = 0;
-	led_set_brightness_async(led_cdev, transient_data->restore_state);
+	led_set_brightness_nosleep(led_cdev, transient_data->restore_state);
 }
 
 static ssize_t transient_activate_show(struct device *dev,
@@ -72,7 +72,7 @@ static ssize_t transient_activate_store(struct device *dev,
 	if (state == 0 && transient_data->activate == 1) {
 		del_timer(&transient_data->timer);
 		transient_data->activate = state;
-		led_set_brightness_async(led_cdev,
+		led_set_brightness_nosleep(led_cdev,
 					transient_data->restore_state);
 		return size;
 	}
@@ -81,7 +81,7 @@ static ssize_t transient_activate_store(struct device *dev,
 	if (state == 1 && transient_data->activate == 0 &&
 	    transient_data->duration != 0) {
 		transient_data->activate = state;
-		led_set_brightness_async(led_cdev, transient_data->state);
+		led_set_brightness_nosleep(led_cdev, transient_data->state);
 		transient_data->restore_state =
 		    (transient_data->state == LED_FULL) ? LED_OFF : LED_FULL;
 		mod_timer(&transient_data->timer,
@@ -204,7 +204,7 @@ static void transient_trig_deactivate(struct led_classdev *led_cdev)
 
 	if (led_cdev->activated) {
 		del_timer_sync(&transient_data->timer);
-		led_set_brightness_async(led_cdev,
+		led_set_brightness_nosleep(led_cdev,
 					transient_data->restore_state);
 		device_remove_file(led_cdev->dev, &dev_attr_activate);
 		device_remove_file(led_cdev->dev, &dev_attr_duration);
diff --git a/include/linux/leds.h b/include/linux/leds.h
index b122eea..ea99de9 100644
--- a/include/linux/leds.h
+++ b/include/linux/leds.h
@@ -48,17 +48,13 @@ struct led_classdev {
 #define SET_BRIGHTNESS_ASYNC	(1 << 21)
 #define SET_BRIGHTNESS_SYNC	(1 << 22)
 #define LED_DEV_CAP_FLASH	(1 << 23)
+#define LED_BRIGHTNESS_FAST	(1 << 24)
+#define LED_BLINK_DISABLE	(1 << 25)
 
 	/* Set LED brightness level */
 	/* Must not sleep, use a workqueue if needed */
 	void		(*brightness_set)(struct led_classdev *led_cdev,
 					  enum led_brightness brightness);
-	/*
-	 * Set LED brightness level immediately - it can block the caller for
-	 * the time required for accessing a LED device register.
-	 */
-	int		(*brightness_set_sync)(struct led_classdev *led_cdev,
-					enum led_brightness brightness);
 	/* Get LED brightness level */
 	enum led_brightness (*brightness_get)(struct led_classdev *led_cdev);
 
@@ -87,6 +83,7 @@ struct led_classdev {
 
 	struct work_struct	set_brightness_work;
 	int			delayed_set_value;
+	int			new_brightness_value;
 
 #ifdef CONFIG_LEDS_TRIGGERS
 	/* Protects the trigger data below */
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30  8:01 [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep Jacek Anaszewski
@ 2015-06-30  8:27 ` Jacek Anaszewski
  2015-06-30 11:41   ` Stas Sergeev
  2015-06-30 11:58 ` Pavel Machek
  1 sibling, 1 reply; 12+ messages in thread
From: Jacek Anaszewski @ 2015-06-30  8:27 UTC (permalink / raw)
  To: Stas Sergeev
  Cc: Jacek Anaszewski, linux-leds, linux-kernel, Bryan Wu,
	Richard Purdie, Pavel Machek, Sakari Ailus, Andreas Werner,
	Andrew Lunn, Antonio Ospite, Atsushi Nemoto, Ben Dooks,
	Chris Boot, Dan Murphy, Daniel Jeong, Daniel Mack,
	David S. Miller, Fabio Baltieri, Felipe Balbi, Florian Fainelli,
	G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On 06/29/2015 05:17 PM, Stas Sergeev wrote:> 29.06.2015 17:05, Jacek 
Anaszewski пишет:
 >> +		 * If need to disable soft blinking delegate this to the
 >> +		 * work queue task to avoid problems in case we are
 >> +		 * called from hard irq context.
 >> +		 */
 >> +		led_cdev->flags |= LED_BLINK_DISABLE;
 > Wouldn't it be better to just enforce the callers
 > to explicitly disable software blink, so that it to
 > never happen from irq context? Something like in this
 > patch:
 > https://lkml.org/lkml/2015/5/13/491
 >

Blinking can be disabled not only by removing trigger explicitly,
but also by setting brightness to 0 and led_set_brightness
can be called from hard irq context. set_brightness_work
was originally introduced exactly for this use case.

-- 
Best Regards,
Jacek Anaszewski

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30  8:27 ` Jacek Anaszewski
@ 2015-06-30 11:41   ` Stas Sergeev
  2015-06-30 12:41     ` Jacek Anaszewski
  0 siblings, 1 reply; 12+ messages in thread
From: Stas Sergeev @ 2015-06-30 11:41 UTC (permalink / raw)
  To: Jacek Anaszewski, Stas Sergeev
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Pavel Machek,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

30.06.2015 11:27, Jacek Anaszewski пишет:
> On 06/29/2015 05:17 PM, Stas Sergeev wrote:> 29.06.2015 17:05, Jacek Anaszewski пишет:
>>> +         * If need to disable soft blinking delegate this to the
>>> +         * work queue task to avoid problems in case we are
>>> +         * called from hard irq context.
>>> +         */
>>> +        led_cdev->flags |= LED_BLINK_DISABLE;
>> Wouldn't it be better to just enforce the callers
>> to explicitly disable software blink, so that it to
>> never happen from irq context? Something like in this
>> patch:
>> https://lkml.org/lkml/2015/5/13/491
>>
> 
> Blinking can be disabled not only by removing trigger explicitly,
> but also by setting brightness to 0 and led_set_brightness
> can be called from hard irq context. set_brightness_work
> was originally introduced exactly for this use case.
Could you please describe where does this happen?
I can see LED_OFF happening only in led_heartbeat_function(), but
it doesn't use soft-blink, so it will not activate the delayed
timer cancel.

I would suggest the patch below to make it explicit that
led_heartbeat_function() doesn't want to cancel soft blink.
Note that led_heartbeat_function() already uses led_set_brightness_async()
in a normal case.


diff --git a/drivers/leds/trigger/ledtrig-heartbeat.c b/drivers/leds/trigger/ledtrig-heartbeat.c
index fea6871..0f89d12 100644
--- a/drivers/leds/trigger/ledtrig-heartbeat.c
+++ b/drivers/leds/trigger/ledtrig-heartbeat.c
@@ -37,7 +37,7 @@ static void led_heartbeat_function(unsigned long data)
 	unsigned long delay = 0;

 	if (unlikely(panic_heartbeats)) {
-		led_set_brightness(led_cdev, LED_OFF);
+		led_set_brightness_async(led_cdev, LED_OFF);
 		return;
 	}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30  8:01 [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep Jacek Anaszewski
  2015-06-30  8:27 ` Jacek Anaszewski
@ 2015-06-30 11:58 ` Pavel Machek
  2015-06-30 13:06   ` Jacek Anaszewski
  1 sibling, 1 reply; 12+ messages in thread
From: Pavel Machek @ 2015-06-30 11:58 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Stas Sergeev,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On Tue 2015-06-30 10:01:08, Jacek Anaszewski wrote:
> This patch rearranges the core LED subsystem code, so that it
> now removes from drivers the responsibility of using work queues
> internally in case their brightness_set ops can sleep.
> Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
> as well as new_brightness_value property to the struct led_classdev
> allows for employing existing set_brightness_work to do the job.
> The modifications allow also to get rid of brightness_set_sync op,
> as flash LED devices can now be handled properly only basing on the
> SET_BRIGHTNESS_SYNC flag.

Are you sure this is good idea?

You'll now use single callback for blocking and non-blocking
behaviour. I'm pretty sure stuff like lockdep will have some fun with
that.
									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30 11:41   ` Stas Sergeev
@ 2015-06-30 12:41     ` Jacek Anaszewski
  2015-06-30 12:55       ` Stas Sergeev
  0 siblings, 1 reply; 12+ messages in thread
From: Jacek Anaszewski @ 2015-06-30 12:41 UTC (permalink / raw)
  To: Stas Sergeev
  Cc: Stas Sergeev, linux-leds, linux-kernel, Bryan Wu, Richard Purdie,
	Pavel Machek, Sakari Ailus, Andreas Werner, Andrew Lunn,
	Antonio Ospite, Atsushi Nemoto, Ben Dooks, Chris Boot,
	Dan Murphy, Daniel Jeong, Daniel Mack, David S. Miller,
	Fabio Baltieri, Felipe Balbi, Florian Fainelli, G.Shark Jeong,
	Guennadi Liakhovetski, Ingi Kim, Jan-Simon Moeller, Johan Hovold,
	John Lenz, Jonas Gorski, Kim Kyuwon, Kristian Kielhofner,
	Kristoffer Ericson, Linus Walleij, Mark Brown, Michael Hennerich,
	Milo Kim, Márton Németh, Nate Case, NeilBrown,
	Nick Forbes, Paul Parsons, Peter Meerwald, Phil Sutter,
	Philippe Retornaz, Raphael Assenat, Richard Purdie, Rod Whitby,
	Dave Hansen, Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan,
	Simon Guinot, Álvaro Fernández Rojas

On 06/30/2015 01:41 PM, Stas Sergeev wrote:
> 30.06.2015 11:27, Jacek Anaszewski пишет:
>> On 06/29/2015 05:17 PM, Stas Sergeev wrote:> 29.06.2015 17:05, Jacek Anaszewski пишет:
>>>> +         * If need to disable soft blinking delegate this to the
>>>> +         * work queue task to avoid problems in case we are
>>>> +         * called from hard irq context.
>>>> +         */
>>>> +        led_cdev->flags |= LED_BLINK_DISABLE;
>>> Wouldn't it be better to just enforce the callers
>>> to explicitly disable software blink, so that it to
>>> never happen from irq context? Something like in this
>>> patch:
>>> https://lkml.org/lkml/2015/5/13/491
>>>
>>
>> Blinking can be disabled not only by removing trigger explicitly,
>> but also by setting brightness to 0 and led_set_brightness
>> can be called from hard irq context. set_brightness_work
>> was originally introduced exactly for this use case.
> Could you please describe where does this happen?

This in fact doesn't take place in the mainline kernel,
however there are some out of tree users apparently [1].
We could remove this possibility, just give me a reason
why we should do that? If we removed it, we would force
any potential driver wanting to call led_set_brightness(LED_OFF)
from hard irq context to use the work queue on its own.

Modifications I am proposing also need set_brightness_work,
so there is almost no cost of keeping the support for calling 
led_set_brightness from hard irq context intact.

> I can see LED_OFF happening only in led_heartbeat_function(), but
> it doesn't use soft-blink, so it will not activate the delayed
> timer cancel.
>
> I would suggest the patch below to make it explicit that
> led_heartbeat_function() doesn't want to cancel soft blink.
> Note that led_heartbeat_function() already uses led_set_brightness_async()
> in a normal case.

With the new approach it should call led_set_brightness_nosleep there.

>
> diff --git a/drivers/leds/trigger/ledtrig-heartbeat.c b/drivers/leds/trigger/ledtrig-heartbeat.c
> index fea6871..0f89d12 100644
> --- a/drivers/leds/trigger/ledtrig-heartbeat.c
> +++ b/drivers/leds/trigger/ledtrig-heartbeat.c
> @@ -37,7 +37,7 @@ static void led_heartbeat_function(unsigned long data)
>   	unsigned long delay = 0;
>
>   	if (unlikely(panic_heartbeats)) {
> -		led_set_brightness(led_cdev, LED_OFF);
> +		led_set_brightness_async(led_cdev, LED_OFF);
>   		return;
>   	}
>
>

[1] http://www.spinics.net/lists/linux-leds/msg00006.html

-- 
Best Regards,
Jacek Anaszewski

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30 12:41     ` Jacek Anaszewski
@ 2015-06-30 12:55       ` Stas Sergeev
  0 siblings, 0 replies; 12+ messages in thread
From: Stas Sergeev @ 2015-06-30 12:55 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: Stas Sergeev, linux-leds, linux-kernel, Bryan Wu, Richard Purdie,
	Pavel Machek, Sakari Ailus, Andreas Werner, Andrew Lunn,
	Antonio Ospite, Atsushi Nemoto, Ben Dooks, Chris Boot,
	Dan Murphy, Daniel Jeong, Daniel Mack, David S. Miller,
	Fabio Baltieri, Felipe Balbi, Florian Fainelli, G.Shark Jeong,
	Guennadi Liakhovetski, Ingi Kim, Jan-Simon Moeller, Johan Hovold,
	John Lenz, Jonas Gorski, Kim Kyuwon, Kristian Kielhofner,
	Kristoffer Ericson, Linus Walleij, Mark Brown, Michael Hennerich,
	Milo Kim, Márton Németh, Nate Case, NeilBrown,
	Nick Forbes, Paul Parsons, Peter Meerwald, Phil Sutter,
	Philippe Retornaz, Raphael Assenat, Richard Purdie, Rod Whitby,
	Dave Hansen, Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan,
	Simon Guinot, Álvaro Fernández Rojas

30.06.2015 15:41, Jacek Anaszewski пишет:
> On 06/30/2015 01:41 PM, Stas Sergeev wrote:
>> 30.06.2015 11:27, Jacek Anaszewski пишет:
>>> On 06/29/2015 05:17 PM, Stas Sergeev wrote:> 29.06.2015 17:05, Jacek Anaszewski пишет:
>>>>> +         * If need to disable soft blinking delegate this to the
>>>>> +         * work queue task to avoid problems in case we are
>>>>> +         * called from hard irq context.
>>>>> +         */
>>>>> +        led_cdev->flags |= LED_BLINK_DISABLE;
>>>> Wouldn't it be better to just enforce the callers
>>>> to explicitly disable software blink, so that it to
>>>> never happen from irq context? Something like in this
>>>> patch:
>>>> https://lkml.org/lkml/2015/5/13/491
>>>>
>>>
>>> Blinking can be disabled not only by removing trigger explicitly,
>>> but also by setting brightness to 0 and led_set_brightness
>>> can be called from hard irq context. set_brightness_work
>>> was originally introduced exactly for this use case.
>> Could you please describe where does this happen?
> This in fact doesn't take place in the mainline kernel,
> however there are some out of tree users apparently [1].
Oh, IMHO the hooks that are needed only for out-of-tree code
require the appropriate comment, at least. I was entirely
confused by its existence. IIRC in the past there was even
the policy to not include any hooks for out-of-tree code at
all.

> Modifications I am proposing also need set_brightness_work,
> so there is almost no cost of keeping the support for calling led_set_brightness from hard irq context intact.
I wonder if there are possible races, eg you schedule disabling
of the softblink timer, and someone else at the same time also
disables it (and probably also re-enables).
Well if you think that code is safe, I would agree that the cost
is now very small with your patch, so maybe it is not a big deal
any more.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30 11:58 ` Pavel Machek
@ 2015-06-30 13:06   ` Jacek Anaszewski
  2015-06-30 17:46     ` Pavel Machek
  0 siblings, 1 reply; 12+ messages in thread
From: Jacek Anaszewski @ 2015-06-30 13:06 UTC (permalink / raw)
  To: Pavel Machek
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Stas Sergeev,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On 06/30/2015 01:58 PM, Pavel Machek wrote:
> On Tue 2015-06-30 10:01:08, Jacek Anaszewski wrote:
>> This patch rearranges the core LED subsystem code, so that it
>> now removes from drivers the responsibility of using work queues
>> internally in case their brightness_set ops can sleep.
>> Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
>> as well as new_brightness_value property to the struct led_classdev
>> allows for employing existing set_brightness_work to do the job.
>> The modifications allow also to get rid of brightness_set_sync op,
>> as flash LED devices can now be handled properly only basing on the
>> SET_BRIGHTNESS_SYNC flag.
>
> Are you sure this is good idea?
>
> You'll now use single callback for blocking and non-blocking
> behaviour. I'm pretty sure stuff like lockdep will have some fun with
> that.

I enabled "Lock Debugging" options and didn't get any warning.
Could you describe the use case you are thinking of?

-- 
Best Regards,
Jacek Anaszewski

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30 13:06   ` Jacek Anaszewski
@ 2015-06-30 17:46     ` Pavel Machek
  2015-07-01  7:28       ` Jacek Anaszewski
  0 siblings, 1 reply; 12+ messages in thread
From: Pavel Machek @ 2015-06-30 17:46 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Stas Sergeev,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On Tue 2015-06-30 15:06:19, Jacek Anaszewski wrote:
> On 06/30/2015 01:58 PM, Pavel Machek wrote:
> >On Tue 2015-06-30 10:01:08, Jacek Anaszewski wrote:
> >>This patch rearranges the core LED subsystem code, so that it
> >>now removes from drivers the responsibility of using work queues
> >>internally in case their brightness_set ops can sleep.
> >>Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
> >>as well as new_brightness_value property to the struct led_classdev
> >>allows for employing existing set_brightness_work to do the job.
> >>The modifications allow also to get rid of brightness_set_sync op,
> >>as flash LED devices can now be handled properly only basing on the
> >>SET_BRIGHTNESS_SYNC flag.
> >
> >Are you sure this is good idea?
> >
> >You'll now use single callback for blocking and non-blocking
> >behaviour. I'm pretty sure stuff like lockdep will have some fun with
> >that.
> 
> I enabled "Lock Debugging" options and didn't get any warning.
> Could you describe the use case you are thinking of?

You may get one when one of the sleeping functions uses some lock...

I'm not a lockdep expert, but mixing functions with different
semantics under one function pointer is wrong thing to do. If it does
not produce warnings today, it may start producing them tommorow. Just
don't do it.

									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-06-30 17:46     ` Pavel Machek
@ 2015-07-01  7:28       ` Jacek Anaszewski
  2015-07-01  7:43         ` Pavel Machek
  0 siblings, 1 reply; 12+ messages in thread
From: Jacek Anaszewski @ 2015-07-01  7:28 UTC (permalink / raw)
  To: Pavel Machek
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Stas Sergeev,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On 06/30/2015 07:46 PM, Pavel Machek wrote:
> On Tue 2015-06-30 15:06:19, Jacek Anaszewski wrote:
>> On 06/30/2015 01:58 PM, Pavel Machek wrote:
>>> On Tue 2015-06-30 10:01:08, Jacek Anaszewski wrote:
>>>> This patch rearranges the core LED subsystem code, so that it
>>>> now removes from drivers the responsibility of using work queues
>>>> internally in case their brightness_set ops can sleep.
>>>> Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
>>>> as well as new_brightness_value property to the struct led_classdev
>>>> allows for employing existing set_brightness_work to do the job.
>>>> The modifications allow also to get rid of brightness_set_sync op,
>>>> as flash LED devices can now be handled properly only basing on the
>>>> SET_BRIGHTNESS_SYNC flag.
>>>
>>> Are you sure this is good idea?
>>>
>>> You'll now use single callback for blocking and non-blocking
>>> behaviour. I'm pretty sure stuff like lockdep will have some fun with
>>> that.
>>
>> I enabled "Lock Debugging" options and didn't get any warning.
>> Could you describe the use case you are thinking of?
>
> You may get one when one of the sleeping functions uses some lock...

Drivers which use spin_lock in their brightness_set op will have to
set LED_BRIGHTNESS_FAST flag, which will instruct the LED core to
call the op synchronously. On the other hand drivers which can sleep
in their brightness_set op won't set the flag, which will make LED core
delegating the op to the work queue task. It is also possible that
driver with brightness_set op that can sleep set SET_BRIGHTNESS_SYNC
flag - then LED core will call it in a synchronous way from
led_brightness_set and it will schedule work queue task in case
the op is called from triggers.

If you want to NAK the patch, please come up with detailed analysis
on how it can cause problems. Without this I infer that you didn't
spend a second on analyzing the code. This is counterproductive.

> I'm not a lockdep expert, but mixing functions with different
> semantics under one function pointer is wrong thing to do. If it does
> not produce warnings today, it may start producing them tommorow. Just
> don't do it.

-- 
Best Regards,
Jacek Anaszewski

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-07-01  7:28       ` Jacek Anaszewski
@ 2015-07-01  7:43         ` Pavel Machek
  2015-07-01 10:47           ` Jacek Anaszewski
  0 siblings, 1 reply; 12+ messages in thread
From: Pavel Machek @ 2015-07-01  7:43 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Stas Sergeev,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On Wed 2015-07-01 09:28:52, Jacek Anaszewski wrote:
> On 06/30/2015 07:46 PM, Pavel Machek wrote:
> >On Tue 2015-06-30 15:06:19, Jacek Anaszewski wrote:
> >>On 06/30/2015 01:58 PM, Pavel Machek wrote:
> >>>On Tue 2015-06-30 10:01:08, Jacek Anaszewski wrote:
> >>>>This patch rearranges the core LED subsystem code, so that it
> >>>>now removes from drivers the responsibility of using work queues
> >>>>internally in case their brightness_set ops can sleep.
> >>>>Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
> >>>>as well as new_brightness_value property to the struct led_classdev
> >>>>allows for employing existing set_brightness_work to do the job.
> >>>>The modifications allow also to get rid of brightness_set_sync op,
> >>>>as flash LED devices can now be handled properly only basing on the
> >>>>SET_BRIGHTNESS_SYNC flag.
> >>>
> >>>Are you sure this is good idea?
> >>>
> >>>You'll now use single callback for blocking and non-blocking
> >>>behaviour. I'm pretty sure stuff like lockdep will have some fun with
> >>>that.
> >>
> >>I enabled "Lock Debugging" options and didn't get any warning.
> >>Could you describe the use case you are thinking of?
> >
> >You may get one when one of the sleeping functions uses some lock...
> 
> Drivers which use spin_lock in their brightness_set op will have to
> set LED_BRIGHTNESS_FAST flag, which will instruct the LED core to
> call the op synchronously. On the other hand drivers which can sleep
> in their brightness_set op won't set the flag, which will make LED core
> delegating the op to the work queue task. It is also possible that
> driver with brightness_set op that can sleep set SET_BRIGHTNESS_SYNC
> flag - then LED core will call it in a synchronous way from
> led_brightness_set and it will schedule work queue task in case
> the op is called from triggers.

I understand this "works".

> If you want to NAK the patch, please come up with detailed analysis
> on how it can cause problems. Without this I infer that you didn't
> spend a second on analyzing the code. This is counterproductive.

NAK.

Because calling two functions with different semantics through same
function pointer is extremely ugly, and _will_ cause lockdep
problems. Talk to the lockdep people for details.

								Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-07-01  7:43         ` Pavel Machek
@ 2015-07-01 10:47           ` Jacek Anaszewski
  2015-07-01 13:37             ` Pavel Machek
  0 siblings, 1 reply; 12+ messages in thread
From: Jacek Anaszewski @ 2015-07-01 10:47 UTC (permalink / raw)
  To: Pavel Machek
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Stas Sergeev,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On 07/01/2015 09:43 AM, Pavel Machek wrote:
> On Wed 2015-07-01 09:28:52, Jacek Anaszewski wrote:
>> On 06/30/2015 07:46 PM, Pavel Machek wrote:
>>> On Tue 2015-06-30 15:06:19, Jacek Anaszewski wrote:
>>>> On 06/30/2015 01:58 PM, Pavel Machek wrote:
>>>>> On Tue 2015-06-30 10:01:08, Jacek Anaszewski wrote:
>>>>>> This patch rearranges the core LED subsystem code, so that it
>>>>>> now removes from drivers the responsibility of using work queues
>>>>>> internally in case their brightness_set ops can sleep.
>>>>>> Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
>>>>>> as well as new_brightness_value property to the struct led_classdev
>>>>>> allows for employing existing set_brightness_work to do the job.
>>>>>> The modifications allow also to get rid of brightness_set_sync op,
>>>>>> as flash LED devices can now be handled properly only basing on the
>>>>>> SET_BRIGHTNESS_SYNC flag.
>>>>>
>>>>> Are you sure this is good idea?
>>>>>
>>>>> You'll now use single callback for blocking and non-blocking
>>>>> behaviour. I'm pretty sure stuff like lockdep will have some fun with
>>>>> that.
>>>>
>>>> I enabled "Lock Debugging" options and didn't get any warning.
>>>> Could you describe the use case you are thinking of?
>>>
>>> You may get one when one of the sleeping functions uses some lock...
>>
>> Drivers which use spin_lock in their brightness_set op will have to
>> set LED_BRIGHTNESS_FAST flag, which will instruct the LED core to
>> call the op synchronously. On the other hand drivers which can sleep
>> in their brightness_set op won't set the flag, which will make LED core
>> delegating the op to the work queue task. It is also possible that
>> driver with brightness_set op that can sleep set SET_BRIGHTNESS_SYNC
>> flag - then LED core will call it in a synchronous way from
>> led_brightness_set and it will schedule work queue task in case
>> the op is called from triggers.
>
> I understand this "works".
>
>> If you want to NAK the patch, please come up with detailed analysis
>> on how it can cause problems. Without this I infer that you didn't
>> spend a second on analyzing the code. This is counterproductive.
>
> NAK.
>
> Because calling two functions with different semantics through same
> function pointer is extremely ugly, and _will_ cause lockdep
> problems. Talk to the lockdep people for details.

Which two functions are you thinking of? There is a single
brightness_set op to call.

-- 
Best Regards,
Jacek Anaszewski

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
  2015-07-01 10:47           ` Jacek Anaszewski
@ 2015-07-01 13:37             ` Pavel Machek
  0 siblings, 0 replies; 12+ messages in thread
From: Pavel Machek @ 2015-07-01 13:37 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: linux-leds, linux-kernel, Bryan Wu, Richard Purdie, Stas Sergeev,
	Sakari Ailus, Andreas Werner, Andrew Lunn, Antonio Ospite,
	Atsushi Nemoto, Ben Dooks, Chris Boot, Dan Murphy, Daniel Jeong,
	Daniel Mack, David S. Miller, Fabio Baltieri, Felipe Balbi,
	Florian Fainelli, G.Shark Jeong, Guennadi Liakhovetski, Ingi Kim,
	Jan-Simon Moeller, Johan Hovold, John Lenz, Jonas Gorski,
	Kim Kyuwon, Kristian Kielhofner, Kristoffer Ericson,
	Linus Walleij, Mark Brown, Michael Hennerich, Milo Kim,
	Márton Németh, Nate Case, NeilBrown, Nick Forbes,
	Paul Parsons, Peter Meerwald, Phil Sutter, Philippe Retornaz,
	Raphael Assenat, Richard Purdie, Rod Whitby, Dave Hansen,
	Rodolfo Giometti, Sebastian A. Siewior, Shuah Khan, Simon Guinot,
	Álvaro Fernández Rojas

On Wed 2015-07-01 12:47:02, Jacek Anaszewski wrote:
> On 07/01/2015 09:43 AM, Pavel Machek wrote:
> >On Wed 2015-07-01 09:28:52, Jacek Anaszewski wrote:
> >>On 06/30/2015 07:46 PM, Pavel Machek wrote:
> >>>On Tue 2015-06-30 15:06:19, Jacek Anaszewski wrote:
> >>>>On 06/30/2015 01:58 PM, Pavel Machek wrote:
> >>>>>On Tue 2015-06-30 10:01:08, Jacek Anaszewski wrote:
> >>>>>>This patch rearranges the core LED subsystem code, so that it
> >>>>>>now removes from drivers the responsibility of using work queues
> >>>>>>internally in case their brightness_set ops can sleep.
> >>>>>>Addition of two flags: LED_BRIGHTNESS_FAST and LED_BLINK_DISABLE
> >>>>>>as well as new_brightness_value property to the struct led_classdev
> >>>>>>allows for employing existing set_brightness_work to do the job.
> >>>>>>The modifications allow also to get rid of brightness_set_sync op,
> >>>>>>as flash LED devices can now be handled properly only basing on the
> >>>>>>SET_BRIGHTNESS_SYNC flag.
> >>>>>
> >>>>>Are you sure this is good idea?
> >>>>>
> >>>>>You'll now use single callback for blocking and non-blocking
> >>>>>behaviour. I'm pretty sure stuff like lockdep will have some fun with
> >>>>>that.
> >>>>
> >>>>I enabled "Lock Debugging" options and didn't get any warning.
> >>>>Could you describe the use case you are thinking of?
> >>>
> >>>You may get one when one of the sleeping functions uses some lock...
> >>
> >>Drivers which use spin_lock in their brightness_set op will have to
> >>set LED_BRIGHTNESS_FAST flag, which will instruct the LED core to
> >>call the op synchronously. On the other hand drivers which can sleep
> >>in their brightness_set op won't set the flag, which will make LED core
> >>delegating the op to the work queue task. It is also possible that
> >>driver with brightness_set op that can sleep set SET_BRIGHTNESS_SYNC
> >>flag - then LED core will call it in a synchronous way from
> >>led_brightness_set and it will schedule work queue task in case
> >>the op is called from triggers.
> >
> >I understand this "works".
> >
> >>If you want to NAK the patch, please come up with detailed analysis
> >>on how it can cause problems. Without this I infer that you didn't
> >>spend a second on analyzing the code. This is counterproductive.
> >
> >NAK.
> >
> >Because calling two functions with different semantics through same
> >function pointer is extremely ugly, and _will_ cause lockdep
> >problems. Talk to the lockdep people for details.
> 
> Which two functions are you thinking of? There is a single
> brightness_set op to call.

Yes, and brightness_set may or may not sleep according to a flag
somewhere. Just use two function pointers, one of them will be always
NULL. You can keep the flag if you want to.

									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-07-01 13:37 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-30  8:01 [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep Jacek Anaszewski
2015-06-30  8:27 ` Jacek Anaszewski
2015-06-30 11:41   ` Stas Sergeev
2015-06-30 12:41     ` Jacek Anaszewski
2015-06-30 12:55       ` Stas Sergeev
2015-06-30 11:58 ` Pavel Machek
2015-06-30 13:06   ` Jacek Anaszewski
2015-06-30 17:46     ` Pavel Machek
2015-07-01  7:28       ` Jacek Anaszewski
2015-07-01  7:43         ` Pavel Machek
2015-07-01 10:47           ` Jacek Anaszewski
2015-07-01 13:37             ` Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).