]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
tc: pass correct conversion specifier to print 'unsigned int' action index.
authorRoman Mashak <mrv@mojatatu.com>
Tue, 13 Dec 2016 20:31:16 +0000 (15:31 -0500)
committerStephen Hemminger <stephen@networkplumber.org>
Thu, 15 Dec 2016 03:00:36 +0000 (19:00 -0800)
Signed-off-by: Roman Mashak <mrv@mojatatu.com>
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
14 files changed:
tc/m_bpf.c
tc/m_connmark.c
tc/m_csum.c
tc/m_gact.c
tc/m_ife.c
tc/m_ipt.c
tc/m_mirred.c
tc/m_pedit.c
tc/m_simple.c
tc/m_skbedit.c
tc/m_skbmod.c
tc/m_vlan.c
tc/m_xt.c
tc/m_xt_old.c

index e26b85d007369eade137b4751db9c9859045345a..f043ae48df7a87827ca4b28f30a7faee80ec2ebb 100644 (file)
@@ -178,7 +178,7 @@ static int bpf_print_opt(struct action_util *au, FILE *f, struct rtattr *arg)
        }
 
        fprintf(f, "default-action %s\n", action_n2a(parm->action));
-       fprintf(f, "\tindex %d ref %d bind %d", parm->index, parm->refcnt,
+       fprintf(f, "\tindex %u ref %d bind %d", parm->index, parm->refcnt,
                parm->bindcnt);
 
        if (show_stats) {
index 20f98e4fd63a8a9b1d0c1b20db67a8893c834553..295f90d52eefd105f02a076a52c089bd3c9c9202 100644 (file)
@@ -123,7 +123,7 @@ static int print_connmark(struct action_util *au, FILE *f, struct rtattr *arg)
        ci = RTA_DATA(tb[TCA_CONNMARK_PARMS]);
 
        fprintf(f, " connmark zone %d\n", ci->zone);
-       fprintf(f, "\t index %d ref %d bind %d", ci->index,
+       fprintf(f, "\t index %u ref %d bind %d", ci->index,
                ci->refcnt, ci->bindcnt);
 
        if (show_stats) {
index a6e4c1eb44e5af296c0348e9fe7383b41feb6d11..d5b1af6fbb6cb0801c375972f754b0947e2eafa7 100644 (file)
@@ -199,7 +199,8 @@ print_csum(struct action_util *au, FILE *f, struct rtattr *arg)
                uflag_1, uflag_2, uflag_3,
                uflag_4, uflag_5, uflag_6,
                action_n2a(sel->action));
-       fprintf(f, "\tindex %d ref %d bind %d", sel->index, sel->refcnt, sel->bindcnt);
+       fprintf(f, "\tindex %u ref %d bind %d", sel->index, sel->refcnt,
+               sel->bindcnt);
 
        if (show_stats) {
                if (tb[TCA_CSUM_TM]) {
index dc04b9fda671c68dc0ccecc49e3d599d3449570c..755a3bee2c2f2aa5034f7d1567752b6689c7cadf 100644 (file)
@@ -224,7 +224,8 @@ print_gact(struct action_util *au, FILE * f, struct rtattr *arg)
        fprintf(f, "\n\t random type %s %s val %d",
                prob_n2a(pp->ptype), action_n2a(pp->paction), pp->pval);
 #endif
-       fprintf(f, "\n\t index %d ref %d bind %d", p->index, p->refcnt, p->bindcnt);
+       fprintf(f, "\n\t index %u ref %d bind %d", p->index, p->refcnt,
+               p->bindcnt);
        if (show_stats) {
                if (tb[TCA_GACT_TM]) {
                        struct tcf_t *tm = RTA_DATA(tb[TCA_GACT_TM]);
index e6f61535e88862f15a39844f51bfc6307ee4d861..f6131b1332324741fa705c401246657a568d3ba7 100644 (file)
@@ -312,7 +312,7 @@ static int print_ife(struct action_util *au, FILE *f, struct rtattr *arg)
                                    sizeof(b2)));
        }
 
-       fprintf(f, "\n\t index %d ref %d bind %d", p->index, p->refcnt,
+       fprintf(f, "\n\t index %u ref %d bind %d", p->index, p->refcnt,
                p->bindcnt);
        if (show_stats) {
                if (tb[TCA_IFE_TM]) {
index d6f62bd6b32c98aca862bf437c32205916a00f01..1b935ec0b2663bbfa93ef069559c705bef28075e 100644 (file)
@@ -489,7 +489,7 @@ print_ipt(struct action_util *au, FILE * f, struct rtattr *arg)
                        __u32 index;
 
                        index = rta_getattr_u32(tb[TCA_IPT_INDEX]);
-                       fprintf(f, "\n\tindex %d", index);
+                       fprintf(f, "\n\tindex %u", index);
                }
 
                if (tb[TCA_IPT_CNT]) {
index 01f916d55c4299349b9a6de24a325915f49cd64a..e9438904fdf50371073e187d73a1f8ec5c085374 100644 (file)
@@ -276,7 +276,8 @@ print_mirred(struct action_util *au, FILE * f, struct rtattr *arg)
                mirred_n2a(p->eaction), dev, action_n2a(p->action));
 
        fprintf(f, "\n ");
-       fprintf(f, "\tindex %d ref %d bind %d", p->index, p->refcnt, p->bindcnt);
+       fprintf(f, "\tindex %u ref %d bind %d", p->index, p->refcnt,
+               p->bindcnt);
 
        if (show_stats) {
                if (tb[TCA_MIRRED_TM]) {
index 891c2ec7b788eb6d25ce9070fed7c3d3ea47d5ea..8e9bf0720dfeac00f4522a4707a9cbe955384fe7 100644 (file)
@@ -527,7 +527,7 @@ int print_pedit(struct action_util *au, FILE *f, struct rtattr *arg)
 
        fprintf(f, " pedit action %s keys %d\n ",
                action_n2a(sel->action), sel->nkeys);
-       fprintf(f, "\t index %d ref %d bind %d", sel->index, sel->refcnt,
+       fprintf(f, "\t index %u ref %d bind %d", sel->index, sel->refcnt,
                sel->bindcnt);
 
        if (show_stats) {
index 732eaf1eb6d94315ed847e92a268f683cf74c29f..3a8bd916d3bfbae522000a437ef34fe6865a45f3 100644 (file)
@@ -187,7 +187,7 @@ static int print_simple(struct action_util *au, FILE *f, struct rtattr *arg)
        simpdata = RTA_DATA(tb[TCA_DEF_DATA]);
 
        fprintf(f, "Simple <%s>\n", simpdata);
-       fprintf(f, "\t index %d ref %d bind %d", sel->index,
+       fprintf(f, "\t index %u ref %d bind %d", sel->index,
                sel->refcnt, sel->bindcnt);
 
        if (show_stats) {
index 368debc2996963586293afb9b581e779279fca00..8660d6039ab546a904bd9b259724e8938935b5f4 100644 (file)
@@ -214,7 +214,7 @@ static int print_skbedit(struct action_util *au, FILE *f, struct rtattr *arg)
                        fprintf(f, " ptype %d", *ptype);
        }
 
-       fprintf(f, "\n\t index %d ref %d bind %d",
+       fprintf(f, "\n\t index %u ref %d bind %d",
                p->index, p->refcnt, p->bindcnt);
 
        if (show_stats) {
index 0c293fc0f0ac451b6086fad41f6fea546097253c..acb7771d2901ba5582e72647de89723fee812f5c 100644 (file)
@@ -237,7 +237,7 @@ static int print_skbmod(struct action_util *au, FILE *f, struct rtattr *arg)
        if (p->flags & SKBMOD_F_SWAPMAC)
                fprintf(f, "swap mac ");
 
-       fprintf(f, "\n\t index %d ref %d bind %d", p->index, p->refcnt,
+       fprintf(f, "\n\t index %u ref %d bind %d", p->index, p->refcnt,
                p->bindcnt);
        if (show_stats) {
                if (tb[TCA_SKBMOD_TM]) {
index b32f7460158eb34ae92f7fa7afe319559c18d51d..44b9375966da3df0475776823a688f270418d4ab 100644 (file)
@@ -226,7 +226,7 @@ static int print_vlan(struct action_util *au, FILE *f, struct rtattr *arg)
        }
        fprintf(f, " %s", action_n2a(parm->action));
 
-       fprintf(f, "\n\t index %d ref %d bind %d", parm->index, parm->refcnt,
+       fprintf(f, "\n\t index %u ref %d bind %d", parm->index, parm->refcnt,
                parm->bindcnt);
 
        if (show_stats) {
index 028bad649c982f1f0c3414507e4a61dfdb2d9ffe..dbb54981462ee5211574044a23387b1fac4ccd63 100644 (file)
--- a/tc/m_xt.c
+++ b/tc/m_xt.c
@@ -372,7 +372,7 @@ print_ipt(struct action_util *au, FILE *f, struct rtattr *arg)
                __u32 index;
 
                index = rta_getattr_u32(tb[TCA_IPT_INDEX]);
-               fprintf(f, "\n\tindex %d", index);
+               fprintf(f, "\n\tindex %u", index);
        }
 
        if (tb[TCA_IPT_CNT]) {
index 20a6342b162b394a8e6e6495d4f428567b35f318..e9cc624ecd934951041816f36659401e681aa012 100644 (file)
@@ -412,7 +412,7 @@ print_ipt(struct action_util *au, FILE * f, struct rtattr *arg)
                        __u32 index;
 
                        index = rta_getattr_u32(tb[TCA_IPT_INDEX]);
-                       fprintf(f, "\n\tindex %d", index);
+                       fprintf(f, "\n\tindex %u", index);
                }
 
                if (tb[TCA_IPT_CNT]) {