Linux wireless drivers development
 help / color / mirror / Atom feed
* mwifiex: update set_mac_address logic
@ 2019-03-27  7:29 Ganapathi Bhat
  2019-03-28 13:15 ` Kalle Valo
  0 siblings, 1 reply; 4+ messages in thread
From: Ganapathi Bhat @ 2019-03-27  7:29 UTC (permalink / raw)
  To: linux-wireless@vger.kernel.org
  Cc: Cathy Luo, Zhiyuan Yang, James Cao, Rakesh Parmar, Brian Norris

From: Sharvari Harisangam <sharvari@marvell.com>
Date: Wed, 27 Mar 2019 11:47:03 +0530
Subject: mwifiex: update set_mac_address logic

In set_mac_address, driver check for interfaces with same bss_type
For first STA entry, this would return 3 interfaces since all priv's have
bss_type as 0 due to kzalloc. Thus mac address gets changed for STA
unexpected. This patch adds check for first STA and avoids mac address
change. This patch also adds mac_address change for p2p based on bss_num
type.

Signed-off-by: Sharvari Harisangam <sharvari@marvell.com>
Signed-off-by: Ganapathi Bhat <gbhat@marvell.com>
---
 drivers/net/wireless/marvell/mwifiex/main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/wireless/marvell/mwifiex/main.c b/drivers/net/wireless/marvell/mwifiex/main.c
index 5ed2d9b..4eabd94 100644
--- a/drivers/net/wireless/marvell/mwifiex/main.c
+++ b/drivers/net/wireless/marvell/mwifiex/main.c
@@ -965,10 +965,10 @@ int mwifiex_set_mac_address(struct mwifiex_private *priv,

        mac_addr = old_mac_addr;

-       if (priv->bss_type == MWIFIEX_BSS_TYPE_P2P)
+       if (priv->bss_type == MWIFIEX_BSS_TYPE_P2P) {
            mac_addr |= BIT_ULL(MWIFIEX_MAC_LOCAL_ADMIN_BIT);
-
-       if (mwifiex_get_intf_num(priv->adapter, priv->bss_type) > 1) {
+           mac_addr += priv->bss_num;
+       } else if (priv->adapter->priv[0] != priv) {
            /* Set mac address based on bss_type/bss_num */
            mac_addr ^= BIT_ULL(priv->bss_type + 8);
            mac_addr += priv->bss_num;
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-06-13 16:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-27  7:29 mwifiex: update set_mac_address logic Ganapathi Bhat
2019-03-28 13:15 ` Kalle Valo
2019-06-13  6:55   ` [EXT] " Ganapathi Bhat
2019-06-13  7:52     ` Kalle Valo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox