qcacmn: Use same reo hash key for all SOCs in MLO

In case Multi chip MLO configure same hash key for
all SOCs in MLO. This change is needed to avoid
same flow traffic distributed to multiple REOs.

Change-Id: Ib6cde4ae32e58ef2d45c02d640c133458f5bfac5
CRs-Fixed: 3201978
Este commit está contenido en:
Chaithanya Garrepalli
2022-05-20 16:02:08 +05:30
cometido por Madan Koyyalamudi
padre 304559ad0c
commit 8889b96325
Se han modificado 7 ficheros con 68 adiciones y 6 borrados

Ver fichero

@@ -3560,4 +3560,15 @@ static inline void dp_pdev_clear_tx_delay_stats(struct dp_soc *soc)
{
}
#endif
static inline void
dp_get_rx_hash_key_bytes(struct cdp_lro_hash_config *lro_hash)
{
qdf_get_random_bytes(lro_hash->toeplitz_hash_ipv4,
(sizeof(lro_hash->toeplitz_hash_ipv4[0]) *
LRO_IPV4_SEED_ARR_SZ));
qdf_get_random_bytes(lro_hash->toeplitz_hash_ipv6,
(sizeof(lro_hash->toeplitz_hash_ipv6[0]) *
LRO_IPV6_SEED_ARR_SZ));
}
#endif /* #ifndef _DP_INTERNAL_H_ */