mac80211: add the minstrel_ht rate control algorithm
Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
b4df47081b
commit
ec8aa669b8
7 changed files with 1103 additions and 0 deletions
|
@ -704,6 +704,10 @@ static int __init ieee80211_init(void)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = rc80211_minstrel_ht_init();
|
||||
if (ret)
|
||||
goto err_minstrel;
|
||||
|
||||
ret = rc80211_pid_init();
|
||||
if (ret)
|
||||
goto err_pid;
|
||||
|
@ -716,6 +720,8 @@ static int __init ieee80211_init(void)
|
|||
err_netdev:
|
||||
rc80211_pid_exit();
|
||||
err_pid:
|
||||
rc80211_minstrel_ht_exit();
|
||||
err_minstrel:
|
||||
rc80211_minstrel_exit();
|
||||
|
||||
return ret;
|
||||
|
@ -724,6 +730,7 @@ static int __init ieee80211_init(void)
|
|||
static void __exit ieee80211_exit(void)
|
||||
{
|
||||
rc80211_pid_exit();
|
||||
rc80211_minstrel_ht_exit();
|
||||
rc80211_minstrel_exit();
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue