linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ivo van Doorn <ivdoorn@gmail.com>
To: Michael Buesch <mb@bu3sch.de>
Cc: John Linville <linville@tuxdriver.com>, linux-wireless@vger.kernel.org
Subject: Re: [PATCH] rfkill: Register LED triggers before registering switch
Date: Sun, 28 Oct 2007 14:05:46 +0100	[thread overview]
Message-ID: <200710281405.47341.IvDoorn@gmail.com> (raw)
In-Reply-To: <200710281307.54552.mb@bu3sch.de>

On Sunday 28 October 2007, Michael Buesch wrote:
> Registering the switch triggers a LED event, so we must register
> LED triggers before the switch.
> This has a potential to fix a crash, depending on how the device
> driver initializes the rfkill data structure.
> 
> Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>

> 
> Index: wireless-2.6/net/rfkill/rfkill.c
> ===================================================================
> --- wireless-2.6.orig/net/rfkill/rfkill.c	2007-10-27 13:28:33.000000000 +0200
> +++ wireless-2.6/net/rfkill/rfkill.c	2007-10-28 12:57:12.000000000 +0100
> @@ -388,19 +388,20 @@ int rfkill_register(struct rfkill *rfkil
>  	if (!rfkill->toggle_radio)
>  		return -EINVAL;
>  
> +	snprintf(dev->bus_id, sizeof(dev->bus_id),
> +		 "rfkill%ld", (long)atomic_inc_return(&rfkill_no) - 1);
> +
> +	rfkill_led_trigger_register(rfkill);
> +
>  	error = rfkill_add_switch(rfkill);
>  	if (error)
>  		return error;
>  
> -	snprintf(dev->bus_id, sizeof(dev->bus_id),
> -		 "rfkill%ld", (long)atomic_inc_return(&rfkill_no) - 1);
> -
>  	error = device_add(dev);
>  	if (error) {
>  		rfkill_remove_switch(rfkill);
>  		return error;
>  	}
> -	rfkill_led_trigger_register(rfkill);
>  
>  	return 0;
>  }
> @@ -416,9 +417,9 @@ EXPORT_SYMBOL(rfkill_register);
>   */
>  void rfkill_unregister(struct rfkill *rfkill)
>  {
> -	rfkill_led_trigger_unregister(rfkill);
>  	device_del(&rfkill->dev);
>  	rfkill_remove_switch(rfkill);
> +	rfkill_led_trigger_unregister(rfkill);
>  	put_device(&rfkill->dev);
>  }
>  EXPORT_SYMBOL(rfkill_unregister);
> 



      reply	other threads:[~2007-10-28 12:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-28 12:07 [PATCH] rfkill: Register LED triggers before registering switch Michael Buesch
2007-10-28 13:05 ` Ivo van Doorn [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=200710281405.47341.IvDoorn@gmail.com \
    --to=ivdoorn@gmail.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=mb@bu3sch.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;
as well as URLs for NNTP newsgroup(s).