From: Johannes Berg <johannes@sipsolutions.net>
To: John Linville <linville@tuxdriver.com>
Cc: linux-wireless@vger.kernel.org
Subject: [PATCH 4/6] rfkill: add function to query state
Date: Tue, 02 Jun 2009 13:01:40 +0200 [thread overview]
Message-ID: <20090602110150.402332241@sipsolutions.net> (raw)
In-Reply-To: 20090602110136.631660156@sipsolutions.net
Sometimes it is necessary to know how the state is,
and it is easier to query rfkill than keep track of
it somewhere else, so add a function for that. This
could later be expanded to return hard/soft block,
but so far that isn't necessary.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
---
include/linux/rfkill.h | 12 ++++++++++++
net/rfkill/core.c | 13 +++++++++++++
2 files changed, 25 insertions(+)
--- wireless-testing.orig/include/linux/rfkill.h 2009-06-02 12:55:02.000000000 +0200
+++ wireless-testing/include/linux/rfkill.h 2009-06-02 12:55:20.000000000 +0200
@@ -261,6 +261,13 @@ void rfkill_set_states(struct rfkill *rf
* registered drivers?
*/
void rfkill_set_global_sw_state(const enum rfkill_type type, bool blocked);
+
+/**
+ * rfkill_blocked - query rfkill block
+ *
+ * @rfkill: rfkill struct to query
+ */
+bool rfkill_blocked(struct rfkill *rfkill);
#else /* !RFKILL */
static inline struct rfkill * __must_check
rfkill_alloc(const char *name,
@@ -313,6 +320,11 @@ static inline void rfkill_set_global_sw_
bool blocked)
{
}
+
+static inline bool rfkill_blocked(struct rfkill *rfkill)
+{
+ return false;
+}
#endif /* RFKILL || RFKILL_MODULE */
--- wireless-testing.orig/net/rfkill/core.c 2009-06-02 12:55:02.000000000 +0200
+++ wireless-testing/net/rfkill/core.c 2009-06-02 12:55:20.000000000 +0200
@@ -773,6 +773,19 @@ static struct class rfkill_class = {
.resume = rfkill_resume,
};
+bool rfkill_blocked(struct rfkill *rfkill)
+{
+ unsigned long flags;
+ u32 state;
+
+ spin_lock_irqsave(&rfkill->lock, flags);
+ state = rfkill->state;
+ spin_unlock_irqrestore(&rfkill->lock, flags);
+
+ return !!(state & RFKILL_BLOCK_ANY);
+}
+EXPORT_SYMBOL(rfkill_blocked);
+
struct rfkill * __must_check rfkill_alloc(const char *name,
struct device *parent,
--
next prev parent reply other threads:[~2009-06-02 11:12 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-02 11:01 [PATCH 0/6] the entire rfkill patchset Johannes Berg
2009-06-02 11:01 ` [PATCH 1/6 v11] rfkill: rewrite Johannes Berg
2009-06-02 11:01 ` [PATCH 2/6 v6] rfkill: create useful userspace interface Johannes Berg
2009-06-02 11:01 ` [PATCH 3/6] cfg80211: move txpower wext from mac80211 Johannes Berg
2009-06-02 11:01 ` Johannes Berg [this message]
2009-06-02 11:01 ` [PATCH 5/6 v3] cfg80211: add rfkill support Johannes Berg
2009-06-02 11:01 ` [PATCH 6/6 v2] iwm: port to new cfg80211 rfkill Johannes Berg
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=20090602110150.402332241@sipsolutions.net \
--to=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.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;
as well as URLs for NNTP newsgroup(s).