Skip to content

Commit

Permalink
wlcore: allow ACX_BA_SESSION_RX_SETUP to fail
Browse files Browse the repository at this point in the history
Under some circumstances, that fw might be asked to
remove a rx ba sessions it doesn't know about. In
this case, instead of triggering a recovery, accept
the error code (CMD_STATUS_NO_RX_BA_SESSION) and
ignore it.

Signed-off-by: Eliad Peller <eliad@wizery.com>
  • Loading branch information
elp committed Aug 30, 2012
1 parent d7eb5c8 commit d5275bd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions drivers/net/wireless/ti/wlcore/acx.c
Expand Up @@ -1433,13 +1433,17 @@ int wl12xx_acx_set_ba_receiver_session(struct wl1271 *wl, u8 tid_index,
acx->win_size = wl->conf.ht.rx_ba_win_size;
acx->ssn = ssn;

ret = wl1271_cmd_configure(wl, ACX_BA_SESSION_RX_SETUP, acx,
sizeof(*acx));
ret = wlcore_cmd_configure_failsafe(wl, ACX_BA_SESSION_RX_SETUP, acx,
sizeof(*acx),
BIT(CMD_STATUS_NO_RX_BA_SESSION));
if (ret < 0) {
wl1271_warning("acx ba receiver session failed: %d", ret);
goto out;
}

if (ret == CMD_STATUS_NO_RX_BA_SESSION)
wl1271_warning("no fw rx ba on tid %d", tid_index);
ret = 0;
out:
kfree(acx);
return ret;
Expand Down

0 comments on commit d5275bd

Please sign in to comment.