aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhengchao Shao <[email protected]>2022-09-21 10:41:04 +0800
committerJakub Kicinski <[email protected]>2022-09-22 17:34:10 -0700
commitd7a68e564e29bcd1c70d76d9e2f65591e6183f46 (patch)
tree76eb36e67a159730ebcd3332550cfa24804fd341
parenta2c2a4ddc27db1715be8c03280c6cb7b808dd8b7 (diff)
net/sched: sch_api: add helper for tc qdisc walker stats dump
The walk implementation of most qdisc class modules is basically the same. That is, the values of count and skip are checked first. If count is greater than or equal to skip, the registered fn function is executed. Otherwise, increase the value of count. So we can reconstruct them. Signed-off-by: Zhengchao Shao <[email protected]> Acked-by: Toke Høiland-Jørgensen <[email protected]> Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r--include/net/pkt_sched.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/net/pkt_sched.h b/include/net/pkt_sched.h
index 29f65632ebc5..2ff80cd04c5c 100644
--- a/include/net/pkt_sched.h
+++ b/include/net/pkt_sched.h
@@ -222,4 +222,17 @@ static inline struct tc_skb_cb *tc_skb_cb(const struct sk_buff *skb)
return cb;
}
+static inline bool tc_qdisc_stats_dump(struct Qdisc *sch,
+ unsigned long cl,
+ struct qdisc_walker *arg)
+{
+ if (arg->count >= arg->skip && arg->fn(sch, cl, arg) < 0) {
+ arg->stop = 1;
+ return false;
+ }
+
+ arg->count++;
+ return true;
+}
+
#endif