]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mwifiex: p2p client using same data path as station
authorXinming Hu <huxm@marvell.com>
Wed, 26 Apr 2017 10:34:48 +0000 (10:34 +0000)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 18 May 2017 13:37:59 +0000 (16:37 +0300)
P2p client act as a station, data will be queued by DA instead
of RA. This patch pass the sanity check, so that p2p client share
the same data path with infrastruction station mode.

Signed-off-by: Xinming Hu <huxm@marvell.com>
Signed-off-by: Cathy Luo <cluo@marvell.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/marvell/mwifiex/main.h

index bb2a467d8b133dd21dbe7fd918a77e82bac46992..6e76b302739b3eeea13eed325640edbdaa8d1d83 100644 (file)
@@ -1235,7 +1235,8 @@ mwifiex_queuing_ra_based(struct mwifiex_private *priv)
         * Currently we assume if we are in Infra, then DA=RA. This might not be
         * true in the future
         */
-       if ((priv->bss_mode == NL80211_IFTYPE_STATION) &&
+       if ((priv->bss_mode == NL80211_IFTYPE_STATION ||
+            priv->bss_mode == NL80211_IFTYPE_P2P_CLIENT) &&
            (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA))
                return false;