Message ID | 1441335485-5314-1-git-send-email-yeohchunyeow@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Johannes Berg |
Headers | show |
On Fri, 2015-09-04 at 10:58 +0800, Chun-Yeow Yeoh wrote: > This is to avoid the Channel Center Frequency Segment 2 > in broadcasted VHT operation element contains the non-zero > value for non 80+80 MHz that may failed the comparison of > cfg80211_chandef_identical. > > This is tested with Bob's patches related to VHT mesh support. > I suppose I'll squash this into the appropriate of Bob's patches :) johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 1104421..f167056 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -2324,6 +2324,8 @@ u8 *ieee80211_ie_build_vht_oper(u8 *pos, struct ieee80211_sta_vht_cap *vht_cap, if (chandef->center_freq2) vht_oper->center_freq_seg2_idx = ieee80211_frequency_to_channel(chandef->center_freq2); + else + vht_oper->center_freq_seg2_idx = 0x00; switch (chandef->width) { case NL80211_CHAN_WIDTH_160:
This is to avoid the Channel Center Frequency Segment 2 in broadcasted VHT operation element contains the non-zero value for non 80+80 MHz that may failed the comparison of cfg80211_chandef_identical. This is tested with Bob's patches related to VHT mesh support. Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com> --- net/mac80211/util.c | 2 ++ 1 file changed, 2 insertions(+)