diff mbox

[iproute2] dont skip action order

Message ID 52B70748.8050006@mojatatu.com
State Accepted, archived
Delegated to: stephen hemminger
Headers show

Commit Message

Jamal Hadi Salim Dec. 22, 2013, 3:37 p.m. UTC
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>

Comments

Stephen Hemminger Dec. 28, 2013, 7:01 p.m. UTC | #1
On Sun, 22 Dec 2013 10:37:44 -0500
Jamal Hadi Salim <jhs@mojatatu.com> wrote:

> 
> attached.
> 
> cheers,
> jamal

I applied all 8 patches
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Jamal Hadi Salim Jan. 1, 2014, 4:46 p.m. UTC | #2
On 12/28/13 14:01, Stephen Hemminger wrote:

> I applied all 8 patches

Thanks Stephen. I have one more - although it is not dependent
on the kernel patch for flush counter, that patch makes it better.
I will wait for Dave to take in the patch, test then send it to you.

cheers,
jamal


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/tc/m_action.c b/tc/m_action.c
index 51085ec..77479d6 100644
--- a/tc/m_action.c
+++ b/tc/m_action.c
@@ -32,7 +32,6 @@  static struct action_util * action_list;
 #ifdef CONFIG_GACT
 int gact_ld = 0 ; //fuckin backward compatibility
 #endif
-int batch_c = 0;
 int tab_flush = 0;
 
 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++) {
 		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])) {
 				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;
 }