Commit 7a7d8a17 authored by Cedric Roux's avatar Cedric Roux

nr pdcp: stats: count delivered sdus

parent 470af5f4
...@@ -335,6 +335,8 @@ static void check_t_reordering(nr_pdcp_entity_t *entity) ...@@ -335,6 +335,8 @@ static void check_t_reordering(nr_pdcp_entity_t *entity)
cur->buffer, cur->size); cur->buffer, cur->size);
entity->rx_list = cur->next; entity->rx_list = cur->next;
entity->rx_size -= cur->size; entity->rx_size -= cur->size;
entity->stats.txsdu_pkts++;
entity->stats.txsdu_bytes += cur->size;
nr_pdcp_free_sdu(cur); nr_pdcp_free_sdu(cur);
} }
...@@ -346,6 +348,8 @@ static void check_t_reordering(nr_pdcp_entity_t *entity) ...@@ -346,6 +348,8 @@ static void check_t_reordering(nr_pdcp_entity_t *entity)
cur->buffer, cur->size); cur->buffer, cur->size);
entity->rx_list = cur->next; entity->rx_list = cur->next;
entity->rx_size -= cur->size; entity->rx_size -= cur->size;
entity->stats.txsdu_pkts++;
entity->stats.txsdu_bytes += cur->size;
nr_pdcp_free_sdu(cur); nr_pdcp_free_sdu(cur);
count++; count++;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment