From: Marco Porsch <marco@cozybit.com>
To: ath9k-devel@lists.ath9k.org
Subject: [ath9k-devel] [PATCHv3 1/3] mac80211: move mesh sync beacon handler into neighbour_update
Date: Wed, 27 Feb 2013 09:06:15 +0100 [thread overview]
Message-ID: <512DBE77.9040902@cozybit.com> (raw)
In-Reply-To: <CAG6hwVOrwGTceDKK9t0QAFH9LDGuhZtJDQhQh38Mh2C+YepAtw@mail.gmail.com>
Am 26.02.2013 22:31, schrieb Thomas Pedersen:
> Hi Marco,
>
> On Mon, Feb 25, 2013 at 8:00 AM, Marco Porsch<marco@cozybit.com> wrote:
>> Move the beacon handler into mesh_neighbour_update where the STA
>> pointer is already available. This avoids additional overhead
>> and simplifies the handler.
>> The repositioning will also benefit mesh PS which uses T_r and
>> the updated T_offset value.
>>
>> Check frame type before calling the handler. Rename it to better
>> reflect its purpose.
>>
>> Signed-off-by: Marco Porsch<marco@cozybit.com>
>> ---
>>
>> v3:
>> check frame type before rx_bcn handler (Johannes)
>>
>> net/mac80211/ieee80211_i.h | 9 ++++-----
>> net/mac80211/mesh.c | 7 +------
>> net/mac80211/mesh.h | 4 +++-
>> net/mac80211/mesh_plink.c | 38 ++++++++++++++++++++++++++++-------
>> net/mac80211/mesh_sync.c | 47 +++++++++-----------------------------------
>> 5 files changed, 48 insertions(+), 57 deletions(-)
>>
>> diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
>> index 388580a..631760f 100644
>> --- a/net/mac80211/ieee80211_i.h
>> +++ b/net/mac80211/ieee80211_i.h
>> @@ -529,11 +529,10 @@ struct ieee80211_if_ibss {
>> */
>> struct ieee802_11_elems;
>> struct ieee80211_mesh_sync_ops {
>> - void (*rx_bcn_presp)(struct ieee80211_sub_if_data *sdata,
>> - u16 stype,
>> - struct ieee80211_mgmt *mgmt,
>> - struct ieee802_11_elems *elems,
>> - struct ieee80211_rx_status *rx_status);
>> + void (*rx_bcn)(struct sta_info *sta,
>> + struct ieee80211_mgmt *mgmt,
>> + struct ieee802_11_elems *elems,
>> + u64 t_r);
>
> Why not continue to sync against probe responses?
> mesh_neighbour_update() gets these as well.
Because there was a comment about the standard mentioning only beacon
frames. Fooled me here =/
Now I see that the standard explicitly mentions probe responses as well.
Is the sync code currently ready to handle probe responses? I am not
perfectly sure about the sta->t_offset_setpoint stuff.
--Marco
WARNING: multiple messages have this Message-ID (diff)
From: Marco Porsch <marco@cozybit.com>
To: Thomas Pedersen <thomas@cozybit.com>
Cc: johannes@sipsolutions.net, mcgrof@qca.qualcomm.com,
jouni@qca.qualcomm.com, vthiagar@qca.qualcomm.com,
senthilb@qca.qualcomm.com, sleffler@google.com,
linux-wireless@vger.kernel.org, devel@lists.open80211s.org,
ath9k-devel@lists.ath9k.org
Subject: Re: [PATCHv3 1/3] mac80211: move mesh sync beacon handler into neighbour_update
Date: Wed, 27 Feb 2013 09:06:15 +0100 [thread overview]
Message-ID: <512DBE77.9040902@cozybit.com> (raw)
In-Reply-To: <CAG6hwVOrwGTceDKK9t0QAFH9LDGuhZtJDQhQh38Mh2C+YepAtw@mail.gmail.com>
Am 26.02.2013 22:31, schrieb Thomas Pedersen:
> Hi Marco,
>
> On Mon, Feb 25, 2013 at 8:00 AM, Marco Porsch<marco@cozybit.com> wrote:
>> Move the beacon handler into mesh_neighbour_update where the STA
>> pointer is already available. This avoids additional overhead
>> and simplifies the handler.
>> The repositioning will also benefit mesh PS which uses T_r and
>> the updated T_offset value.
>>
>> Check frame type before calling the handler. Rename it to better
>> reflect its purpose.
>>
>> Signed-off-by: Marco Porsch<marco@cozybit.com>
>> ---
>>
>> v3:
>> check frame type before rx_bcn handler (Johannes)
>>
>> net/mac80211/ieee80211_i.h | 9 ++++-----
>> net/mac80211/mesh.c | 7 +------
>> net/mac80211/mesh.h | 4 +++-
>> net/mac80211/mesh_plink.c | 38 ++++++++++++++++++++++++++++-------
>> net/mac80211/mesh_sync.c | 47 +++++++++-----------------------------------
>> 5 files changed, 48 insertions(+), 57 deletions(-)
>>
>> diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
>> index 388580a..631760f 100644
>> --- a/net/mac80211/ieee80211_i.h
>> +++ b/net/mac80211/ieee80211_i.h
>> @@ -529,11 +529,10 @@ struct ieee80211_if_ibss {
>> */
>> struct ieee802_11_elems;
>> struct ieee80211_mesh_sync_ops {
>> - void (*rx_bcn_presp)(struct ieee80211_sub_if_data *sdata,
>> - u16 stype,
>> - struct ieee80211_mgmt *mgmt,
>> - struct ieee802_11_elems *elems,
>> - struct ieee80211_rx_status *rx_status);
>> + void (*rx_bcn)(struct sta_info *sta,
>> + struct ieee80211_mgmt *mgmt,
>> + struct ieee802_11_elems *elems,
>> + u64 t_r);
>
> Why not continue to sync against probe responses?
> mesh_neighbour_update() gets these as well.
Because there was a comment about the standard mentioning only beacon
frames. Fooled me here =/
Now I see that the standard explicitly mentions probe responses as well.
Is the sync code currently ready to handle probe responses? I am not
perfectly sure about the sta->t_offset_setpoint stuff.
--Marco
next prev parent reply other threads:[~2013-02-27 8:06 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-25 16:00 [ath9k-devel] [PATCHv3 1/3] mac80211: move mesh sync beacon handler into neighbour_update Marco Porsch
2013-02-25 16:00 ` Marco Porsch
2013-02-25 16:00 ` [ath9k-devel] [PATCHv3 2/3] mac80211: mesh power save doze scheduling Marco Porsch
2013-02-25 16:00 ` Marco Porsch
2013-02-25 16:00 ` [ath9k-devel] [PATCHv3 3/3] ath9k: mesh powersave support Marco Porsch
2013-02-25 16:00 ` Marco Porsch
2013-02-26 21:31 ` [ath9k-devel] [PATCHv3 1/3] mac80211: move mesh sync beacon handler into neighbour_update Thomas Pedersen
2013-02-26 21:31 ` Thomas Pedersen
2013-02-27 8:06 ` Marco Porsch [this message]
2013-02-27 8:06 ` Marco Porsch
2013-03-04 15:49 ` [ath9k-devel] " Johannes Berg
2013-03-04 15:49 ` 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=512DBE77.9040902@cozybit.com \
--to=marco@cozybit.com \
--cc=ath9k-devel@lists.ath9k.org \
/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.