Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c7e6bc9 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville
Browse files

mac80211: disallow fixing bitrates with hw rate control



When hw rate control is used, these parameters have
no meaning because the hardware cannot get at them
right now, so disallow setting them. Also clean up
the function a bit.

Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent d80050c4
Loading
Loading
Loading
Loading
+22 −14
Original line number Diff line number Diff line
@@ -1399,15 +1399,25 @@ static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
{
	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
	struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
	int i, err = -EINVAL;
	int i;
	u32 target_rate;
	struct ieee80211_supported_band *sband;

	/*
	 * This _could_ be supported by providing a hook for
	 * drivers for this function, but at this point it
	 * doesn't seem worth bothering.
	 */
	if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
		return -EOPNOTSUPP;

	sband = local->hw.wiphy->bands[local->hw.conf.channel->band];

	/* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
	/*
	 * target_rate = -1, rate->fixed = 0 means auto only, so use all rates
	 * target_rate = X, rate->fixed = 1 means only rate X
	 * target_rate = X, rate->fixed = 0 means all rates <= X */
	 * target_rate = X, rate->fixed = 0 means all rates <= X
	 */
	sdata->max_ratectrl_rateidx = -1;
	sdata->force_unicast_rateidx = -1;

@@ -1419,19 +1429,17 @@ static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
		return 0;

	for (i = 0; i< sband->n_bitrates; i++) {
		struct ieee80211_rate *brate = &sband->bitrates[i];
		int this_rate = brate->bitrate;
		if (target_rate != sband->bitrates[i].bitrate)
			continue;

		if (target_rate == this_rate) {
		/* requested bitrate found */
		sdata->max_ratectrl_rateidx = i;
		if (mask->fixed)
			sdata->force_unicast_rateidx = i;
			err = 0;
			break;
		}
		return 0;
	}

	return err;
	return -EINVAL;
}

struct cfg80211_ops mac80211_config_ops = {