linux-leds.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Pavel Machek <pavel@denx.de>
To: Jacek Anaszewski <j.anaszewski@samsung.com>
Cc: linux-leds@vger.kernel.org, linux-kernel@vger.kernel.org,
	Bryan Wu <cooloney@gmail.com>, Richard Purdie <rpurdie@rpsys.net>,
	Stas Sergeev <stsp@users.sourceforge.net>,
	Sakari Ailus <sakari.ailus@linux.intel.com>,
	Andreas Werner <andreas.werner@men.de>,
	Andrew Lunn <andrew@lunn.ch>,
	Antonio Ospite <ospite@studenti.unina.it>,
	Atsushi Nemoto <anemo@mba.ocn.ne.jp>,
	Ben Dooks <ben@simtec.co.uk>, Chris Boot <bootc@bootc.net>,
	Dan Murphy <dmurphy@ti.com>, Daniel Jeong <daniel.jeong@ti.com>,
	Daniel Mack <daniel@zonque.org>,
	"David S. Miller" <davem@davemloft.net>,
	Fabio Baltieri <fabio.baltieri@gmail.com>,
	Felipe Balbi <balbi@ti.com>,
	Florian Fainelli <florian@openwrt.org>,
	"G.Shark Jeong" <gshark.jeong@gmail.com>,
	Guennadi Liakhovetski <g.liakhovetski@gmx.de>,
	Ingi Kim <ingi2.kim@samsung.com>,
	Jan-Simon Moeller <dl9pf@gmx.de>, Johan Hovold <johan@kernel.org>,
	John
Subject: Re: [PATCH/RFC RESEND] leds: Use set_brightness_work for brightness_set ops that can sleep
Date: Wed, 1 Jul 2015 15:37:32 +0200	[thread overview]
Message-ID: <20150701133732.GB16250@amd> (raw)
In-Reply-To: <5593C526.9070300@samsung.com>

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

      reply	other threads:[~2015-07-01 13:37 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150701133732.GB16250@amd \
    --to=pavel@denx.de \
    --cc=andreas.werner@men.de \
    --cc=andrew@lunn.ch \
    --cc=anemo@mba.ocn.ne.jp \
    --cc=balbi@ti.com \
    --cc=ben@simtec.co.uk \
    --cc=bootc@bootc.net \
    --cc=cooloney@gmail.com \
    --cc=daniel.jeong@ti.com \
    --cc=daniel@zonque.org \
    --cc=davem@davemloft.net \
    --cc=dl9pf@gmx.de \
    --cc=dmurphy@ti.com \
    --cc=fabio.baltieri@gmail.com \
    --cc=florian@openwrt.org \
    --cc=g.liakhovetski@gmx.de \
    --cc=gshark.jeong@gmail.com \
    --cc=ingi2.kim@samsung.com \
    --cc=j.anaszewski@samsung.com \
    --cc=johan@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=ospite@studenti.unina.it \
    --cc=rpurdie@rpsys.net \
    --cc=sakari.ailus@linux.intel.com \
    --cc=stsp@users.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).