diff options
author | J Hadi Salim <hadi@cyberus.ca> | 2005-05-04 03:29:13 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-05-04 03:29:13 +0400 |
commit | 14d50e78f947d340066ee0465dd892ad1d9162c0 (patch) | |
tree | 591ce19741741438606ab75a45ac9f973cbb4787 /net | |
parent | aabc9761b69f1bfa30a78f7005be95cc9cc06175 (diff) | |
download | linux-14d50e78f947d340066ee0465dd892ad1d9162c0.tar.xz |
[PKT_SCHED]: Action repeat
Long standing bug.
Policy to repeat an action never worked.
Signed-off-by: J Hadi Salim <hadi@cyberus.ca>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/act_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/act_api.c b/net/sched/act_api.c index 5e6cc371b39e..cafcb084098d 100644 --- a/net/sched/act_api.c +++ b/net/sched/act_api.c @@ -171,10 +171,10 @@ repeat: skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd); skb->tc_verd = CLR_TC_MUNGED(skb->tc_verd); } - if (ret != TC_ACT_PIPE) - goto exec_done; if (ret == TC_ACT_REPEAT) goto repeat; /* we need a ttl - JHS */ + if (ret != TC_ACT_PIPE) + goto exec_done; } act = a->next; } |