From: Jacek Anaszewski <jacek.anaszewski@gmail.com>
To: Kees Cook <keescook@chromium.org>, linux-kernel@vger.kernel.org
Cc: Richard Purdie <rpurdie@rpsys.net>, Pavel Machek <pavel@ucw.cz>,
Zhang Bo <bo.zhang@nxp.com>,
Linus Walleij <linus.walleij@linaro.org>,
Ingo Molnar <mingo@kernel.org>,
linux-leds@vger.kernel.org, Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH] led/ledtrig-heartbeat: Convert timers to use
Date: Fri, 6 Oct 2017 22:18:47 +0200 [thread overview]
Message-ID: <f242a0d2-c14c-778c-27bc-89b01766cdfa@gmail.com> (raw)
In-Reply-To: <20171005004934.GA23081@beast>
Hi Kees,
Thanks for the patch.
On 10/05/2017 02:49 AM, Kees Cook wrote:
> Instead of using .data directly, convert to from_timer. Since the
> trigger_data is allocated separately, the led_cdev must be explicitly
> tracked for the callback.
>
> Cc: Richard Purdie <rpurdie@rpsys.net>
> Cc: Jacek Anaszewski <jacek.anaszewski@gmail.com>
> Cc: Pavel Machek <pavel@ucw.cz>
> Cc: Zhang Bo <bo.zhang@nxp.com>
> Cc: Linus Walleij <linus.walleij@linaro.org>
> Cc: Ingo Molnar <mingo@kernel.org>
> Cc: linux-leds@vger.kernel.org
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Signed-off-by: Kees Cook <keescook@chromium.org>
> ---
> This requires commit 686fef928bba ("timer: Prepare to change timer
> callback argument type") in v4.14-rc3, but should be otherwise
> stand-alone.
> ---
> drivers/leds/trigger/ledtrig-heartbeat.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/leds/trigger/ledtrig-heartbeat.c b/drivers/leds/trigger/ledtrig-heartbeat.c
> index e95ea65380c8..f0896de410b8 100644
> --- a/drivers/leds/trigger/ledtrig-heartbeat.c
> +++ b/drivers/leds/trigger/ledtrig-heartbeat.c
> @@ -25,19 +25,23 @@
> static int panic_heartbeats;
>
> struct heartbeat_trig_data {
> + struct led_classdev *led_cdev;
> unsigned int phase;
> unsigned int period;
> struct timer_list timer;
> unsigned int invert;
> };
>
> -static void led_heartbeat_function(unsigned long data)
> +static void led_heartbeat_function(struct timer_list *t)
> {
> - struct led_classdev *led_cdev = (struct led_classdev *) data;
> - struct heartbeat_trig_data *heartbeat_data = led_cdev->trigger_data;
> + struct heartbeat_trig_data *heartbeat_data =
> + from_timer(heartbeat_data, t, timer);
> + struct led_classdev *led_cdev;
> unsigned long brightness = LED_OFF;
> unsigned long delay = 0;
>
> + led_cdev = heartbeat_data->led_cdev;
> +
> if (unlikely(panic_heartbeats)) {
> led_set_brightness_nosleep(led_cdev, LED_OFF);
> return;
> @@ -127,18 +131,18 @@ static void heartbeat_trig_activate(struct led_classdev *led_cdev)
> return;
>
> led_cdev->trigger_data = heartbeat_data;
> + heartbeat_data->led_cdev = led_cdev;
> rc = device_create_file(led_cdev->dev, &dev_attr_invert);
> if (rc) {
> kfree(led_cdev->trigger_data);
> return;
> }
>
> - setup_timer(&heartbeat_data->timer,
> - led_heartbeat_function, (unsigned long) led_cdev);
> + timer_setup(&heartbeat_data->timer, led_heartbeat_function, 0);
> heartbeat_data->phase = 0;
> if (!led_cdev->blink_brightness)
> led_cdev->blink_brightness = led_cdev->max_brightness;
> - led_heartbeat_function(heartbeat_data->timer.data);
> + led_heartbeat_function(&heartbeat_data->timer);
> set_bit(LED_BLINK_SW, &led_cdev->work_flags);
> led_cdev->activated = true;
> }
>
It seems that the patch title is somewhat incomplete, so I amended
it as follows:
s/to use/to use timer_setup()/
and applied to the for-next branch of linux-leds.git after rebasing
it onto 4.14-rc3.
--
Best regards,
Jacek Anaszewski
next prev parent reply other threads:[~2017-10-06 20:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-05 0:49 Kees Cook
2017-10-06 20:18 ` Jacek Anaszewski [this message]
2017-10-06 20:21 ` Kees Cook
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=f242a0d2-c14c-778c-27bc-89b01766cdfa@gmail.com \
--to=jacek.anaszewski@gmail.com \
--cc=bo.zhang@nxp.com \
--cc=keescook@chromium.org \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-leds@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=pavel@ucw.cz \
--cc=rpurdie@rpsys.net \
--cc=tglx@linutronix.de \
/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
all inboxes | Powered by JetHome®