Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/sch_sfq.c Stochastic Fairness Queueing discipline. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version |
| 7 | * 2 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/types.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/jiffies.h> |
| 16 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/in.h> |
| 18 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/init.h> |
Patrick McHardy | 0ba4805 | 2007-07-02 22:49:07 -0700 | [diff] [blame] | 20 | #include <linux/skbuff.h> |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 21 | #include <linux/jhash.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 23 | #include <linux/vmalloc.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 24 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <net/pkt_sched.h> |
Eric Dumazet | 11fca93 | 2011-11-29 03:40:45 +0000 | [diff] [blame] | 26 | #include <net/flow_keys.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | |
| 29 | /* Stochastic Fairness Queuing algorithm. |
| 30 | ======================================= |
| 31 | |
| 32 | Source: |
| 33 | Paul E. McKenney "Stochastic Fairness Queuing", |
| 34 | IEEE INFOCOMM'90 Proceedings, San Francisco, 1990. |
| 35 | |
| 36 | Paul E. McKenney "Stochastic Fairness Queuing", |
| 37 | "Interworking: Research and Experience", v.2, 1991, p.113-131. |
| 38 | |
| 39 | |
| 40 | See also: |
| 41 | M. Shreedhar and George Varghese "Efficient Fair |
| 42 | Queuing using Deficit Round Robin", Proc. SIGCOMM 95. |
| 43 | |
| 44 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 45 | This is not the thing that is usually called (W)FQ nowadays. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | It does not use any timestamp mechanism, but instead |
| 47 | processes queues in round-robin order. |
| 48 | |
| 49 | ADVANTAGE: |
| 50 | |
| 51 | - It is very cheap. Both CPU and memory requirements are minimal. |
| 52 | |
| 53 | DRAWBACKS: |
| 54 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 55 | - "Stochastic" -> It is not 100% fair. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | When hash collisions occur, several flows are considered as one. |
| 57 | |
| 58 | - "Round-robin" -> It introduces larger delays than virtual clock |
| 59 | based schemes, and should not be used for isolating interactive |
| 60 | traffic from non-interactive. It means, that this scheduler |
| 61 | should be used as leaf of CBQ or P3, which put interactive traffic |
| 62 | to higher priority band. |
| 63 | |
| 64 | We still need true WFQ for top level CSZ, but using WFQ |
| 65 | for the best effort traffic is absolutely pointless: |
| 66 | SFQ is superior for this purpose. |
| 67 | |
| 68 | IMPLEMENTATION: |
| 69 | This implementation limits maximal queue length to 128; |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 70 | max mtu to 2^18-1; max 128 flows, number of hash buckets to 1024. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | The only goal of this restrictions was that all data |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 72 | fit into one 4K page on 32bit arches. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | It is easy to increase these values, but not in flight. */ |
| 75 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 76 | #define SFQ_DEPTH 128 /* max number of packets per flow */ |
| 77 | #define SFQ_SLOTS 128 /* max number of flows */ |
| 78 | #define SFQ_EMPTY_SLOT 255 |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 79 | #define SFQ_DEFAULT_HASH_DIVISOR 1024 |
| 80 | |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 81 | /* We use 16 bits to store allot, and want to handle packets up to 64K |
| 82 | * Scale allot by 8 (1<<3) so that no overflow occurs. |
| 83 | */ |
| 84 | #define SFQ_ALLOT_SHIFT 3 |
| 85 | #define SFQ_ALLOT_SIZE(X) DIV_ROUND_UP(X, 1 << SFQ_ALLOT_SHIFT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 87 | /* This type should contain at least SFQ_DEPTH + SFQ_SLOTS values */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | typedef unsigned char sfq_index; |
| 89 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 90 | /* |
| 91 | * We dont use pointers to save space. |
| 92 | * Small indexes [0 ... SFQ_SLOTS - 1] are 'pointers' to slots[] array |
| 93 | * while following values [SFQ_SLOTS ... SFQ_SLOTS + SFQ_DEPTH - 1] |
| 94 | * are 'pointers' to dep[] array |
| 95 | */ |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 96 | struct sfq_head { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | sfq_index next; |
| 98 | sfq_index prev; |
| 99 | }; |
| 100 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 101 | struct sfq_slot { |
| 102 | struct sk_buff *skblist_next; |
| 103 | struct sk_buff *skblist_prev; |
| 104 | sfq_index qlen; /* number of skbs in skblist */ |
| 105 | sfq_index next; /* next slot in sfq chain */ |
| 106 | struct sfq_head dep; /* anchor in dep[] chains */ |
| 107 | unsigned short hash; /* hash value (index in ht[]) */ |
| 108 | short allot; /* credit for this slot */ |
| 109 | }; |
| 110 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 111 | struct sfq_sched_data { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | /* Parameters */ |
| 113 | int perturb_period; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 114 | unsigned int quantum; /* Allotment per round: MUST BE >= MTU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | int limit; |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 116 | unsigned int divisor; /* number of slots in hash table */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | /* Variables */ |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 118 | struct tcf_proto *filter_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | struct timer_list perturb_timer; |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 120 | u32 perturbation; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 121 | sfq_index cur_depth; /* depth of longest slot */ |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 122 | unsigned short scaled_quantum; /* SFQ_ALLOT_SIZE(quantum) */ |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 123 | struct sfq_slot *tail; /* current slot in round */ |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 124 | sfq_index *ht; /* Hash table (divisor slots) */ |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 125 | struct sfq_slot slots[SFQ_SLOTS]; |
| 126 | struct sfq_head dep[SFQ_DEPTH]; /* Linked list of slots, indexed by depth */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | }; |
| 128 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 129 | /* |
| 130 | * sfq_head are either in a sfq_slot or in dep[] array |
| 131 | */ |
| 132 | static inline struct sfq_head *sfq_dep_head(struct sfq_sched_data *q, sfq_index val) |
| 133 | { |
| 134 | if (val < SFQ_SLOTS) |
| 135 | return &q->slots[val].dep; |
| 136 | return &q->dep[val - SFQ_SLOTS]; |
| 137 | } |
| 138 | |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 139 | /* |
| 140 | * In order to be able to quickly rehash our queue when timer changes |
| 141 | * q->perturbation, we store flow_keys in skb->cb[] |
| 142 | */ |
| 143 | struct sfq_skb_cb { |
| 144 | struct flow_keys keys; |
| 145 | }; |
| 146 | |
| 147 | static inline struct sfq_skb_cb *sfq_skb_cb(const struct sk_buff *skb) |
| 148 | { |
| 149 | BUILD_BUG_ON(sizeof(skb->cb) < |
| 150 | sizeof(struct qdisc_skb_cb) + sizeof(struct sfq_skb_cb)); |
| 151 | return (struct sfq_skb_cb *)qdisc_skb_cb(skb)->data; |
| 152 | } |
| 153 | |
Eric Dumazet | 11fca93 | 2011-11-29 03:40:45 +0000 | [diff] [blame] | 154 | static unsigned int sfq_hash(const struct sfq_sched_data *q, |
| 155 | const struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 157 | const struct flow_keys *keys = &sfq_skb_cb(skb)->keys; |
Eric Dumazet | 11fca93 | 2011-11-29 03:40:45 +0000 | [diff] [blame] | 158 | unsigned int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 160 | hash = jhash_3words((__force u32)keys->dst, |
| 161 | (__force u32)keys->src ^ keys->ip_proto, |
| 162 | (__force u32)keys->ports, q->perturbation); |
Eric Dumazet | 11fca93 | 2011-11-29 03:40:45 +0000 | [diff] [blame] | 163 | return hash & (q->divisor - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 166 | static unsigned int sfq_classify(struct sk_buff *skb, struct Qdisc *sch, |
| 167 | int *qerr) |
| 168 | { |
| 169 | struct sfq_sched_data *q = qdisc_priv(sch); |
| 170 | struct tcf_result res; |
| 171 | int result; |
| 172 | |
| 173 | if (TC_H_MAJ(skb->priority) == sch->handle && |
| 174 | TC_H_MIN(skb->priority) > 0 && |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 175 | TC_H_MIN(skb->priority) <= q->divisor) |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 176 | return TC_H_MIN(skb->priority); |
| 177 | |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 178 | if (!q->filter_list) { |
| 179 | skb_flow_dissect(skb, &sfq_skb_cb(skb)->keys); |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 180 | return sfq_hash(q, skb) + 1; |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 181 | } |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 182 | |
Jarek Poplawski | c27f339 | 2008-08-04 22:39:11 -0700 | [diff] [blame] | 183 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS; |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 184 | result = tc_classify(skb, q->filter_list, &res); |
| 185 | if (result >= 0) { |
| 186 | #ifdef CONFIG_NET_CLS_ACT |
| 187 | switch (result) { |
| 188 | case TC_ACT_STOLEN: |
| 189 | case TC_ACT_QUEUED: |
Jarek Poplawski | 378a2f0 | 2008-08-04 22:31:03 -0700 | [diff] [blame] | 190 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN; |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 191 | case TC_ACT_SHOT: |
| 192 | return 0; |
| 193 | } |
| 194 | #endif |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 195 | if (TC_H_MIN(res.classid) <= q->divisor) |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 196 | return TC_H_MIN(res.classid); |
| 197 | } |
| 198 | return 0; |
| 199 | } |
| 200 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 201 | /* |
| 202 | * x : slot number [0 .. SFQ_SLOTS - 1] |
| 203 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | static inline void sfq_link(struct sfq_sched_data *q, sfq_index x) |
| 205 | { |
| 206 | sfq_index p, n; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 207 | int qlen = q->slots[x].qlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 209 | p = qlen + SFQ_SLOTS; |
| 210 | n = q->dep[qlen].next; |
| 211 | |
| 212 | q->slots[x].dep.next = n; |
| 213 | q->slots[x].dep.prev = p; |
| 214 | |
| 215 | q->dep[qlen].next = x; /* sfq_dep_head(q, p)->next = x */ |
| 216 | sfq_dep_head(q, n)->prev = x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 219 | #define sfq_unlink(q, x, n, p) \ |
| 220 | n = q->slots[x].dep.next; \ |
| 221 | p = q->slots[x].dep.prev; \ |
| 222 | sfq_dep_head(q, p)->next = n; \ |
| 223 | sfq_dep_head(q, n)->prev = p |
| 224 | |
| 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | static inline void sfq_dec(struct sfq_sched_data *q, sfq_index x) |
| 227 | { |
| 228 | sfq_index p, n; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 229 | int d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 231 | sfq_unlink(q, x, n, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 233 | d = q->slots[x].qlen--; |
| 234 | if (n == p && q->cur_depth == d) |
| 235 | q->cur_depth--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | sfq_link(q, x); |
| 237 | } |
| 238 | |
| 239 | static inline void sfq_inc(struct sfq_sched_data *q, sfq_index x) |
| 240 | { |
| 241 | sfq_index p, n; |
| 242 | int d; |
| 243 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 244 | sfq_unlink(q, x, n, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 246 | d = ++q->slots[x].qlen; |
| 247 | if (q->cur_depth < d) |
| 248 | q->cur_depth = d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | sfq_link(q, x); |
| 250 | } |
| 251 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 252 | /* helper functions : might be changed when/if skb use a standard list_head */ |
| 253 | |
| 254 | /* remove one skb from tail of slot queue */ |
| 255 | static inline struct sk_buff *slot_dequeue_tail(struct sfq_slot *slot) |
| 256 | { |
| 257 | struct sk_buff *skb = slot->skblist_prev; |
| 258 | |
| 259 | slot->skblist_prev = skb->prev; |
Eric Dumazet | ee09b3c | 2010-12-22 11:39:59 -0800 | [diff] [blame] | 260 | skb->prev->next = (struct sk_buff *)slot; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 261 | skb->next = skb->prev = NULL; |
| 262 | return skb; |
| 263 | } |
| 264 | |
| 265 | /* remove one skb from head of slot queue */ |
| 266 | static inline struct sk_buff *slot_dequeue_head(struct sfq_slot *slot) |
| 267 | { |
| 268 | struct sk_buff *skb = slot->skblist_next; |
| 269 | |
| 270 | slot->skblist_next = skb->next; |
Eric Dumazet | 18c8d82 | 2010-12-31 12:48:55 -0800 | [diff] [blame] | 271 | skb->next->prev = (struct sk_buff *)slot; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 272 | skb->next = skb->prev = NULL; |
| 273 | return skb; |
| 274 | } |
| 275 | |
| 276 | static inline void slot_queue_init(struct sfq_slot *slot) |
| 277 | { |
| 278 | slot->skblist_prev = slot->skblist_next = (struct sk_buff *)slot; |
| 279 | } |
| 280 | |
| 281 | /* add skb to slot queue (tail add) */ |
| 282 | static inline void slot_queue_add(struct sfq_slot *slot, struct sk_buff *skb) |
| 283 | { |
| 284 | skb->prev = slot->skblist_prev; |
| 285 | skb->next = (struct sk_buff *)slot; |
| 286 | slot->skblist_prev->next = skb; |
| 287 | slot->skblist_prev = skb; |
| 288 | } |
| 289 | |
| 290 | #define slot_queue_walk(slot, skb) \ |
| 291 | for (skb = slot->skblist_next; \ |
| 292 | skb != (struct sk_buff *)slot; \ |
| 293 | skb = skb->next) |
| 294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | static unsigned int sfq_drop(struct Qdisc *sch) |
| 296 | { |
| 297 | struct sfq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 298 | sfq_index x, d = q->cur_depth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | struct sk_buff *skb; |
| 300 | unsigned int len; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 301 | struct sfq_slot *slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 303 | /* Queue is full! Find the longest slot and drop tail packet from it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | if (d > 1) { |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 305 | x = q->dep[d].next; |
| 306 | slot = &q->slots[x]; |
| 307 | drop: |
| 308 | skb = slot_dequeue_tail(slot); |
Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 309 | len = qdisc_pkt_len(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | sfq_dec(q, x); |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 311 | kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | sch->q.qlen--; |
| 313 | sch->qstats.drops++; |
Patrick McHardy | f5539eb | 2006-03-20 19:01:38 -0800 | [diff] [blame] | 314 | sch->qstats.backlog -= len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | return len; |
| 316 | } |
| 317 | |
| 318 | if (d == 1) { |
| 319 | /* It is difficult to believe, but ALL THE SLOTS HAVE LENGTH 1. */ |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 320 | x = q->tail->next; |
| 321 | slot = &q->slots[x]; |
| 322 | q->tail->next = slot->next; |
| 323 | q->ht[slot->hash] = SFQ_EMPTY_SLOT; |
| 324 | goto drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | static int |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 331 | sfq_enqueue(struct sk_buff *skb, struct Qdisc *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { |
| 333 | struct sfq_sched_data *q = qdisc_priv(sch); |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 334 | unsigned int hash; |
Eric Dumazet | 8efa885 | 2011-05-23 11:02:42 +0000 | [diff] [blame] | 335 | sfq_index x, qlen; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 336 | struct sfq_slot *slot; |
Jarek Poplawski | 7f3ff4f | 2008-12-21 20:14:48 -0800 | [diff] [blame] | 337 | int uninitialized_var(ret); |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 338 | |
| 339 | hash = sfq_classify(skb, sch, &ret); |
| 340 | if (hash == 0) { |
Jarek Poplawski | c27f339 | 2008-08-04 22:39:11 -0700 | [diff] [blame] | 341 | if (ret & __NET_XMIT_BYPASS) |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 342 | sch->qstats.drops++; |
| 343 | kfree_skb(skb); |
| 344 | return ret; |
| 345 | } |
| 346 | hash--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | x = q->ht[hash]; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 349 | slot = &q->slots[x]; |
| 350 | if (x == SFQ_EMPTY_SLOT) { |
| 351 | x = q->dep[0].next; /* get a free slot */ |
| 352 | q->ht[hash] = x; |
| 353 | slot = &q->slots[x]; |
| 354 | slot->hash = hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 356 | |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 357 | /* If selected queue has length q->limit, do simple tail drop, |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 358 | * i.e. drop _this_ packet. |
| 359 | */ |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 360 | if (slot->qlen >= q->limit) |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 361 | return qdisc_drop(skb, sch); |
| 362 | |
Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 363 | sch->qstats.backlog += qdisc_pkt_len(skb); |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 364 | slot_queue_add(slot, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | sfq_inc(q, x); |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 366 | if (slot->qlen == 1) { /* The flow is new */ |
| 367 | if (q->tail == NULL) { /* It is the first flow */ |
| 368 | slot->next = x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } else { |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 370 | slot->next = q->tail->next; |
| 371 | q->tail->next = x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 373 | q->tail = slot; |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 374 | slot->allot = q->scaled_quantum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 376 | if (++sch->q.qlen <= q->limit) |
Ben Greear | 9871e50 | 2010-08-10 01:45:40 -0700 | [diff] [blame] | 377 | return NET_XMIT_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Eric Dumazet | 8efa885 | 2011-05-23 11:02:42 +0000 | [diff] [blame] | 379 | qlen = slot->qlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | sfq_drop(sch); |
Eric Dumazet | 8efa885 | 2011-05-23 11:02:42 +0000 | [diff] [blame] | 381 | /* Return Congestion Notification only if we dropped a packet |
| 382 | * from this flow. |
| 383 | */ |
Eric Dumazet | e1738bd | 2011-07-29 19:22:42 +0000 | [diff] [blame] | 384 | if (qlen != slot->qlen) |
| 385 | return NET_XMIT_CN; |
| 386 | |
| 387 | /* As we dropped a packet, better let upper stack know this */ |
| 388 | qdisc_tree_decrease_qlen(sch, 1); |
| 389 | return NET_XMIT_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | } |
| 391 | |
Patrick McHardy | 48a8f51 | 2008-10-31 00:44:18 -0700 | [diff] [blame] | 392 | static struct sk_buff * |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 393 | sfq_dequeue(struct Qdisc *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | { |
| 395 | struct sfq_sched_data *q = qdisc_priv(sch); |
| 396 | struct sk_buff *skb; |
Eric Dumazet | aa3e219 | 2010-12-20 13:18:16 -0800 | [diff] [blame] | 397 | sfq_index a, next_a; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 398 | struct sfq_slot *slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | /* No active slots */ |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 401 | if (q->tail == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | return NULL; |
| 403 | |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 404 | next_slot: |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 405 | a = q->tail->next; |
| 406 | slot = &q->slots[a]; |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 407 | if (slot->allot <= 0) { |
| 408 | q->tail = slot; |
| 409 | slot->allot += q->scaled_quantum; |
| 410 | goto next_slot; |
| 411 | } |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 412 | skb = slot_dequeue_head(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | sfq_dec(q, a); |
Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 414 | qdisc_bstats_update(sch, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | sch->q.qlen--; |
Jussi Kivilinna | 0abf77e | 2008-07-20 00:08:27 -0700 | [diff] [blame] | 416 | sch->qstats.backlog -= qdisc_pkt_len(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | /* Is the slot empty? */ |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 419 | if (slot->qlen == 0) { |
| 420 | q->ht[slot->hash] = SFQ_EMPTY_SLOT; |
| 421 | next_a = slot->next; |
Eric Dumazet | aa3e219 | 2010-12-20 13:18:16 -0800 | [diff] [blame] | 422 | if (a == next_a) { |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 423 | q->tail = NULL; /* no more active slots */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return skb; |
| 425 | } |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 426 | q->tail->next = next_a; |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 427 | } else { |
| 428 | slot->allot -= SFQ_ALLOT_SIZE(qdisc_pkt_len(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
| 430 | return skb; |
| 431 | } |
| 432 | |
| 433 | static void |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 434 | sfq_reset(struct Qdisc *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
| 436 | struct sk_buff *skb; |
| 437 | |
| 438 | while ((skb = sfq_dequeue(sch)) != NULL) |
| 439 | kfree_skb(skb); |
| 440 | } |
| 441 | |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 442 | /* |
| 443 | * When q->perturbation is changed, we rehash all queued skbs |
| 444 | * to avoid OOO (Out Of Order) effects. |
| 445 | * We dont use sfq_dequeue()/sfq_enqueue() because we dont want to change |
| 446 | * counters. |
| 447 | */ |
| 448 | static void sfq_rehash(struct sfq_sched_data *q) |
| 449 | { |
| 450 | struct sk_buff *skb; |
| 451 | int i; |
| 452 | struct sfq_slot *slot; |
| 453 | struct sk_buff_head list; |
| 454 | |
| 455 | __skb_queue_head_init(&list); |
| 456 | |
| 457 | for (i = 0; i < SFQ_SLOTS; i++) { |
| 458 | slot = &q->slots[i]; |
| 459 | if (!slot->qlen) |
| 460 | continue; |
| 461 | while (slot->qlen) { |
| 462 | skb = slot_dequeue_head(slot); |
| 463 | sfq_dec(q, i); |
| 464 | __skb_queue_tail(&list, skb); |
| 465 | } |
| 466 | q->ht[slot->hash] = SFQ_EMPTY_SLOT; |
| 467 | } |
| 468 | q->tail = NULL; |
| 469 | |
| 470 | while ((skb = __skb_dequeue(&list)) != NULL) { |
| 471 | unsigned int hash = sfq_hash(q, skb); |
| 472 | sfq_index x = q->ht[hash]; |
| 473 | |
| 474 | slot = &q->slots[x]; |
| 475 | if (x == SFQ_EMPTY_SLOT) { |
| 476 | x = q->dep[0].next; /* get a free slot */ |
| 477 | q->ht[hash] = x; |
| 478 | slot = &q->slots[x]; |
| 479 | slot->hash = hash; |
| 480 | } |
| 481 | slot_queue_add(slot, skb); |
| 482 | sfq_inc(q, x); |
| 483 | if (slot->qlen == 1) { /* The flow is new */ |
| 484 | if (q->tail == NULL) { /* It is the first flow */ |
| 485 | slot->next = x; |
| 486 | } else { |
| 487 | slot->next = q->tail->next; |
| 488 | q->tail->next = x; |
| 489 | } |
| 490 | q->tail = slot; |
| 491 | slot->allot = q->scaled_quantum; |
| 492 | } |
| 493 | } |
| 494 | } |
| 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | static void sfq_perturbation(unsigned long arg) |
| 497 | { |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 498 | struct Qdisc *sch = (struct Qdisc *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | struct sfq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 500 | spinlock_t *root_lock = qdisc_lock(qdisc_root_sleeping(sch)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 502 | spin_lock(root_lock); |
Stephen Hemminger | d46f8dd | 2008-01-20 17:19:43 -0800 | [diff] [blame] | 503 | q->perturbation = net_random(); |
Eric Dumazet | 225d9b8 | 2011-12-21 03:30:11 +0000 | [diff] [blame^] | 504 | if (!q->filter_list && q->tail) |
| 505 | sfq_rehash(q); |
| 506 | spin_unlock(root_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 508 | if (q->perturb_period) |
| 509 | mod_timer(&q->perturb_timer, jiffies + q->perturb_period); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 512 | static int sfq_change(struct Qdisc *sch, struct nlattr *opt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
| 514 | struct sfq_sched_data *q = qdisc_priv(sch); |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 515 | struct tc_sfq_qopt *ctl = nla_data(opt); |
Patrick McHardy | 5e50da0 | 2006-11-29 17:36:20 -0800 | [diff] [blame] | 516 | unsigned int qlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 518 | if (opt->nla_len < nla_attr_size(sizeof(*ctl))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | return -EINVAL; |
| 520 | |
stephen hemminger | 119b3d3 | 2011-02-02 15:19:51 +0000 | [diff] [blame] | 521 | if (ctl->divisor && |
| 522 | (!is_power_of_2(ctl->divisor) || ctl->divisor > 65536)) |
| 523 | return -EINVAL; |
| 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | sch_tree_lock(sch); |
David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 526 | q->quantum = ctl->quantum ? : psched_mtu(qdisc_dev(sch)); |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 527 | q->scaled_quantum = SFQ_ALLOT_SIZE(q->quantum); |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 528 | q->perturb_period = ctl->perturb_period * HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | if (ctl->limit) |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 530 | q->limit = min_t(u32, ctl->limit, SFQ_DEPTH - 1); |
stephen hemminger | 119b3d3 | 2011-02-02 15:19:51 +0000 | [diff] [blame] | 531 | if (ctl->divisor) |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 532 | q->divisor = ctl->divisor; |
Patrick McHardy | 5e50da0 | 2006-11-29 17:36:20 -0800 | [diff] [blame] | 533 | qlen = sch->q.qlen; |
Alexey Kuznetsov | 5588b40 | 2007-09-19 10:42:03 -0700 | [diff] [blame] | 534 | while (sch->q.qlen > q->limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | sfq_drop(sch); |
Patrick McHardy | 5e50da0 | 2006-11-29 17:36:20 -0800 | [diff] [blame] | 536 | qdisc_tree_decrease_qlen(sch, qlen - sch->q.qlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
| 538 | del_timer(&q->perturb_timer); |
| 539 | if (q->perturb_period) { |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 540 | mod_timer(&q->perturb_timer, jiffies + q->perturb_period); |
Stephen Hemminger | d46f8dd | 2008-01-20 17:19:43 -0800 | [diff] [blame] | 541 | q->perturbation = net_random(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | } |
| 543 | sch_tree_unlock(sch); |
| 544 | return 0; |
| 545 | } |
| 546 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 547 | static int sfq_init(struct Qdisc *sch, struct nlattr *opt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | { |
| 549 | struct sfq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 550 | size_t sz; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | int i; |
| 552 | |
Stephen Hemminger | d3e9948 | 2008-01-20 17:18:45 -0800 | [diff] [blame] | 553 | q->perturb_timer.function = sfq_perturbation; |
Fernando Carrijo | c19a28e | 2009-01-07 18:09:08 -0800 | [diff] [blame] | 554 | q->perturb_timer.data = (unsigned long)sch; |
Stephen Hemminger | d3e9948 | 2008-01-20 17:18:45 -0800 | [diff] [blame] | 555 | init_timer_deferrable(&q->perturb_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 557 | for (i = 0; i < SFQ_DEPTH; i++) { |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 558 | q->dep[i].next = i + SFQ_SLOTS; |
| 559 | q->dep[i].prev = i + SFQ_SLOTS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | } |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 561 | |
Alexey Kuznetsov | 32740dd | 2007-09-30 17:51:33 -0700 | [diff] [blame] | 562 | q->limit = SFQ_DEPTH - 1; |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 563 | q->cur_depth = 0; |
| 564 | q->tail = NULL; |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 565 | q->divisor = SFQ_DEFAULT_HASH_DIVISOR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | if (opt == NULL) { |
David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 567 | q->quantum = psched_mtu(qdisc_dev(sch)); |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 568 | q->scaled_quantum = SFQ_ALLOT_SIZE(q->quantum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | q->perturb_period = 0; |
Stephen Hemminger | d46f8dd | 2008-01-20 17:19:43 -0800 | [diff] [blame] | 570 | q->perturbation = net_random(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } else { |
| 572 | int err = sfq_change(sch, opt); |
| 573 | if (err) |
| 574 | return err; |
| 575 | } |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 576 | |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 577 | sz = sizeof(q->ht[0]) * q->divisor; |
| 578 | q->ht = kmalloc(sz, GFP_KERNEL); |
| 579 | if (!q->ht && sz > PAGE_SIZE) |
| 580 | q->ht = vmalloc(sz); |
| 581 | if (!q->ht) |
| 582 | return -ENOMEM; |
| 583 | for (i = 0; i < q->divisor; i++) |
| 584 | q->ht[i] = SFQ_EMPTY_SLOT; |
| 585 | |
Eric Dumazet | 18c8d82 | 2010-12-31 12:48:55 -0800 | [diff] [blame] | 586 | for (i = 0; i < SFQ_SLOTS; i++) { |
| 587 | slot_queue_init(&q->slots[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | sfq_link(q, i); |
Eric Dumazet | 18c8d82 | 2010-12-31 12:48:55 -0800 | [diff] [blame] | 589 | } |
Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 590 | if (q->limit >= 1) |
| 591 | sch->flags |= TCQ_F_CAN_BYPASS; |
| 592 | else |
| 593 | sch->flags &= ~TCQ_F_CAN_BYPASS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | return 0; |
| 595 | } |
| 596 | |
| 597 | static void sfq_destroy(struct Qdisc *sch) |
| 598 | { |
| 599 | struct sfq_sched_data *q = qdisc_priv(sch); |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 600 | |
Patrick McHardy | ff31ab5 | 2008-07-01 19:52:38 -0700 | [diff] [blame] | 601 | tcf_destroy_chain(&q->filter_list); |
Jarek Poplawski | 980c478 | 2008-04-29 03:29:03 -0700 | [diff] [blame] | 602 | q->perturb_period = 0; |
| 603 | del_timer_sync(&q->perturb_timer); |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 604 | if (is_vmalloc_addr(q->ht)) |
| 605 | vfree(q->ht); |
| 606 | else |
| 607 | kfree(q->ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | static int sfq_dump(struct Qdisc *sch, struct sk_buff *skb) |
| 611 | { |
| 612 | struct sfq_sched_data *q = qdisc_priv(sch); |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 613 | unsigned char *b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | struct tc_sfq_qopt opt; |
| 615 | |
| 616 | opt.quantum = q->quantum; |
Stephen Hemminger | 6f9e98f | 2008-01-20 17:20:56 -0800 | [diff] [blame] | 617 | opt.perturb_period = q->perturb_period / HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
| 619 | opt.limit = q->limit; |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 620 | opt.divisor = q->divisor; |
David S. Miller | cdec7e5 | 2008-07-26 02:28:09 -0700 | [diff] [blame] | 621 | opt.flows = q->limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 623 | NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
| 625 | return skb->len; |
| 626 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 627 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 628 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | return -1; |
| 630 | } |
| 631 | |
Jarek Poplawski | 41065fb | 2010-08-10 22:31:02 +0000 | [diff] [blame] | 632 | static struct Qdisc *sfq_leaf(struct Qdisc *sch, unsigned long arg) |
| 633 | { |
| 634 | return NULL; |
| 635 | } |
| 636 | |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 637 | static unsigned long sfq_get(struct Qdisc *sch, u32 classid) |
| 638 | { |
| 639 | return 0; |
| 640 | } |
| 641 | |
Jarek Poplawski | eb4a552 | 2010-08-06 00:22:35 +0000 | [diff] [blame] | 642 | static unsigned long sfq_bind(struct Qdisc *sch, unsigned long parent, |
| 643 | u32 classid) |
| 644 | { |
Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 645 | /* we cannot bypass queue discipline anymore */ |
| 646 | sch->flags &= ~TCQ_F_CAN_BYPASS; |
Jarek Poplawski | eb4a552 | 2010-08-06 00:22:35 +0000 | [diff] [blame] | 647 | return 0; |
| 648 | } |
| 649 | |
Jarek Poplawski | da7115d | 2010-08-09 12:18:17 +0000 | [diff] [blame] | 650 | static void sfq_put(struct Qdisc *q, unsigned long cl) |
| 651 | { |
| 652 | } |
| 653 | |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 654 | static struct tcf_proto **sfq_find_tcf(struct Qdisc *sch, unsigned long cl) |
| 655 | { |
| 656 | struct sfq_sched_data *q = qdisc_priv(sch); |
| 657 | |
| 658 | if (cl) |
| 659 | return NULL; |
| 660 | return &q->filter_list; |
| 661 | } |
| 662 | |
Patrick McHardy | 94de78d | 2008-01-31 18:37:16 -0800 | [diff] [blame] | 663 | static int sfq_dump_class(struct Qdisc *sch, unsigned long cl, |
| 664 | struct sk_buff *skb, struct tcmsg *tcm) |
| 665 | { |
| 666 | tcm->tcm_handle |= TC_H_MIN(cl); |
| 667 | return 0; |
| 668 | } |
| 669 | |
| 670 | static int sfq_dump_class_stats(struct Qdisc *sch, unsigned long cl, |
| 671 | struct gnet_dump *d) |
| 672 | { |
| 673 | struct sfq_sched_data *q = qdisc_priv(sch); |
Eric Dumazet | ee09b3c | 2010-12-22 11:39:59 -0800 | [diff] [blame] | 674 | sfq_index idx = q->ht[cl - 1]; |
| 675 | struct gnet_stats_queue qs = { 0 }; |
| 676 | struct tc_sfq_xstats xstats = { 0 }; |
Eric Dumazet | c426626 | 2010-12-15 08:18:36 +0000 | [diff] [blame] | 677 | struct sk_buff *skb; |
| 678 | |
Eric Dumazet | ee09b3c | 2010-12-22 11:39:59 -0800 | [diff] [blame] | 679 | if (idx != SFQ_EMPTY_SLOT) { |
| 680 | const struct sfq_slot *slot = &q->slots[idx]; |
Patrick McHardy | 94de78d | 2008-01-31 18:37:16 -0800 | [diff] [blame] | 681 | |
Eric Dumazet | eeaeb06 | 2010-12-28 21:53:33 +0000 | [diff] [blame] | 682 | xstats.allot = slot->allot << SFQ_ALLOT_SHIFT; |
Eric Dumazet | ee09b3c | 2010-12-22 11:39:59 -0800 | [diff] [blame] | 683 | qs.qlen = slot->qlen; |
| 684 | slot_queue_walk(slot, skb) |
| 685 | qs.backlog += qdisc_pkt_len(skb); |
| 686 | } |
Patrick McHardy | 94de78d | 2008-01-31 18:37:16 -0800 | [diff] [blame] | 687 | if (gnet_stats_copy_queue(d, &qs) < 0) |
| 688 | return -1; |
| 689 | return gnet_stats_copy_app(d, &xstats, sizeof(xstats)); |
| 690 | } |
| 691 | |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 692 | static void sfq_walk(struct Qdisc *sch, struct qdisc_walker *arg) |
| 693 | { |
Patrick McHardy | 94de78d | 2008-01-31 18:37:16 -0800 | [diff] [blame] | 694 | struct sfq_sched_data *q = qdisc_priv(sch); |
| 695 | unsigned int i; |
| 696 | |
| 697 | if (arg->stop) |
| 698 | return; |
| 699 | |
Eric Dumazet | 817fb15 | 2011-01-20 00:14:58 +0000 | [diff] [blame] | 700 | for (i = 0; i < q->divisor; i++) { |
Eric Dumazet | eda83e3 | 2010-12-20 12:54:58 +0000 | [diff] [blame] | 701 | if (q->ht[i] == SFQ_EMPTY_SLOT || |
Patrick McHardy | 94de78d | 2008-01-31 18:37:16 -0800 | [diff] [blame] | 702 | arg->count < arg->skip) { |
| 703 | arg->count++; |
| 704 | continue; |
| 705 | } |
| 706 | if (arg->fn(sch, i + 1, arg) < 0) { |
| 707 | arg->stop = 1; |
| 708 | break; |
| 709 | } |
| 710 | arg->count++; |
| 711 | } |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | static const struct Qdisc_class_ops sfq_class_ops = { |
Jarek Poplawski | 41065fb | 2010-08-10 22:31:02 +0000 | [diff] [blame] | 715 | .leaf = sfq_leaf, |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 716 | .get = sfq_get, |
Jarek Poplawski | da7115d | 2010-08-09 12:18:17 +0000 | [diff] [blame] | 717 | .put = sfq_put, |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 718 | .tcf_chain = sfq_find_tcf, |
Jarek Poplawski | eb4a552 | 2010-08-06 00:22:35 +0000 | [diff] [blame] | 719 | .bind_tcf = sfq_bind, |
Jarek Poplawski | da7115d | 2010-08-09 12:18:17 +0000 | [diff] [blame] | 720 | .unbind_tcf = sfq_put, |
Patrick McHardy | 94de78d | 2008-01-31 18:37:16 -0800 | [diff] [blame] | 721 | .dump = sfq_dump_class, |
| 722 | .dump_stats = sfq_dump_class_stats, |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 723 | .walk = sfq_walk, |
| 724 | }; |
| 725 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 726 | static struct Qdisc_ops sfq_qdisc_ops __read_mostly = { |
Patrick McHardy | 7d2681a | 2008-01-31 18:36:52 -0800 | [diff] [blame] | 727 | .cl_ops = &sfq_class_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | .id = "sfq", |
| 729 | .priv_size = sizeof(struct sfq_sched_data), |
| 730 | .enqueue = sfq_enqueue, |
| 731 | .dequeue = sfq_dequeue, |
Eric Dumazet | 07bd8df | 2011-05-25 04:40:11 +0000 | [diff] [blame] | 732 | .peek = qdisc_peek_dequeued, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | .drop = sfq_drop, |
| 734 | .init = sfq_init, |
| 735 | .reset = sfq_reset, |
| 736 | .destroy = sfq_destroy, |
| 737 | .change = NULL, |
| 738 | .dump = sfq_dump, |
| 739 | .owner = THIS_MODULE, |
| 740 | }; |
| 741 | |
| 742 | static int __init sfq_module_init(void) |
| 743 | { |
| 744 | return register_qdisc(&sfq_qdisc_ops); |
| 745 | } |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 746 | static void __exit sfq_module_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
| 748 | unregister_qdisc(&sfq_qdisc_ops); |
| 749 | } |
| 750 | module_init(sfq_module_init) |
| 751 | module_exit(sfq_module_exit) |
| 752 | MODULE_LICENSE("GPL"); |