summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: adbba9f)
raw | patch | inline | side by side (parent: adbba9f)
author | Andreas Henriksson <andreas@fatal.se> | |
Mon, 10 Jun 2013 21:26:19 +0000 (23:26 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Thu, 18 Jul 2013 10:04:23 +0000 (12:04 +0200) |
src/netlink.c | patch | blob | history |
diff --git a/src/netlink.c b/src/netlink.c
index 65fc0d99e3c5de72ca1f7618f859c339a66581aa..59c21cce6aa454d6e1f1fe42b49493200b17ce04 100644 (file)
--- a/src/netlink.c
+++ b/src/netlink.c
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];