2007-05-06 02:45:53 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2005, Instant802 Networks, Inc.
|
|
|
|
* Copyright 2005, Devicescape Software, Inc.
|
|
|
|
* Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IEEE80211_RATE_H
|
|
|
|
#define IEEE80211_RATE_H
|
|
|
|
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <net/mac80211.h>
|
|
|
|
#include "ieee80211_i.h"
|
|
|
|
#include "sta_info.h"
|
2012-03-30 14:43:32 +08:00
|
|
|
#include "driver-ops.h"
|
2007-05-06 02:45:53 +08:00
|
|
|
|
|
|
|
struct rate_control_ref {
|
2014-01-21 06:29:34 +08:00
|
|
|
const struct rate_control_ops *ops;
|
2007-05-06 02:45:53 +08:00
|
|
|
void *priv;
|
|
|
|
};
|
|
|
|
|
2008-09-19 00:14:18 +08:00
|
|
|
void rate_control_get_rate(struct ieee80211_sub_if_data *sdata,
|
2008-10-21 18:40:02 +08:00
|
|
|
struct sta_info *sta,
|
|
|
|
struct ieee80211_tx_rate_control *txrc);
|
2007-05-06 02:45:53 +08:00
|
|
|
|
2017-04-26 23:11:35 +08:00
|
|
|
void rate_control_tx_status(struct ieee80211_local *local,
|
|
|
|
struct ieee80211_supported_band *sband,
|
|
|
|
struct ieee80211_tx_status *st);
|
2007-05-06 02:45:53 +08:00
|
|
|
|
2015-07-15 20:56:06 +08:00
|
|
|
void rate_control_rate_init(struct sta_info *sta);
|
|
|
|
void rate_control_rate_update(struct ieee80211_local *local,
|
2009-02-12 14:08:37 +08:00
|
|
|
struct ieee80211_supported_band *sband,
|
2015-07-15 20:56:06 +08:00
|
|
|
struct sta_info *sta, u32 changed);
|
2007-05-06 02:45:53 +08:00
|
|
|
|
|
|
|
static inline void *rate_control_alloc_sta(struct rate_control_ref *ref,
|
2015-03-05 23:10:08 +08:00
|
|
|
struct sta_info *sta, gfp_t gfp)
|
2007-05-06 02:45:53 +08:00
|
|
|
{
|
2015-03-05 23:10:08 +08:00
|
|
|
spin_lock_init(&sta->rate_ctrl_lock);
|
|
|
|
return ref->ops->alloc_sta(ref->priv, &sta->sta, gfp);
|
2007-05-06 02:45:53 +08:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:14:18 +08:00
|
|
|
static inline void rate_control_free_sta(struct sta_info *sta)
|
2007-05-06 02:45:53 +08:00
|
|
|
{
|
2008-09-19 00:14:18 +08:00
|
|
|
struct rate_control_ref *ref = sta->rate_ctrl;
|
|
|
|
struct ieee80211_sta *ista = &sta->sta;
|
|
|
|
void *priv_sta = sta->rate_ctrl_priv;
|
|
|
|
|
|
|
|
ref->ops->free_sta(ref->priv, ista, priv_sta);
|
2007-05-06 02:45:53 +08:00
|
|
|
}
|
|
|
|
|
2007-05-06 02:46:38 +08:00
|
|
|
static inline void rate_control_add_sta_debugfs(struct sta_info *sta)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_MAC80211_DEBUGFS
|
|
|
|
struct rate_control_ref *ref = sta->rate_ctrl;
|
2016-04-05 17:59:05 +08:00
|
|
|
if (ref && sta->debugfs_dir && ref->ops->add_sta_debugfs)
|
2007-05-06 02:46:38 +08:00
|
|
|
ref->ops->add_sta_debugfs(ref->priv, sta->rate_ctrl_priv,
|
2016-04-05 17:59:05 +08:00
|
|
|
sta->debugfs_dir);
|
2007-05-06 02:46:38 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rate_control_remove_sta_debugfs(struct sta_info *sta)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_MAC80211_DEBUGFS
|
|
|
|
struct rate_control_ref *ref = sta->rate_ctrl;
|
2009-11-18 01:18:36 +08:00
|
|
|
if (ref && ref->ops->remove_sta_debugfs)
|
2007-05-06 02:46:38 +08:00
|
|
|
ref->ops->remove_sta_debugfs(ref->priv, sta->rate_ctrl_priv);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
mac80211: reject/clear user rate mask if not usable
If the user rate mask results in no (basic) rates being usable,
clear it. Also, if we're already operating when it's set, reject
it instead.
Technically, selecting basic rates as the criterion is a bit too
restrictive, but calculating the usable rates over all stations
(e.g. in AP mode) is harder, and all stations must support the
basic rates. Similarly, in client mode, the basic rates will be
used anyway for control frames.
This fixes the "no supported rates (...) in rate_mask ..." warning
that occurs on TX when you've selected a rate mask that's not
compatible with the connection (e.g. an AP that enables only the
rates 36, 48, 54 and you've selected only 6, 9, 12.)
Reported-by: Kirtika Ruchandani <kirtika@google.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
2017-03-08 18:12:10 +08:00
|
|
|
void ieee80211_check_rate_mask(struct ieee80211_sub_if_data *sdata);
|
|
|
|
|
2010-02-08 10:47:50 +08:00
|
|
|
/* Get a reference to the rate control algorithm. If `name' is NULL, get the
|
|
|
|
* first available algorithm. */
|
2007-07-27 21:43:23 +08:00
|
|
|
int ieee80211_init_rate_ctrl_alg(struct ieee80211_local *local,
|
|
|
|
const char *name);
|
|
|
|
void rate_control_deinitialize(struct ieee80211_local *local);
|
|
|
|
|
2008-01-02 22:17:03 +08:00
|
|
|
|
|
|
|
/* Rate control algorithms */
|
2008-10-06 00:07:45 +08:00
|
|
|
#ifdef CONFIG_MAC80211_RC_MINSTREL
|
2013-10-19 04:48:25 +08:00
|
|
|
int rc80211_minstrel_init(void);
|
|
|
|
void rc80211_minstrel_exit(void);
|
2008-10-06 00:07:45 +08:00
|
|
|
#else
|
|
|
|
static inline int rc80211_minstrel_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline void rc80211_minstrel_exit(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-13 22:48:03 +08:00
|
|
|
#ifdef CONFIG_MAC80211_RC_MINSTREL_HT
|
2013-10-19 04:48:25 +08:00
|
|
|
int rc80211_minstrel_ht_init(void);
|
|
|
|
void rc80211_minstrel_ht_exit(void);
|
2010-05-13 22:48:03 +08:00
|
|
|
#else
|
|
|
|
static inline int rc80211_minstrel_ht_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline void rc80211_minstrel_ht_exit(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-10-06 00:07:45 +08:00
|
|
|
|
2007-05-06 02:45:53 +08:00
|
|
|
#endif /* IEEE80211_RATE_H */
|