Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 1a595394b241504ff370a8d12ebfcea7 > files > 372

kernel-doc-3.11.10-100.fc18.noarch.rpm

<?xml version="1.0" encoding="ANSI_X3.4-1968" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968" /><title>struct sta_ampdu_mlme</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1" /><link rel="home" href="index.html" title="The 802.11 subsystems &#8211; for kernel developers" /><link rel="up" href="aggregation-internals.html" title="Chapter&#160;23.&#160;Aggregation" /><link rel="prev" href="aggregation-internals.html" title="Chapter&#160;23.&#160;Aggregation" /><link rel="next" href="API-struct-tid-ampdu-tx.html" title="struct tid_ampdu_tx" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><span class="phrase">struct sta_ampdu_mlme</span></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="aggregation-internals.html">Prev</a>&#160;</td><th width="60%" align="center">Chapter&#160;23.&#160;Aggregation</th><td width="20%" align="right">&#160;<a accesskey="n" href="API-struct-tid-ampdu-tx.html">Next</a></td></tr></table><hr /></div><div class="refentry"><a id="API-struct-sta-ampdu-mlme"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>struct sta_ampdu_mlme &#8212; 
  STA aggregation information.
 </p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="programlisting">
struct sta_ampdu_mlme {
  struct mutex mtx;
  struct tid_ampdu_rx __rcu * tid_rx[IEEE80211_NUM_TIDS];
  unsigned long tid_rx_timer_expired[BITS_TO_LONGS(IEEE80211_NUM_TIDS)];
  unsigned long tid_rx_stop_requested[BITS_TO_LONGS(IEEE80211_NUM_TIDS)];
  struct work_struct work;
  struct tid_ampdu_tx __rcu * tid_tx[IEEE80211_NUM_TIDS];
  struct tid_ampdu_tx * tid_start_tx[IEEE80211_NUM_TIDS];
  unsigned long last_addba_req_time[IEEE80211_NUM_TIDS];
  u8 addba_req_num[IEEE80211_NUM_TIDS];
  u8 dialog_token_allocator;
};  </pre></div><div class="refsect1"><a id="idm139754516203040"></a><h2>Members</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term">mtx</span></dt><dd><p>
mutex to protect all TX data (except non-NULL assignments
to tid_tx[idx], which are protected by the sta spinlock)
tid_start_tx is also protected by sta-&gt;lock.
      </p></dd><dt><span class="term">tid_rx[IEEE80211_NUM_TIDS]</span></dt><dd><p>
aggregation info for Rx per TID -- RCU protected
      </p></dd><dt><span class="term">tid_rx_timer_expired[BITS_TO_LONGS(IEEE80211_NUM_TIDS)]</span></dt><dd><p>
bitmap indicating on which TIDs the
RX timer expired until the work for it runs
      </p></dd><dt><span class="term">tid_rx_stop_requested[BITS_TO_LONGS(IEEE80211_NUM_TIDS)]</span></dt><dd><p>
bitmap indicating which BA sessions per TID the
driver requested to close until the work for it runs
      </p></dd><dt><span class="term">work</span></dt><dd><p>
work struct for starting/stopping aggregation
      </p></dd><dt><span class="term">tid_tx[IEEE80211_NUM_TIDS]</span></dt><dd><p>
aggregation info for Tx per TID
      </p></dd><dt><span class="term">tid_start_tx[IEEE80211_NUM_TIDS]</span></dt><dd><p>
sessions where start was requested
      </p></dd><dt><span class="term">last_addba_req_time[IEEE80211_NUM_TIDS]</span></dt><dd><p>
timestamp of the last addBA request.
      </p></dd><dt><span class="term">addba_req_num[IEEE80211_NUM_TIDS]</span></dt><dd><p>
number of times addBA request has been sent.
      </p></dd><dt><span class="term">dialog_token_allocator</span></dt><dd><p>
dialog token enumerator for each new session;
      </p></dd></dl></div></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="aggregation-internals.html">Prev</a>&#160;</td><td width="20%" align="center"><a accesskey="u" href="aggregation-internals.html">Up</a></td><td width="40%" align="right">&#160;<a accesskey="n" href="API-struct-tid-ampdu-tx.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&#160;23.&#160;Aggregation&#160;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&#160;<span class="phrase">struct tid_ampdu_tx</span></td></tr></table></div></body></html>