diff options
author | Thomas Graf | 2005-06-01 00:15:58 +0200 |
---|---|---|
committer | David S. Miller | 2005-06-01 00:15:58 +0200 |
commit | 0451eb074eef30240c6c06dacf2911bee26831e1 (patch) | |
tree | ea4504b5d2d7b0662757dd3c49f5f6919baf627d /net/sched | |
parent | [IPV4]: Fix BUG() in 2.6.x, udp_poll(), fragments + CONFIG_HIGHMEM (diff) | |
download | kernel-qcow2-linux-0451eb074eef30240c6c06dacf2911bee26831e1.tar.gz kernel-qcow2-linux-0451eb074eef30240c6c06dacf2911bee26831e1.tar.xz kernel-qcow2-linux-0451eb074eef30240c6c06dacf2911bee26831e1.zip |
[PKT_SCHED]: Fix dsmark to count ignored indices while walking
Unused indices which are ignored while walking must still
be counted to avoid dumping the same index twice.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_dsmark.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sched/sch_dsmark.c b/net/sched/sch_dsmark.c index 8a3db9d95bab..acbe9d2b3e15 100644 --- a/net/sched/sch_dsmark.c +++ b/net/sched/sch_dsmark.c @@ -163,14 +163,15 @@ static void dsmark_walk(struct Qdisc *sch,struct qdisc_walker *walker) return; for (i = 0; i < p->indices; i++) { if (p->mask[i] == 0xff && !p->value[i]) - continue; + goto ignore; if (walker->count >= walker->skip) { if (walker->fn(sch, i+1, walker) < 0) { walker->stop = 1; break; } } - walker->count++; +ignore: + walker->count++; } } |