* [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp
@ 2008-08-03 11:32 Tomas Winkler
2008-08-03 18:14 ` Johannes Berg
0 siblings, 1 reply; 6+ messages in thread
From: Tomas Winkler @ 2008-08-03 11:32 UTC (permalink / raw)
To: linville, johannes, yi.zhu; +Cc: linux-wireless, Tomas Winkler
This patch moves filtering statement from ieee80211_rx_bss_info
which is called for both beacon and probe to ieee80211_rx_mgmt_probe_resp
and save few cycles in beacon parsing.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
---
net/mac80211/mlme.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 5358420..0800385 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -2570,9 +2570,6 @@ static void ieee80211_rx_bss_info(struct net_device *dev,
DECLARE_MAC_BUF(mac);
DECLARE_MAC_BUF(mac2);
- if (!beacon && memcmp(mgmt->da, dev->dev_addr, ETH_ALEN))
- return; /* ignore ProbeResp to foreign address */
-
beacon_timestamp = le64_to_cpu(mgmt->u.beacon.timestamp);
if (ieee80211_vif_is_mesh(&sdata->vif) && elems->mesh_id &&
@@ -2890,6 +2887,9 @@ static void ieee80211_rx_mgmt_probe_resp(struct net_device *dev,
size_t baselen;
struct ieee802_11_elems elems;
+ if (memcmp(mgmt->da, dev->dev_addr, ETH_ALEN))
+ return; /* ignore ProbeResp to foreign address */
+
baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
if (baselen > len)
return;
--
1.5.4.1
---------------------------------------------------------------------
Intel Israel (74) Limited
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp
2008-08-03 11:32 [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp Tomas Winkler
@ 2008-08-03 18:14 ` Johannes Berg
2008-08-05 7:14 ` Tomas Winkler
0 siblings, 1 reply; 6+ messages in thread
From: Johannes Berg @ 2008-08-03 18:14 UTC (permalink / raw)
To: Tomas Winkler; +Cc: linville, yi.zhu, linux-wireless
[-- Attachment #1: Type: text/plain, Size: 1440 bytes --]
On Sun, 2008-08-03 at 14:32 +0300, Tomas Winkler wrote:
> This patch moves filtering statement from ieee80211_rx_bss_info
> which is called for both beacon and probe to ieee80211_rx_mgmt_probe_resp
> and save few cycles in beacon parsing.
Sounds alright to me, but maybe we should then document that
rx_bss_info() only expects data for the right BSSID?
> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
> ---
> net/mac80211/mlme.c | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
> index 5358420..0800385 100644
> --- a/net/mac80211/mlme.c
> +++ b/net/mac80211/mlme.c
> @@ -2570,9 +2570,6 @@ static void ieee80211_rx_bss_info(struct net_device *dev,
> DECLARE_MAC_BUF(mac);
> DECLARE_MAC_BUF(mac2);
>
> - if (!beacon && memcmp(mgmt->da, dev->dev_addr, ETH_ALEN))
> - return; /* ignore ProbeResp to foreign address */
> -
> beacon_timestamp = le64_to_cpu(mgmt->u.beacon.timestamp);
>
> if (ieee80211_vif_is_mesh(&sdata->vif) && elems->mesh_id &&
> @@ -2890,6 +2887,9 @@ static void ieee80211_rx_mgmt_probe_resp(struct net_device *dev,
> size_t baselen;
> struct ieee802_11_elems elems;
>
> + if (memcmp(mgmt->da, dev->dev_addr, ETH_ALEN))
> + return; /* ignore ProbeResp to foreign address */
> +
> baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
> if (baselen > len)
> return;
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp
2008-08-03 18:14 ` Johannes Berg
@ 2008-08-05 7:14 ` Tomas Winkler
2008-08-05 9:09 ` Johannes Berg
0 siblings, 1 reply; 6+ messages in thread
From: Tomas Winkler @ 2008-08-05 7:14 UTC (permalink / raw)
To: Johannes Berg; +Cc: linville, yi.zhu, linux-wireless
On Sun, Aug 3, 2008 at 9:14 PM, Johannes Berg <johannes@sipsolutions.net> wrote:
> On Sun, 2008-08-03 at 14:32 +0300, Tomas Winkler wrote:
>> This patch moves filtering statement from ieee80211_rx_bss_info
>> which is called for both beacon and probe to ieee80211_rx_mgmt_probe_resp
>> and save few cycles in beacon parsing.
>
> Sounds alright to me, but maybe we should then document that
> rx_bss_info() only expects data for the right BSSID?
Probes are filtered on destination address not on BSSID, to exclude
probe responses not directed to the station.
bss_info treats any BSSID this is what creates the bss list after all
if I'm not mistaken.
Tomas
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp
2008-08-05 7:14 ` Tomas Winkler
@ 2008-08-05 9:09 ` Johannes Berg
2008-08-05 15:21 ` Tomas Winkler
0 siblings, 1 reply; 6+ messages in thread
From: Johannes Berg @ 2008-08-05 9:09 UTC (permalink / raw)
To: Tomas Winkler; +Cc: linville, yi.zhu, linux-wireless
[-- Attachment #1: Type: text/plain, Size: 997 bytes --]
On Tue, 2008-08-05 at 10:14 +0300, Tomas Winkler wrote:
> On Sun, Aug 3, 2008 at 9:14 PM, Johannes Berg <johannes@sipsolutions.net> wrote:
> > On Sun, 2008-08-03 at 14:32 +0300, Tomas Winkler wrote:
> >> This patch moves filtering statement from ieee80211_rx_bss_info
> >> which is called for both beacon and probe to ieee80211_rx_mgmt_probe_resp
> >> and save few cycles in beacon parsing.
> >
> > Sounds alright to me, but maybe we should then document that
> > rx_bss_info() only expects data for the right BSSID?
>
> Probes are filtered on destination address not on BSSID, to exclude
> probe responses not directed to the station.
> bss_info treats any BSSID this is what creates the bss list after all
> if I'm not mistaken.
Eh, right, of course, not sure why I got confused there. Still though,
adding a few lines of comments would be nice. If we did that every time
we changed a function, we'd have documentation for all functions in no
time ;) Oh well...
johannes
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp
2008-08-05 9:09 ` Johannes Berg
@ 2008-08-05 15:21 ` Tomas Winkler
2008-08-05 15:27 ` Johannes Berg
0 siblings, 1 reply; 6+ messages in thread
From: Tomas Winkler @ 2008-08-05 15:21 UTC (permalink / raw)
To: Johannes Berg; +Cc: linville, yi.zhu, linux-wireless
On Tue, Aug 5, 2008 at 12:09 PM, Johannes Berg
<johannes@sipsolutions.net> wrote:
> On Tue, 2008-08-05 at 10:14 +0300, Tomas Winkler wrote:
>> On Sun, Aug 3, 2008 at 9:14 PM, Johannes Berg <johannes@sipsolutions.net> wrote:
>> > On Sun, 2008-08-03 at 14:32 +0300, Tomas Winkler wrote:
>> >> This patch moves filtering statement from ieee80211_rx_bss_info
>> >> which is called for both beacon and probe to ieee80211_rx_mgmt_probe_resp
>> >> and save few cycles in beacon parsing.
>> >
>> > Sounds alright to me, but maybe we should then document that
>> > rx_bss_info() only expects data for the right BSSID?
>>
>> Probes are filtered on destination address not on BSSID, to exclude
>> probe responses not directed to the station.
>> bss_info treats any BSSID this is what creates the bss list after all
>> if I'm not mistaken.
>
> Eh, right, of course, not sure why I got confused there. Still though,
> adding a few lines of comments would be nice. If we did that every time
> we changed a function, we'd have documentation for all functions in no
> time ;) Oh well...
>
I agree, I haven't added any function in this patch so I'm not sure
it's appropriate to add comments within this patch.
The statement I've moved is already commented.
I can comment the function in a different patch.
Thanks
Tomas
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp
2008-08-05 15:21 ` Tomas Winkler
@ 2008-08-05 15:27 ` Johannes Berg
0 siblings, 0 replies; 6+ messages in thread
From: Johannes Berg @ 2008-08-05 15:27 UTC (permalink / raw)
To: Tomas Winkler; +Cc: linville, yi.zhu, linux-wireless
[-- Attachment #1: Type: text/plain, Size: 1030 bytes --]
On Tue, 2008-08-05 at 18:21 +0300, Tomas Winkler wrote:
> >> Probes are filtered on destination address not on BSSID, to exclude
> >> probe responses not directed to the station.
> >> bss_info treats any BSSID this is what creates the bss list after all
> >> if I'm not mistaken.
> >
> > Eh, right, of course, not sure why I got confused there. Still though,
> > adding a few lines of comments would be nice. If we did that every time
> > we changed a function, we'd have documentation for all functions in no
> > time ;) Oh well...
> >
> I agree, I haven't added any function in this patch so I'm not sure
> it's appropriate to add comments within this patch.
> The statement I've moved is already commented.
> I can comment the function in a different patch.
Works for me, I don't really care too much either way.
I'm just thinking that when we change behaviour of a function or similar
we could take the opportunity to document the (new) behaviour. Not too
important in this case I guess.
johannes
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-08-05 15:28 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-03 11:32 [PATCH 1/1] mac80211: filter probes in ieee80211_rx_mgmt_probe_resp Tomas Winkler
2008-08-03 18:14 ` Johannes Berg
2008-08-05 7:14 ` Tomas Winkler
2008-08-05 9:09 ` Johannes Berg
2008-08-05 15:21 ` Tomas Winkler
2008-08-05 15:27 ` Johannes Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox