rc80211_minstrel.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. /*
  2. * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * Based on minstrel.c:
  9. * Copyright (C) 2005-2007 Derek Smithies <derek@indranet.co.nz>
  10. * Sponsored by Indranet Technologies Ltd
  11. *
  12. * Based on sample.c:
  13. * Copyright (c) 2005 John Bicket
  14. * All rights reserved.
  15. *
  16. * Redistribution and use in source and binary forms, with or without
  17. * modification, are permitted provided that the following conditions
  18. * are met:
  19. * 1. Redistributions of source code must retain the above copyright
  20. * notice, this list of conditions and the following disclaimer,
  21. * without modification.
  22. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  23. * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
  24. * redistribution must be conditioned upon including a substantially
  25. * similar Disclaimer requirement for further binary redistribution.
  26. * 3. Neither the names of the above-listed copyright holders nor the names
  27. * of any contributors may be used to endorse or promote products derived
  28. * from this software without specific prior written permission.
  29. *
  30. * Alternatively, this software may be distributed under the terms of the
  31. * GNU General Public License ("GPL") version 2 as published by the Free
  32. * Software Foundation.
  33. *
  34. * NO WARRANTY
  35. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  36. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  37. * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
  38. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  39. * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
  40. * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  41. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  42. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  43. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  44. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  45. * THE POSSIBILITY OF SUCH DAMAGES.
  46. */
  47. #include <linux/netdevice.h>
  48. #include <linux/types.h>
  49. #include <linux/skbuff.h>
  50. #include <linux/debugfs.h>
  51. #include <linux/random.h>
  52. #include <linux/ieee80211.h>
  53. #include <linux/slab.h>
  54. #include <net/mac80211.h>
  55. #include "rate.h"
  56. #include "rc80211_minstrel.h"
  57. #define SAMPLE_COLUMNS 10
  58. #define SAMPLE_TBL(_mi, _idx, _col) \
  59. _mi->sample_table[(_idx * SAMPLE_COLUMNS) + _col]
  60. /* convert mac80211 rate index to local array index */
  61. static inline int
  62. rix_to_ndx(struct minstrel_sta_info *mi, int rix)
  63. {
  64. int i = rix;
  65. for (i = rix; i >= 0; i--)
  66. if (mi->r[i].rix == rix)
  67. break;
  68. return i;
  69. }
  70. static void
  71. minstrel_update_stats(struct minstrel_priv *mp, struct minstrel_sta_info *mi)
  72. {
  73. u32 max_tp = 0, index_max_tp = 0, index_max_tp2 = 0;
  74. u32 max_prob = 0, index_max_prob = 0;
  75. u32 usecs;
  76. int i;
  77. for (i = 0; i < mi->n_rates; i++) {
  78. struct minstrel_rate *mr = &mi->r[i];
  79. usecs = mr->perfect_tx_time;
  80. if (!usecs)
  81. usecs = 1000000;
  82. if (mr->attempts) {
  83. mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
  84. mr->succ_hist += mr->success;
  85. mr->att_hist += mr->attempts;
  86. mr->probability = minstrel_ewma(mr->probability,
  87. mr->cur_prob,
  88. EWMA_LEVEL);
  89. mr->cur_tp = mr->probability * (1000000 / usecs);
  90. }
  91. mr->last_success = mr->success;
  92. mr->last_attempts = mr->attempts;
  93. mr->success = 0;
  94. mr->attempts = 0;
  95. /* Sample less often below the 10% chance of success.
  96. * Sample less often above the 95% chance of success. */
  97. if (mr->probability > MINSTREL_FRAC(95, 100) ||
  98. mr->probability < MINSTREL_FRAC(10, 100)) {
  99. mr->adjusted_retry_count = mr->retry_count >> 1;
  100. if (mr->adjusted_retry_count > 2)
  101. mr->adjusted_retry_count = 2;
  102. mr->sample_limit = 4;
  103. } else {
  104. mr->sample_limit = -1;
  105. mr->adjusted_retry_count = mr->retry_count;
  106. }
  107. if (!mr->adjusted_retry_count)
  108. mr->adjusted_retry_count = 2;
  109. }
  110. for (i = 0; i < mi->n_rates; i++) {
  111. struct minstrel_rate *mr = &mi->r[i];
  112. if (max_tp < mr->cur_tp) {
  113. index_max_tp = i;
  114. max_tp = mr->cur_tp;
  115. }
  116. if (max_prob < mr->probability) {
  117. index_max_prob = i;
  118. max_prob = mr->probability;
  119. }
  120. }
  121. max_tp = 0;
  122. for (i = 0; i < mi->n_rates; i++) {
  123. struct minstrel_rate *mr = &mi->r[i];
  124. if (i == index_max_tp)
  125. continue;
  126. if (max_tp < mr->cur_tp) {
  127. index_max_tp2 = i;
  128. max_tp = mr->cur_tp;
  129. }
  130. }
  131. mi->max_tp_rate = index_max_tp;
  132. mi->max_tp_rate2 = index_max_tp2;
  133. mi->max_prob_rate = index_max_prob;
  134. /* Reset update timer */
  135. mi->stats_update = jiffies;
  136. }
  137. static void
  138. minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband,
  139. struct ieee80211_sta *sta, void *priv_sta,
  140. struct sk_buff *skb)
  141. {
  142. struct minstrel_priv *mp = priv;
  143. struct minstrel_sta_info *mi = priv_sta;
  144. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  145. struct ieee80211_tx_rate *ar = info->status.rates;
  146. int i, ndx;
  147. int success;
  148. success = !!(info->flags & IEEE80211_TX_STAT_ACK);
  149. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
  150. if (ar[i].idx < 0)
  151. break;
  152. ndx = rix_to_ndx(mi, ar[i].idx);
  153. if (ndx < 0)
  154. continue;
  155. mi->r[ndx].attempts += ar[i].count;
  156. if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
  157. mi->r[ndx].success += success;
  158. }
  159. if ((info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) && (i >= 0))
  160. mi->sample_count++;
  161. if (mi->sample_deferred > 0)
  162. mi->sample_deferred--;
  163. if (time_after(jiffies, mi->stats_update +
  164. (mp->update_interval * HZ) / 1000))
  165. minstrel_update_stats(mp, mi);
  166. }
  167. static inline unsigned int
  168. minstrel_get_retry_count(struct minstrel_rate *mr,
  169. struct ieee80211_tx_info *info)
  170. {
  171. unsigned int retry = mr->adjusted_retry_count;
  172. if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  173. retry = max(2U, min(mr->retry_count_rtscts, retry));
  174. else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
  175. retry = max(2U, min(mr->retry_count_cts, retry));
  176. return retry;
  177. }
  178. static int
  179. minstrel_get_next_sample(struct minstrel_sta_info *mi)
  180. {
  181. unsigned int sample_ndx;
  182. sample_ndx = SAMPLE_TBL(mi, mi->sample_row, mi->sample_column);
  183. mi->sample_row++;
  184. if ((int) mi->sample_row > (mi->n_rates - 2)) {
  185. mi->sample_row = 0;
  186. mi->sample_column++;
  187. if (mi->sample_column >= SAMPLE_COLUMNS)
  188. mi->sample_column = 0;
  189. }
  190. return sample_ndx;
  191. }
  192. static void
  193. minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
  194. void *priv_sta, struct ieee80211_tx_rate_control *txrc)
  195. {
  196. struct sk_buff *skb = txrc->skb;
  197. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  198. struct minstrel_sta_info *mi = priv_sta;
  199. struct minstrel_priv *mp = priv;
  200. struct ieee80211_tx_rate *ar = info->control.rates;
  201. unsigned int ndx, sample_ndx = 0;
  202. bool mrr_capable;
  203. bool indirect_rate_sampling = false;
  204. bool rate_sampling = false;
  205. int i, delta;
  206. int mrr_ndx[3];
  207. int sampling_ratio;
  208. /* management/no-ack frames do not use rate control */
  209. if (rate_control_send_low(sta, priv_sta, txrc))
  210. return;
  211. /* check multi-rate-retry capabilities & adjust lookaround_rate */
  212. mrr_capable = mp->has_mrr &&
  213. !txrc->rts &&
  214. !txrc->bss_conf->use_cts_prot;
  215. if (mrr_capable)
  216. sampling_ratio = mp->lookaround_rate_mrr;
  217. else
  218. sampling_ratio = mp->lookaround_rate;
  219. /* init rateindex [ndx] with max throughput rate */
  220. ndx = mi->max_tp_rate;
  221. /* increase sum packet counter */
  222. mi->packet_count++;
  223. delta = (mi->packet_count * sampling_ratio / 100) -
  224. (mi->sample_count + mi->sample_deferred / 2);
  225. /* delta > 0: sampling required */
  226. if ((delta > 0) && (mrr_capable || !mi->prev_sample)) {
  227. struct minstrel_rate *msr;
  228. if (mi->packet_count >= 10000) {
  229. mi->sample_deferred = 0;
  230. mi->sample_count = 0;
  231. mi->packet_count = 0;
  232. } else if (delta > mi->n_rates * 2) {
  233. /* With multi-rate retry, not every planned sample
  234. * attempt actually gets used, due to the way the retry
  235. * chain is set up - [max_tp,sample,prob,lowest] for
  236. * sample_rate < max_tp.
  237. *
  238. * If there's too much sampling backlog and the link
  239. * starts getting worse, minstrel would start bursting
  240. * out lots of sampling frames, which would result
  241. * in a large throughput loss. */
  242. mi->sample_count += (delta - mi->n_rates * 2);
  243. }
  244. /* get next random rate sample */
  245. sample_ndx = minstrel_get_next_sample(mi);
  246. msr = &mi->r[sample_ndx];
  247. rate_sampling = true;
  248. /* Decide if direct ( 1st mrr stage) or indirect (2nd mrr stage)
  249. * rate sampling method should be used */
  250. if (mrr_capable &&
  251. msr->perfect_tx_time > mi->r[ndx].perfect_tx_time)
  252. indirect_rate_sampling = true;
  253. if (!indirect_rate_sampling) {
  254. if (msr->sample_limit != 0) {
  255. ndx = sample_ndx;
  256. mi->sample_count++;
  257. if (msr->sample_limit > 0)
  258. msr->sample_limit--;
  259. } else
  260. rate_sampling = false;
  261. } else {
  262. /* Only use IEEE80211_TX_CTL_RATE_CTRL_PROBE to mark
  263. * packets that have the sampling rate deferred to the
  264. * second MRR stage. Increase the sample counter only
  265. * if the deferred sample rate was actually used.
  266. * Use the sample_deferred counter to make sure that
  267. * the sampling is not done in large bursts */
  268. info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
  269. mi->sample_deferred++;
  270. }
  271. }
  272. mi->prev_sample = rate_sampling;
  273. /* If we're not using MRR and the sampling rate already
  274. * has a probability of >95%, we shouldn't be attempting
  275. * to use it, as this only wastes precious airtime */
  276. if (!mrr_capable && rate_sampling &&
  277. (mi->r[ndx].probability > MINSTREL_FRAC(95, 100)))
  278. ndx = mi->max_tp_rate;
  279. /* mrr setup for 1st stage */
  280. ar[0].idx = mi->r[ndx].rix;
  281. ar[0].count = minstrel_get_retry_count(&mi->r[ndx], info);
  282. /* non mrr setup for 2nd stage */
  283. if (!mrr_capable) {
  284. if (!rate_sampling)
  285. ar[0].count = mp->max_retry;
  286. ar[1].idx = mi->lowest_rix;
  287. ar[1].count = mp->max_retry;
  288. return;
  289. }
  290. /* mrr setup for 2nd stage */
  291. if (rate_sampling) {
  292. if (indirect_rate_sampling)
  293. mrr_ndx[0] = sample_ndx;
  294. else
  295. mrr_ndx[0] = mi->max_tp_rate;
  296. } else {
  297. mrr_ndx[0] = mi->max_tp_rate2;
  298. }
  299. /* mrr setup for 3rd & 4th stage */
  300. mrr_ndx[1] = mi->max_prob_rate;
  301. mrr_ndx[2] = 0;
  302. for (i = 1; i < 4; i++) {
  303. ar[i].idx = mi->r[mrr_ndx[i - 1]].rix;
  304. ar[i].count = mi->r[mrr_ndx[i - 1]].adjusted_retry_count;
  305. }
  306. }
  307. static void
  308. calc_rate_durations(enum ieee80211_band band,
  309. struct minstrel_rate *d,
  310. struct ieee80211_rate *rate)
  311. {
  312. int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
  313. d->perfect_tx_time = ieee80211_frame_duration(band, 1200,
  314. rate->bitrate, erp, 1);
  315. d->ack_time = ieee80211_frame_duration(band, 10,
  316. rate->bitrate, erp, 1);
  317. }
  318. static void
  319. init_sample_table(struct minstrel_sta_info *mi)
  320. {
  321. unsigned int i, col, new_idx;
  322. unsigned int n_srates = mi->n_rates - 1;
  323. u8 rnd[8];
  324. mi->sample_column = 0;
  325. mi->sample_row = 0;
  326. memset(mi->sample_table, 0, SAMPLE_COLUMNS * mi->n_rates);
  327. for (col = 0; col < SAMPLE_COLUMNS; col++) {
  328. for (i = 0; i < n_srates; i++) {
  329. get_random_bytes(rnd, sizeof(rnd));
  330. new_idx = (i + rnd[i & 7]) % n_srates;
  331. while (SAMPLE_TBL(mi, new_idx, col) != 0)
  332. new_idx = (new_idx + 1) % n_srates;
  333. /* Don't sample the slowest rate (i.e. slowest base
  334. * rate). We must presume that the slowest rate works
  335. * fine, or else other management frames will also be
  336. * failing and the link will break */
  337. SAMPLE_TBL(mi, new_idx, col) = i + 1;
  338. }
  339. }
  340. }
  341. static void
  342. minstrel_rate_init(void *priv, struct ieee80211_supported_band *sband,
  343. struct ieee80211_sta *sta, void *priv_sta)
  344. {
  345. struct minstrel_sta_info *mi = priv_sta;
  346. struct minstrel_priv *mp = priv;
  347. struct ieee80211_rate *ctl_rate;
  348. unsigned int i, n = 0;
  349. unsigned int t_slot = 9; /* FIXME: get real slot time */
  350. mi->lowest_rix = rate_lowest_index(sband, sta);
  351. ctl_rate = &sband->bitrates[mi->lowest_rix];
  352. mi->sp_ack_dur = ieee80211_frame_duration(sband->band, 10,
  353. ctl_rate->bitrate,
  354. !!(ctl_rate->flags & IEEE80211_RATE_ERP_G), 1);
  355. for (i = 0; i < sband->n_bitrates; i++) {
  356. struct minstrel_rate *mr = &mi->r[n];
  357. unsigned int tx_time = 0, tx_time_cts = 0, tx_time_rtscts = 0;
  358. unsigned int tx_time_single;
  359. unsigned int cw = mp->cw_min;
  360. if (!rate_supported(sta, sband->band, i))
  361. continue;
  362. n++;
  363. memset(mr, 0, sizeof(*mr));
  364. mr->rix = i;
  365. mr->bitrate = sband->bitrates[i].bitrate / 5;
  366. calc_rate_durations(sband->band, mr, &sband->bitrates[i]);
  367. /* calculate maximum number of retransmissions before
  368. * fallback (based on maximum segment size) */
  369. mr->sample_limit = -1;
  370. mr->retry_count = 1;
  371. mr->retry_count_cts = 1;
  372. mr->retry_count_rtscts = 1;
  373. tx_time = mr->perfect_tx_time + mi->sp_ack_dur;
  374. do {
  375. /* add one retransmission */
  376. tx_time_single = mr->ack_time + mr->perfect_tx_time;
  377. /* contention window */
  378. tx_time_single += (t_slot * cw) >> 1;
  379. cw = min((cw << 1) | 1, mp->cw_max);
  380. tx_time += tx_time_single;
  381. tx_time_cts += tx_time_single + mi->sp_ack_dur;
  382. tx_time_rtscts += tx_time_single + 2 * mi->sp_ack_dur;
  383. if ((tx_time_cts < mp->segment_size) &&
  384. (mr->retry_count_cts < mp->max_retry))
  385. mr->retry_count_cts++;
  386. if ((tx_time_rtscts < mp->segment_size) &&
  387. (mr->retry_count_rtscts < mp->max_retry))
  388. mr->retry_count_rtscts++;
  389. } while ((tx_time < mp->segment_size) &&
  390. (++mr->retry_count < mp->max_retry));
  391. mr->adjusted_retry_count = mr->retry_count;
  392. }
  393. for (i = n; i < sband->n_bitrates; i++) {
  394. struct minstrel_rate *mr = &mi->r[i];
  395. mr->rix = -1;
  396. }
  397. mi->n_rates = n;
  398. mi->stats_update = jiffies;
  399. init_sample_table(mi);
  400. }
  401. static void *
  402. minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
  403. {
  404. struct ieee80211_supported_band *sband;
  405. struct minstrel_sta_info *mi;
  406. struct minstrel_priv *mp = priv;
  407. struct ieee80211_hw *hw = mp->hw;
  408. int max_rates = 0;
  409. int i;
  410. mi = kzalloc(sizeof(struct minstrel_sta_info), gfp);
  411. if (!mi)
  412. return NULL;
  413. for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
  414. sband = hw->wiphy->bands[i];
  415. if (sband && sband->n_bitrates > max_rates)
  416. max_rates = sband->n_bitrates;
  417. }
  418. mi->r = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
  419. if (!mi->r)
  420. goto error;
  421. mi->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
  422. if (!mi->sample_table)
  423. goto error1;
  424. mi->stats_update = jiffies;
  425. return mi;
  426. error1:
  427. kfree(mi->r);
  428. error:
  429. kfree(mi);
  430. return NULL;
  431. }
  432. static void
  433. minstrel_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
  434. {
  435. struct minstrel_sta_info *mi = priv_sta;
  436. kfree(mi->sample_table);
  437. kfree(mi->r);
  438. kfree(mi);
  439. }
  440. static void
  441. minstrel_init_cck_rates(struct minstrel_priv *mp)
  442. {
  443. static const int bitrates[4] = { 10, 20, 55, 110 };
  444. struct ieee80211_supported_band *sband;
  445. int i, j;
  446. sband = mp->hw->wiphy->bands[IEEE80211_BAND_2GHZ];
  447. if (!sband)
  448. return;
  449. for (i = 0, j = 0; i < sband->n_bitrates; i++) {
  450. struct ieee80211_rate *rate = &sband->bitrates[i];
  451. if (rate->flags & IEEE80211_RATE_ERP_G)
  452. continue;
  453. for (j = 0; j < ARRAY_SIZE(bitrates); j++) {
  454. if (rate->bitrate != bitrates[j])
  455. continue;
  456. mp->cck_rates[j] = i;
  457. break;
  458. }
  459. }
  460. }
  461. static void *
  462. minstrel_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
  463. {
  464. struct minstrel_priv *mp;
  465. mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
  466. if (!mp)
  467. return NULL;
  468. /* contention window settings
  469. * Just an approximation. Using the per-queue values would complicate
  470. * the calculations and is probably unnecessary */
  471. mp->cw_min = 15;
  472. mp->cw_max = 1023;
  473. /* number of packets (in %) to use for sampling other rates
  474. * sample less often for non-mrr packets, because the overhead
  475. * is much higher than with mrr */
  476. mp->lookaround_rate = 5;
  477. mp->lookaround_rate_mrr = 10;
  478. /* maximum time that the hw is allowed to stay in one MRR segment */
  479. mp->segment_size = 6000;
  480. if (hw->max_rate_tries > 0)
  481. mp->max_retry = hw->max_rate_tries;
  482. else
  483. /* safe default, does not necessarily have to match hw properties */
  484. mp->max_retry = 7;
  485. if (hw->max_rates >= 4)
  486. mp->has_mrr = true;
  487. mp->hw = hw;
  488. mp->update_interval = 100;
  489. #ifdef CONFIG_MAC80211_DEBUGFS
  490. mp->fixed_rate_idx = (u32) -1;
  491. mp->dbg_fixed_rate = debugfs_create_u32("fixed_rate_idx",
  492. S_IRUGO | S_IWUGO, debugfsdir, &mp->fixed_rate_idx);
  493. #endif
  494. minstrel_init_cck_rates(mp);
  495. return mp;
  496. }
  497. static void
  498. minstrel_free(void *priv)
  499. {
  500. #ifdef CONFIG_MAC80211_DEBUGFS
  501. debugfs_remove(((struct minstrel_priv *)priv)->dbg_fixed_rate);
  502. #endif
  503. kfree(priv);
  504. }
  505. struct rate_control_ops mac80211_minstrel = {
  506. .name = "minstrel",
  507. .tx_status = minstrel_tx_status,
  508. .get_rate = minstrel_get_rate,
  509. .rate_init = minstrel_rate_init,
  510. .alloc = minstrel_alloc,
  511. .free = minstrel_free,
  512. .alloc_sta = minstrel_alloc_sta,
  513. .free_sta = minstrel_free_sta,
  514. #ifdef CONFIG_MAC80211_DEBUGFS
  515. .add_sta_debugfs = minstrel_add_sta_debugfs,
  516. .remove_sta_debugfs = minstrel_remove_sta_debugfs,
  517. #endif
  518. };
  519. int __init
  520. rc80211_minstrel_init(void)
  521. {
  522. return ieee80211_rate_control_register(&mac80211_minstrel);
  523. }
  524. void
  525. rc80211_minstrel_exit(void)
  526. {
  527. ieee80211_rate_control_unregister(&mac80211_minstrel);
  528. }