On 05/04/2015 07:20 PM, Stas Sergeev wrote:Indeed, thanks.
04.05.2015 18:22, Jacek Anaszewski ÐÐÑÐÑ:It is used e.g. in the following case:
On 05/04/2015 02:12 PM, Stas Sergeev wrote:But led_trigger_set() does led_stop_software_blink(), which
Only under that condition:set_brightness_work not only sets the brightness but also
---
if (led_cdev->blink_delay_on || led_cdev->blink_delay_off) {
led_cdev->delayed_set_value = brightness;
schedule_work(&led_cdev->set_brightness_work);
---
But the main condition is:
---
if (led_cdev->flags & SET_BRIGHTNESS_ASYNC) {
led_set_brightness_async(led_cdev, brightness);
---
So I think it is actually unused.
I don't see why schedule_work() above can't be just replaced
with led_set_brightness_async(). Is there the reason not to do so?
stops software blinking, which was the primary reason
for adding this work queue I think. Here is the commit message:
IMHO means led_set_brightness() will in most cases be called
when sw blocking is already stopped. There seem to be just a
few cases where this is not true: oneshot_trig_deactivate() and
timer_trig_deactivate(), and I think I'll just change these two to
led_stop_software_blink(). I am pretty sure the work-queue is
not needed, but I'll have to test that with the patch it seems.
#echo "timer" > trigger
#echo 1 > brightness
Even if your driver just does schedule_work() and nothing
An accurate explanation would require thorough investigation.
> Now your leds-aat1290 already asks for such a change,OK, I googled the patch:
because it can sleep but does not use a work-queue theIt doesn't need this change - it defines two ops: brightness_set
way other drivers do.
(the async one) and brightness_set_sync (the sync one). The
former is called from led_set_brightness_async and the latter
form led_set_brightness_sync.
led_set_brightness_async is called from led_set_brightness
for drivers that define SET_BRIGHTNESS_ASYNC flag and
led_set_brightness_sync for the drivers that define
SET_BRIGHTNESS_SYNC flags.
led_timer_function calls always led_set_brightness_async.
https://lkml.org/lkml/2015/3/4/960
So the async one uses the work-queue, and the sync one
does not. Since led_timer_function calls always led_set_brightness_async,
it should always be using a work-queue.
But then I fail to explain your diagnostic that with my patch and
your driver, the hrtimer gives warning about a high interrupt
latency. I thought this is because your driver does sleeps and
does not use a work queue. Its not the case. Could you please
clarify, what then caused the high interrupt latency warning in
your testing?
It can be related to the fact that the driver uses delays.
In the first place we have to take into account that Linux is notIf you mean the drivers that don't have any sleeps, then the
a real time operating system. The feature you're trying to implement
is realized by hardware with use of pwm. There might be narrow group
of drivers that could benefit from it in specific circumstances
(the system couldn't be too busy at the time when timer trigger is
running), but this is too weak argument in favour of supporting small
delay intervals.