diff options
| author | Padma, Santhosh Kumar <skpadma@qti.qualcomm.com> | 2014-01-24 13:54:50 -0800 |
|---|---|---|
| committer | Prakash Dhavali <pdhavali@qca.qualcomm.com> | 2014-01-25 21:02:04 -0800 |
| commit | fccd2403a2917a2cee78bc498cc1079d04923af2 (patch) | |
| tree | 22e4e1a3357e7dee131b9ce2312e5b5a66af22f1 | |
| parent | 2bc8a3195005076b6db3a0e27f76986e68a4e70a (diff) | |
wlan: Improper TID to Firmware.
Host sends TID as invalid. So FW computes TID itself based on the
IP header's DSCP value. This causes issue of sending data at high
priority eventhough priority is downgraded at Host side.This fix
helps to return proper TID.
CRs-Fixed: 599938
| -rw-r--r-- | CORE/SERVICES/COMMON/adf/adf_nbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/adf/adf_nbuf.c b/CORE/SERVICES/COMMON/adf/adf_nbuf.c index 7a72cb10aa10..7b2e98521dfe 100644 --- a/CORE/SERVICES/COMMON/adf/adf_nbuf.c +++ b/CORE/SERVICES/COMMON/adf/adf_nbuf.c @@ -357,7 +357,7 @@ __adf_nbuf_get_vlan_info(adf_net_handle_t hdl, struct sk_buff *skb, a_uint8_t __adf_nbuf_get_tid(struct sk_buff *skb) { - return ADF_NBUF_TX_EXT_TID_INVALID; + return skb->priority; } a_uint8_t |
