char *tc_type;
char tc_inst[DATA_MAX_NAME_LEN];
- int __attribute__((unused)) stats_found = 0;
+ int __attribute__((unused)) stats_submitted = 0;
if (tm->tcm_ifindex != wanted_ifindex)
{
mnl_attr_parse_nested(attr, qos_attr_cb, &bs);
if (bs != NULL)
- stats_found = 1;
+ {
+ char type_instance[DATA_MAX_NAME_LEN];
- break;
- }
+ stats_submitted = 1;
- if (stats_found)
- {
- char type_instance[DATA_MAX_NAME_LEN];
+ ssnprintf (type_instance, sizeof (type_instance), "%s-%s",
+ tc_type, tc_inst);
- ssnprintf (type_instance, sizeof (type_instance), "%s-%s",
- tc_type, tc_inst);
+ submit_one (dev, "ipt_bytes", type_instance, bs->bytes);
+ submit_one (dev, "ipt_packets", type_instance, bs->packets);
+ }
- submit_one (dev, "ipt_bytes", type_instance, bs->bytes);
- submit_one (dev, "ipt_packets", type_instance, bs->packets);
+ break;
}
#endif /* TCA_STATS2 */
}
ts = mnl_attr_get_payload(attr);
- if (!stats_found && ts != NULL)
+ if (!stats_submitted && ts != NULL)
{
char type_instance[DATA_MAX_NAME_LEN];