aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-11-22 14:58:24 -0500
committerJohn W. Linville <linville@tuxdriver.com>2010-11-24 16:19:35 -0500
commitdd5b4cc71cd09c33e1579cc6d5720656e94e52de (patch)
tree86a27c86480109d9b6bbedddc083095035fbef2d /include/net/cfg80211.h
parent46090979a55a0dc2cdb3d939f94fa47742108194 (diff)
cfg80211/mac80211: improve ad-hoc multicast rate handling
- store the multicast rate as an index instead of the rate value (reduces cpu overhead in a hotpath) - validate the rate values (must match a bitrate in at least one sband) Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 91f099556ac1..dd4c43f512e2 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -923,7 +923,7 @@ struct cfg80211_disassoc_request {
923 * @privacy: this is a protected network, keys will be configured 923 * @privacy: this is a protected network, keys will be configured
924 * after joining 924 * after joining
925 * @basic_rates: bitmap of basic rates to use when creating the IBSS 925 * @basic_rates: bitmap of basic rates to use when creating the IBSS
926 * @mcast_rate: multicast tx rate (in 100 kbps) 926 * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
927 */ 927 */
928struct cfg80211_ibss_params { 928struct cfg80211_ibss_params {
929 u8 *ssid; 929 u8 *ssid;
@@ -935,7 +935,7 @@ struct cfg80211_ibss_params {
935 u32 basic_rates; 935 u32 basic_rates;
936 bool channel_fixed; 936 bool channel_fixed;
937 bool privacy; 937 bool privacy;
938 int mcast_rate; 938 int mcast_rate[IEEE80211_NUM_BANDS];
939}; 939};
940 940
941/** 941/**