Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/sch_drr.c Deficit Round Robin scheduler |
| 3 | * |
| 4 | * Copyright (c) 2008 Patrick McHardy <kaber@trash.net> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * version 2 as published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 13 | #include <linux/init.h> |
| 14 | #include <linux/errno.h> |
| 15 | #include <linux/netdevice.h> |
| 16 | #include <linux/pkt_sched.h> |
| 17 | #include <net/sch_generic.h> |
| 18 | #include <net/pkt_sched.h> |
| 19 | #include <net/pkt_cls.h> |
| 20 | |
| 21 | struct drr_class { |
| 22 | struct Qdisc_class_common common; |
| 23 | unsigned int refcnt; |
| 24 | unsigned int filter_cnt; |
| 25 | |
Eric Dumazet | c1a8f1f | 2009-08-16 09:36:49 +0000 | [diff] [blame] | 26 | struct gnet_stats_basic_packed bstats; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 27 | struct gnet_stats_queue qstats; |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 28 | struct net_rate_estimator __rcu *rate_est; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 29 | struct list_head alist; |
| 30 | struct Qdisc *qdisc; |
| 31 | |
| 32 | u32 quantum; |
| 33 | u32 deficit; |
| 34 | }; |
| 35 | |
| 36 | struct drr_sched { |
| 37 | struct list_head active; |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 38 | struct tcf_proto __rcu *filter_list; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 39 | struct Qdisc_class_hash clhash; |
| 40 | }; |
| 41 | |
| 42 | static struct drr_class *drr_find_class(struct Qdisc *sch, u32 classid) |
| 43 | { |
| 44 | struct drr_sched *q = qdisc_priv(sch); |
| 45 | struct Qdisc_class_common *clc; |
| 46 | |
| 47 | clc = qdisc_class_find(&q->clhash, classid); |
| 48 | if (clc == NULL) |
| 49 | return NULL; |
| 50 | return container_of(clc, struct drr_class, common); |
| 51 | } |
| 52 | |
| 53 | static void drr_purge_queue(struct drr_class *cl) |
| 54 | { |
| 55 | unsigned int len = cl->qdisc->q.qlen; |
WANG Cong | 2ccccf5 | 2016-02-25 14:55:01 -0800 | [diff] [blame] | 56 | unsigned int backlog = cl->qdisc->qstats.backlog; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 57 | |
| 58 | qdisc_reset(cl->qdisc); |
WANG Cong | 2ccccf5 | 2016-02-25 14:55:01 -0800 | [diff] [blame] | 59 | qdisc_tree_reduce_backlog(cl->qdisc, len, backlog); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static const struct nla_policy drr_policy[TCA_DRR_MAX + 1] = { |
| 63 | [TCA_DRR_QUANTUM] = { .type = NLA_U32 }, |
| 64 | }; |
| 65 | |
| 66 | static int drr_change_class(struct Qdisc *sch, u32 classid, u32 parentid, |
| 67 | struct nlattr **tca, unsigned long *arg) |
| 68 | { |
| 69 | struct drr_sched *q = qdisc_priv(sch); |
| 70 | struct drr_class *cl = (struct drr_class *)*arg; |
Jarek Poplawski | 1844f74 | 2009-02-27 02:42:38 -0800 | [diff] [blame] | 71 | struct nlattr *opt = tca[TCA_OPTIONS]; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 72 | struct nlattr *tb[TCA_DRR_MAX + 1]; |
| 73 | u32 quantum; |
| 74 | int err; |
| 75 | |
Jarek Poplawski | 1844f74 | 2009-02-27 02:42:38 -0800 | [diff] [blame] | 76 | if (!opt) |
| 77 | return -EINVAL; |
| 78 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame^] | 79 | err = nla_parse_nested(tb, TCA_DRR_MAX, opt, drr_policy, NULL); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 80 | if (err < 0) |
| 81 | return err; |
| 82 | |
| 83 | if (tb[TCA_DRR_QUANTUM]) { |
| 84 | quantum = nla_get_u32(tb[TCA_DRR_QUANTUM]); |
| 85 | if (quantum == 0) |
| 86 | return -EINVAL; |
| 87 | } else |
| 88 | quantum = psched_mtu(qdisc_dev(sch)); |
| 89 | |
| 90 | if (cl != NULL) { |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 91 | if (tca[TCA_RATE]) { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 92 | err = gen_replace_estimator(&cl->bstats, NULL, |
| 93 | &cl->rate_est, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 94 | NULL, |
| 95 | qdisc_root_sleeping_running(sch), |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 96 | tca[TCA_RATE]); |
| 97 | if (err) |
| 98 | return err; |
| 99 | } |
| 100 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 101 | sch_tree_lock(sch); |
| 102 | if (tb[TCA_DRR_QUANTUM]) |
| 103 | cl->quantum = quantum; |
| 104 | sch_tree_unlock(sch); |
| 105 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | cl = kzalloc(sizeof(struct drr_class), GFP_KERNEL); |
| 110 | if (cl == NULL) |
| 111 | return -ENOBUFS; |
| 112 | |
| 113 | cl->refcnt = 1; |
| 114 | cl->common.classid = classid; |
| 115 | cl->quantum = quantum; |
Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 116 | cl->qdisc = qdisc_create_dflt(sch->dev_queue, |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 117 | &pfifo_qdisc_ops, classid); |
| 118 | if (cl->qdisc == NULL) |
| 119 | cl->qdisc = &noop_qdisc; |
Jiri Kosina | 49b4997 | 2017-03-08 16:03:32 +0100 | [diff] [blame] | 120 | else |
| 121 | qdisc_hash_add(cl->qdisc, true); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 122 | |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 123 | if (tca[TCA_RATE]) { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 124 | err = gen_replace_estimator(&cl->bstats, NULL, &cl->rate_est, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 125 | NULL, |
| 126 | qdisc_root_sleeping_running(sch), |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 127 | tca[TCA_RATE]); |
| 128 | if (err) { |
| 129 | qdisc_destroy(cl->qdisc); |
| 130 | kfree(cl); |
| 131 | return err; |
| 132 | } |
| 133 | } |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 134 | |
| 135 | sch_tree_lock(sch); |
| 136 | qdisc_class_hash_insert(&q->clhash, &cl->common); |
| 137 | sch_tree_unlock(sch); |
| 138 | |
| 139 | qdisc_class_hash_grow(sch, &q->clhash); |
| 140 | |
| 141 | *arg = (unsigned long)cl; |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static void drr_destroy_class(struct Qdisc *sch, struct drr_class *cl) |
| 146 | { |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 147 | gen_kill_estimator(&cl->rate_est); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 148 | qdisc_destroy(cl->qdisc); |
| 149 | kfree(cl); |
| 150 | } |
| 151 | |
| 152 | static int drr_delete_class(struct Qdisc *sch, unsigned long arg) |
| 153 | { |
| 154 | struct drr_sched *q = qdisc_priv(sch); |
| 155 | struct drr_class *cl = (struct drr_class *)arg; |
| 156 | |
| 157 | if (cl->filter_cnt > 0) |
| 158 | return -EBUSY; |
| 159 | |
| 160 | sch_tree_lock(sch); |
| 161 | |
| 162 | drr_purge_queue(cl); |
| 163 | qdisc_class_hash_remove(&q->clhash, &cl->common); |
| 164 | |
Jarek Poplawski | 7cd0a63 | 2009-03-15 20:00:19 -0700 | [diff] [blame] | 165 | BUG_ON(--cl->refcnt == 0); |
| 166 | /* |
| 167 | * This shouldn't happen: we "hold" one cops->get() when called |
| 168 | * from tc_ctl_tclass; the destroy method is done from cops->put(). |
| 169 | */ |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 170 | |
| 171 | sch_tree_unlock(sch); |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | static unsigned long drr_get_class(struct Qdisc *sch, u32 classid) |
| 176 | { |
| 177 | struct drr_class *cl = drr_find_class(sch, classid); |
| 178 | |
| 179 | if (cl != NULL) |
| 180 | cl->refcnt++; |
| 181 | |
| 182 | return (unsigned long)cl; |
| 183 | } |
| 184 | |
| 185 | static void drr_put_class(struct Qdisc *sch, unsigned long arg) |
| 186 | { |
| 187 | struct drr_class *cl = (struct drr_class *)arg; |
| 188 | |
| 189 | if (--cl->refcnt == 0) |
| 190 | drr_destroy_class(sch, cl); |
| 191 | } |
| 192 | |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 193 | static struct tcf_proto __rcu **drr_tcf_chain(struct Qdisc *sch, |
| 194 | unsigned long cl) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 195 | { |
| 196 | struct drr_sched *q = qdisc_priv(sch); |
| 197 | |
| 198 | if (cl) |
| 199 | return NULL; |
| 200 | |
| 201 | return &q->filter_list; |
| 202 | } |
| 203 | |
| 204 | static unsigned long drr_bind_tcf(struct Qdisc *sch, unsigned long parent, |
| 205 | u32 classid) |
| 206 | { |
| 207 | struct drr_class *cl = drr_find_class(sch, classid); |
| 208 | |
| 209 | if (cl != NULL) |
| 210 | cl->filter_cnt++; |
| 211 | |
| 212 | return (unsigned long)cl; |
| 213 | } |
| 214 | |
| 215 | static void drr_unbind_tcf(struct Qdisc *sch, unsigned long arg) |
| 216 | { |
| 217 | struct drr_class *cl = (struct drr_class *)arg; |
| 218 | |
| 219 | cl->filter_cnt--; |
| 220 | } |
| 221 | |
| 222 | static int drr_graft_class(struct Qdisc *sch, unsigned long arg, |
| 223 | struct Qdisc *new, struct Qdisc **old) |
| 224 | { |
| 225 | struct drr_class *cl = (struct drr_class *)arg; |
| 226 | |
| 227 | if (new == NULL) { |
Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 228 | new = qdisc_create_dflt(sch->dev_queue, |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 229 | &pfifo_qdisc_ops, cl->common.classid); |
| 230 | if (new == NULL) |
| 231 | new = &noop_qdisc; |
| 232 | } |
| 233 | |
WANG Cong | 86a7996 | 2016-02-25 14:55:00 -0800 | [diff] [blame] | 234 | *old = qdisc_replace(sch, new, &cl->qdisc); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 235 | return 0; |
| 236 | } |
| 237 | |
| 238 | static struct Qdisc *drr_class_leaf(struct Qdisc *sch, unsigned long arg) |
| 239 | { |
| 240 | struct drr_class *cl = (struct drr_class *)arg; |
| 241 | |
| 242 | return cl->qdisc; |
| 243 | } |
| 244 | |
| 245 | static void drr_qlen_notify(struct Qdisc *csh, unsigned long arg) |
| 246 | { |
| 247 | struct drr_class *cl = (struct drr_class *)arg; |
| 248 | |
| 249 | if (cl->qdisc->q.qlen == 0) |
| 250 | list_del(&cl->alist); |
| 251 | } |
| 252 | |
| 253 | static int drr_dump_class(struct Qdisc *sch, unsigned long arg, |
| 254 | struct sk_buff *skb, struct tcmsg *tcm) |
| 255 | { |
| 256 | struct drr_class *cl = (struct drr_class *)arg; |
| 257 | struct nlattr *nest; |
| 258 | |
| 259 | tcm->tcm_parent = TC_H_ROOT; |
| 260 | tcm->tcm_handle = cl->common.classid; |
| 261 | tcm->tcm_info = cl->qdisc->handle; |
| 262 | |
| 263 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 264 | if (nest == NULL) |
| 265 | goto nla_put_failure; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 266 | if (nla_put_u32(skb, TCA_DRR_QUANTUM, cl->quantum)) |
| 267 | goto nla_put_failure; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 268 | return nla_nest_end(skb, nest); |
| 269 | |
| 270 | nla_put_failure: |
| 271 | nla_nest_cancel(skb, nest); |
| 272 | return -EMSGSIZE; |
| 273 | } |
| 274 | |
| 275 | static int drr_dump_class_stats(struct Qdisc *sch, unsigned long arg, |
| 276 | struct gnet_dump *d) |
| 277 | { |
| 278 | struct drr_class *cl = (struct drr_class *)arg; |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 279 | __u32 qlen = cl->qdisc->q.qlen; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 280 | struct tc_drr_stats xstats; |
| 281 | |
| 282 | memset(&xstats, 0, sizeof(xstats)); |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 283 | if (qlen) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 284 | xstats.deficit = cl->deficit; |
| 285 | |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 286 | if (gnet_stats_copy_basic(qdisc_root_sleeping_running(sch), |
| 287 | d, NULL, &cl->bstats) < 0 || |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 288 | gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 || |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 289 | gnet_stats_copy_queue(d, NULL, &cl->qdisc->qstats, qlen) < 0) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 290 | return -1; |
| 291 | |
| 292 | return gnet_stats_copy_app(d, &xstats, sizeof(xstats)); |
| 293 | } |
| 294 | |
| 295 | static void drr_walk(struct Qdisc *sch, struct qdisc_walker *arg) |
| 296 | { |
| 297 | struct drr_sched *q = qdisc_priv(sch); |
| 298 | struct drr_class *cl; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 299 | unsigned int i; |
| 300 | |
| 301 | if (arg->stop) |
| 302 | return; |
| 303 | |
| 304 | for (i = 0; i < q->clhash.hashsize; i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 305 | hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 306 | if (arg->count < arg->skip) { |
| 307 | arg->count++; |
| 308 | continue; |
| 309 | } |
| 310 | if (arg->fn(sch, (unsigned long)cl, arg) < 0) { |
| 311 | arg->stop = 1; |
| 312 | return; |
| 313 | } |
| 314 | arg->count++; |
| 315 | } |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | static struct drr_class *drr_classify(struct sk_buff *skb, struct Qdisc *sch, |
| 320 | int *qerr) |
| 321 | { |
| 322 | struct drr_sched *q = qdisc_priv(sch); |
| 323 | struct drr_class *cl; |
| 324 | struct tcf_result res; |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 325 | struct tcf_proto *fl; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 326 | int result; |
| 327 | |
| 328 | if (TC_H_MAJ(skb->priority ^ sch->handle) == 0) { |
| 329 | cl = drr_find_class(sch, skb->priority); |
| 330 | if (cl != NULL) |
| 331 | return cl; |
| 332 | } |
| 333 | |
| 334 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS; |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 335 | fl = rcu_dereference_bh(q->filter_list); |
Daniel Borkmann | 3b3ae88 | 2015-08-26 23:00:06 +0200 | [diff] [blame] | 336 | result = tc_classify(skb, fl, &res, false); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 337 | if (result >= 0) { |
| 338 | #ifdef CONFIG_NET_CLS_ACT |
| 339 | switch (result) { |
| 340 | case TC_ACT_QUEUED: |
| 341 | case TC_ACT_STOLEN: |
| 342 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN; |
| 343 | case TC_ACT_SHOT: |
| 344 | return NULL; |
| 345 | } |
| 346 | #endif |
| 347 | cl = (struct drr_class *)res.class; |
| 348 | if (cl == NULL) |
| 349 | cl = drr_find_class(sch, res.classid); |
| 350 | return cl; |
| 351 | } |
| 352 | return NULL; |
| 353 | } |
| 354 | |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 355 | static int drr_enqueue(struct sk_buff *skb, struct Qdisc *sch, |
| 356 | struct sk_buff **to_free) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 357 | { |
| 358 | struct drr_sched *q = qdisc_priv(sch); |
| 359 | struct drr_class *cl; |
David S. Miller | f54ba77 | 2012-09-27 18:35:47 -0400 | [diff] [blame] | 360 | int err = 0; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 361 | |
| 362 | cl = drr_classify(skb, sch, &err); |
| 363 | if (cl == NULL) { |
| 364 | if (err & __NET_XMIT_BYPASS) |
John Fastabend | 25331d6 | 2014-09-28 11:53:29 -0700 | [diff] [blame] | 365 | qdisc_qstats_drop(sch); |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 366 | __qdisc_drop(skb, to_free); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 367 | return err; |
| 368 | } |
| 369 | |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 370 | err = qdisc_enqueue(skb, cl->qdisc, to_free); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 371 | if (unlikely(err != NET_XMIT_SUCCESS)) { |
| 372 | if (net_xmit_drop_count(err)) { |
| 373 | cl->qstats.drops++; |
John Fastabend | 25331d6 | 2014-09-28 11:53:29 -0700 | [diff] [blame] | 374 | qdisc_qstats_drop(sch); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 375 | } |
| 376 | return err; |
| 377 | } |
| 378 | |
| 379 | if (cl->qdisc->q.qlen == 1) { |
| 380 | list_add_tail(&cl->alist, &q->active); |
| 381 | cl->deficit = cl->quantum; |
| 382 | } |
| 383 | |
WANG Cong | 6a73b57 | 2016-06-01 16:15:17 -0700 | [diff] [blame] | 384 | qdisc_qstats_backlog_inc(sch, skb); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 385 | sch->q.qlen++; |
| 386 | return err; |
| 387 | } |
| 388 | |
| 389 | static struct sk_buff *drr_dequeue(struct Qdisc *sch) |
| 390 | { |
| 391 | struct drr_sched *q = qdisc_priv(sch); |
| 392 | struct drr_class *cl; |
| 393 | struct sk_buff *skb; |
| 394 | unsigned int len; |
| 395 | |
Patrick McHardy | 3f0947c | 2008-11-24 15:46:08 -0800 | [diff] [blame] | 396 | if (list_empty(&q->active)) |
| 397 | goto out; |
| 398 | while (1) { |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 399 | cl = list_first_entry(&q->active, struct drr_class, alist); |
| 400 | skb = cl->qdisc->ops->peek(cl->qdisc); |
Florian Westphal | 6e765a0 | 2014-06-11 20:35:18 +0200 | [diff] [blame] | 401 | if (skb == NULL) { |
| 402 | qdisc_warn_nonwc(__func__, cl->qdisc); |
Patrick McHardy | 3f0947c | 2008-11-24 15:46:08 -0800 | [diff] [blame] | 403 | goto out; |
Florian Westphal | 6e765a0 | 2014-06-11 20:35:18 +0200 | [diff] [blame] | 404 | } |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 405 | |
| 406 | len = qdisc_pkt_len(skb); |
| 407 | if (len <= cl->deficit) { |
| 408 | cl->deficit -= len; |
| 409 | skb = qdisc_dequeue_peeked(cl->qdisc); |
Bernie Harris | df3eb6c | 2016-01-28 16:30:51 +1300 | [diff] [blame] | 410 | if (unlikely(skb == NULL)) |
| 411 | goto out; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 412 | if (cl->qdisc->q.qlen == 0) |
| 413 | list_del(&cl->alist); |
Eric Dumazet | 2dd875f | 2012-05-10 05:36:34 +0000 | [diff] [blame] | 414 | |
| 415 | bstats_update(&cl->bstats, skb); |
Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 416 | qdisc_bstats_update(sch, skb); |
WANG Cong | 6a73b57 | 2016-06-01 16:15:17 -0700 | [diff] [blame] | 417 | qdisc_qstats_backlog_dec(sch, skb); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 418 | sch->q.qlen--; |
| 419 | return skb; |
| 420 | } |
| 421 | |
| 422 | cl->deficit += cl->quantum; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 423 | list_move_tail(&cl->alist, &q->active); |
| 424 | } |
Patrick McHardy | 3f0947c | 2008-11-24 15:46:08 -0800 | [diff] [blame] | 425 | out: |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 426 | return NULL; |
| 427 | } |
| 428 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 429 | static int drr_init_qdisc(struct Qdisc *sch, struct nlattr *opt) |
| 430 | { |
| 431 | struct drr_sched *q = qdisc_priv(sch); |
| 432 | int err; |
| 433 | |
| 434 | err = qdisc_class_hash_init(&q->clhash); |
| 435 | if (err < 0) |
| 436 | return err; |
| 437 | INIT_LIST_HEAD(&q->active); |
| 438 | return 0; |
| 439 | } |
| 440 | |
| 441 | static void drr_reset_qdisc(struct Qdisc *sch) |
| 442 | { |
| 443 | struct drr_sched *q = qdisc_priv(sch); |
| 444 | struct drr_class *cl; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 445 | unsigned int i; |
| 446 | |
| 447 | for (i = 0; i < q->clhash.hashsize; i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 448 | hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 449 | if (cl->qdisc->q.qlen) |
| 450 | list_del(&cl->alist); |
| 451 | qdisc_reset(cl->qdisc); |
| 452 | } |
| 453 | } |
WANG Cong | 6a73b57 | 2016-06-01 16:15:17 -0700 | [diff] [blame] | 454 | sch->qstats.backlog = 0; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 455 | sch->q.qlen = 0; |
| 456 | } |
| 457 | |
| 458 | static void drr_destroy_qdisc(struct Qdisc *sch) |
| 459 | { |
| 460 | struct drr_sched *q = qdisc_priv(sch); |
| 461 | struct drr_class *cl; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 462 | struct hlist_node *next; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 463 | unsigned int i; |
| 464 | |
| 465 | tcf_destroy_chain(&q->filter_list); |
| 466 | |
| 467 | for (i = 0; i < q->clhash.hashsize; i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 468 | hlist_for_each_entry_safe(cl, next, &q->clhash.hash[i], |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 469 | common.hnode) |
| 470 | drr_destroy_class(sch, cl); |
| 471 | } |
| 472 | qdisc_class_hash_destroy(&q->clhash); |
| 473 | } |
| 474 | |
| 475 | static const struct Qdisc_class_ops drr_class_ops = { |
| 476 | .change = drr_change_class, |
| 477 | .delete = drr_delete_class, |
| 478 | .get = drr_get_class, |
| 479 | .put = drr_put_class, |
| 480 | .tcf_chain = drr_tcf_chain, |
| 481 | .bind_tcf = drr_bind_tcf, |
| 482 | .unbind_tcf = drr_unbind_tcf, |
| 483 | .graft = drr_graft_class, |
| 484 | .leaf = drr_class_leaf, |
| 485 | .qlen_notify = drr_qlen_notify, |
| 486 | .dump = drr_dump_class, |
| 487 | .dump_stats = drr_dump_class_stats, |
| 488 | .walk = drr_walk, |
| 489 | }; |
| 490 | |
| 491 | static struct Qdisc_ops drr_qdisc_ops __read_mostly = { |
| 492 | .cl_ops = &drr_class_ops, |
| 493 | .id = "drr", |
| 494 | .priv_size = sizeof(struct drr_sched), |
| 495 | .enqueue = drr_enqueue, |
| 496 | .dequeue = drr_dequeue, |
| 497 | .peek = qdisc_peek_dequeued, |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 498 | .init = drr_init_qdisc, |
| 499 | .reset = drr_reset_qdisc, |
| 500 | .destroy = drr_destroy_qdisc, |
| 501 | .owner = THIS_MODULE, |
| 502 | }; |
| 503 | |
| 504 | static int __init drr_init(void) |
| 505 | { |
| 506 | return register_qdisc(&drr_qdisc_ops); |
| 507 | } |
| 508 | |
| 509 | static void __exit drr_exit(void) |
| 510 | { |
| 511 | unregister_qdisc(&drr_qdisc_ops); |
| 512 | } |
| 513 | |
| 514 | module_init(drr_init); |
| 515 | module_exit(drr_exit); |
| 516 | MODULE_LICENSE("GPL"); |