mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 22:27:47 -04:00
uses ZYD_NOTIF_RETRYSTATUS info to count the number of retries.
This commit is contained in:
parent
791d9a6e5d
commit
7f97ca0347
1 changed files with 2 additions and 1 deletions
|
|
@ -667,7 +667,8 @@ zyd_intr_read_callback(struct usb_xfer *xfer, usb_error_t error)
|
|||
ni = ieee80211_find_txnode(vap, retry->macaddr);
|
||||
if (ni != NULL) {
|
||||
ieee80211_amrr_tx_complete(&ZYD_NODE(ni)->amn,
|
||||
IEEE80211_AMRR_FAILURE, 1);
|
||||
IEEE80211_AMRR_FAILURE,
|
||||
(int)(le16toh(retry->count) & 0xff));
|
||||
ieee80211_free_node(ni);
|
||||
}
|
||||
if (le16toh(retry->count) & 0x100)
|
||||
|
|
|
|||
Loading…
Reference in a new issue