All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Henrique de Moraes Holschuh" <hmh@hmh.eng.br>
To: "Ivo van Doorn" <ivdoorn@gmail.com>
Cc: "Tomas Winkler" <tomasw@gmail.com>,
	"Dan Williams" <dcbw@redhat.com>,
	"John W. Linville" <linville@tuxdriver.com>,
	linux-wireless@vger.kernel.org, "Dmitry Torokhov" <dtor@mail.ru>
Subject: Re: [PATCH 01/12] rfkill: clarify meaning of rfkill states
Date: Thu, 05 Jun 2008 14:53:48 -0300	[thread overview]
Message-ID: <1212688428.15820.1256966109@webmail.messagingengine.com> (raw)
In-Reply-To: <200806051803.43193.IvDoorn@gmail.com>

On Thu, 5 Jun 2008 18:03:42 +0200, "Ivo van Doorn" <ivdoorn@gmail.com> said:
> On Thursday 05 June 2008, Henrique de Moraes Holschuh wrote:
> > The correct reading of rfkill class states are:
> > 
> > RFKILL_STATE_ON:  transmitter is UNBLOCKED and *may* operate
> > RFKILL_STATE_OFF: transmitter is BLOCKED and will *NOT* operate.
> > 
> > Nothing else is correct.
> > 
> > We could certainly rename these states to
> > 
> > enum rfkill_state {
> > 	RFKILL_STATE_BLOCKED = 0,
> > 	RFKILL_STATE_UNBLOCKED = 1,
> > };
> > 
> > #define RFKILL_STATE_ON RFKILL_STATE_UNBLOCKED
> > #define RFKILL_STATE_OFF RFKILL_STATE_BLOCKED
> > 
> > Ivo, do you want a patch that does the above (plus the documentation
> > changes, of course)?
> 
> Patch would be good. I would however drop the #define RFKILL_STATE_ON
> and force the RFKILL_STATE_BLOCKED/RFKILL_STATE_UNBLOCKED usage
> to make sure everybody gets the right idea about the meaning.

The advantage of the former way is that we break nothing, and all drivers
can be moved to the new names at their maintainer's leisure.  It could also
work as a marker for "this driver has been reviewed and now uses rfkill
correctly" or somesuch.

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh


  parent reply	other threads:[~2008-06-05 17:53 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-04  3:10 [GIT PATCH] rkfill improvements for -next Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 01/12] rfkill: clarify meaning of rfkill states Henrique de Moraes Holschuh
2008-06-04  3:32   ` Pavel Roskin
2008-06-04  3:39     ` Henrique de Moraes Holschuh
2008-06-04 20:27   ` Dan Williams
2008-06-04 20:32     ` Dan Williams
2008-06-04 23:07     ` Tomas Winkler
2008-06-05  0:38       ` Henrique de Moraes Holschuh
2008-06-05  8:33         ` Tomas Winkler
2008-06-05 12:38           ` Henrique de Moraes Holschuh
2008-06-05 12:12         ` Dan Williams
2008-06-05 13:03           ` Henrique de Moraes Holschuh
2008-06-05 14:46             ` Dan Williams
2008-06-05 20:13               ` Henrique de Moraes Holschuh
2008-06-06  3:26                 ` Dan Williams
2008-06-06 13:24                   ` Dan Williams
2008-06-06 14:14                     ` Henrique de Moraes Holschuh
2008-06-06 14:27                       ` Dan Williams
2008-06-07 12:09                         ` Tomas Winkler
2008-06-08 20:16                       ` Matthew Garrett
2008-06-10  4:11                         ` Henrique de Moraes Holschuh
2008-06-11 17:10                           ` Tomas Winkler
2008-06-12 18:03                             ` Henrique de Moraes Holschuh
2008-06-12 15:43                           ` Dan Williams
2008-06-12 16:31                             ` Henrique de Moraes Holschuh
2008-06-05 16:03         ` Ivo van Doorn
2008-06-05 16:36           ` Tomas Winkler
2008-06-05 17:42             ` Henrique de Moraes Holschuh
2008-06-05 17:54               ` Tomas Winkler
2008-06-05 20:16                 ` Henrique de Moraes Holschuh
2008-06-05 17:53           ` Henrique de Moraes Holschuh [this message]
2008-06-04  3:10 ` [PATCH 02/12] rfkill: fix minor typo in kernel doc Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 03/12] rfkill: handle SW_RFKILL_ALL events Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 04/12] rfkill: add parameter to disable radios by default Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 05/12] rfkill: add read-write rfkill switch support Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 06/12] rfkill: add the WWAN radio type Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 07/12] rfkill: rework suspend and resume handlers Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 08/12] rfkill: add notifier chains support Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 09/12] rfkill: add type string helper Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 10/12] rfkill: add uevent notifications Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 11/12] rfkill: do not allow userspace to override ALL RADIOS OFF Henrique de Moraes Holschuh
2008-06-04  3:10 ` [PATCH 12/12] rfkill: document rw rfkill switches and clarify input subsystem interactions Henrique de Moraes Holschuh
  -- strict thread matches above, loose matches on Subject: below --
2008-06-22 15:38 [GIT PATCH] rfkill rework for 2.6.27 (v2) Henrique de Moraes Holschuh
2008-06-22 15:38 ` [PATCH 01/12] rfkill: clarify meaning of rfkill states Henrique de Moraes Holschuh

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=1212688428.15820.1256966109@webmail.messagingengine.com \
    --to=hmh@hmh.eng.br \
    --cc=dcbw@redhat.com \
    --cc=dtor@mail.ru \
    --cc=ivdoorn@gmail.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=tomasw@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.