qcacmn: Move scoring logic to connection manager

Move bss scoring logic to connection manager.

Change-Id: If8484ec2fa8b3e2d153ae4a6caed76f3354b8965
CRs-Fixed: 2707106
Этот коммит содержится в:
gaurank kathpalia
2020-05-29 03:28:42 +05:30
коммит произвёл nshrivas
родитель e85e67ce9b
Коммит 506f49a0ff
18 изменённых файлов: 2612 добавлений и 1262 удалений

Просмотреть файл

@@ -118,6 +118,16 @@ typedef __qdf_wait_queue_head_t qdf_wait_queue_head_t;
(_a)[4] == 0xff && \
(_a)[5] == 0xff)
/* Get number of bits from the index bit */
#define QDF_GET_BITS(_val, _index, _num_bits) \
(((_val) >> (_index)) & ((1 << (_num_bits)) - 1))
/* Set val to number of bits from the index bit */
#define QDF_SET_BITS(_var, _index, _num_bits, _val) do { \
(_var) &= ~(((1 << (_num_bits)) - 1) << (_index)); \
(_var) |= (((_val) & ((1 << (_num_bits)) - 1)) << (_index)); \
} while (0)
#define QDF_DECLARE_EWMA(name, factor, weight) \
__QDF_DECLARE_EWMA(name, factor, weight)