mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Simon Guinot <simon@sequanux.org>
To: Axel Lin <axel.lin@gmail.com>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	Simon Guinot <sguinot@lacie.com>,
	lm-sensors@lm-sensors.org
Subject: Re: [lm-sensors] [PATCH v2] hwmon: (gpio-fan) Fix fan_ctrl_init error path
Date: Tue, 9 Nov 2010 09:41:32 +0000	[thread overview]
Message-ID: <20101109094132.GD32648@kw.sim.vm.gnt> (raw)
In-Reply-To: <1289292108.28671.1.camel@mola>

[-- Attachment #1: Type: text/plain, Size: 1699 bytes --]

On Tue, Nov 09, 2010 at 04:41:48PM +0800, Axel Lin wrote:
> In current implementation, the sysfs entries is not removed before return -ENODEV.
> 
> Creating the sysfs attribute should be the last thing done by the function,
> after all the rest has been successful.
> Otherwise there is a small window during which user-space can access the attribute
> but the driver isn't ready to deal with the requests.
> 
> Fix it by moving sysfs_create_group to be the last thing done by the function.
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Thanks for the patch.

Acked-by: Simon Guinot <sguinot@lacie.com>

> ---
>  drivers/hwmon/gpio-fan.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/hwmon/gpio-fan.c b/drivers/hwmon/gpio-fan.c
> index aa701a1..f141a1d 100644
> --- a/drivers/hwmon/gpio-fan.c
> +++ b/drivers/hwmon/gpio-fan.c
> @@ -376,10 +376,6 @@ static int fan_ctrl_init(struct gpio_fan_data *fan_data,
>  		}
>  	}
>  
> -	err = sysfs_create_group(&pdev->dev.kobj, &gpio_fan_ctrl_group);
> -	if (err)
> -		goto err_free_gpio;
> -
>  	fan_data->num_ctrl = num_ctrl;
>  	fan_data->ctrl = ctrl;
>  	fan_data->num_speed = pdata->num_speed;
> @@ -391,6 +387,10 @@ static int fan_ctrl_init(struct gpio_fan_data *fan_data,
>  		goto err_free_gpio;
>  	}
>  
> +	err = sysfs_create_group(&pdev->dev.kobj, &gpio_fan_ctrl_group);
> +	if (err)
> +		goto err_free_gpio;
> +
>  	return 0;
>  
>  err_free_gpio:
> -- 
> 1.7.2
> 
> 
> 
> 
> _______________________________________________
> lm-sensors mailing list
> lm-sensors@lm-sensors.org
> http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

  reply	other threads:[~2010-11-09  9:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-09  8:41 Axel Lin
2010-11-09  9:41 ` Simon Guinot [this message]
2010-11-09 18:20 ` Guenter Roeck

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=20101109094132.GD32648@kw.sim.vm.gnt \
    --to=simon@sequanux.org \
    --cc=axel.lin@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lm-sensors@lm-sensors.org \
    --cc=sguinot@lacie.com \
    /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

Powered by JetHome