⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 amrr.c

📁 最新之atheros芯片driver source code, 基于linux操作系统,內含atheros芯片HAL全部代码
💻 C
📖 第 1 页 / 共 2 页
字号:
		srate = ni->ni_rates.rs_nrates - 1;		for (; srate >= 0 && RATE(srate) != vap->iv_fixed_rate; srate--);		KASSERT(srate >= 0,			("fixed rate %d not in rate set", vap->iv_fixed_rate));	}	ath_rate_update(sc, ni, srate);#undef RATE}static voidath_rate_cb(void *arg, struct ieee80211_node *ni){	ath_rate_update(netdev_priv(ni->ni_ic->ic_dev), ni, (long) arg);}/* * Reset the rate control state for each 802.11 state transition. */static voidath_rate_newstate(struct ieee80211vap *vap, enum ieee80211_state state){	struct ieee80211com *ic = vap->iv_ic;	struct ath_softc *sc = netdev_priv(ic->ic_dev);	struct amrr_softc *asc = (struct amrr_softc *)sc->sc_rc;	struct ieee80211_node *ni;	if (state == IEEE80211_S_INIT) {		del_timer(&asc->timer);		return;	}	if (ic->ic_opmode == IEEE80211_M_STA) {		/*		 * Reset local xmit state; this is really only		 * meaningful when operating in station mode.		 */		ni = vap->iv_bss;		if (state == IEEE80211_S_RUN)			ath_rate_ctl_start(sc, ni);		else			ath_rate_update(sc, ni, 0);	} else {		/*		 * When operating as a station the node table holds		 * the APs that were discovered during scanning.		 * For any other operating mode we want to reset the		 * tx rate state of each node.		 */		ieee80211_iterate_nodes(&ic->ic_sta, ath_rate_cb, NULL);		ath_rate_update(sc, vap->iv_bss, 0);	}	if ((vap->iv_fixed_rate == IEEE80211_FIXED_RATE_NONE) && (state == IEEE80211_S_RUN)) {		int interval;		/*		 * Start the background rate control thread if we		 * are not configured to use a fixed xmit rate.		 */		interval = ath_rateinterval;		if (ic->ic_opmode == IEEE80211_M_STA)			interval /= 2;		mod_timer(&asc->timer, jiffies + ((HZ * interval) / 1000));	}}/*  * Examine and potentially adjust the transmit rate. */static voidath_rate_ctl(void *arg, struct ieee80211_node *ni){	struct ath_softc *sc = arg;	struct amrr_node *amn = ATH_NODE_AMRR(ATH_NODE (ni));	int old_rate;#define is_success(amn) (amn->amn_tx_try1_cnt  < (amn->amn_tx_try0_cnt / 10))#define is_enough(amn)  (amn->amn_tx_try0_cnt > 10)#define is_failure(amn) (amn->amn_tx_try1_cnt > (amn->amn_tx_try0_cnt / 3))#define is_max_rate(ni) ((ni->ni_txrate + 1) >= ni->ni_rates.rs_nrates)#define is_min_rate(ni) (ni->ni_txrate == 0)	old_rate = ni->ni_txrate;  	DPRINTF (sc, "cnt0: %d cnt1: %d cnt2: %d cnt3: %d -- threshold: %d\n",		 amn->amn_tx_try0_cnt,		 amn->amn_tx_try1_cnt,		 amn->amn_tx_try2_cnt,		 amn->amn_tx_try3_cnt,		 amn->amn_success_threshold);  	if (is_success(amn) && is_enough(amn)) {		amn->amn_success++;		if (amn->amn_success == amn->amn_success_threshold &&  		    !is_max_rate(ni)) {  			amn->amn_recovery = 1;  			amn->amn_success = 0;  			ni->ni_txrate++;			DPRINTF(sc, "increase rate to %d\n", ni->ni_txrate);  		} else			amn->amn_recovery = 0;  	} else if (is_failure(amn)) {  		amn->amn_success = 0;  		if (!is_min_rate(ni)) {  			if (amn->amn_recovery) {  				/* recovery failure. */  				amn->amn_success_threshold *= 2;  				amn->amn_success_threshold = min(amn->amn_success_threshold,								  (u_int)ath_rate_max_success_threshold); 				DPRINTF(sc, "decrease rate recovery thr: %d\n",					amn->amn_success_threshold);  			} else {  				/* simple failure. */ 				amn->amn_success_threshold = ath_rate_min_success_threshold; 				DPRINTF(sc, "decrease rate normal thr: %d\n",					amn->amn_success_threshold);  			}			amn->amn_recovery = 0;  			ni->ni_txrate--;   		} else			amn->amn_recovery = 0;   	}	if (is_enough(amn) || old_rate != ni->ni_txrate) {		/* reset counters. */		amn->amn_tx_try0_cnt = 0;		amn->amn_tx_try1_cnt = 0;		amn->amn_tx_try2_cnt = 0;		amn->amn_tx_try3_cnt = 0;		amn->amn_tx_failure_cnt = 0;	}	if (old_rate != ni->ni_txrate)		ath_rate_update(sc, ni, ni->ni_txrate);}static voidath_ratectl(unsigned long data){	struct net_device *dev = (struct net_device *)data;	struct ath_softc *sc = netdev_priv(dev);	struct amrr_softc *asc = (struct amrr_softc *)sc->sc_rc;	struct ieee80211com *ic = &sc->sc_ic;	int interval;	if (dev->flags & IFF_RUNNING) {		sc->sc_stats.ast_rate_calls++;		if (ic->ic_opmode == IEEE80211_M_STA) {			struct ieee80211vap *tmpvap;			TAILQ_FOREACH(tmpvap, &ic->ic_vaps, iv_next) {				ath_rate_ctl(sc, tmpvap->iv_bss);	/* NB: no reference */			}		} else			ieee80211_iterate_nodes(&ic->ic_sta, ath_rate_ctl, sc);	}	interval = ath_rateinterval;	if (ic->ic_opmode == IEEE80211_M_STA)		interval /= 2;	mod_timer(&asc->timer, jiffies + ((HZ * interval) / 1000));}static struct ath_ratectrl *ath_rate_attach(struct ath_softc *sc){	struct amrr_softc *asc;	_MOD_INC_USE(THIS_MODULE, return NULL);	asc = kmalloc(sizeof(struct amrr_softc), GFP_ATOMIC);	if (asc == NULL) {		_MOD_DEC_USE(THIS_MODULE);		return NULL;	}	asc->arc.arc_space = sizeof(struct amrr_node);	asc->arc.arc_vap_space = 0;	init_timer(&asc->timer);	asc->timer.data = (unsigned long) sc->sc_dev;	asc->timer.function = ath_ratectl;	return &asc->arc;}static voidath_rate_detach(struct ath_ratectrl *arc){	struct amrr_softc *asc = (struct amrr_softc *)arc;	del_timer(&asc->timer);	kfree(asc);	_MOD_DEC_USE(THIS_MODULE);}static int minrateinterval = 500;	/* 500ms */static int maxint = 0x7fffffff;		/* 32-bit big */static int min_threshold = 1;/* * Static (i.e. global) sysctls. */static ctl_table ath_rate_static_sysctls[] = {	{ .ctl_name	= CTL_AUTO,	  .procname	= "interval",	  .mode		= 0644,	  .data		= &ath_rateinterval,	  .maxlen	= sizeof(ath_rateinterval),	  .extra1	= &minrateinterval,	  .extra2	= &maxint,	  .proc_handler	= proc_dointvec_minmax	},	{ .ctl_name	= CTL_AUTO,	  .procname	= "max_success_threshold",	  .mode		= 0644,	  .data		= &ath_rate_max_success_threshold,	  .maxlen	= sizeof(ath_rate_max_success_threshold),	  .extra1	= &min_threshold,	  .extra2	= &maxint,	  .proc_handler	= proc_dointvec_minmax	},	{ .ctl_name	= CTL_AUTO,	  .procname	= "min_success_threshold",	  .mode		= 0644,	  .data		= &ath_rate_min_success_threshold,	  .maxlen	= sizeof(ath_rate_min_success_threshold),	  .extra1	= &min_threshold,	  .extra2	= &maxint,	  .proc_handler	= proc_dointvec_minmax	},	{ 0 }};static ctl_table ath_rate_table[] = {	{ .ctl_name	= CTL_AUTO,	  .procname	= "rate_amrr",	  .mode		= 0555,	  .child	= ath_rate_static_sysctls	}, { 0 }};static ctl_table ath_ath_table[] = {	{ .ctl_name	= DEV_ATH,	  .procname	= "ath",	  .mode		= 0555,	  .child	= ath_rate_table	}, { 0 }};static ctl_table ath_root_table[] = {	{ .ctl_name	= CTL_DEV,	  .procname	= "dev",	  .mode		= 0555,	  .child	= ath_ath_table	}, { 0 }};static struct ctl_table_header *ath_sysctl_header;static struct ieee80211_rate_ops ath_rate_ops = {	.ratectl_id = IEEE80211_RATE_AMRR,	.node_init = ath_rate_node_init,	.node_cleanup = ath_rate_node_cleanup,	.findrate = ath_rate_findrate,	.get_mrr = ath_rate_get_mrr,	.tx_complete = ath_rate_tx_complete,	.newassoc = ath_rate_newassoc,	.newstate = ath_rate_newstate,	.attach = ath_rate_attach,	.detach = ath_rate_detach,};#include "release.h"#if 0static char *version = "0.1 (" RELEASE_VERSION ")";static char *dev_info = "ath_rate_amrr";#endifMODULE_AUTHOR("INRIA, Mathieu Lacage");MODULE_DESCRIPTION("AMRR Rate control algorithm");#ifdef MODULE_VERSIONMODULE_VERSION(RELEASE_VERSION);#endif#ifdef MODULE_LICENSEMODULE_LICENSE("Dual BSD/GPL");#endifstatic int __initinit_ath_rate_amrr(void){	int ret = ieee80211_rate_register(&ath_rate_ops);	if (ret)		return ret;	ath_sysctl_header = ATH_REGISTER_SYSCTL_TABLE(ath_root_table);	return (0);}module_init(init_ath_rate_amrr);static void __exitexit_ath_rate_amrr(void){	if (ath_sysctl_header != NULL)		unregister_sysctl_table(ath_sysctl_header);	ieee80211_rate_unregister(&ath_rate_ops);}module_exit(exit_ath_rate_amrr);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -