From: Ben Greear <greearb@candelatech.com>
To: Bob Copeland <me@bobcopeland.com>
Cc: linux-wireless@vger.kernel.org
Subject: Re: [PATCH 2/2] ath5k: Adjust opmode when interfaces are removed.
Date: Fri, 08 Oct 2010 11:06:43 -0700 [thread overview]
Message-ID: <4CAF5DB3.7070603@candelatech.com> (raw)
In-Reply-To: <AANLkTinXFLL25-r-LUb5vqjNkwoa68xWhN_CaD0KVE=p@mail.gmail.com>
On 10/08/2010 11:03 AM, Bob Copeland wrote:
> On Fri, Oct 8, 2010 at 12:43 PM,<greearb@candelatech.com> wrote:
>> @@ -558,6 +577,7 @@ void ath5k_update_bssid_mask(struct ath5k_softc *sc, struct ieee80211_vif *vif)
>> memset(&iter_data.mask, 0xff, ETH_ALEN);
>> iter_data.found_active = false;
>> iter_data.need_set_hw_addr = true;
>> + iter_data.opmode = NL80211_IFTYPE_UNSPECIFIED;
>>
>> if (vif)
>> ath_vif_iter(&iter_data, vif->addr, vif);
>> @@ -567,6 +587,11 @@ void ath5k_update_bssid_mask(struct ath5k_softc *sc, struct ieee80211_vif *vif)
>> &iter_data);
>> memcpy(sc->bssidmask, iter_data.mask, ETH_ALEN);
>>
>> + if (update_opmode&& sc->opmode != iter_data.opmode) {
>> + sc->opmode = iter_data.opmode;
>> + ath_do_set_opmode(sc);
>> + }
>> +
>
> Should we really couple updating bssid mask and configuring
> the opmode? Generally, I dislike adding boolean flags to
> functions because it's hard to figure out from the callsite
> what is happening (you have to go back to the prototype), and
> it usually indicates that the abstraction is a little broken.
Well, we need to do the iteration over all VIFS to figure out what to set this
too. Seems doing one iteration v/s doing two is worth the
extra flag?
Thanks,
Ben
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
next prev parent reply other threads:[~2010-10-08 18:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-08 16:43 [PATCH 1/2] ath5k: Print out opmode in debugfs greearb
2010-10-08 16:43 ` [PATCH 2/2] ath5k: Adjust opmode when interfaces are removed greearb
2010-10-08 18:03 ` Bob Copeland
2010-10-08 18:06 ` Ben Greear [this message]
2010-10-08 18:13 ` Bob Copeland
2010-10-08 18:18 ` Ben Greear
2010-10-08 18:25 ` Bob Copeland
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=4CAF5DB3.7070603@candelatech.com \
--to=greearb@candelatech.com \
--cc=linux-wireless@vger.kernel.org \
--cc=me@bobcopeland.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).