Set rate_ctr_group name for each line

"Counters for each line in e1d 256" is not very useful unless you
know that it's "(intf_nr << 8) | line_nr" and 256 == I1/L0.

Let's set the name string explicitly.

Change-Id: I200e068f1bbc495fb806402877551924beea214e
This commit is contained in:
Harald Welte 2022-04-17 12:56:08 +02:00
parent 973ce5c507
commit 6d51f79931
1 changed files with 3 additions and 0 deletions

View File

@ -217,6 +217,7 @@ struct e1_line *
e1_line_new(struct e1_intf *intf, int line_id, void *drv_data)
{
struct e1_line *line;
char name[32];
if (line_id != -1) {
line = e1_intf_find_line(intf, line_id);
@ -250,6 +251,8 @@ e1_line_new(struct e1_intf *intf, int line_id, void *drv_data)
line->ctrs = rate_ctr_group_alloc(line, &line_ctrg_desc, intf->id << 8 | line->id);
OSMO_ASSERT(line->ctrs);
snprintf(name, sizeof(name), "I%u:L%u", intf->id, line->id);
rate_ctr_group_set_name(line->ctrs, name);
llist_add_tail(&line->list, &intf->lines);