From b4cf0900d05c5fbd369f7f0c301c3917ca5b20a8 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 28 Jul 2023 14:48:43 -0700 Subject: [PATCH] monitor/analyze: Fix not dequeing TX packet properly num_completed_packets_evt contain a count for how many packets have been completed per handle. --- monitor/analyze.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/monitor/analyze.c b/monitor/analyze.c index ddaaf6942..c8192ffa7 100644 --- a/monitor/analyze.c +++ b/monitor/analyze.c @@ -532,6 +532,7 @@ static void evt_num_completed_packets(struct hci_dev *dev, struct timeval *tv, struct hci_conn *conn; struct timeval res; struct timeval *last_tx; + int j; data += 4; size -= 4; @@ -542,15 +543,17 @@ static void evt_num_completed_packets(struct hci_dev *dev, struct timeval *tv, conn->tx_num_comp += count; - last_tx = queue_pop_head(conn->tx_queue); - if (last_tx) { - timersub(tv, last_tx, &res); + for (j = 0; j < count; j++) { + last_tx = queue_pop_head(conn->tx_queue); + if (last_tx) { + timersub(tv, last_tx, &res); - packet_latency_add(&conn->tx_l, &res); + packet_latency_add(&conn->tx_l, &res); - plot_add(conn->plot, &res, count); + plot_add(conn->plot, &res, count); - free(last_tx); + free(last_tx); + } } } } -- 2.47.3