blob: 2342bf12cb78a07fb44cbd389fb548cf38801ec3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __NET_PKT_SCHED_H
2#define __NET_PKT_SCHED_H
3
Patrick McHardy538e43a2006-01-08 22:12:03 -08004#include <linux/jiffies.h>
Patrick McHardy641b9e02007-03-16 01:18:42 -07005#include <linux/ktime.h>
Jiri Pirkod8b96052015-01-13 17:13:43 +01006#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <net/sch_generic.h>
8
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +00009struct qdisc_walker {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 int stop;
11 int skip;
12 int count;
13 int (*fn)(struct Qdisc *, unsigned long cl, struct qdisc_walker *);
14};
15
Eric Dumazet5d944c62010-03-31 07:06:04 +000016#define QDISC_ALIGNTO 64
Thomas Graf3d54b822005-07-05 14:15:09 -070017#define QDISC_ALIGN(len) (((len) + QDISC_ALIGNTO-1) & ~(QDISC_ALIGNTO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19static inline void *qdisc_priv(struct Qdisc *q)
20{
Thomas Graf3d54b822005-07-05 14:15:09 -070021 return (char *) q + QDISC_ALIGN(sizeof(struct Qdisc));
Linus Torvalds1da177e2005-04-16 15:20:36 -070022}
23
24/*
25 Timer resolution MUST BE < 10% of min_schedulable_packet_size/bandwidth
26
27 Normal IP packet size ~ 512byte, hence:
28
29 0.5Kbyte/1Mbyte/sec = 0.5msec, so that we need 50usec timer for
30 10Mbit ethernet.
31
32 10msec resolution -> <50Kbit/sec.
33
34 The result: [34]86 is not good choice for QoS router :-(
35
Lucas De Marchi25985ed2011-03-30 22:57:33 -030036 The things are not so bad, because we may use artificial
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 clock evaluated by integration of network data flow
38 in the most critical places.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041typedef u64 psched_time_t;
42typedef long psched_tdiff_t;
43
Jarek Poplawskia4a710c2009-06-08 22:05:13 +000044/* Avoid doing 64 bit divide */
45#define PSCHED_SHIFT 6
Jarek Poplawskica44d6e2009-06-15 02:31:47 -070046#define PSCHED_TICKS2NS(x) ((s64)(x) << PSCHED_SHIFT)
47#define PSCHED_NS2TICKS(x) ((x) >> PSCHED_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jarek Poplawskica44d6e2009-06-15 02:31:47 -070049#define PSCHED_TICKS_PER_SEC PSCHED_NS2TICKS(NSEC_PER_SEC)
Patrick McHardya0849802007-03-23 11:28:30 -070050#define PSCHED_PASTPERFECT 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Patrick McHardy3bebcda2007-03-23 11:29:25 -070052static inline psched_time_t psched_get_time(void)
53{
Eric Dumazetd2de8752014-08-22 18:32:09 -070054 return PSCHED_NS2TICKS(ktime_get_ns());
Patrick McHardy3bebcda2007-03-23 11:29:25 -070055}
56
Patrick McHardy03cc45c2007-03-23 11:29:11 -070057static inline psched_tdiff_t
58psched_tdiff_bounded(psched_time_t tv1, psched_time_t tv2, psched_time_t bound)
59{
60 return min(tv1 - tv2, bound);
61}
62
Patrick McHardy41794772007-03-16 01:19:15 -070063struct qdisc_watchdog {
64 struct hrtimer timer;
65 struct Qdisc *qdisc;
66};
67
Joe Perches5c152572013-07-30 22:47:13 -070068void qdisc_watchdog_init(struct qdisc_watchdog *wd, struct Qdisc *qdisc);
Eric Dumazetf2600cf2014-10-04 10:11:31 -070069void qdisc_watchdog_schedule_ns(struct qdisc_watchdog *wd, u64 expires, bool throttle);
Jiri Pirko34c5d292013-02-12 00:12:04 +000070
71static inline void qdisc_watchdog_schedule(struct qdisc_watchdog *wd,
72 psched_time_t expires)
73{
Eric Dumazetf2600cf2014-10-04 10:11:31 -070074 qdisc_watchdog_schedule_ns(wd, PSCHED_TICKS2NS(expires), true);
Jiri Pirko34c5d292013-02-12 00:12:04 +000075}
76
Joe Perches5c152572013-07-30 22:47:13 -070077void qdisc_watchdog_cancel(struct qdisc_watchdog *wd);
Patrick McHardy41794772007-03-16 01:19:15 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079extern struct Qdisc_ops pfifo_qdisc_ops;
80extern struct Qdisc_ops bfifo_qdisc_ops;
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +000081extern struct Qdisc_ops pfifo_head_drop_qdisc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Joe Perches5c152572013-07-30 22:47:13 -070083int fifo_set_limit(struct Qdisc *q, unsigned int limit);
84struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops,
85 unsigned int limit);
Patrick McHardyfb0305c2008-07-05 23:40:21 -070086
Joe Perches5c152572013-07-30 22:47:13 -070087int register_qdisc(struct Qdisc_ops *qops);
88int unregister_qdisc(struct Qdisc_ops *qops);
stephen hemminger6da7c8f2013-08-27 16:19:08 -070089void qdisc_get_default(char *id, size_t len);
90int qdisc_set_default(const char *id);
91
Eric Dumazet95dc1922013-12-05 11:12:02 -080092void qdisc_list_add(struct Qdisc *q);
Joe Perches5c152572013-07-30 22:47:13 -070093void qdisc_list_del(struct Qdisc *q);
94struct Qdisc *qdisc_lookup(struct net_device *dev, u32 handle);
95struct Qdisc *qdisc_lookup_class(struct net_device *dev, u32 handle);
96struct qdisc_rate_table *qdisc_get_rtab(struct tc_ratespec *r,
97 struct nlattr *tab);
98void qdisc_put_rtab(struct qdisc_rate_table *tab);
99void qdisc_put_stab(struct qdisc_size_table *tab);
Florian Westphal6e765a02014-06-11 20:35:18 +0200100void qdisc_warn_nonwc(const char *txt, struct Qdisc *qdisc);
Joe Perches5c152572013-07-30 22:47:13 -0700101int sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q,
102 struct net_device *dev, struct netdev_queue *txq,
Eric Dumazet55a93b32014-10-03 15:31:07 -0700103 spinlock_t *root_lock, bool validate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Joe Perches5c152572013-07-30 22:47:13 -0700105void __qdisc_run(struct Qdisc *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
David S. Miller37437bb2008-07-16 02:15:04 -0700107static inline void qdisc_run(struct Qdisc *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Eric Dumazetbc135b22010-06-02 03:23:51 -0700109 if (qdisc_run_begin(q))
David S. Miller37437bb2008-07-16 02:15:04 -0700110 __qdisc_run(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Joe Perches5c152572013-07-30 22:47:13 -0700113int tc_classify_compat(struct sk_buff *skb, const struct tcf_proto *tp,
Patrick McHardy73ca4912007-07-15 00:02:31 -0700114 struct tcf_result *res);
Joe Perches5c152572013-07-30 22:47:13 -0700115int tc_classify(struct sk_buff *skb, const struct tcf_proto *tp,
116 struct tcf_result *res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Jiri Pirkod8b96052015-01-13 17:13:43 +0100118static inline __be16 tc_skb_protocol(const struct sk_buff *skb)
119{
120 /* We need to take extra care in case the skb came via
121 * vlan accelerated path. In that case, use skb->vlan_proto
122 * as the original vlan header was already stripped.
123 */
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100124 if (skb_vlan_tag_present(skb))
Jiri Pirkod8b96052015-01-13 17:13:43 +0100125 return skb->vlan_proto;
126 return skb->protocol;
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/* Calculate maximal size of packet seen by hard_start_xmit
130 routine of this device.
131 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000132static inline unsigned int psched_mtu(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700134 return dev->mtu + dev->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137#endif