瀏覽代碼

qcacld-3.0: Toggle MSB to avoid MAC address collision

Toggle the MSB of last byte while deriving the link MAC address to
increase the MAC address range and avoid deriving duplicate MAC
addresses.

Change-Id: I2ba1d8bcfaa95fd5291202316106d9b0dd74766b
CRs-Fixed: 3499105
Vinod Kumar Pirla 1 年之前
父節點
當前提交
487b917705
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      core/hdd/src/wlan_hdd_mlo.c

+ 1 - 0
core/hdd/src/wlan_hdd_mlo.c

@@ -292,6 +292,7 @@ QDF_STATUS hdd_derive_link_address_from_mld(struct qdf_mac_addr *mld_addr,
 		temp_byte = ((last_byte >> 4 & INTF_MACADDR_MASK) + idx) &
 			     INTF_MACADDR_MASK;
 		new_addr.bytes[5] = last_byte + temp_byte;
+		new_addr.bytes[5] ^= (1 << 7);
 
 		qdf_copy_macaddr(link_addr, &new_addr);
 		link_addr++;