blob: c48f91075b5c60ee4fe9e10186c913baf5894a69 [file] [log] [blame]
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -07001// SPDX-License-Identifier: GPL-2.0
2
3/* net/sched/sch_etf.c Earliest TxTime First queueing discipline.
4 *
5 * Authors: Jesus Sanchez-Palencia <jesus.sanchez-palencia@intel.com>
6 * Vinicius Costa Gomes <vinicius.gomes@intel.com>
7 */
8
9#include <linux/module.h>
10#include <linux/types.h>
11#include <linux/kernel.h>
12#include <linux/string.h>
13#include <linux/errno.h>
Jesus Sanchez-Palencia4b15c702018-07-03 15:43:00 -070014#include <linux/errqueue.h>
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -070015#include <linux/rbtree.h>
16#include <linux/skbuff.h>
17#include <linux/posix-timers.h>
18#include <net/netlink.h>
19#include <net/sch_generic.h>
20#include <net/pkt_sched.h>
21#include <net/sock.h>
22
23#define DEADLINE_MODE_IS_ON(x) ((x)->flags & TC_ETF_DEADLINE_MODE_ON)
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -070024#define OFFLOAD_IS_ON(x) ((x)->flags & TC_ETF_OFFLOAD_ON)
Vedang Pateld14d2b22019-06-25 15:07:14 -070025#define SKIP_SOCK_CHECK_IS_SET(x) ((x)->flags & TC_ETF_SKIP_SOCK_CHECK)
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -070026
27struct etf_sched_data {
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -070028 bool offload;
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -070029 bool deadline_mode;
Vedang Pateld14d2b22019-06-25 15:07:14 -070030 bool skip_sock_check;
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -070031 int clockid;
32 int queue;
33 s32 delta; /* in ns */
34 ktime_t last; /* The txtime of the last skb sent to the netdevice. */
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -080035 struct rb_root_cached head;
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -070036 struct qdisc_watchdog watchdog;
37 ktime_t (*get_time)(void);
38};
39
40static const struct nla_policy etf_policy[TCA_ETF_MAX + 1] = {
41 [TCA_ETF_PARMS] = { .len = sizeof(struct tc_etf_qopt) },
42};
43
44static inline int validate_input_params(struct tc_etf_qopt *qopt,
45 struct netlink_ext_ack *extack)
46{
47 /* Check if params comply to the following rules:
48 * * Clockid and delta must be valid.
49 *
50 * * Dynamic clockids are not supported.
51 *
52 * * Delta must be a positive integer.
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -070053 *
54 * Also note that for the HW offload case, we must
55 * expect that system clocks have been synchronized to PHC.
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -070056 */
57 if (qopt->clockid < 0) {
58 NL_SET_ERR_MSG(extack, "Dynamic clockids are not supported");
59 return -ENOTSUPP;
60 }
61
62 if (qopt->clockid != CLOCK_TAI) {
63 NL_SET_ERR_MSG(extack, "Invalid clockid. CLOCK_TAI must be used");
64 return -EINVAL;
65 }
66
67 if (qopt->delta < 0) {
68 NL_SET_ERR_MSG(extack, "Delta must be positive");
69 return -EINVAL;
70 }
71
72 return 0;
73}
74
75static bool is_packet_valid(struct Qdisc *sch, struct sk_buff *nskb)
76{
77 struct etf_sched_data *q = qdisc_priv(sch);
78 ktime_t txtime = nskb->tstamp;
79 struct sock *sk = nskb->sk;
80 ktime_t now;
81
Vedang Pateld14d2b22019-06-25 15:07:14 -070082 if (q->skip_sock_check)
83 goto skip;
84
Eric Dumazeta1211bf2020-04-21 10:00:28 -070085 if (!sk || !sk_fullsock(sk))
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -070086 return false;
87
88 if (!sock_flag(sk, SOCK_TXTIME))
89 return false;
90
91 /* We don't perform crosstimestamping.
92 * Drop if packet's clockid differs from qdisc's.
93 */
94 if (sk->sk_clockid != q->clockid)
95 return false;
96
97 if (sk->sk_txtime_deadline_mode != q->deadline_mode)
98 return false;
99
Vedang Pateld14d2b22019-06-25 15:07:14 -0700100skip:
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700101 now = q->get_time();
102 if (ktime_before(txtime, now) || ktime_before(txtime, q->last))
103 return false;
104
105 return true;
106}
107
108static struct sk_buff *etf_peek_timesortedlist(struct Qdisc *sch)
109{
110 struct etf_sched_data *q = qdisc_priv(sch);
111 struct rb_node *p;
112
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800113 p = rb_first_cached(&q->head);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700114 if (!p)
115 return NULL;
116
117 return rb_to_skb(p);
118}
119
120static void reset_watchdog(struct Qdisc *sch)
121{
122 struct etf_sched_data *q = qdisc_priv(sch);
123 struct sk_buff *skb = etf_peek_timesortedlist(sch);
124 ktime_t next;
125
Jesus Sanchez-Palencia3fcbdae2018-11-14 17:26:32 -0800126 if (!skb) {
127 qdisc_watchdog_cancel(&q->watchdog);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700128 return;
Jesus Sanchez-Palencia3fcbdae2018-11-14 17:26:32 -0800129 }
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700130
131 next = ktime_sub_ns(skb->tstamp, q->delta);
132 qdisc_watchdog_schedule_ns(&q->watchdog, ktime_to_ns(next));
133}
134
Jesus Sanchez-Palencia4b15c702018-07-03 15:43:00 -0700135static void report_sock_error(struct sk_buff *skb, u32 err, u8 code)
136{
137 struct sock_exterr_skb *serr;
138 struct sk_buff *clone;
139 ktime_t txtime = skb->tstamp;
Eric Dumazeta1211bf2020-04-21 10:00:28 -0700140 struct sock *sk = skb->sk;
Jesus Sanchez-Palencia4b15c702018-07-03 15:43:00 -0700141
Eric Dumazeta1211bf2020-04-21 10:00:28 -0700142 if (!sk || !sk_fullsock(sk) || !(sk->sk_txtime_report_errors))
Jesus Sanchez-Palencia4b15c702018-07-03 15:43:00 -0700143 return;
144
145 clone = skb_clone(skb, GFP_ATOMIC);
146 if (!clone)
147 return;
148
149 serr = SKB_EXT_ERR(clone);
150 serr->ee.ee_errno = err;
151 serr->ee.ee_origin = SO_EE_ORIGIN_TXTIME;
152 serr->ee.ee_type = 0;
153 serr->ee.ee_code = code;
154 serr->ee.ee_pad = 0;
155 serr->ee.ee_data = (txtime >> 32); /* high part of tstamp */
156 serr->ee.ee_info = txtime; /* low part of tstamp */
157
Eric Dumazeta1211bf2020-04-21 10:00:28 -0700158 if (sock_queue_err_skb(sk, clone))
Jesus Sanchez-Palencia4b15c702018-07-03 15:43:00 -0700159 kfree_skb(clone);
160}
161
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700162static int etf_enqueue_timesortedlist(struct sk_buff *nskb, struct Qdisc *sch,
163 struct sk_buff **to_free)
164{
165 struct etf_sched_data *q = qdisc_priv(sch);
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800166 struct rb_node **p = &q->head.rb_root.rb_node, *parent = NULL;
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700167 ktime_t txtime = nskb->tstamp;
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800168 bool leftmost = true;
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700169
Jesus Sanchez-Palencia4b15c702018-07-03 15:43:00 -0700170 if (!is_packet_valid(sch, nskb)) {
171 report_sock_error(nskb, EINVAL,
172 SO_EE_CODE_TXTIME_INVALID_PARAM);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700173 return qdisc_drop(nskb, sch, to_free);
Jesus Sanchez-Palencia4b15c702018-07-03 15:43:00 -0700174 }
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700175
176 while (*p) {
177 struct sk_buff *skb;
178
179 parent = *p;
180 skb = rb_to_skb(parent);
Vinicius Costa Gomes28aa7c82019-10-14 13:38:22 -0700181 if (ktime_compare(txtime, skb->tstamp) >= 0) {
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700182 p = &parent->rb_right;
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800183 leftmost = false;
184 } else {
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700185 p = &parent->rb_left;
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800186 }
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700187 }
188 rb_link_node(&nskb->rbnode, parent, p);
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800189 rb_insert_color_cached(&nskb->rbnode, &q->head, leftmost);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700190
191 qdisc_qstats_backlog_inc(sch, nskb);
192 sch->q.qlen++;
193
194 /* Now we may need to re-arm the qdisc watchdog for the next packet. */
195 reset_watchdog(sch);
196
197 return NET_XMIT_SUCCESS;
198}
199
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800200static void timesortedlist_drop(struct Qdisc *sch, struct sk_buff *skb,
201 ktime_t now)
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800202{
203 struct etf_sched_data *q = qdisc_priv(sch);
204 struct sk_buff *to_free = NULL;
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800205 struct sk_buff *tmp = NULL;
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800206
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800207 skb_rbtree_walk_from_safe(skb, tmp) {
208 if (ktime_after(skb->tstamp, now))
209 break;
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800210
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800211 rb_erase_cached(&skb->rbnode, &q->head);
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800212
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800213 /* The rbnode field in the skb re-uses these fields, now that
214 * we are done with the rbnode, reset them.
215 */
216 skb->next = NULL;
217 skb->prev = NULL;
218 skb->dev = qdisc_dev(sch);
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800219
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800220 report_sock_error(skb, ECANCELED, SO_EE_CODE_TXTIME_MISSED);
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800221
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800222 qdisc_qstats_backlog_dec(sch, skb);
223 qdisc_drop(skb, sch, &to_free);
224 qdisc_qstats_overlimit(sch);
225 sch->q.qlen--;
226 }
227
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800228 kfree_skb_list(to_free);
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800229}
230
231static void timesortedlist_remove(struct Qdisc *sch, struct sk_buff *skb)
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700232{
233 struct etf_sched_data *q = qdisc_priv(sch);
234
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800235 rb_erase_cached(&skb->rbnode, &q->head);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700236
237 /* The rbnode field in the skb re-uses these fields, now that
238 * we are done with the rbnode, reset them.
239 */
240 skb->next = NULL;
241 skb->prev = NULL;
242 skb->dev = qdisc_dev(sch);
243
244 qdisc_qstats_backlog_dec(sch, skb);
245
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800246 qdisc_bstats_update(sch, skb);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700247
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800248 q->last = skb->tstamp;
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700249
250 sch->q.qlen--;
251}
252
253static struct sk_buff *etf_dequeue_timesortedlist(struct Qdisc *sch)
254{
255 struct etf_sched_data *q = qdisc_priv(sch);
256 struct sk_buff *skb;
257 ktime_t now, next;
258
259 skb = etf_peek_timesortedlist(sch);
260 if (!skb)
261 return NULL;
262
263 now = q->get_time();
264
265 /* Drop if packet has expired while in queue. */
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700266 if (ktime_before(skb->tstamp, now)) {
Jesus Sanchez-Palencia37342bd2018-11-14 17:26:35 -0800267 timesortedlist_drop(sch, skb, now);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700268 skb = NULL;
269 goto out;
270 }
271
272 /* When in deadline mode, dequeue as soon as possible and change the
273 * txtime from deadline to (now + delta).
274 */
275 if (q->deadline_mode) {
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800276 timesortedlist_remove(sch, skb);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700277 skb->tstamp = now;
278 goto out;
279 }
280
281 next = ktime_sub_ns(skb->tstamp, q->delta);
282
283 /* Dequeue only if now is within the [txtime - delta, txtime] range. */
284 if (ktime_after(now, next))
Jesus Sanchez-Palenciacbeeb8e2018-11-14 17:26:34 -0800285 timesortedlist_remove(sch, skb);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700286 else
287 skb = NULL;
288
289out:
290 /* Now we may need to re-arm the qdisc watchdog for the next packet. */
291 reset_watchdog(sch);
292
293 return skb;
294}
295
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700296static void etf_disable_offload(struct net_device *dev,
297 struct etf_sched_data *q)
298{
299 struct tc_etf_qopt_offload etf = { };
300 const struct net_device_ops *ops;
301 int err;
302
303 if (!q->offload)
304 return;
305
306 ops = dev->netdev_ops;
307 if (!ops->ndo_setup_tc)
308 return;
309
310 etf.queue = q->queue;
311 etf.enable = 0;
312
313 err = ops->ndo_setup_tc(dev, TC_SETUP_QDISC_ETF, &etf);
314 if (err < 0)
315 pr_warn("Couldn't disable ETF offload for queue %d\n",
316 etf.queue);
317}
318
319static int etf_enable_offload(struct net_device *dev, struct etf_sched_data *q,
320 struct netlink_ext_ack *extack)
321{
322 const struct net_device_ops *ops = dev->netdev_ops;
323 struct tc_etf_qopt_offload etf = { };
324 int err;
325
326 if (q->offload)
327 return 0;
328
329 if (!ops->ndo_setup_tc) {
330 NL_SET_ERR_MSG(extack, "Specified device does not support ETF offload");
331 return -EOPNOTSUPP;
332 }
333
334 etf.queue = q->queue;
335 etf.enable = 1;
336
337 err = ops->ndo_setup_tc(dev, TC_SETUP_QDISC_ETF, &etf);
338 if (err < 0) {
339 NL_SET_ERR_MSG(extack, "Specified device failed to setup ETF hardware offload");
340 return err;
341 }
342
343 return 0;
344}
345
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700346static int etf_init(struct Qdisc *sch, struct nlattr *opt,
347 struct netlink_ext_ack *extack)
348{
349 struct etf_sched_data *q = qdisc_priv(sch);
350 struct net_device *dev = qdisc_dev(sch);
351 struct nlattr *tb[TCA_ETF_MAX + 1];
352 struct tc_etf_qopt *qopt;
353 int err;
354
355 if (!opt) {
356 NL_SET_ERR_MSG(extack,
357 "Missing ETF qdisc options which are mandatory");
358 return -EINVAL;
359 }
360
Johannes Berg8cb08172019-04-26 14:07:28 +0200361 err = nla_parse_nested_deprecated(tb, TCA_ETF_MAX, opt, etf_policy,
362 extack);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700363 if (err < 0)
364 return err;
365
366 if (!tb[TCA_ETF_PARMS]) {
367 NL_SET_ERR_MSG(extack, "Missing mandatory ETF parameters");
368 return -EINVAL;
369 }
370
371 qopt = nla_data(tb[TCA_ETF_PARMS]);
372
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700373 pr_debug("delta %d clockid %d offload %s deadline %s\n",
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700374 qopt->delta, qopt->clockid,
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700375 OFFLOAD_IS_ON(qopt) ? "on" : "off",
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700376 DEADLINE_MODE_IS_ON(qopt) ? "on" : "off");
377
378 err = validate_input_params(qopt, extack);
379 if (err < 0)
380 return err;
381
382 q->queue = sch->dev_queue - netdev_get_tx_queue(dev, 0);
383
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700384 if (OFFLOAD_IS_ON(qopt)) {
385 err = etf_enable_offload(dev, q, extack);
386 if (err < 0)
387 return err;
388 }
389
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700390 /* Everything went OK, save the parameters used. */
391 q->delta = qopt->delta;
392 q->clockid = qopt->clockid;
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700393 q->offload = OFFLOAD_IS_ON(qopt);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700394 q->deadline_mode = DEADLINE_MODE_IS_ON(qopt);
Vedang Pateld14d2b22019-06-25 15:07:14 -0700395 q->skip_sock_check = SKIP_SOCK_CHECK_IS_SET(qopt);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700396
397 switch (q->clockid) {
398 case CLOCK_REALTIME:
399 q->get_time = ktime_get_real;
400 break;
401 case CLOCK_MONOTONIC:
402 q->get_time = ktime_get;
403 break;
404 case CLOCK_BOOTTIME:
405 q->get_time = ktime_get_boottime;
406 break;
407 case CLOCK_TAI:
408 q->get_time = ktime_get_clocktai;
409 break;
410 default:
411 NL_SET_ERR_MSG(extack, "Clockid is not supported");
412 return -ENOTSUPP;
413 }
414
415 qdisc_watchdog_init_clockid(&q->watchdog, sch, q->clockid);
416
417 return 0;
418}
419
420static void timesortedlist_clear(struct Qdisc *sch)
421{
422 struct etf_sched_data *q = qdisc_priv(sch);
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800423 struct rb_node *p = rb_first_cached(&q->head);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700424
425 while (p) {
426 struct sk_buff *skb = rb_to_skb(p);
427
428 p = rb_next(p);
429
Jesus Sanchez-Palencia09fd4862018-11-14 17:26:33 -0800430 rb_erase_cached(&skb->rbnode, &q->head);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700431 rtnl_kfree_skbs(skb, skb);
432 sch->q.qlen--;
433 }
434}
435
436static void etf_reset(struct Qdisc *sch)
437{
438 struct etf_sched_data *q = qdisc_priv(sch);
439
440 /* Only cancel watchdog if it's been initialized. */
441 if (q->watchdog.qdisc == sch)
442 qdisc_watchdog_cancel(&q->watchdog);
443
444 /* No matter which mode we are on, it's safe to clear both lists. */
445 timesortedlist_clear(sch);
446 __qdisc_reset_queue(&sch->q);
447
448 sch->qstats.backlog = 0;
449 sch->q.qlen = 0;
450
451 q->last = 0;
452}
453
454static void etf_destroy(struct Qdisc *sch)
455{
456 struct etf_sched_data *q = qdisc_priv(sch);
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700457 struct net_device *dev = qdisc_dev(sch);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700458
459 /* Only cancel watchdog if it's been initialized. */
460 if (q->watchdog.qdisc == sch)
461 qdisc_watchdog_cancel(&q->watchdog);
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700462
463 etf_disable_offload(dev, q);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700464}
465
466static int etf_dump(struct Qdisc *sch, struct sk_buff *skb)
467{
468 struct etf_sched_data *q = qdisc_priv(sch);
469 struct tc_etf_qopt opt = { };
470 struct nlattr *nest;
471
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200472 nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700473 if (!nest)
474 goto nla_put_failure;
475
476 opt.delta = q->delta;
477 opt.clockid = q->clockid;
Jesus Sanchez-Palencia88cab772018-07-03 15:42:54 -0700478 if (q->offload)
479 opt.flags |= TC_ETF_OFFLOAD_ON;
480
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700481 if (q->deadline_mode)
482 opt.flags |= TC_ETF_DEADLINE_MODE_ON;
483
Vedang Pateld14d2b22019-06-25 15:07:14 -0700484 if (q->skip_sock_check)
485 opt.flags |= TC_ETF_SKIP_SOCK_CHECK;
486
Vinicius Costa Gomes25db26a2018-07-03 15:42:53 -0700487 if (nla_put(skb, TCA_ETF_PARMS, sizeof(opt), &opt))
488 goto nla_put_failure;
489
490 return nla_nest_end(skb, nest);
491
492nla_put_failure:
493 nla_nest_cancel(skb, nest);
494 return -1;
495}
496
497static struct Qdisc_ops etf_qdisc_ops __read_mostly = {
498 .id = "etf",
499 .priv_size = sizeof(struct etf_sched_data),
500 .enqueue = etf_enqueue_timesortedlist,
501 .dequeue = etf_dequeue_timesortedlist,
502 .peek = etf_peek_timesortedlist,
503 .init = etf_init,
504 .reset = etf_reset,
505 .destroy = etf_destroy,
506 .dump = etf_dump,
507 .owner = THIS_MODULE,
508};
509
510static int __init etf_module_init(void)
511{
512 return register_qdisc(&etf_qdisc_ops);
513}
514
515static void __exit etf_module_exit(void)
516{
517 unregister_qdisc(&etf_qdisc_ops);
518}
519module_init(etf_module_init)
520module_exit(etf_module_exit)
521MODULE_LICENSE("GPL");