sch_qfq.c 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555
  1. /*
  2. * net/sched/sch_qfq.c Quick Fair Queueing Plus Scheduler.
  3. *
  4. * Copyright (c) 2009 Fabio Checconi, Luigi Rizzo, and Paolo Valente.
  5. * Copyright (c) 2012 Paolo Valente.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * version 2 as published by the Free Software Foundation.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/init.h>
  13. #include <linux/bitops.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. /* Quick Fair Queueing Plus
  21. ========================
  22. Sources:
  23. [1] Paolo Valente,
  24. "Reducing the Execution Time of Fair-Queueing Schedulers."
  25. http://algo.ing.unimo.it/people/paolo/agg-sched/agg-sched.pdf
  26. Sources for QFQ:
  27. [2] Fabio Checconi, Luigi Rizzo, and Paolo Valente: "QFQ: Efficient
  28. Packet Scheduling with Tight Bandwidth Distribution Guarantees."
  29. See also:
  30. http://retis.sssup.it/~fabio/linux/qfq/
  31. */
  32. /*
  33. QFQ+ divides classes into aggregates of at most MAX_AGG_CLASSES
  34. classes. Each aggregate is timestamped with a virtual start time S
  35. and a virtual finish time F, and scheduled according to its
  36. timestamps. S and F are computed as a function of a system virtual
  37. time function V. The classes within each aggregate are instead
  38. scheduled with DRR.
  39. To speed up operations, QFQ+ divides also aggregates into a limited
  40. number of groups. Which group a class belongs to depends on the
  41. ratio between the maximum packet length for the class and the weight
  42. of the class. Groups have their own S and F. In the end, QFQ+
  43. schedules groups, then aggregates within groups, then classes within
  44. aggregates. See [1] and [2] for a full description.
  45. Virtual time computations.
  46. S, F and V are all computed in fixed point arithmetic with
  47. FRAC_BITS decimal bits.
  48. QFQ_MAX_INDEX is the maximum index allowed for a group. We need
  49. one bit per index.
  50. QFQ_MAX_WSHIFT is the maximum power of two supported as a weight.
  51. The layout of the bits is as below:
  52. [ MTU_SHIFT ][ FRAC_BITS ]
  53. [ MAX_INDEX ][ MIN_SLOT_SHIFT ]
  54. ^.__grp->index = 0
  55. *.__grp->slot_shift
  56. where MIN_SLOT_SHIFT is derived by difference from the others.
  57. The max group index corresponds to Lmax/w_min, where
  58. Lmax=1<<MTU_SHIFT, w_min = 1 .
  59. From this, and knowing how many groups (MAX_INDEX) we want,
  60. we can derive the shift corresponding to each group.
  61. Because we often need to compute
  62. F = S + len/w_i and V = V + len/wsum
  63. instead of storing w_i store the value
  64. inv_w = (1<<FRAC_BITS)/w_i
  65. so we can do F = S + len * inv_w * wsum.
  66. We use W_TOT in the formulas so we can easily move between
  67. static and adaptive weight sum.
  68. The per-scheduler-instance data contain all the data structures
  69. for the scheduler: bitmaps and bucket lists.
  70. */
  71. /*
  72. * Maximum number of consecutive slots occupied by backlogged classes
  73. * inside a group.
  74. */
  75. #define QFQ_MAX_SLOTS 32
  76. /*
  77. * Shifts used for aggregate<->group mapping. We allow class weights that are
  78. * in the range [1, 2^MAX_WSHIFT], and we try to map each aggregate i to the
  79. * group with the smallest index that can support the L_i / r_i configured
  80. * for the classes in the aggregate.
  81. *
  82. * grp->index is the index of the group; and grp->slot_shift
  83. * is the shift for the corresponding (scaled) sigma_i.
  84. */
  85. #define QFQ_MAX_INDEX 24
  86. #define QFQ_MAX_WSHIFT 10
  87. #define QFQ_MAX_WEIGHT (1<<QFQ_MAX_WSHIFT) /* see qfq_slot_insert */
  88. #define QFQ_MAX_WSUM (64*QFQ_MAX_WEIGHT)
  89. #define FRAC_BITS 30 /* fixed point arithmetic */
  90. #define ONE_FP (1UL << FRAC_BITS)
  91. #define IWSUM (ONE_FP/QFQ_MAX_WSUM)
  92. #define QFQ_MTU_SHIFT 16 /* to support TSO/GSO */
  93. #define QFQ_MIN_LMAX 512 /* see qfq_slot_insert */
  94. #define QFQ_MAX_AGG_CLASSES 8 /* max num classes per aggregate allowed */
  95. /*
  96. * Possible group states. These values are used as indexes for the bitmaps
  97. * array of struct qfq_queue.
  98. */
  99. enum qfq_state { ER, IR, EB, IB, QFQ_MAX_STATE };
  100. struct qfq_group;
  101. struct qfq_aggregate;
  102. struct qfq_class {
  103. struct Qdisc_class_common common;
  104. unsigned int refcnt;
  105. unsigned int filter_cnt;
  106. struct gnet_stats_basic_packed bstats;
  107. struct gnet_stats_queue qstats;
  108. struct gnet_stats_rate_est64 rate_est;
  109. struct Qdisc *qdisc;
  110. struct list_head alist; /* Link for active-classes list. */
  111. struct qfq_aggregate *agg; /* Parent aggregate. */
  112. int deficit; /* DRR deficit counter. */
  113. };
  114. struct qfq_aggregate {
  115. struct hlist_node next; /* Link for the slot list. */
  116. u64 S, F; /* flow timestamps (exact) */
  117. /* group we belong to. In principle we would need the index,
  118. * which is log_2(lmax/weight), but we never reference it
  119. * directly, only the group.
  120. */
  121. struct qfq_group *grp;
  122. /* these are copied from the flowset. */
  123. u32 class_weight; /* Weight of each class in this aggregate. */
  124. /* Max pkt size for the classes in this aggregate, DRR quantum. */
  125. int lmax;
  126. u32 inv_w; /* ONE_FP/(sum of weights of classes in aggr.). */
  127. u32 budgetmax; /* Max budget for this aggregate. */
  128. u32 initial_budget, budget; /* Initial and current budget. */
  129. int num_classes; /* Number of classes in this aggr. */
  130. struct list_head active; /* DRR queue of active classes. */
  131. struct hlist_node nonfull_next; /* See nonfull_aggs in qfq_sched. */
  132. };
  133. struct qfq_group {
  134. u64 S, F; /* group timestamps (approx). */
  135. unsigned int slot_shift; /* Slot shift. */
  136. unsigned int index; /* Group index. */
  137. unsigned int front; /* Index of the front slot. */
  138. unsigned long full_slots; /* non-empty slots */
  139. /* Array of RR lists of active aggregates. */
  140. struct hlist_head slots[QFQ_MAX_SLOTS];
  141. };
  142. struct qfq_sched {
  143. struct tcf_proto *filter_list;
  144. struct Qdisc_class_hash clhash;
  145. u64 oldV, V; /* Precise virtual times. */
  146. struct qfq_aggregate *in_serv_agg; /* Aggregate being served. */
  147. u32 num_active_agg; /* Num. of active aggregates */
  148. u32 wsum; /* weight sum */
  149. unsigned long bitmaps[QFQ_MAX_STATE]; /* Group bitmaps. */
  150. struct qfq_group groups[QFQ_MAX_INDEX + 1]; /* The groups. */
  151. u32 min_slot_shift; /* Index of the group-0 bit in the bitmaps. */
  152. u32 max_agg_classes; /* Max number of classes per aggr. */
  153. struct hlist_head nonfull_aggs; /* Aggs with room for more classes. */
  154. };
  155. /*
  156. * Possible reasons why the timestamps of an aggregate are updated
  157. * enqueue: the aggregate switches from idle to active and must scheduled
  158. * for service
  159. * requeue: the aggregate finishes its budget, so it stops being served and
  160. * must be rescheduled for service
  161. */
  162. enum update_reason {enqueue, requeue};
  163. static struct qfq_class *qfq_find_class(struct Qdisc *sch, u32 classid)
  164. {
  165. struct qfq_sched *q = qdisc_priv(sch);
  166. struct Qdisc_class_common *clc;
  167. clc = qdisc_class_find(&q->clhash, classid);
  168. if (clc == NULL)
  169. return NULL;
  170. return container_of(clc, struct qfq_class, common);
  171. }
  172. static void qfq_purge_queue(struct qfq_class *cl)
  173. {
  174. unsigned int len = cl->qdisc->q.qlen;
  175. qdisc_reset(cl->qdisc);
  176. qdisc_tree_decrease_qlen(cl->qdisc, len);
  177. }
  178. static const struct nla_policy qfq_policy[TCA_QFQ_MAX + 1] = {
  179. [TCA_QFQ_WEIGHT] = { .type = NLA_U32 },
  180. [TCA_QFQ_LMAX] = { .type = NLA_U32 },
  181. };
  182. /*
  183. * Calculate a flow index, given its weight and maximum packet length.
  184. * index = log_2(maxlen/weight) but we need to apply the scaling.
  185. * This is used only once at flow creation.
  186. */
  187. static int qfq_calc_index(u32 inv_w, unsigned int maxlen, u32 min_slot_shift)
  188. {
  189. u64 slot_size = (u64)maxlen * inv_w;
  190. unsigned long size_map;
  191. int index = 0;
  192. size_map = slot_size >> min_slot_shift;
  193. if (!size_map)
  194. goto out;
  195. index = __fls(size_map) + 1; /* basically a log_2 */
  196. index -= !(slot_size - (1ULL << (index + min_slot_shift - 1)));
  197. if (index < 0)
  198. index = 0;
  199. out:
  200. pr_debug("qfq calc_index: W = %lu, L = %u, I = %d\n",
  201. (unsigned long) ONE_FP/inv_w, maxlen, index);
  202. return index;
  203. }
  204. static void qfq_deactivate_agg(struct qfq_sched *, struct qfq_aggregate *);
  205. static void qfq_activate_agg(struct qfq_sched *, struct qfq_aggregate *,
  206. enum update_reason);
  207. static void qfq_init_agg(struct qfq_sched *q, struct qfq_aggregate *agg,
  208. u32 lmax, u32 weight)
  209. {
  210. INIT_LIST_HEAD(&agg->active);
  211. hlist_add_head(&agg->nonfull_next, &q->nonfull_aggs);
  212. agg->lmax = lmax;
  213. agg->class_weight = weight;
  214. }
  215. static struct qfq_aggregate *qfq_find_agg(struct qfq_sched *q,
  216. u32 lmax, u32 weight)
  217. {
  218. struct qfq_aggregate *agg;
  219. hlist_for_each_entry(agg, &q->nonfull_aggs, nonfull_next)
  220. if (agg->lmax == lmax && agg->class_weight == weight)
  221. return agg;
  222. return NULL;
  223. }
  224. /* Update aggregate as a function of the new number of classes. */
  225. static void qfq_update_agg(struct qfq_sched *q, struct qfq_aggregate *agg,
  226. int new_num_classes)
  227. {
  228. u32 new_agg_weight;
  229. if (new_num_classes == q->max_agg_classes)
  230. hlist_del_init(&agg->nonfull_next);
  231. if (agg->num_classes > new_num_classes &&
  232. new_num_classes == q->max_agg_classes - 1) /* agg no more full */
  233. hlist_add_head(&agg->nonfull_next, &q->nonfull_aggs);
  234. /* The next assignment may let
  235. * agg->initial_budget > agg->budgetmax
  236. * hold, we will take it into account in charge_actual_service().
  237. */
  238. agg->budgetmax = new_num_classes * agg->lmax;
  239. new_agg_weight = agg->class_weight * new_num_classes;
  240. agg->inv_w = ONE_FP/new_agg_weight;
  241. if (agg->grp == NULL) {
  242. int i = qfq_calc_index(agg->inv_w, agg->budgetmax,
  243. q->min_slot_shift);
  244. agg->grp = &q->groups[i];
  245. }
  246. q->wsum +=
  247. (int) agg->class_weight * (new_num_classes - agg->num_classes);
  248. agg->num_classes = new_num_classes;
  249. }
  250. /* Add class to aggregate. */
  251. static void qfq_add_to_agg(struct qfq_sched *q,
  252. struct qfq_aggregate *agg,
  253. struct qfq_class *cl)
  254. {
  255. cl->agg = agg;
  256. qfq_update_agg(q, agg, agg->num_classes+1);
  257. if (cl->qdisc->q.qlen > 0) { /* adding an active class */
  258. list_add_tail(&cl->alist, &agg->active);
  259. if (list_first_entry(&agg->active, struct qfq_class, alist) ==
  260. cl && q->in_serv_agg != agg) /* agg was inactive */
  261. qfq_activate_agg(q, agg, enqueue); /* schedule agg */
  262. }
  263. }
  264. static struct qfq_aggregate *qfq_choose_next_agg(struct qfq_sched *);
  265. static void qfq_destroy_agg(struct qfq_sched *q, struct qfq_aggregate *agg)
  266. {
  267. if (!hlist_unhashed(&agg->nonfull_next))
  268. hlist_del_init(&agg->nonfull_next);
  269. if (q->in_serv_agg == agg)
  270. q->in_serv_agg = qfq_choose_next_agg(q);
  271. kfree(agg);
  272. }
  273. /* Deschedule class from within its parent aggregate. */
  274. static void qfq_deactivate_class(struct qfq_sched *q, struct qfq_class *cl)
  275. {
  276. struct qfq_aggregate *agg = cl->agg;
  277. list_del(&cl->alist); /* remove from RR queue of the aggregate */
  278. if (list_empty(&agg->active)) /* agg is now inactive */
  279. qfq_deactivate_agg(q, agg);
  280. }
  281. /* Remove class from its parent aggregate. */
  282. static void qfq_rm_from_agg(struct qfq_sched *q, struct qfq_class *cl)
  283. {
  284. struct qfq_aggregate *agg = cl->agg;
  285. cl->agg = NULL;
  286. if (agg->num_classes == 1) { /* agg being emptied, destroy it */
  287. qfq_destroy_agg(q, agg);
  288. return;
  289. }
  290. qfq_update_agg(q, agg, agg->num_classes-1);
  291. }
  292. /* Deschedule class and remove it from its parent aggregate. */
  293. static void qfq_deact_rm_from_agg(struct qfq_sched *q, struct qfq_class *cl)
  294. {
  295. if (cl->qdisc->q.qlen > 0) /* class is active */
  296. qfq_deactivate_class(q, cl);
  297. qfq_rm_from_agg(q, cl);
  298. }
  299. /* Move class to a new aggregate, matching the new class weight and/or lmax */
  300. static int qfq_change_agg(struct Qdisc *sch, struct qfq_class *cl, u32 weight,
  301. u32 lmax)
  302. {
  303. struct qfq_sched *q = qdisc_priv(sch);
  304. struct qfq_aggregate *new_agg = qfq_find_agg(q, lmax, weight);
  305. if (new_agg == NULL) { /* create new aggregate */
  306. new_agg = kzalloc(sizeof(*new_agg), GFP_ATOMIC);
  307. if (new_agg == NULL)
  308. return -ENOBUFS;
  309. qfq_init_agg(q, new_agg, lmax, weight);
  310. }
  311. qfq_deact_rm_from_agg(q, cl);
  312. qfq_add_to_agg(q, new_agg, cl);
  313. return 0;
  314. }
  315. static int qfq_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
  316. struct nlattr **tca, unsigned long *arg)
  317. {
  318. struct qfq_sched *q = qdisc_priv(sch);
  319. struct qfq_class *cl = (struct qfq_class *)*arg;
  320. bool existing = false;
  321. struct nlattr *tb[TCA_QFQ_MAX + 1];
  322. struct qfq_aggregate *new_agg = NULL;
  323. u32 weight, lmax, inv_w;
  324. int err;
  325. int delta_w;
  326. if (tca[TCA_OPTIONS] == NULL) {
  327. pr_notice("qfq: no options\n");
  328. return -EINVAL;
  329. }
  330. err = nla_parse_nested(tb, TCA_QFQ_MAX, tca[TCA_OPTIONS], qfq_policy);
  331. if (err < 0)
  332. return err;
  333. if (tb[TCA_QFQ_WEIGHT]) {
  334. weight = nla_get_u32(tb[TCA_QFQ_WEIGHT]);
  335. if (!weight || weight > (1UL << QFQ_MAX_WSHIFT)) {
  336. pr_notice("qfq: invalid weight %u\n", weight);
  337. return -EINVAL;
  338. }
  339. } else
  340. weight = 1;
  341. if (tb[TCA_QFQ_LMAX]) {
  342. lmax = nla_get_u32(tb[TCA_QFQ_LMAX]);
  343. if (lmax < QFQ_MIN_LMAX || lmax > (1UL << QFQ_MTU_SHIFT)) {
  344. pr_notice("qfq: invalid max length %u\n", lmax);
  345. return -EINVAL;
  346. }
  347. } else
  348. lmax = psched_mtu(qdisc_dev(sch));
  349. inv_w = ONE_FP / weight;
  350. weight = ONE_FP / inv_w;
  351. if (cl != NULL &&
  352. lmax == cl->agg->lmax &&
  353. weight == cl->agg->class_weight)
  354. return 0; /* nothing to change */
  355. delta_w = weight - (cl ? cl->agg->class_weight : 0);
  356. if (q->wsum + delta_w > QFQ_MAX_WSUM) {
  357. pr_notice("qfq: total weight out of range (%d + %u)\n",
  358. delta_w, q->wsum);
  359. return -EINVAL;
  360. }
  361. if (cl != NULL) { /* modify existing class */
  362. if (tca[TCA_RATE]) {
  363. err = gen_replace_estimator(&cl->bstats, &cl->rate_est,
  364. qdisc_root_sleeping_lock(sch),
  365. tca[TCA_RATE]);
  366. if (err)
  367. return err;
  368. }
  369. existing = true;
  370. goto set_change_agg;
  371. }
  372. /* create and init new class */
  373. cl = kzalloc(sizeof(struct qfq_class), GFP_KERNEL);
  374. if (cl == NULL)
  375. return -ENOBUFS;
  376. cl->refcnt = 1;
  377. cl->common.classid = classid;
  378. cl->deficit = lmax;
  379. cl->qdisc = qdisc_create_dflt(sch->dev_queue,
  380. &pfifo_qdisc_ops, classid);
  381. if (cl->qdisc == NULL)
  382. cl->qdisc = &noop_qdisc;
  383. if (tca[TCA_RATE]) {
  384. err = gen_new_estimator(&cl->bstats, &cl->rate_est,
  385. qdisc_root_sleeping_lock(sch),
  386. tca[TCA_RATE]);
  387. if (err)
  388. goto destroy_class;
  389. }
  390. sch_tree_lock(sch);
  391. qdisc_class_hash_insert(&q->clhash, &cl->common);
  392. sch_tree_unlock(sch);
  393. qdisc_class_hash_grow(sch, &q->clhash);
  394. set_change_agg:
  395. sch_tree_lock(sch);
  396. new_agg = qfq_find_agg(q, lmax, weight);
  397. if (new_agg == NULL) { /* create new aggregate */
  398. sch_tree_unlock(sch);
  399. new_agg = kzalloc(sizeof(*new_agg), GFP_KERNEL);
  400. if (new_agg == NULL) {
  401. err = -ENOBUFS;
  402. gen_kill_estimator(&cl->bstats, &cl->rate_est);
  403. goto destroy_class;
  404. }
  405. sch_tree_lock(sch);
  406. qfq_init_agg(q, new_agg, lmax, weight);
  407. }
  408. if (existing)
  409. qfq_deact_rm_from_agg(q, cl);
  410. qfq_add_to_agg(q, new_agg, cl);
  411. sch_tree_unlock(sch);
  412. *arg = (unsigned long)cl;
  413. return 0;
  414. destroy_class:
  415. qdisc_destroy(cl->qdisc);
  416. kfree(cl);
  417. return err;
  418. }
  419. static void qfq_destroy_class(struct Qdisc *sch, struct qfq_class *cl)
  420. {
  421. struct qfq_sched *q = qdisc_priv(sch);
  422. qfq_rm_from_agg(q, cl);
  423. gen_kill_estimator(&cl->bstats, &cl->rate_est);
  424. qdisc_destroy(cl->qdisc);
  425. kfree(cl);
  426. }
  427. static int qfq_delete_class(struct Qdisc *sch, unsigned long arg)
  428. {
  429. struct qfq_sched *q = qdisc_priv(sch);
  430. struct qfq_class *cl = (struct qfq_class *)arg;
  431. if (cl->filter_cnt > 0)
  432. return -EBUSY;
  433. sch_tree_lock(sch);
  434. qfq_purge_queue(cl);
  435. qdisc_class_hash_remove(&q->clhash, &cl->common);
  436. BUG_ON(--cl->refcnt == 0);
  437. /*
  438. * This shouldn't happen: we "hold" one cops->get() when called
  439. * from tc_ctl_tclass; the destroy method is done from cops->put().
  440. */
  441. sch_tree_unlock(sch);
  442. return 0;
  443. }
  444. static unsigned long qfq_get_class(struct Qdisc *sch, u32 classid)
  445. {
  446. struct qfq_class *cl = qfq_find_class(sch, classid);
  447. if (cl != NULL)
  448. cl->refcnt++;
  449. return (unsigned long)cl;
  450. }
  451. static void qfq_put_class(struct Qdisc *sch, unsigned long arg)
  452. {
  453. struct qfq_class *cl = (struct qfq_class *)arg;
  454. if (--cl->refcnt == 0)
  455. qfq_destroy_class(sch, cl);
  456. }
  457. static struct tcf_proto **qfq_tcf_chain(struct Qdisc *sch, unsigned long cl)
  458. {
  459. struct qfq_sched *q = qdisc_priv(sch);
  460. if (cl)
  461. return NULL;
  462. return &q->filter_list;
  463. }
  464. static unsigned long qfq_bind_tcf(struct Qdisc *sch, unsigned long parent,
  465. u32 classid)
  466. {
  467. struct qfq_class *cl = qfq_find_class(sch, classid);
  468. if (cl != NULL)
  469. cl->filter_cnt++;
  470. return (unsigned long)cl;
  471. }
  472. static void qfq_unbind_tcf(struct Qdisc *sch, unsigned long arg)
  473. {
  474. struct qfq_class *cl = (struct qfq_class *)arg;
  475. cl->filter_cnt--;
  476. }
  477. static int qfq_graft_class(struct Qdisc *sch, unsigned long arg,
  478. struct Qdisc *new, struct Qdisc **old)
  479. {
  480. struct qfq_class *cl = (struct qfq_class *)arg;
  481. if (new == NULL) {
  482. new = qdisc_create_dflt(sch->dev_queue,
  483. &pfifo_qdisc_ops, cl->common.classid);
  484. if (new == NULL)
  485. new = &noop_qdisc;
  486. }
  487. sch_tree_lock(sch);
  488. qfq_purge_queue(cl);
  489. *old = cl->qdisc;
  490. cl->qdisc = new;
  491. sch_tree_unlock(sch);
  492. return 0;
  493. }
  494. static struct Qdisc *qfq_class_leaf(struct Qdisc *sch, unsigned long arg)
  495. {
  496. struct qfq_class *cl = (struct qfq_class *)arg;
  497. return cl->qdisc;
  498. }
  499. static int qfq_dump_class(struct Qdisc *sch, unsigned long arg,
  500. struct sk_buff *skb, struct tcmsg *tcm)
  501. {
  502. struct qfq_class *cl = (struct qfq_class *)arg;
  503. struct nlattr *nest;
  504. tcm->tcm_parent = TC_H_ROOT;
  505. tcm->tcm_handle = cl->common.classid;
  506. tcm->tcm_info = cl->qdisc->handle;
  507. nest = nla_nest_start(skb, TCA_OPTIONS);
  508. if (nest == NULL)
  509. goto nla_put_failure;
  510. if (nla_put_u32(skb, TCA_QFQ_WEIGHT, cl->agg->class_weight) ||
  511. nla_put_u32(skb, TCA_QFQ_LMAX, cl->agg->lmax))
  512. goto nla_put_failure;
  513. return nla_nest_end(skb, nest);
  514. nla_put_failure:
  515. nla_nest_cancel(skb, nest);
  516. return -EMSGSIZE;
  517. }
  518. static int qfq_dump_class_stats(struct Qdisc *sch, unsigned long arg,
  519. struct gnet_dump *d)
  520. {
  521. struct qfq_class *cl = (struct qfq_class *)arg;
  522. struct tc_qfq_stats xstats;
  523. memset(&xstats, 0, sizeof(xstats));
  524. cl->qdisc->qstats.qlen = cl->qdisc->q.qlen;
  525. xstats.weight = cl->agg->class_weight;
  526. xstats.lmax = cl->agg->lmax;
  527. if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
  528. gnet_stats_copy_rate_est(d, &cl->bstats, &cl->rate_est) < 0 ||
  529. gnet_stats_copy_queue(d, &cl->qdisc->qstats) < 0)
  530. return -1;
  531. return gnet_stats_copy_app(d, &xstats, sizeof(xstats));
  532. }
  533. static void qfq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
  534. {
  535. struct qfq_sched *q = qdisc_priv(sch);
  536. struct qfq_class *cl;
  537. unsigned int i;
  538. if (arg->stop)
  539. return;
  540. for (i = 0; i < q->clhash.hashsize; i++) {
  541. hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) {
  542. if (arg->count < arg->skip) {
  543. arg->count++;
  544. continue;
  545. }
  546. if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
  547. arg->stop = 1;
  548. return;
  549. }
  550. arg->count++;
  551. }
  552. }
  553. }
  554. static struct qfq_class *qfq_classify(struct sk_buff *skb, struct Qdisc *sch,
  555. int *qerr)
  556. {
  557. struct qfq_sched *q = qdisc_priv(sch);
  558. struct qfq_class *cl;
  559. struct tcf_result res;
  560. int result;
  561. if (TC_H_MAJ(skb->priority ^ sch->handle) == 0) {
  562. pr_debug("qfq_classify: found %d\n", skb->priority);
  563. cl = qfq_find_class(sch, skb->priority);
  564. if (cl != NULL)
  565. return cl;
  566. }
  567. *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
  568. result = tc_classify(skb, q->filter_list, &res);
  569. if (result >= 0) {
  570. #ifdef CONFIG_NET_CLS_ACT
  571. switch (result) {
  572. case TC_ACT_QUEUED:
  573. case TC_ACT_STOLEN:
  574. *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
  575. case TC_ACT_SHOT:
  576. return NULL;
  577. }
  578. #endif
  579. cl = (struct qfq_class *)res.class;
  580. if (cl == NULL)
  581. cl = qfq_find_class(sch, res.classid);
  582. return cl;
  583. }
  584. return NULL;
  585. }
  586. /* Generic comparison function, handling wraparound. */
  587. static inline int qfq_gt(u64 a, u64 b)
  588. {
  589. return (s64)(a - b) > 0;
  590. }
  591. /* Round a precise timestamp to its slotted value. */
  592. static inline u64 qfq_round_down(u64 ts, unsigned int shift)
  593. {
  594. return ts & ~((1ULL << shift) - 1);
  595. }
  596. /* return the pointer to the group with lowest index in the bitmap */
  597. static inline struct qfq_group *qfq_ffs(struct qfq_sched *q,
  598. unsigned long bitmap)
  599. {
  600. int index = __ffs(bitmap);
  601. return &q->groups[index];
  602. }
  603. /* Calculate a mask to mimic what would be ffs_from(). */
  604. static inline unsigned long mask_from(unsigned long bitmap, int from)
  605. {
  606. return bitmap & ~((1UL << from) - 1);
  607. }
  608. /*
  609. * The state computation relies on ER=0, IR=1, EB=2, IB=3
  610. * First compute eligibility comparing grp->S, q->V,
  611. * then check if someone is blocking us and possibly add EB
  612. */
  613. static int qfq_calc_state(struct qfq_sched *q, const struct qfq_group *grp)
  614. {
  615. /* if S > V we are not eligible */
  616. unsigned int state = qfq_gt(grp->S, q->V);
  617. unsigned long mask = mask_from(q->bitmaps[ER], grp->index);
  618. struct qfq_group *next;
  619. if (mask) {
  620. next = qfq_ffs(q, mask);
  621. if (qfq_gt(grp->F, next->F))
  622. state |= EB;
  623. }
  624. return state;
  625. }
  626. /*
  627. * In principle
  628. * q->bitmaps[dst] |= q->bitmaps[src] & mask;
  629. * q->bitmaps[src] &= ~mask;
  630. * but we should make sure that src != dst
  631. */
  632. static inline void qfq_move_groups(struct qfq_sched *q, unsigned long mask,
  633. int src, int dst)
  634. {
  635. q->bitmaps[dst] |= q->bitmaps[src] & mask;
  636. q->bitmaps[src] &= ~mask;
  637. }
  638. static void qfq_unblock_groups(struct qfq_sched *q, int index, u64 old_F)
  639. {
  640. unsigned long mask = mask_from(q->bitmaps[ER], index + 1);
  641. struct qfq_group *next;
  642. if (mask) {
  643. next = qfq_ffs(q, mask);
  644. if (!qfq_gt(next->F, old_F))
  645. return;
  646. }
  647. mask = (1UL << index) - 1;
  648. qfq_move_groups(q, mask, EB, ER);
  649. qfq_move_groups(q, mask, IB, IR);
  650. }
  651. /*
  652. * perhaps
  653. *
  654. old_V ^= q->V;
  655. old_V >>= q->min_slot_shift;
  656. if (old_V) {
  657. ...
  658. }
  659. *
  660. */
  661. static void qfq_make_eligible(struct qfq_sched *q)
  662. {
  663. unsigned long vslot = q->V >> q->min_slot_shift;
  664. unsigned long old_vslot = q->oldV >> q->min_slot_shift;
  665. if (vslot != old_vslot) {
  666. unsigned long mask;
  667. int last_flip_pos = fls(vslot ^ old_vslot);
  668. if (last_flip_pos > 31) /* higher than the number of groups */
  669. mask = ~0UL; /* make all groups eligible */
  670. else
  671. mask = (1UL << last_flip_pos) - 1;
  672. qfq_move_groups(q, mask, IR, ER);
  673. qfq_move_groups(q, mask, IB, EB);
  674. }
  675. }
  676. /*
  677. * The index of the slot in which the aggregate is to be inserted must
  678. * not be higher than QFQ_MAX_SLOTS-2. There is a '-2' and not a '-1'
  679. * because the start time of the group may be moved backward by one
  680. * slot after the aggregate has been inserted, and this would cause
  681. * non-empty slots to be right-shifted by one position.
  682. *
  683. * If the weight and lmax (max_pkt_size) of the classes do not change,
  684. * then QFQ+ does meet the above contraint according to the current
  685. * values of its parameters. In fact, if the weight and lmax of the
  686. * classes do not change, then, from the theory, QFQ+ guarantees that
  687. * the slot index is never higher than
  688. * 2 + QFQ_MAX_AGG_CLASSES * ((1<<QFQ_MTU_SHIFT)/QFQ_MIN_LMAX) *
  689. * (QFQ_MAX_WEIGHT/QFQ_MAX_WSUM) = 2 + 8 * 128 * (1 / 64) = 18
  690. *
  691. * When the weight of a class is increased or the lmax of the class is
  692. * decreased, a new aggregate with smaller slot size than the original
  693. * parent aggregate of the class may happen to be activated. The
  694. * activation of this aggregate should be properly delayed to when the
  695. * service of the class has finished in the ideal system tracked by
  696. * QFQ+. If the activation of the aggregate is not delayed to this
  697. * reference time instant, then this aggregate may be unjustly served
  698. * before other aggregates waiting for service. This may cause the
  699. * above bound to the slot index to be violated for some of these
  700. * unlucky aggregates.
  701. *
  702. * Instead of delaying the activation of the new aggregate, which is
  703. * quite complex, the following inaccurate but simple solution is used:
  704. * if the slot index is higher than QFQ_MAX_SLOTS-2, then the
  705. * timestamps of the aggregate are shifted backward so as to let the
  706. * slot index become equal to QFQ_MAX_SLOTS-2.
  707. */
  708. static void qfq_slot_insert(struct qfq_group *grp, struct qfq_aggregate *agg,
  709. u64 roundedS)
  710. {
  711. u64 slot = (roundedS - grp->S) >> grp->slot_shift;
  712. unsigned int i; /* slot index in the bucket list */
  713. if (unlikely(slot > QFQ_MAX_SLOTS - 2)) {
  714. u64 deltaS = roundedS - grp->S -
  715. ((u64)(QFQ_MAX_SLOTS - 2)<<grp->slot_shift);
  716. agg->S -= deltaS;
  717. agg->F -= deltaS;
  718. slot = QFQ_MAX_SLOTS - 2;
  719. }
  720. i = (grp->front + slot) % QFQ_MAX_SLOTS;
  721. hlist_add_head(&agg->next, &grp->slots[i]);
  722. __set_bit(slot, &grp->full_slots);
  723. }
  724. /* Maybe introduce hlist_first_entry?? */
  725. static struct qfq_aggregate *qfq_slot_head(struct qfq_group *grp)
  726. {
  727. return hlist_entry(grp->slots[grp->front].first,
  728. struct qfq_aggregate, next);
  729. }
  730. /*
  731. * remove the entry from the slot
  732. */
  733. static void qfq_front_slot_remove(struct qfq_group *grp)
  734. {
  735. struct qfq_aggregate *agg = qfq_slot_head(grp);
  736. BUG_ON(!agg);
  737. hlist_del(&agg->next);
  738. if (hlist_empty(&grp->slots[grp->front]))
  739. __clear_bit(0, &grp->full_slots);
  740. }
  741. /*
  742. * Returns the first aggregate in the first non-empty bucket of the
  743. * group. As a side effect, adjusts the bucket list so the first
  744. * non-empty bucket is at position 0 in full_slots.
  745. */
  746. static struct qfq_aggregate *qfq_slot_scan(struct qfq_group *grp)
  747. {
  748. unsigned int i;
  749. pr_debug("qfq slot_scan: grp %u full %#lx\n",
  750. grp->index, grp->full_slots);
  751. if (grp->full_slots == 0)
  752. return NULL;
  753. i = __ffs(grp->full_slots); /* zero based */
  754. if (i > 0) {
  755. grp->front = (grp->front + i) % QFQ_MAX_SLOTS;
  756. grp->full_slots >>= i;
  757. }
  758. return qfq_slot_head(grp);
  759. }
  760. /*
  761. * adjust the bucket list. When the start time of a group decreases,
  762. * we move the index down (modulo QFQ_MAX_SLOTS) so we don't need to
  763. * move the objects. The mask of occupied slots must be shifted
  764. * because we use ffs() to find the first non-empty slot.
  765. * This covers decreases in the group's start time, but what about
  766. * increases of the start time ?
  767. * Here too we should make sure that i is less than 32
  768. */
  769. static void qfq_slot_rotate(struct qfq_group *grp, u64 roundedS)
  770. {
  771. unsigned int i = (grp->S - roundedS) >> grp->slot_shift;
  772. grp->full_slots <<= i;
  773. grp->front = (grp->front - i) % QFQ_MAX_SLOTS;
  774. }
  775. static void qfq_update_eligible(struct qfq_sched *q)
  776. {
  777. struct qfq_group *grp;
  778. unsigned long ineligible;
  779. ineligible = q->bitmaps[IR] | q->bitmaps[IB];
  780. if (ineligible) {
  781. if (!q->bitmaps[ER]) {
  782. grp = qfq_ffs(q, ineligible);
  783. if (qfq_gt(grp->S, q->V))
  784. q->V = grp->S;
  785. }
  786. qfq_make_eligible(q);
  787. }
  788. }
  789. /* Dequeue head packet of the head class in the DRR queue of the aggregate. */
  790. static void agg_dequeue(struct qfq_aggregate *agg,
  791. struct qfq_class *cl, unsigned int len)
  792. {
  793. qdisc_dequeue_peeked(cl->qdisc);
  794. cl->deficit -= (int) len;
  795. if (cl->qdisc->q.qlen == 0) /* no more packets, remove from list */
  796. list_del(&cl->alist);
  797. else if (cl->deficit < qdisc_pkt_len(cl->qdisc->ops->peek(cl->qdisc))) {
  798. cl->deficit += agg->lmax;
  799. list_move_tail(&cl->alist, &agg->active);
  800. }
  801. }
  802. static inline struct sk_buff *qfq_peek_skb(struct qfq_aggregate *agg,
  803. struct qfq_class **cl,
  804. unsigned int *len)
  805. {
  806. struct sk_buff *skb;
  807. *cl = list_first_entry(&agg->active, struct qfq_class, alist);
  808. skb = (*cl)->qdisc->ops->peek((*cl)->qdisc);
  809. if (skb == NULL)
  810. WARN_ONCE(1, "qfq_dequeue: non-workconserving leaf\n");
  811. else
  812. *len = qdisc_pkt_len(skb);
  813. return skb;
  814. }
  815. /* Update F according to the actual service received by the aggregate. */
  816. static inline void charge_actual_service(struct qfq_aggregate *agg)
  817. {
  818. /* Compute the service received by the aggregate, taking into
  819. * account that, after decreasing the number of classes in
  820. * agg, it may happen that
  821. * agg->initial_budget - agg->budget > agg->bugdetmax
  822. */
  823. u32 service_received = min(agg->budgetmax,
  824. agg->initial_budget - agg->budget);
  825. agg->F = agg->S + (u64)service_received * agg->inv_w;
  826. }
  827. /* Assign a reasonable start time for a new aggregate in group i.
  828. * Admissible values for \hat(F) are multiples of \sigma_i
  829. * no greater than V+\sigma_i . Larger values mean that
  830. * we had a wraparound so we consider the timestamp to be stale.
  831. *
  832. * If F is not stale and F >= V then we set S = F.
  833. * Otherwise we should assign S = V, but this may violate
  834. * the ordering in EB (see [2]). So, if we have groups in ER,
  835. * set S to the F_j of the first group j which would be blocking us.
  836. * We are guaranteed not to move S backward because
  837. * otherwise our group i would still be blocked.
  838. */
  839. static void qfq_update_start(struct qfq_sched *q, struct qfq_aggregate *agg)
  840. {
  841. unsigned long mask;
  842. u64 limit, roundedF;
  843. int slot_shift = agg->grp->slot_shift;
  844. roundedF = qfq_round_down(agg->F, slot_shift);
  845. limit = qfq_round_down(q->V, slot_shift) + (1ULL << slot_shift);
  846. if (!qfq_gt(agg->F, q->V) || qfq_gt(roundedF, limit)) {
  847. /* timestamp was stale */
  848. mask = mask_from(q->bitmaps[ER], agg->grp->index);
  849. if (mask) {
  850. struct qfq_group *next = qfq_ffs(q, mask);
  851. if (qfq_gt(roundedF, next->F)) {
  852. if (qfq_gt(limit, next->F))
  853. agg->S = next->F;
  854. else /* preserve timestamp correctness */
  855. agg->S = limit;
  856. return;
  857. }
  858. }
  859. agg->S = q->V;
  860. } else /* timestamp is not stale */
  861. agg->S = agg->F;
  862. }
  863. /* Update the timestamps of agg before scheduling/rescheduling it for
  864. * service. In particular, assign to agg->F its maximum possible
  865. * value, i.e., the virtual finish time with which the aggregate
  866. * should be labeled if it used all its budget once in service.
  867. */
  868. static inline void
  869. qfq_update_agg_ts(struct qfq_sched *q,
  870. struct qfq_aggregate *agg, enum update_reason reason)
  871. {
  872. if (reason != requeue)
  873. qfq_update_start(q, agg);
  874. else /* just charge agg for the service received */
  875. agg->S = agg->F;
  876. agg->F = agg->S + (u64)agg->budgetmax * agg->inv_w;
  877. }
  878. static void qfq_schedule_agg(struct qfq_sched *q, struct qfq_aggregate *agg);
  879. static struct sk_buff *qfq_dequeue(struct Qdisc *sch)
  880. {
  881. struct qfq_sched *q = qdisc_priv(sch);
  882. struct qfq_aggregate *in_serv_agg = q->in_serv_agg;
  883. struct qfq_class *cl;
  884. struct sk_buff *skb = NULL;
  885. /* next-packet len, 0 means no more active classes in in-service agg */
  886. unsigned int len = 0;
  887. if (in_serv_agg == NULL)
  888. return NULL;
  889. if (!list_empty(&in_serv_agg->active))
  890. skb = qfq_peek_skb(in_serv_agg, &cl, &len);
  891. /*
  892. * If there are no active classes in the in-service aggregate,
  893. * or if the aggregate has not enough budget to serve its next
  894. * class, then choose the next aggregate to serve.
  895. */
  896. if (len == 0 || in_serv_agg->budget < len) {
  897. charge_actual_service(in_serv_agg);
  898. /* recharge the budget of the aggregate */
  899. in_serv_agg->initial_budget = in_serv_agg->budget =
  900. in_serv_agg->budgetmax;
  901. if (!list_empty(&in_serv_agg->active)) {
  902. /*
  903. * Still active: reschedule for
  904. * service. Possible optimization: if no other
  905. * aggregate is active, then there is no point
  906. * in rescheduling this aggregate, and we can
  907. * just keep it as the in-service one. This
  908. * should be however a corner case, and to
  909. * handle it, we would need to maintain an
  910. * extra num_active_aggs field.
  911. */
  912. qfq_update_agg_ts(q, in_serv_agg, requeue);
  913. qfq_schedule_agg(q, in_serv_agg);
  914. } else if (sch->q.qlen == 0) { /* no aggregate to serve */
  915. q->in_serv_agg = NULL;
  916. return NULL;
  917. }
  918. /*
  919. * If we get here, there are other aggregates queued:
  920. * choose the new aggregate to serve.
  921. */
  922. in_serv_agg = q->in_serv_agg = qfq_choose_next_agg(q);
  923. skb = qfq_peek_skb(in_serv_agg, &cl, &len);
  924. }
  925. if (!skb)
  926. return NULL;
  927. sch->q.qlen--;
  928. qdisc_bstats_update(sch, skb);
  929. agg_dequeue(in_serv_agg, cl, len);
  930. /* If lmax is lowered, through qfq_change_class, for a class
  931. * owning pending packets with larger size than the new value
  932. * of lmax, then the following condition may hold.
  933. */
  934. if (unlikely(in_serv_agg->budget < len))
  935. in_serv_agg->budget = 0;
  936. else
  937. in_serv_agg->budget -= len;
  938. q->V += (u64)len * IWSUM;
  939. pr_debug("qfq dequeue: len %u F %lld now %lld\n",
  940. len, (unsigned long long) in_serv_agg->F,
  941. (unsigned long long) q->V);
  942. return skb;
  943. }
  944. static struct qfq_aggregate *qfq_choose_next_agg(struct qfq_sched *q)
  945. {
  946. struct qfq_group *grp;
  947. struct qfq_aggregate *agg, *new_front_agg;
  948. u64 old_F;
  949. qfq_update_eligible(q);
  950. q->oldV = q->V;
  951. if (!q->bitmaps[ER])
  952. return NULL;
  953. grp = qfq_ffs(q, q->bitmaps[ER]);
  954. old_F = grp->F;
  955. agg = qfq_slot_head(grp);
  956. /* agg starts to be served, remove it from schedule */
  957. qfq_front_slot_remove(grp);
  958. new_front_agg = qfq_slot_scan(grp);
  959. if (new_front_agg == NULL) /* group is now inactive, remove from ER */
  960. __clear_bit(grp->index, &q->bitmaps[ER]);
  961. else {
  962. u64 roundedS = qfq_round_down(new_front_agg->S,
  963. grp->slot_shift);
  964. unsigned int s;
  965. if (grp->S == roundedS)
  966. return agg;
  967. grp->S = roundedS;
  968. grp->F = roundedS + (2ULL << grp->slot_shift);
  969. __clear_bit(grp->index, &q->bitmaps[ER]);
  970. s = qfq_calc_state(q, grp);
  971. __set_bit(grp->index, &q->bitmaps[s]);
  972. }
  973. qfq_unblock_groups(q, grp->index, old_F);
  974. return agg;
  975. }
  976. static int qfq_enqueue(struct sk_buff *skb, struct Qdisc *sch)
  977. {
  978. struct qfq_sched *q = qdisc_priv(sch);
  979. struct qfq_class *cl;
  980. struct qfq_aggregate *agg;
  981. int err = 0;
  982. cl = qfq_classify(skb, sch, &err);
  983. if (cl == NULL) {
  984. if (err & __NET_XMIT_BYPASS)
  985. sch->qstats.drops++;
  986. kfree_skb(skb);
  987. return err;
  988. }
  989. pr_debug("qfq_enqueue: cl = %x\n", cl->common.classid);
  990. if (unlikely(cl->agg->lmax < qdisc_pkt_len(skb))) {
  991. pr_debug("qfq: increasing maxpkt from %u to %u for class %u",
  992. cl->agg->lmax, qdisc_pkt_len(skb), cl->common.classid);
  993. err = qfq_change_agg(sch, cl, cl->agg->class_weight,
  994. qdisc_pkt_len(skb));
  995. if (err)
  996. return err;
  997. }
  998. err = qdisc_enqueue(skb, cl->qdisc);
  999. if (unlikely(err != NET_XMIT_SUCCESS)) {
  1000. pr_debug("qfq_enqueue: enqueue failed %d\n", err);
  1001. if (net_xmit_drop_count(err)) {
  1002. cl->qstats.drops++;
  1003. sch->qstats.drops++;
  1004. }
  1005. return err;
  1006. }
  1007. bstats_update(&cl->bstats, skb);
  1008. ++sch->q.qlen;
  1009. agg = cl->agg;
  1010. /* if the queue was not empty, then done here */
  1011. if (cl->qdisc->q.qlen != 1) {
  1012. if (unlikely(skb == cl->qdisc->ops->peek(cl->qdisc)) &&
  1013. list_first_entry(&agg->active, struct qfq_class, alist)
  1014. == cl && cl->deficit < qdisc_pkt_len(skb))
  1015. list_move_tail(&cl->alist, &agg->active);
  1016. return err;
  1017. }
  1018. /* schedule class for service within the aggregate */
  1019. cl->deficit = agg->lmax;
  1020. list_add_tail(&cl->alist, &agg->active);
  1021. if (list_first_entry(&agg->active, struct qfq_class, alist) != cl ||
  1022. q->in_serv_agg == agg)
  1023. return err; /* non-empty or in service, nothing else to do */
  1024. qfq_activate_agg(q, agg, enqueue);
  1025. return err;
  1026. }
  1027. /*
  1028. * Schedule aggregate according to its timestamps.
  1029. */
  1030. static void qfq_schedule_agg(struct qfq_sched *q, struct qfq_aggregate *agg)
  1031. {
  1032. struct qfq_group *grp = agg->grp;
  1033. u64 roundedS;
  1034. int s;
  1035. roundedS = qfq_round_down(agg->S, grp->slot_shift);
  1036. /*
  1037. * Insert agg in the correct bucket.
  1038. * If agg->S >= grp->S we don't need to adjust the
  1039. * bucket list and simply go to the insertion phase.
  1040. * Otherwise grp->S is decreasing, we must make room
  1041. * in the bucket list, and also recompute the group state.
  1042. * Finally, if there were no flows in this group and nobody
  1043. * was in ER make sure to adjust V.
  1044. */
  1045. if (grp->full_slots) {
  1046. if (!qfq_gt(grp->S, agg->S))
  1047. goto skip_update;
  1048. /* create a slot for this agg->S */
  1049. qfq_slot_rotate(grp, roundedS);
  1050. /* group was surely ineligible, remove */
  1051. __clear_bit(grp->index, &q->bitmaps[IR]);
  1052. __clear_bit(grp->index, &q->bitmaps[IB]);
  1053. } else if (!q->bitmaps[ER] && qfq_gt(roundedS, q->V) &&
  1054. q->in_serv_agg == NULL)
  1055. q->V = roundedS;
  1056. grp->S = roundedS;
  1057. grp->F = roundedS + (2ULL << grp->slot_shift);
  1058. s = qfq_calc_state(q, grp);
  1059. __set_bit(grp->index, &q->bitmaps[s]);
  1060. pr_debug("qfq enqueue: new state %d %#lx S %lld F %lld V %lld\n",
  1061. s, q->bitmaps[s],
  1062. (unsigned long long) agg->S,
  1063. (unsigned long long) agg->F,
  1064. (unsigned long long) q->V);
  1065. skip_update:
  1066. qfq_slot_insert(grp, agg, roundedS);
  1067. }
  1068. /* Update agg ts and schedule agg for service */
  1069. static void qfq_activate_agg(struct qfq_sched *q, struct qfq_aggregate *agg,
  1070. enum update_reason reason)
  1071. {
  1072. agg->initial_budget = agg->budget = agg->budgetmax; /* recharge budg. */
  1073. qfq_update_agg_ts(q, agg, reason);
  1074. if (q->in_serv_agg == NULL) { /* no aggr. in service or scheduled */
  1075. q->in_serv_agg = agg; /* start serving this aggregate */
  1076. /* update V: to be in service, agg must be eligible */
  1077. q->oldV = q->V = agg->S;
  1078. } else if (agg != q->in_serv_agg)
  1079. qfq_schedule_agg(q, agg);
  1080. }
  1081. static void qfq_slot_remove(struct qfq_sched *q, struct qfq_group *grp,
  1082. struct qfq_aggregate *agg)
  1083. {
  1084. unsigned int i, offset;
  1085. u64 roundedS;
  1086. roundedS = qfq_round_down(agg->S, grp->slot_shift);
  1087. offset = (roundedS - grp->S) >> grp->slot_shift;
  1088. i = (grp->front + offset) % QFQ_MAX_SLOTS;
  1089. hlist_del(&agg->next);
  1090. if (hlist_empty(&grp->slots[i]))
  1091. __clear_bit(offset, &grp->full_slots);
  1092. }
  1093. /*
  1094. * Called to forcibly deschedule an aggregate. If the aggregate is
  1095. * not in the front bucket, or if the latter has other aggregates in
  1096. * the front bucket, we can simply remove the aggregate with no other
  1097. * side effects.
  1098. * Otherwise we must propagate the event up.
  1099. */
  1100. static void qfq_deactivate_agg(struct qfq_sched *q, struct qfq_aggregate *agg)
  1101. {
  1102. struct qfq_group *grp = agg->grp;
  1103. unsigned long mask;
  1104. u64 roundedS;
  1105. int s;
  1106. if (agg == q->in_serv_agg) {
  1107. charge_actual_service(agg);
  1108. q->in_serv_agg = qfq_choose_next_agg(q);
  1109. return;
  1110. }
  1111. agg->F = agg->S;
  1112. qfq_slot_remove(q, grp, agg);
  1113. if (!grp->full_slots) {
  1114. __clear_bit(grp->index, &q->bitmaps[IR]);
  1115. __clear_bit(grp->index, &q->bitmaps[EB]);
  1116. __clear_bit(grp->index, &q->bitmaps[IB]);
  1117. if (test_bit(grp->index, &q->bitmaps[ER]) &&
  1118. !(q->bitmaps[ER] & ~((1UL << grp->index) - 1))) {
  1119. mask = q->bitmaps[ER] & ((1UL << grp->index) - 1);
  1120. if (mask)
  1121. mask = ~((1UL << __fls(mask)) - 1);
  1122. else
  1123. mask = ~0UL;
  1124. qfq_move_groups(q, mask, EB, ER);
  1125. qfq_move_groups(q, mask, IB, IR);
  1126. }
  1127. __clear_bit(grp->index, &q->bitmaps[ER]);
  1128. } else if (hlist_empty(&grp->slots[grp->front])) {
  1129. agg = qfq_slot_scan(grp);
  1130. roundedS = qfq_round_down(agg->S, grp->slot_shift);
  1131. if (grp->S != roundedS) {
  1132. __clear_bit(grp->index, &q->bitmaps[ER]);
  1133. __clear_bit(grp->index, &q->bitmaps[IR]);
  1134. __clear_bit(grp->index, &q->bitmaps[EB]);
  1135. __clear_bit(grp->index, &q->bitmaps[IB]);
  1136. grp->S = roundedS;
  1137. grp->F = roundedS + (2ULL << grp->slot_shift);
  1138. s = qfq_calc_state(q, grp);
  1139. __set_bit(grp->index, &q->bitmaps[s]);
  1140. }
  1141. }
  1142. }
  1143. static void qfq_qlen_notify(struct Qdisc *sch, unsigned long arg)
  1144. {
  1145. struct qfq_sched *q = qdisc_priv(sch);
  1146. struct qfq_class *cl = (struct qfq_class *)arg;
  1147. if (cl->qdisc->q.qlen == 0)
  1148. qfq_deactivate_class(q, cl);
  1149. }
  1150. static unsigned int qfq_drop_from_slot(struct qfq_sched *q,
  1151. struct hlist_head *slot)
  1152. {
  1153. struct qfq_aggregate *agg;
  1154. struct qfq_class *cl;
  1155. unsigned int len;
  1156. hlist_for_each_entry(agg, slot, next) {
  1157. list_for_each_entry(cl, &agg->active, alist) {
  1158. if (!cl->qdisc->ops->drop)
  1159. continue;
  1160. len = cl->qdisc->ops->drop(cl->qdisc);
  1161. if (len > 0) {
  1162. if (cl->qdisc->q.qlen == 0)
  1163. qfq_deactivate_class(q, cl);
  1164. return len;
  1165. }
  1166. }
  1167. }
  1168. return 0;
  1169. }
  1170. static unsigned int qfq_drop(struct Qdisc *sch)
  1171. {
  1172. struct qfq_sched *q = qdisc_priv(sch);
  1173. struct qfq_group *grp;
  1174. unsigned int i, j, len;
  1175. for (i = 0; i <= QFQ_MAX_INDEX; i++) {
  1176. grp = &q->groups[i];
  1177. for (j = 0; j < QFQ_MAX_SLOTS; j++) {
  1178. len = qfq_drop_from_slot(q, &grp->slots[j]);
  1179. if (len > 0) {
  1180. sch->q.qlen--;
  1181. return len;
  1182. }
  1183. }
  1184. }
  1185. return 0;
  1186. }
  1187. static int qfq_init_qdisc(struct Qdisc *sch, struct nlattr *opt)
  1188. {
  1189. struct qfq_sched *q = qdisc_priv(sch);
  1190. struct qfq_group *grp;
  1191. int i, j, err;
  1192. u32 max_cl_shift, maxbudg_shift, max_classes;
  1193. err = qdisc_class_hash_init(&q->clhash);
  1194. if (err < 0)
  1195. return err;
  1196. if (qdisc_dev(sch)->tx_queue_len + 1 > QFQ_MAX_AGG_CLASSES)
  1197. max_classes = QFQ_MAX_AGG_CLASSES;
  1198. else
  1199. max_classes = qdisc_dev(sch)->tx_queue_len + 1;
  1200. /* max_cl_shift = floor(log_2(max_classes)) */
  1201. max_cl_shift = __fls(max_classes);
  1202. q->max_agg_classes = 1<<max_cl_shift;
  1203. /* maxbudg_shift = log2(max_len * max_classes_per_agg) */
  1204. maxbudg_shift = QFQ_MTU_SHIFT + max_cl_shift;
  1205. q->min_slot_shift = FRAC_BITS + maxbudg_shift - QFQ_MAX_INDEX;
  1206. for (i = 0; i <= QFQ_MAX_INDEX; i++) {
  1207. grp = &q->groups[i];
  1208. grp->index = i;
  1209. grp->slot_shift = q->min_slot_shift + i;
  1210. for (j = 0; j < QFQ_MAX_SLOTS; j++)
  1211. INIT_HLIST_HEAD(&grp->slots[j]);
  1212. }
  1213. INIT_HLIST_HEAD(&q->nonfull_aggs);
  1214. return 0;
  1215. }
  1216. static void qfq_reset_qdisc(struct Qdisc *sch)
  1217. {
  1218. struct qfq_sched *q = qdisc_priv(sch);
  1219. struct qfq_class *cl;
  1220. unsigned int i;
  1221. for (i = 0; i < q->clhash.hashsize; i++) {
  1222. hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) {
  1223. if (cl->qdisc->q.qlen > 0)
  1224. qfq_deactivate_class(q, cl);
  1225. qdisc_reset(cl->qdisc);
  1226. }
  1227. }
  1228. sch->q.qlen = 0;
  1229. }
  1230. static void qfq_destroy_qdisc(struct Qdisc *sch)
  1231. {
  1232. struct qfq_sched *q = qdisc_priv(sch);
  1233. struct qfq_class *cl;
  1234. struct hlist_node *next;
  1235. unsigned int i;
  1236. tcf_destroy_chain(&q->filter_list);
  1237. for (i = 0; i < q->clhash.hashsize; i++) {
  1238. hlist_for_each_entry_safe(cl, next, &q->clhash.hash[i],
  1239. common.hnode) {
  1240. qfq_destroy_class(sch, cl);
  1241. }
  1242. }
  1243. qdisc_class_hash_destroy(&q->clhash);
  1244. }
  1245. static const struct Qdisc_class_ops qfq_class_ops = {
  1246. .change = qfq_change_class,
  1247. .delete = qfq_delete_class,
  1248. .get = qfq_get_class,
  1249. .put = qfq_put_class,
  1250. .tcf_chain = qfq_tcf_chain,
  1251. .bind_tcf = qfq_bind_tcf,
  1252. .unbind_tcf = qfq_unbind_tcf,
  1253. .graft = qfq_graft_class,
  1254. .leaf = qfq_class_leaf,
  1255. .qlen_notify = qfq_qlen_notify,
  1256. .dump = qfq_dump_class,
  1257. .dump_stats = qfq_dump_class_stats,
  1258. .walk = qfq_walk,
  1259. };
  1260. static struct Qdisc_ops qfq_qdisc_ops __read_mostly = {
  1261. .cl_ops = &qfq_class_ops,
  1262. .id = "qfq",
  1263. .priv_size = sizeof(struct qfq_sched),
  1264. .enqueue = qfq_enqueue,
  1265. .dequeue = qfq_dequeue,
  1266. .peek = qdisc_peek_dequeued,
  1267. .drop = qfq_drop,
  1268. .init = qfq_init_qdisc,
  1269. .reset = qfq_reset_qdisc,
  1270. .destroy = qfq_destroy_qdisc,
  1271. .owner = THIS_MODULE,
  1272. };
  1273. static int __init qfq_init(void)
  1274. {
  1275. return register_qdisc(&qfq_qdisc_ops);
  1276. }
  1277. static void __exit qfq_exit(void)
  1278. {
  1279. unregister_qdisc(&qfq_qdisc_ops);
  1280. }
  1281. module_init(qfq_init);
  1282. module_exit(qfq_exit);
  1283. MODULE_LICENSE("GPL");