m_gact: whitespace cleanup
Fix whitespace errors reported by checkpatch Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
parent
ed4856919f
commit
5c235ac27e
17
tc/m_gact.c
17
tc/m_gact.c
|
|
@ -115,17 +115,21 @@ parse_gact(struct action_util *a, int *argc_p, char ***argv_p,
|
||||||
&pp.paction, false) == -1)
|
&pp.paction, false) == -1)
|
||||||
usage();
|
usage();
|
||||||
if (get_u16(&pp.pval, *argv, 10)) {
|
if (get_u16(&pp.pval, *argv, 10)) {
|
||||||
fprintf(stderr, "Illegal probability val 0x%x\n", pp.pval);
|
fprintf(stderr,
|
||||||
|
"Illegal probability val 0x%x\n",
|
||||||
|
pp.pval);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (pp.pval > 10000) {
|
if (pp.pval > 10000) {
|
||||||
fprintf(stderr, "Illegal probability val 0x%x\n", pp.pval);
|
fprintf(stderr,
|
||||||
|
"Illegal probability val 0x%x\n",
|
||||||
|
pp.pval);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
argc--;
|
argc--;
|
||||||
argv++;
|
argv++;
|
||||||
} else if (matches(*argv, "help") == 0) {
|
} else if (matches(*argv, "help") == 0) {
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -140,7 +144,7 @@ parse_gact(struct action_util *a, int *argc_p, char ***argv_p,
|
||||||
argc--;
|
argc--;
|
||||||
argv++;
|
argv++;
|
||||||
} else if (matches(*argv, "help") == 0) {
|
} else if (matches(*argv, "help") == 0) {
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -148,9 +152,8 @@ parse_gact(struct action_util *a, int *argc_p, char ***argv_p,
|
||||||
addattr_l(n, MAX_MSG, tca_id, NULL, 0);
|
addattr_l(n, MAX_MSG, tca_id, NULL, 0);
|
||||||
addattr_l(n, MAX_MSG, TCA_GACT_PARMS, &p, sizeof(p));
|
addattr_l(n, MAX_MSG, TCA_GACT_PARMS, &p, sizeof(p));
|
||||||
#ifdef CONFIG_GACT_PROB
|
#ifdef CONFIG_GACT_PROB
|
||||||
if (rd) {
|
if (rd)
|
||||||
addattr_l(n, MAX_MSG, TCA_GACT_PROB, &pp, sizeof(pp));
|
addattr_l(n, MAX_MSG, TCA_GACT_PROB, &pp, sizeof(pp));
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
|
tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
|
||||||
|
|
||||||
|
|
@ -160,7 +163,7 @@ parse_gact(struct action_util *a, int *argc_p, char ***argv_p,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
print_gact(struct action_util *au, FILE * f, struct rtattr *arg)
|
print_gact(struct action_util *au, FILE *f, struct rtattr *arg)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_GACT_PROB
|
#ifdef CONFIG_GACT_PROB
|
||||||
struct tc_gact_p *pp = NULL;
|
struct tc_gact_p *pp = NULL;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue