diff options
author | Jamal Hadi Salim <jhs@mojatatu.com> | 2016-02-18 08:04:43 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-18 11:19:12 -0500 |
commit | 7e6e18fbc033e00a4d4af3d4ea7bad0db6b7ad1b (patch) | |
tree | 4b60c66db385cd3caf4a6252e75014924c521cb3 | |
parent | 7fbac984f33a374a06fa7b1fc41127bdaf7d6c07 (diff) | |
download | op-kernel-dev-7e6e18fbc033e00a4d4af3d4ea7bad0db6b7ad1b.zip op-kernel-dev-7e6e18fbc033e00a4d4af3d4ea7bad0db6b7ad1b.tar.gz |
net_sched: Improve readability of filter processing
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sched/sch_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index b5c2cf2..c9673b5e 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c @@ -1841,7 +1841,7 @@ reclassify: return err; } - return -1; + return TC_ACT_UNSPEC; /* signal: continue lookup */ #ifdef CONFIG_NET_CLS_ACT reset: if (unlikely(limit++ >= MAX_REC_LOOP)) { |