From: Johannes Berg <johannes@sipsolutions.net>
To: "John W. Linville" <linville@tuxdriver.com>
Cc: linux-wireless@vger.kernel.org,
Cristian Morales Vega <cristian@samknows.com>,
Larry Finger <Larry.Finger@lwfinger.net>
Subject: Re: [PATCH v2] cfg80211: allow CFG80211_SIGNAL_TYPE_UNSPEC in station_info
Date: Thu, 15 Mar 2012 18:33:10 +0100 [thread overview]
Message-ID: <1331832790.3432.28.camel@jlt3.sipsolutions.net> (raw)
In-Reply-To: <1331832341-30795-1-git-send-email-linville@tuxdriver.com>
On Thu, 2012-03-15 at 13:25 -0400, John W. Linville wrote:
> The station_info struct had demanded dBm signal values, but the
> cfg80211 wireless extensions implementation was also accepting
> "unspecified" (i.e. RSSI) unit values while the nl80211 code was
> completely unaware of them. Resolve this by formally allowing the
> "unspecified" units while making nl80211 ignore them.
Looks good, thanks.
Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
> Signed-off-by: John W. Linville <linville@tuxdriver.com>
> ---
> The switch statement could be an if, but used it because I copied it
> from elsewhere in the file and because we might (?) want to support a
> different attribute to report the unspecified unit values through
> nl80211?
>
> v2: Fix typo in commit message and add note about using dBm for drivers
> using CFG80211_SIGNAL_TYPE_MBM.
>
> include/net/cfg80211.h | 4 ++--
> net/wireless/nl80211.c | 29 +++++++++++++++++++----------
> 2 files changed, 21 insertions(+), 12 deletions(-)
>
> diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
> index a067d30..4263a62 100644
> --- a/include/net/cfg80211.h
> +++ b/include/net/cfg80211.h
> @@ -605,8 +605,10 @@ struct sta_bss_parameters {
> * @llid: mesh local link id
> * @plid: mesh peer link id
> * @plink_state: mesh peer link state
> - * @signal: signal strength of last received packet in dBm
> - * @signal_avg: signal strength average in dBm
> + * @signal: the signal strength, type depends on the wiphy's signal_type
> + NOTE: For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
> + * @signal_avg: avg signal strength, type depends on the wiphy's signal_type
> + NOTE: For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
> * @txrate: current unicast bitrate from this station
> * @rxrate: current unicast bitrate to this station
> * @rx_packets: packets received from this station
> diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
> index afeea32..3105c77 100644
> --- a/net/wireless/nl80211.c
> +++ b/net/wireless/nl80211.c
> @@ -2349,7 +2349,9 @@ nla_put_failure:
> }
>
> static int nl80211_send_station(struct sk_buff *msg, u32 pid, u32 seq,
> - int flags, struct net_device *dev,
> + int flags,
> + struct cfg80211_registered_device *rdev,
> + struct net_device *dev,
> const u8 *mac_addr, struct station_info *sinfo)
> {
> void *hdr;
> @@ -2388,12 +2390,18 @@ static int nl80211_send_station(struct sk_buff *msg, u32 pid, u32 seq,
> if (sinfo->filled & STATION_INFO_PLINK_STATE)
> NLA_PUT_U8(msg, NL80211_STA_INFO_PLINK_STATE,
> sinfo->plink_state);
> - if (sinfo->filled & STATION_INFO_SIGNAL)
> - NLA_PUT_U8(msg, NL80211_STA_INFO_SIGNAL,
> - sinfo->signal);
> - if (sinfo->filled & STATION_INFO_SIGNAL_AVG)
> - NLA_PUT_U8(msg, NL80211_STA_INFO_SIGNAL_AVG,
> - sinfo->signal_avg);
> + switch (rdev->wiphy.signal_type) {
> + case CFG80211_SIGNAL_TYPE_MBM:
> + if (sinfo->filled & STATION_INFO_SIGNAL)
> + NLA_PUT_U8(msg, NL80211_STA_INFO_SIGNAL,
> + sinfo->signal);
> + if (sinfo->filled & STATION_INFO_SIGNAL_AVG)
> + NLA_PUT_U8(msg, NL80211_STA_INFO_SIGNAL_AVG,
> + sinfo->signal_avg);
> + break;
> + default:
> + break;
> + }
> if (sinfo->filled & STATION_INFO_TX_BITRATE) {
> if (!nl80211_put_sta_rate(msg, &sinfo->txrate,
> NL80211_STA_INFO_TX_BITRATE))
> @@ -2486,7 +2494,7 @@ static int nl80211_dump_station(struct sk_buff *skb,
> if (nl80211_send_station(skb,
> NETLINK_CB(cb->skb).pid,
> cb->nlh->nlmsg_seq, NLM_F_MULTI,
> - netdev, mac_addr,
> + dev, netdev, mac_addr,
> &sinfo) < 0)
> goto out;
>
> @@ -2531,7 +2539,7 @@ static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
> return -ENOMEM;
>
> if (nl80211_send_station(msg, info->snd_pid, info->snd_seq, 0,
> - dev, mac_addr, &sinfo) < 0) {
> + rdev, dev, mac_addr, &sinfo) < 0) {
> nlmsg_free(msg);
> return -ENOBUFS;
> }
> @@ -7482,7 +7490,8 @@ void nl80211_send_sta_event(struct cfg80211_registered_device *rdev,
> if (!msg)
> return;
>
> - if (nl80211_send_station(msg, 0, 0, 0, dev, mac_addr, sinfo) < 0) {
> + if (nl80211_send_station(msg, 0, 0, 0,
> + rdev, dev, mac_addr, sinfo) < 0) {
> nlmsg_free(msg);
> return;
> }
prev parent reply other threads:[~2012-03-15 17:33 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-15 14:13 [PATCH] rndis_wlan: don't report station signal Johannes Berg
2012-03-15 14:25 ` John W. Linville
2012-03-15 14:47 ` Johannes Berg
2012-03-15 15:03 ` John W. Linville
2012-03-15 15:26 ` Johannes Berg
2012-03-15 15:58 ` John W. Linville
2012-03-15 15:58 ` [PATCH] cfg80211: allow CFG80211_SIGNAL_TYPE_UNSPEC in station_info John W. Linville
2012-03-15 16:19 ` Cristian Morales Vega
2012-03-15 16:26 ` Larry Finger
2012-03-15 16:33 ` Johannes Berg
2012-03-15 17:25 ` [PATCH v2] " John W. Linville
2012-03-15 17:33 ` Johannes Berg [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=1331832790.3432.28.camel@jlt3.sipsolutions.net \
--to=johannes@sipsolutions.net \
--cc=Larry.Finger@lwfinger.net \
--cc=cristian@samknows.com \
--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).