From 8cf9734d2b4af050e1f6161fae9d13f52b492e58 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 13 Feb 2025 12:18:12 -0800 Subject: [PATCH] netdev: don't set CQM thresholds for fullmac cards Since roaming is handled by the firmware setting CQM thresholds for roaming is pointless. --- src/netdev.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/netdev.c b/src/netdev.c index b81a475f..4e4822b7 100644 --- a/src/netdev.c +++ b/src/netdev.c @@ -3825,6 +3825,15 @@ static void netdev_cmd_set_cqm_cb(struct l_genl_msg *msg, void *user_data) static int netdev_cqm_rssi_update(struct netdev *netdev) { struct l_genl_msg *msg; + struct netdev_handshake_state *nhs = l_container_of(netdev->handshake, + struct netdev_handshake_state, super); + + /* + * Fullmac cards handle roaming in firmware, there is no need to set + * CQM thresholds + */ + if (nhs->type == CONNECTION_TYPE_FULLMAC) + return 0; l_debug("");