Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nrf_wifi: Fix issue SHEL-2551 #1240

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions nrf_wifi/fw_if/umac_if/src/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1455,8 +1455,11 @@ enum nrf_wifi_status nrf_wifi_fmac_rawtx_done_event_process(
nrf_wifi_osal_spinlock_take(fmac_dev_ctx->fpriv->opriv,
def_dev_ctx->tx_config.tx_lock);

if (!config->status) {
/* Increment raw TX failure count */
if (config->status == NRF_WIFI_STATUS_FAIL) {
/**
* If the status indicates failure,
* increment raw TX failure count. The TX buffers
* still need to be freed. */
def_dev_ctx->raw_pkt_stats.raw_pkt_send_failure += 1;
}

Expand Down
Loading