dont skip action order
attached.
cheers,
jamal
commit 58d78f9f6447df324cdeb99262442c5e3f1f924b
Author: Jamal Hadi Salim <jhs@mojatatu.com>
Date: Sun Dec 22 10:34:18 2013 -0500
dont skip displaying of action chains or lists by TCA_ACT_MAX_PRIO
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
This commit is contained in:
parent
b159a7f1ae
commit
f24a7e7205
|
|
@ -32,7 +32,6 @@ static struct action_util * action_list;
|
||||||
#ifdef CONFIG_GACT
|
#ifdef CONFIG_GACT
|
||||||
int gact_ld = 0 ; //fuckin backward compatibility
|
int gact_ld = 0 ; //fuckin backward compatibility
|
||||||
#endif
|
#endif
|
||||||
int batch_c = 0;
|
|
||||||
int tab_flush = 0;
|
int tab_flush = 0;
|
||||||
|
|
||||||
static void act_usage(void)
|
static void act_usage(void)
|
||||||
|
|
@ -304,7 +303,7 @@ tc_print_action(FILE * f, const struct rtattr *arg)
|
||||||
|
|
||||||
for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
|
for (i = 0; i < TCA_ACT_MAX_PRIO; i++) {
|
||||||
if (tb[i]) {
|
if (tb[i]) {
|
||||||
fprintf(f, "\n\taction order %d: ", i + batch_c);
|
fprintf(f, "\n\taction order %d: ", i);
|
||||||
if (0 > tc_print_one_action(f, tb[i])) {
|
if (0 > tc_print_one_action(f, tb[i])) {
|
||||||
fprintf(f, "Error printing action\n");
|
fprintf(f, "Error printing action\n");
|
||||||
}
|
}
|
||||||
|
|
@ -312,7 +311,6 @@ tc_print_action(FILE * f, const struct rtattr *arg)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
batch_c+=TCA_ACT_MAX_PRIO ;
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue