net/sched: use tc_qdisc_stats_dump() in qdisc
authorZhengchao Shao <shaozhengchao@huawei.com>
Wed, 21 Sep 2022 02:41:18 +0000 (10:41 +0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 23 Sep 2022 00:34:10 +0000 (17:34 -0700)
use tc_qdisc_stats_dump() in qdisc.

Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Reviewed-by: Victor Nogueira <victor@mojatatu.com>
Tested-by: Victor Nogueira <victor@mojatatu.com>
Acked-by: Toke Høiland-Jørgensen <toke@redhat.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
22 files changed:
net/sched/sch_atm.c
net/sched/sch_cake.c
net/sched/sch_cbq.c
net/sched/sch_cbs.c
net/sched/sch_drr.c
net/sched/sch_dsmark.c
net/sched/sch_ets.c
net/sched/sch_fq_codel.c
net/sched/sch_hfsc.c
net/sched/sch_htb.c
net/sched/sch_mq.c
net/sched/sch_mqprio.c
net/sched/sch_multiq.c
net/sched/sch_netem.c
net/sched/sch_prio.c
net/sched/sch_qfq.c
net/sched/sch_red.c
net/sched/sch_sfb.c
net/sched/sch_sfq.c
net/sched/sch_skbprio.c
net/sched/sch_taprio.c
net/sched/sch_tbf.c

index 816fd0d..f52255f 100644 (file)
@@ -354,12 +354,8 @@ static void atm_tc_walk(struct Qdisc *sch, struct qdisc_walker *walker)
        if (walker->stop)
                return;
        list_for_each_entry(flow, &p->flows, list) {
-               if (walker->count >= walker->skip &&
-                   walker->fn(sch, (unsigned long)flow, walker) < 0) {
-                       walker->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, (unsigned long)flow, walker))
                        break;
-               }
-               walker->count++;
        }
 }
 
index 36acc95..55c6879 100644 (file)
@@ -3061,16 +3061,13 @@ static void cake_walk(struct Qdisc *sch, struct qdisc_walker *arg)
                struct cake_tin_data *b = &q->tins[q->tin_order[i]];
 
                for (j = 0; j < CAKE_QUEUES; j++) {
-                       if (list_empty(&b->flows[j].flowchain) ||
-                           arg->count < arg->skip) {
+                       if (list_empty(&b->flows[j].flowchain)) {
                                arg->count++;
                                continue;
                        }
-                       if (arg->fn(sch, i * CAKE_QUEUES + j + 1, arg) < 0) {
-                               arg->stop = 1;
+                       if (!tc_qdisc_stats_dump(sch, i * CAKE_QUEUES + j + 1,
+                                                arg))
                                break;
-                       }
-                       arg->count++;
                }
        }
 }
index ba99ce0..6568e17 100644 (file)
@@ -1676,15 +1676,8 @@ static void cbq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
 
        for (h = 0; h < q->clhash.hashsize; h++) {
                hlist_for_each_entry(cl, &q->clhash.hash[h], common.hnode) {
-                       if (arg->count < arg->skip) {
-                               arg->count++;
-                               continue;
-                       }
-                       if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
-                               arg->stop = 1;
+                       if (!tc_qdisc_stats_dump(sch, (unsigned long)cl, arg))
                                return;
-                       }
-                       arg->count++;
                }
        }
 }
index 459cc24..cac870e 100644 (file)
@@ -520,13 +520,7 @@ static unsigned long cbs_find(struct Qdisc *sch, u32 classid)
 static void cbs_walk(struct Qdisc *sch, struct qdisc_walker *walker)
 {
        if (!walker->stop) {
-               if (walker->count >= walker->skip) {
-                       if (walker->fn(sch, 1, walker) < 0) {
-                               walker->stop = 1;
-                               return;
-                       }
-               }
-               walker->count++;
+               tc_qdisc_stats_dump(sch, 1, walker);
        }
 }
 
index 4e5b1cf..e35a4e9 100644 (file)
@@ -284,15 +284,8 @@ static void drr_walk(struct Qdisc *sch, struct qdisc_walker *arg)
 
        for (i = 0; i < q->clhash.hashsize; i++) {
                hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) {
-                       if (arg->count < arg->skip) {
-                               arg->count++;
-                               continue;
-                       }
-                       if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
-                               arg->stop = 1;
+                       if (!tc_qdisc_stats_dump(sch, (unsigned long)cl, arg))
                                return;
-                       }
-                       arg->count++;
                }
        }
 }
index 7da6dc3..401ffaf 100644 (file)
@@ -176,16 +176,12 @@ static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker)
                return;
 
        for (i = 0; i < p->indices; i++) {
-               if (p->mv[i].mask == 0xff && !p->mv[i].value)
-                       goto ignore;
-               if (walker->count >= walker->skip) {
-                       if (walker->fn(sch, i + 1, walker) < 0) {
-                               walker->stop = 1;
-                               break;
-                       }
+               if (p->mv[i].mask == 0xff && !p->mv[i].value) {
+                       walker->count++;
+                       continue;
                }
-ignore:
-               walker->count++;
+               if (!tc_qdisc_stats_dump(sch, i + 1, walker))
+                       break;
        }
 }
 
index a3aea22..b10efea 100644 (file)
@@ -341,15 +341,8 @@ static void ets_qdisc_walk(struct Qdisc *sch, struct qdisc_walker *arg)
                return;
 
        for (i = 0; i < q->nbands; i++) {
-               if (arg->count < arg->skip) {
-                       arg->count++;
-                       continue;
-               }
-               if (arg->fn(sch, i + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, i + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index eeea8c6..99d318b 100644 (file)
@@ -673,16 +673,12 @@ static void fq_codel_walk(struct Qdisc *sch, struct qdisc_walker *arg)
                return;
 
        for (i = 0; i < q->flows_cnt; i++) {
-               if (list_empty(&q->flows[i].flowchain) ||
-                   arg->count < arg->skip) {
+               if (list_empty(&q->flows[i].flowchain)) {
                        arg->count++;
                        continue;
                }
-               if (arg->fn(sch, i + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, i + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index c8bef92..70b0c58 100644 (file)
@@ -1349,15 +1349,8 @@ hfsc_walk(struct Qdisc *sch, struct qdisc_walker *arg)
        for (i = 0; i < q->clhash.hashsize; i++) {
                hlist_for_each_entry(cl, &q->clhash.hash[i],
                                     cl_common.hnode) {
-                       if (arg->count < arg->skip) {
-                               arg->count++;
-                               continue;
-                       }
-                       if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
-                               arg->stop = 1;
+                       if (!tc_qdisc_stats_dump(sch, (unsigned long)cl, arg))
                                return;
-                       }
-                       arg->count++;
                }
        }
 }
index 78d0c75..e5b4bbf 100644 (file)
@@ -2119,15 +2119,8 @@ static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
 
        for (i = 0; i < q->clhash.hashsize; i++) {
                hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) {
-                       if (arg->count < arg->skip) {
-                               arg->count++;
-                               continue;
-                       }
-                       if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
-                               arg->stop = 1;
+                       if (!tc_qdisc_stats_dump(sch, (unsigned long)cl, arg))
                                return;
-                       }
-                       arg->count++;
                }
        }
 }
index 83d2e54..d0bc660 100644 (file)
@@ -247,11 +247,8 @@ static void mq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
 
        arg->count = arg->skip;
        for (ntx = arg->skip; ntx < dev->num_tx_queues; ntx++) {
-               if (arg->fn(sch, ntx + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, ntx + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index b29f345..4c68aba 100644 (file)
@@ -558,11 +558,8 @@ static void mqprio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
        /* Walk hierarchy with a virtual class per tc */
        arg->count = arg->skip;
        for (ntx = arg->skip; ntx < netdev_get_num_tc(dev); ntx++) {
-               if (arg->fn(sch, ntx + TC_H_MIN_PRIORITY, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, ntx + TC_H_MIN_PRIORITY, arg))
                        return;
-               }
-               arg->count++;
        }
 
        /* Pad the values and skip over unused traffic classes */
index f28050c..75c9c86 100644 (file)
@@ -353,15 +353,8 @@ static void multiq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
                return;
 
        for (band = 0; band < q->bands; band++) {
-               if (arg->count < arg->skip) {
-                       arg->count++;
-                       continue;
-               }
-               if (arg->fn(sch, band + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, band + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index b70ac04..18f4273 100644 (file)
@@ -1251,12 +1251,8 @@ static unsigned long netem_find(struct Qdisc *sch, u32 classid)
 static void netem_walk(struct Qdisc *sch, struct qdisc_walker *walker)
 {
        if (!walker->stop) {
-               if (walker->count >= walker->skip)
-                       if (walker->fn(sch, 1, walker) < 0) {
-                               walker->stop = 1;
-                               return;
-                       }
-               walker->count++;
+               if (!tc_qdisc_stats_dump(sch, 1, walker))
+                       return;
        }
 }
 
index 298794c..fdc5ef5 100644 (file)
@@ -376,15 +376,8 @@ static void prio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
                return;
 
        for (prio = 0; prio < q->bands; prio++) {
-               if (arg->count < arg->skip) {
-                       arg->count++;
-                       continue;
-               }
-               if (arg->fn(sch, prio + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, prio + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index 13246a9..cf5ebe4 100644 (file)
@@ -659,15 +659,8 @@ static void qfq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
 
        for (i = 0; i < q->clhash.hashsize; i++) {
                hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) {
-                       if (arg->count < arg->skip) {
-                               arg->count++;
-                               continue;
-                       }
-                       if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
-                               arg->stop = 1;
+                       if (!tc_qdisc_stats_dump(sch, (unsigned long)cl, arg))
                                return;
-                       }
-                       arg->count++;
                }
        }
 }
index 4952406..a5a401f 100644 (file)
@@ -516,12 +516,7 @@ static unsigned long red_find(struct Qdisc *sch, u32 classid)
 static void red_walk(struct Qdisc *sch, struct qdisc_walker *walker)
 {
        if (!walker->stop) {
-               if (walker->count >= walker->skip)
-                       if (walker->fn(sch, 1, walker) < 0) {
-                               walker->stop = 1;
-                               return;
-                       }
-               walker->count++;
+               tc_qdisc_stats_dump(sch, 1, walker);
        }
 }
 
index 1be8d04..e2389fa 100644 (file)
@@ -659,12 +659,7 @@ static int sfb_delete(struct Qdisc *sch, unsigned long cl,
 static void sfb_walk(struct Qdisc *sch, struct qdisc_walker *walker)
 {
        if (!walker->stop) {
-               if (walker->count >= walker->skip)
-                       if (walker->fn(sch, 1, walker) < 0) {
-                               walker->stop = 1;
-                               return;
-                       }
-               walker->count++;
+               tc_qdisc_stats_dump(sch, 1, walker);
        }
 }
 
index f8e569f..abd4363 100644 (file)
@@ -888,16 +888,12 @@ static void sfq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
                return;
 
        for (i = 0; i < q->divisor; i++) {
-               if (q->ht[i] == SFQ_EMPTY_SLOT ||
-                   arg->count < arg->skip) {
+               if (q->ht[i] == SFQ_EMPTY_SLOT) {
                        arg->count++;
                        continue;
                }
-               if (arg->fn(sch, i + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, i + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index df72fb8..5df2dac 100644 (file)
@@ -265,15 +265,8 @@ static void skbprio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
                return;
 
        for (i = 0; i < SKBPRIO_MAX_PRIORITY; i++) {
-               if (arg->count < arg->skip) {
-                       arg->count++;
-                       continue;
-               }
-               if (arg->fn(sch, i + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, i + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index 1853f08..136ae21 100644 (file)
@@ -1953,11 +1953,8 @@ static void taprio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
 
        arg->count = arg->skip;
        for (ntx = arg->skip; ntx < dev->num_tx_queues; ntx++) {
-               if (arg->fn(sch, ntx + 1, arg) < 0) {
-                       arg->stop = 1;
+               if (!tc_qdisc_stats_dump(sch, ntx + 1, arg))
                        break;
-               }
-               arg->count++;
        }
 }
 
index e031c1a..277ad11 100644 (file)
@@ -580,12 +580,7 @@ static unsigned long tbf_find(struct Qdisc *sch, u32 classid)
 static void tbf_walk(struct Qdisc *sch, struct qdisc_walker *walker)
 {
        if (!walker->stop) {
-               if (walker->count >= walker->skip)
-                       if (walker->fn(sch, 1, walker) < 0) {
-                               walker->stop = 1;
-                               return;
-                       }
-               walker->count++;
+               tc_qdisc_stats_dump(sch, 1, walker);
        }
 }