wifi: Do not unblock TX on EMLSR link used for TXOP (which is not blocked)

This commit is contained in:
Stefano Avallone
2023-11-14 18:21:57 +01:00
committed by Stefano Avallone
parent 65271d8eaf
commit 38085b4cfd

View File

@@ -463,7 +463,7 @@ EmlsrManager::NotifyTxopEnd(uint8_t linkId)
// unblock transmissions and resume medium access on other EMLSR links
for (auto id : m_staMac->GetLinkIds())
{
if (m_staMac->IsEmlsrLink(id))
if ((id != linkId) && m_staMac->IsEmlsrLink(id))
{
m_staMac->UnblockTxOnLink(id, WifiQueueBlockedReason::USING_OTHER_EMLSR_LINK);
m_staMac->GetChannelAccessManager(id)->NotifyStopUsingOtherEmlsrLink();