When the QoS ack policy was set to non explicit / psmp ack, frames are treated
as not being part of a BA session, which causes extra latency on reordering.
Fix this by only bypassing reordering for packets with no-ack policy
Signed-off-by: Felix Fietkau <nbd@nbd.name>
 
        /* not part of a BA session */
        ackp = status->qos_ctl & IEEE80211_QOS_CTL_ACK_POLICY_MASK;
-       if (ackp != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
-           ackp != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL)
+       if (ackp == IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
                return;
 
        tid = rcu_dereference(wcid->aggr[tidno]);