diff options
author | Ashok Nagarajan <ashok@cozybit.com> | 2013-06-03 13:33:36 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-06-11 08:24:36 -0400 |
commit | ffb3cf3000aa12facdccbdfcb10bfebda7199209 (patch) | |
tree | c53a2391c5750b5e9547e9122cabb412c5d43ea6 /net/mac80211/cfg.c | |
parent | 66de671374f003467b5ef7c65ecbe1930480c8c9 (diff) |
{nl,mac,cfg}80211: Allow user to configure basic rates for mesh
Currently mesh uses mandatory rates as the default basic rates. Allow basic
rates to be configured during mesh join. Basic rates are applied only if
channel is also provided with mesh join command.
Signed-off-by: Ashok Nagarajan <ashok@cozybit.com>
[some whitespace fixes, refuse basic rates w/o channel]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 344a57968079..cd6f35f6e714 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -1759,6 +1759,7 @@ static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh, | |||
1759 | /* mcast rate setting in Mesh Node */ | 1759 | /* mcast rate setting in Mesh Node */ |
1760 | memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate, | 1760 | memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate, |
1761 | sizeof(setup->mcast_rate)); | 1761 | sizeof(setup->mcast_rate)); |
1762 | sdata->vif.bss_conf.basic_rates = setup->basic_rates; | ||
1762 | 1763 | ||
1763 | sdata->vif.bss_conf.beacon_int = setup->beacon_interval; | 1764 | sdata->vif.bss_conf.beacon_int = setup->beacon_interval; |
1764 | sdata->vif.bss_conf.dtim_period = setup->dtim_period; | 1765 | sdata->vif.bss_conf.dtim_period = setup->dtim_period; |