Ver código fonte

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 ano atrás
pai
commit
487b917705
1 arquivos alterados com 1 adições e 0 exclusões
  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++;