From: Johannes Berg <johannes@sipsolutions.net>
To: Thomas Pedersen <thomas@cozybit.com>
Cc: linux-wireless@vger.kernel.org, devel@lists.open80211s.org
Subject: Re: [PATCH 1/3] mac80211: cache mesh beacon
Date: Mon, 04 Feb 2013 19:13:18 +0100 [thread overview]
Message-ID: <1360001598.17993.32.camel@jlt4.sipsolutions.net> (raw)
In-Reply-To: <CAG6hwVMzisNe_x_5mpJWxC0X6uehafNqhdRSZohCe1qwmAfmBw@mail.gmail.com> (sfid-20130204_191020_701539_F2DCFF8C)
On Mon, 2013-02-04 at 10:09 -0800, Thomas Pedersen wrote:
> On Mon, Feb 4, 2013 at 9:37 AM, Johannes Berg <johannes@sipsolutions.net> wrote:
> >
> >> +static int
> >> +ieee80211_mesh_build_beacon(struct ieee80211_if_mesh *ifmsh)
> >> +{
> >> + struct beacon_data *bcn;
> >> + int head_len, tail_len;
> >> + struct sk_buff *skb;
> >> + struct ieee80211_mgmt *mgmt;
> >> + struct ieee80211_chanctx_conf *chanctx_conf;
> >> + enum ieee80211_band band;
> >> + u8 *pos;
> >> + struct ieee80211_sub_if_data *sdata;
> >> + int hdr_len = offsetof(struct ieee80211_mgmt, u.beacon) +
> >> + sizeof(mgmt->u.beacon);
> >> +
> >> + sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh);
> >> + rcu_read_lock();
> >> + chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
> >> + band = chanctx_conf->def.chan->band;
> >> + rcu_read_unlock();
> >> +
> >> + RCU_INIT_POINTER(ifmsh->beacon, NULL);
> >> + synchronize_rcu();
> >
> > That doesn't seem right? Why force to NULL and synchronize, instead of
> > just building an update and overwriting the old beacon with the new,
> > using kfree_rcu() to get rid of the old afterwards? synchronize_rcu() is
> > quite expensive (might take hundreds of milliseconds.)
>
> OK, I just copied this from the IBSS code. Overwriting the old one
> makes sense though.
What? I should check that out. OTOH, IBSS code never really changes its
beacon during operation, I think, so it might not matter much there?
> >> + /* need an skb for IE builders to operate on */
> >> + skb = dev_alloc_skb(max(head_len, tail_len));
> >
> > Heh. Might consider changing the IE builder functions?
>
> Some IEs are variable length though, so I like how they append (and
> can check for space) the right length to skb->len.
Fair enough. It seemed a bit odd but I'm not worried about it.
> >> + mpl_dbg(sdata, "couldn't rebuild mesh beacon, stopping!\n");
> >> + ieee80211_stop_mesh(sdata);
> >
> > I'm not sure that's such a good idea? Nothing in userspace would expect
> > to randomly stop the mesh.
>
> So if rebuilding failed, just continue with the old beacon?
That seems acceptable to me. You're probably running into bigger issues
if allocating a little bit of memory here already fails.
johannes
next prev parent reply other threads:[~2013-02-04 18:12 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-03 1:02 [PATCH 0/3] implement active mesh scanning Thomas Pedersen
2013-02-03 1:02 ` [PATCH 1/3] mac80211: cache mesh beacon Thomas Pedersen
2013-02-04 17:37 ` Johannes Berg
2013-02-04 18:09 ` Thomas Pedersen
2013-02-04 18:13 ` Johannes Berg [this message]
2013-02-03 1:02 ` [PATCH 2/3] mac80211: generate mesh probe requests Thomas Pedersen
2013-02-04 17:38 ` Johannes Berg
2013-02-04 17:57 ` Thomas Pedersen
2013-02-04 17:58 ` Thomas Pedersen
2013-02-04 18:03 ` Johannes Berg
2013-02-04 18:16 ` Thomas Pedersen
2013-02-03 1:02 ` [PATCH 3/3] mac80211: generate mesh probe responses Thomas Pedersen
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=1360001598.17993.32.camel@jlt4.sipsolutions.net \
--to=johannes@sipsolutions.net \
--cc=devel@lists.open80211s.org \
--cc=linux-wireless@vger.kernel.org \
--cc=thomas@cozybit.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.