sch_cbq.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:48k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * net/sched/sch_cbq.c Class-Based 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.  */
  12. #include <linux/config.h>
  13. #include <linux/module.h>
  14. #include <asm/uaccess.h>
  15. #include <asm/system.h>
  16. #include <asm/bitops.h>
  17. #include <linux/types.h>
  18. #include <linux/kernel.h>
  19. #include <linux/sched.h>
  20. #include <linux/string.h>
  21. #include <linux/mm.h>
  22. #include <linux/socket.h>
  23. #include <linux/sockios.h>
  24. #include <linux/in.h>
  25. #include <linux/errno.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/if_ether.h>
  28. #include <linux/inet.h>
  29. #include <linux/netdevice.h>
  30. #include <linux/etherdevice.h>
  31. #include <linux/notifier.h>
  32. #include <net/ip.h>
  33. #include <net/route.h>
  34. #include <linux/skbuff.h>
  35. #include <net/sock.h>
  36. #include <net/pkt_sched.h>
  37. /* Class-Based Queueing (CBQ) algorithm.
  38. =======================================
  39. Sources: [1] Sally Floyd and Van Jacobson, "Link-sharing and Resource
  40.          Management Models for Packet Networks",
  41.  IEEE/ACM Transactions on Networking, Vol.3, No.4, 1995
  42.          [2] Sally Floyd, "Notes on CBQ and Guaranted Service", 1995
  43.          [3] Sally Floyd, "Notes on Class-Based Queueing: Setting
  44.  Parameters", 1996
  45.  [4] Sally Floyd and Michael Speer, "Experimental Results
  46.  for Class-Based Queueing", 1998, not published.
  47. -----------------------------------------------------------------------
  48. Algorithm skeleton was taken from NS simulator cbq.cc.
  49. If someone wants to check this code against the LBL version,
  50. he should take into account that ONLY the skeleton was borrowed,
  51. the implementation is different. Particularly:
  52. --- The WRR algorithm is different. Our version looks more
  53.         reasonable (I hope) and works when quanta are allowed to be
  54.         less than MTU, which is always the case when real time classes
  55.         have small rates. Note, that the statement of [3] is
  56.         incomplete, delay may actually be estimated even if class
  57.         per-round allotment is less than MTU. Namely, if per-round
  58.         allotment is W*r_i, and r_1+...+r_k = r < 1
  59. delay_i <= ([MTU/(W*r_i)]*W*r + W*r + k*MTU)/B
  60. In the worst case we have IntServ estimate with D = W*r+k*MTU
  61. and C = MTU*r. The proof (if correct at all) is trivial.
  62. --- It seems that cbq-2.0 is not very accurate. At least, I cannot
  63. interpret some places, which look like wrong translations
  64. from NS. Anyone is advised to find these differences
  65. and explain to me, why I am wrong 8).
  66. --- Linux has no EOI event, so that we cannot estimate true class
  67. idle time. Workaround is to consider the next dequeue event
  68. as sign that previous packet is finished. This is wrong because of
  69. internal device queueing, but on a permanently loaded link it is true.
  70. Moreover, combined with clock integrator, this scheme looks
  71. very close to an ideal solution.  */
  72. struct cbq_sched_data;
  73. struct cbq_class
  74. {
  75. struct cbq_class *next; /* hash table link */
  76. struct cbq_class *next_alive; /* next class with backlog in this priority band */
  77. /* Parameters */
  78. u32 classid;
  79. unsigned char priority; /* class priority */
  80. unsigned char priority2; /* priority to be used after overlimit */
  81. unsigned char ewma_log; /* time constant for idle time calculation */
  82. unsigned char ovl_strategy;
  83. #ifdef CONFIG_NET_CLS_POLICE
  84. unsigned char police;
  85. #endif
  86. u32 defmap;
  87. /* Link-sharing scheduler parameters */
  88. long maxidle; /* Class paramters: see below. */
  89. long offtime;
  90. long minidle;
  91. u32 avpkt;
  92. struct qdisc_rate_table *R_tab;
  93. /* Overlimit strategy parameters */
  94. void (*overlimit)(struct cbq_class *cl);
  95. long penalty;
  96. /* General scheduler (WRR) parameters */
  97. long allot;
  98. long quantum; /* Allotment per WRR round */
  99. long weight; /* Relative allotment: see below */
  100. struct Qdisc *qdisc; /* Ptr to CBQ discipline */
  101. struct cbq_class *split; /* Ptr to split node */
  102. struct cbq_class *share; /* Ptr to LS parent in the class tree */
  103. struct cbq_class *tparent; /* Ptr to tree parent in the class tree */
  104. struct cbq_class *borrow; /* NULL if class is bandwidth limited;
  105.    parent otherwise */
  106. struct cbq_class *sibling; /* Sibling chain */
  107. struct cbq_class *children; /* Pointer to children chain */
  108. struct Qdisc *q; /* Elementary queueing discipline */
  109. /* Variables */
  110. unsigned char cpriority; /* Effective priority */
  111. unsigned char delayed;
  112. unsigned char level; /* level of the class in hierarchy:
  113.    0 for leaf classes, and maximal
  114.    level of children + 1 for nodes.
  115.  */
  116. psched_time_t last; /* Last end of service */
  117. psched_time_t undertime;
  118. long avgidle;
  119. long deficit; /* Saved deficit for WRR */
  120. unsigned long penalized;
  121. struct tc_stats stats;
  122. struct tc_cbq_xstats xstats;
  123. struct tcf_proto *filter_list;
  124. int refcnt;
  125. int filters;
  126. struct cbq_class  *defaults[TC_PRIO_MAX+1];
  127. };
  128. struct cbq_sched_data
  129. {
  130. struct cbq_class *classes[16]; /* Hash table of all classes */
  131. int nclasses[TC_CBQ_MAXPRIO+1];
  132. unsigned quanta[TC_CBQ_MAXPRIO+1];
  133. struct cbq_class link;
  134. unsigned activemask;
  135. struct cbq_class *active[TC_CBQ_MAXPRIO+1]; /* List of all classes
  136.    with backlog */
  137. #ifdef CONFIG_NET_CLS_POLICE
  138. struct cbq_class *rx_class;
  139. #endif
  140. struct cbq_class *tx_class;
  141. struct cbq_class *tx_borrowed;
  142. int tx_len;
  143. psched_time_t now; /* Cached timestamp */
  144. psched_time_t now_rt; /* Cached real time */
  145. unsigned pmask;
  146. struct timer_list delay_timer;
  147. struct timer_list wd_timer; /* Watchdog timer,
  148.    started when CBQ has
  149.    backlog, but cannot
  150.    transmit just now */
  151. long wd_expires;
  152. int toplevel;
  153. u32 hgenerator;
  154. };
  155. #define L2T(cl,len) ((cl)->R_tab->data[(len)>>(cl)->R_tab->rate.cell_log])
  156. static __inline__ unsigned cbq_hash(u32 h)
  157. {
  158. h ^= h>>8;
  159. h ^= h>>4;
  160. return h&0xF;
  161. }
  162. static __inline__ struct cbq_class *
  163. cbq_class_lookup(struct cbq_sched_data *q, u32 classid)
  164. {
  165. struct cbq_class *cl;
  166. for (cl = q->classes[cbq_hash(classid)]; cl; cl = cl->next)
  167. if (cl->classid == classid)
  168. return cl;
  169. return NULL;
  170. }
  171. #ifdef CONFIG_NET_CLS_POLICE
  172. static struct cbq_class *
  173. cbq_reclassify(struct sk_buff *skb, struct cbq_class *this)
  174. {
  175. struct cbq_class *cl, *new;
  176. for (cl = this->tparent; cl; cl = cl->tparent)
  177. if ((new = cl->defaults[TC_PRIO_BESTEFFORT]) != NULL && new != this)
  178. return new;
  179. return NULL;
  180. }
  181. #endif
  182. /* Classify packet. The procedure is pretty complicated, but
  183.    it allows us to combine link sharing and priority scheduling
  184.    transparently.
  185.    Namely, you can put link sharing rules (f.e. route based) at root of CBQ,
  186.    so that it resolves to split nodes. Then packets are classified
  187.    by logical priority, or a more specific classifier may be attached
  188.    to the split node.
  189.  */
  190. static struct cbq_class *
  191. cbq_classify(struct sk_buff *skb, struct Qdisc *sch)
  192. {
  193. struct cbq_sched_data *q = (struct cbq_sched_data*)sch->data;
  194. struct cbq_class *head = &q->link;
  195. struct cbq_class **defmap;
  196. struct cbq_class *cl = NULL;
  197. u32 prio = skb->priority;
  198. struct tcf_result res;
  199. /*
  200.  *  Step 1. If skb->priority points to one of our classes, use it.
  201.  */
  202. if (TC_H_MAJ(prio^sch->handle) == 0 &&
  203.     (cl = cbq_class_lookup(q, prio)) != NULL)
  204. return cl;
  205. for (;;) {
  206. int result = 0;
  207. defmap = head->defaults;
  208. /*
  209.  * Step 2+n. Apply classifier.
  210.  */
  211. if (!head->filter_list || (result = tc_classify(skb, head->filter_list, &res)) < 0)
  212. goto fallback;
  213. if ((cl = (void*)res.class) == NULL) {
  214. if (TC_H_MAJ(res.classid))
  215. cl = cbq_class_lookup(q, res.classid);
  216. else if ((cl = defmap[res.classid&TC_PRIO_MAX]) == NULL)
  217. cl = defmap[TC_PRIO_BESTEFFORT];
  218. if (cl == NULL || cl->level >= head->level)
  219. goto fallback;
  220. }
  221. #ifdef CONFIG_NET_CLS_POLICE
  222. switch (result) {
  223. case TC_POLICE_RECLASSIFY:
  224. return cbq_reclassify(skb, cl);
  225. case TC_POLICE_SHOT:
  226. return NULL;
  227. default:
  228. break;
  229. }
  230. #endif
  231. if (cl->level == 0)
  232. return cl;
  233. /*
  234.  * Step 3+n. If classifier selected a link sharing class,
  235.  *    apply agency specific classifier.
  236.  *    Repeat this procdure until we hit a leaf node.
  237.  */
  238. head = cl;
  239. }
  240. fallback:
  241. cl = head;
  242. /*
  243.  * Step 4. No success...
  244.  */
  245. if (TC_H_MAJ(prio) == 0 &&
  246.     !(cl = head->defaults[prio&TC_PRIO_MAX]) &&
  247.     !(cl = head->defaults[TC_PRIO_BESTEFFORT]))
  248. return head;
  249. return cl;
  250. }
  251. /*
  252.    A packet has just been enqueued on the empty class.
  253.    cbq_activate_class adds it to the tail of active class list
  254.    of its priority band.
  255.  */
  256. static __inline__ void cbq_activate_class(struct cbq_class *cl)
  257. {
  258. struct cbq_sched_data *q = (struct cbq_sched_data*)cl->qdisc->data;
  259. int prio = cl->cpriority;
  260. struct cbq_class *cl_tail;
  261. cl_tail = q->active[prio];
  262. q->active[prio] = cl;
  263. if (cl_tail != NULL) {
  264. cl->next_alive = cl_tail->next_alive;
  265. cl_tail->next_alive = cl;
  266. } else {
  267. cl->next_alive = cl;
  268. q->activemask |= (1<<prio);
  269. }
  270. }
  271. /*
  272.    Unlink class from active chain.
  273.    Note that this same procedure is done directly in cbq_dequeue*
  274.    during round-robin procedure.
  275.  */
  276. static void cbq_deactivate_class(struct cbq_class *this)
  277. {
  278. struct cbq_sched_data *q = (struct cbq_sched_data*)this->qdisc->data;
  279. int prio = this->cpriority;
  280. struct cbq_class *cl;
  281. struct cbq_class *cl_prev = q->active[prio];
  282. do {
  283. cl = cl_prev->next_alive;
  284. if (cl == this) {
  285. cl_prev->next_alive = cl->next_alive;
  286. cl->next_alive = NULL;
  287. if (cl == q->active[prio]) {
  288. q->active[prio] = cl_prev;
  289. if (cl == q->active[prio]) {
  290. q->active[prio] = NULL;
  291. q->activemask &= ~(1<<prio);
  292. return;
  293. }
  294. }
  295. cl = cl_prev->next_alive;
  296. return;
  297. }
  298. } while ((cl_prev = cl) != q->active[prio]);
  299. }
  300. static void
  301. cbq_mark_toplevel(struct cbq_sched_data *q, struct cbq_class *cl)
  302. {
  303. int toplevel = q->toplevel;
  304. if (toplevel > cl->level && !(cl->q->flags&TCQ_F_THROTTLED)) {
  305. psched_time_t now;
  306. psched_tdiff_t incr;
  307. PSCHED_GET_TIME(now);
  308. incr = PSCHED_TDIFF(now, q->now_rt);
  309. PSCHED_TADD2(q->now, incr, now);
  310. do {
  311. if (PSCHED_TLESS(cl->undertime, now)) {
  312. q->toplevel = cl->level;
  313. return;
  314. }
  315. } while ((cl=cl->borrow) != NULL && toplevel > cl->level);
  316. }
  317. }
  318. static int
  319. cbq_enqueue(struct sk_buff *skb, struct Qdisc *sch)
  320. {
  321. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  322. struct cbq_class *cl = cbq_classify(skb, sch);
  323. int len = skb->len;
  324. int ret = NET_XMIT_POLICED;
  325. #ifdef CONFIG_NET_CLS_POLICE
  326. q->rx_class = cl;
  327. #endif
  328. if (cl) {
  329. #ifdef CONFIG_NET_CLS_POLICE
  330. cl->q->__parent = sch;
  331. #endif
  332. if ((ret = cl->q->enqueue(skb, cl->q)) == 0) {
  333. sch->q.qlen++;
  334. sch->stats.packets++;
  335. sch->stats.bytes+=len;
  336. cbq_mark_toplevel(q, cl);
  337. if (!cl->next_alive)
  338. cbq_activate_class(cl);
  339. return 0;
  340. }
  341. }
  342. sch->stats.drops++;
  343. if (cl == NULL)
  344. kfree_skb(skb);
  345. else {
  346. cbq_mark_toplevel(q, cl);
  347. cl->stats.drops++;
  348. }
  349. return ret;
  350. }
  351. static int
  352. cbq_requeue(struct sk_buff *skb, struct Qdisc *sch)
  353. {
  354. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  355. struct cbq_class *cl;
  356. int ret;
  357. if ((cl = q->tx_class) == NULL) {
  358. kfree_skb(skb);
  359. sch->stats.drops++;
  360. return NET_XMIT_CN;
  361. }
  362. q->tx_class = NULL;
  363. cbq_mark_toplevel(q, cl);
  364. #ifdef CONFIG_NET_CLS_POLICE
  365. q->rx_class = cl;
  366. cl->q->__parent = sch;
  367. #endif
  368. if ((ret = cl->q->ops->requeue(skb, cl->q)) == 0) {
  369. sch->q.qlen++;
  370. if (!cl->next_alive)
  371. cbq_activate_class(cl);
  372. return 0;
  373. }
  374. sch->stats.drops++;
  375. cl->stats.drops++;
  376. return ret;
  377. }
  378. /* Overlimit actions */
  379. /* TC_CBQ_OVL_CLASSIC: (default) penalize leaf class by adding offtime */
  380. static void cbq_ovl_classic(struct cbq_class *cl)
  381. {
  382. struct cbq_sched_data *q = (struct cbq_sched_data *)cl->qdisc->data;
  383. psched_tdiff_t delay = PSCHED_TDIFF(cl->undertime, q->now);
  384. if (!cl->delayed) {
  385. delay += cl->offtime;
  386. /* 
  387.    Class goes to sleep, so that it will have no
  388.    chance to work avgidle. Let's forgive it 8)
  389.    BTW cbq-2.0 has a crap in this
  390.    place, apparently they forgot to shift it by cl->ewma_log.
  391.  */
  392. if (cl->avgidle < 0)
  393. delay -= (-cl->avgidle) - ((-cl->avgidle) >> cl->ewma_log);
  394. if (cl->avgidle < cl->minidle)
  395. cl->avgidle = cl->minidle;
  396. if (delay <= 0)
  397. delay = 1;
  398. PSCHED_TADD2(q->now, delay, cl->undertime);
  399. cl->xstats.overactions++;
  400. cl->delayed = 1;
  401. }
  402. if (q->wd_expires == 0 || q->wd_expires > delay)
  403. q->wd_expires = delay;
  404. /* Dirty work! We must schedule wakeups based on
  405.    real available rate, rather than leaf rate,
  406.    which may be tiny (even zero).
  407.  */
  408. if (q->toplevel == TC_CBQ_MAXLEVEL) {
  409. struct cbq_class *b;
  410. psched_tdiff_t base_delay = q->wd_expires;
  411. for (b = cl->borrow; b; b = b->borrow) {
  412. delay = PSCHED_TDIFF(b->undertime, q->now);
  413. if (delay < base_delay) {
  414. if (delay <= 0)
  415. delay = 1;
  416. base_delay = delay;
  417. }
  418. }
  419. q->wd_expires = base_delay;
  420. }
  421. }
  422. /* TC_CBQ_OVL_RCLASSIC: penalize by offtime classes in hierarchy, when
  423.    they go overlimit
  424.  */
  425. static void cbq_ovl_rclassic(struct cbq_class *cl)
  426. {
  427. struct cbq_sched_data *q = (struct cbq_sched_data *)cl->qdisc->data;
  428. struct cbq_class *this = cl;
  429. do {
  430. if (cl->level > q->toplevel) {
  431. cl = NULL;
  432. break;
  433. }
  434. } while ((cl = cl->borrow) != NULL);
  435. if (cl == NULL)
  436. cl = this;
  437. cbq_ovl_classic(cl);
  438. }
  439. /* TC_CBQ_OVL_DELAY: delay until it will go to underlimit */
  440. static void cbq_ovl_delay(struct cbq_class *cl)
  441. {
  442. struct cbq_sched_data *q = (struct cbq_sched_data *)cl->qdisc->data;
  443. psched_tdiff_t delay = PSCHED_TDIFF(cl->undertime, q->now);
  444. if (!cl->delayed) {
  445. unsigned long sched = jiffies;
  446. delay += cl->offtime;
  447. if (cl->avgidle < 0)
  448. delay -= (-cl->avgidle) - ((-cl->avgidle) >> cl->ewma_log);
  449. if (cl->avgidle < cl->minidle)
  450. cl->avgidle = cl->minidle;
  451. PSCHED_TADD2(q->now, delay, cl->undertime);
  452. if (delay > 0) {
  453. sched += PSCHED_US2JIFFIE(delay) + cl->penalty;
  454. cl->penalized = sched;
  455. cl->cpriority = TC_CBQ_MAXPRIO;
  456. q->pmask |= (1<<TC_CBQ_MAXPRIO);
  457. if (del_timer(&q->delay_timer) &&
  458.     (long)(q->delay_timer.expires - sched) > 0)
  459. q->delay_timer.expires = sched;
  460. add_timer(&q->delay_timer);
  461. cl->delayed = 1;
  462. cl->xstats.overactions++;
  463. return;
  464. }
  465. delay = 1;
  466. }
  467. if (q->wd_expires == 0 || q->wd_expires > delay)
  468. q->wd_expires = delay;
  469. }
  470. /* TC_CBQ_OVL_LOWPRIO: penalize class by lowering its priority band */
  471. static void cbq_ovl_lowprio(struct cbq_class *cl)
  472. {
  473. struct cbq_sched_data *q = (struct cbq_sched_data*)cl->qdisc->data;
  474. cl->penalized = jiffies + cl->penalty;
  475. if (cl->cpriority != cl->priority2) {
  476. cl->cpriority = cl->priority2;
  477. q->pmask |= (1<<cl->cpriority);
  478. cl->xstats.overactions++;
  479. }
  480. cbq_ovl_classic(cl);
  481. }
  482. /* TC_CBQ_OVL_DROP: penalize class by dropping */
  483. static void cbq_ovl_drop(struct cbq_class *cl)
  484. {
  485. if (cl->q->ops->drop)
  486. if (cl->q->ops->drop(cl->q))
  487. cl->qdisc->q.qlen--;
  488. cl->xstats.overactions++;
  489. cbq_ovl_classic(cl);
  490. }
  491. static void cbq_watchdog(unsigned long arg)
  492. {
  493. struct Qdisc *sch = (struct Qdisc*)arg;
  494. sch->flags &= ~TCQ_F_THROTTLED;
  495. netif_schedule(sch->dev);
  496. }
  497. static unsigned long cbq_undelay_prio(struct cbq_sched_data *q, int prio)
  498. {
  499. struct cbq_class *cl;
  500. struct cbq_class *cl_prev = q->active[prio];
  501. unsigned long now = jiffies;
  502. unsigned long sched = now;
  503. if (cl_prev == NULL)
  504. return now;
  505. do {
  506. cl = cl_prev->next_alive;
  507. if ((long)(now - cl->penalized) > 0) {
  508. cl_prev->next_alive = cl->next_alive;
  509. cl->next_alive = NULL;
  510. cl->cpriority = cl->priority;
  511. cl->delayed = 0;
  512. cbq_activate_class(cl);
  513. if (cl == q->active[prio]) {
  514. q->active[prio] = cl_prev;
  515. if (cl == q->active[prio]) {
  516. q->active[prio] = NULL;
  517. return 0;
  518. }
  519. }
  520. cl = cl_prev->next_alive;
  521. } else if ((long)(sched - cl->penalized) > 0)
  522. sched = cl->penalized;
  523. } while ((cl_prev = cl) != q->active[prio]);
  524. return (long)(sched - now);
  525. }
  526. static void cbq_undelay(unsigned long arg)
  527. {
  528. struct Qdisc *sch = (struct Qdisc*)arg;
  529. struct cbq_sched_data *q = (struct cbq_sched_data*)sch->data;
  530. long delay = 0;
  531. unsigned pmask;
  532. pmask = q->pmask;
  533. q->pmask = 0;
  534. while (pmask) {
  535. int prio = ffz(~pmask);
  536. long tmp;
  537. pmask &= ~(1<<prio);
  538. tmp = cbq_undelay_prio(q, prio);
  539. if (tmp > 0) {
  540. q->pmask |= 1<<prio;
  541. if (tmp < delay || delay == 0)
  542. delay = tmp;
  543. }
  544. }
  545. if (delay) {
  546. q->delay_timer.expires = jiffies + delay;
  547. add_timer(&q->delay_timer);
  548. }
  549. sch->flags &= ~TCQ_F_THROTTLED;
  550. netif_schedule(sch->dev);
  551. }
  552. #ifdef CONFIG_NET_CLS_POLICE
  553. static int cbq_reshape_fail(struct sk_buff *skb, struct Qdisc *child)
  554. {
  555. int len = skb->len;
  556. struct Qdisc *sch = child->__parent;
  557. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  558. struct cbq_class *cl = q->rx_class;
  559. q->rx_class = NULL;
  560. if (cl && (cl = cbq_reclassify(skb, cl)) != NULL) {
  561. cbq_mark_toplevel(q, cl);
  562. q->rx_class = cl;
  563. cl->q->__parent = sch;
  564. if (cl->q->enqueue(skb, cl->q) == 0) {
  565. sch->q.qlen++;
  566. sch->stats.packets++;
  567. sch->stats.bytes+=len;
  568. if (!cl->next_alive)
  569. cbq_activate_class(cl);
  570. return 0;
  571. }
  572. sch->stats.drops++;
  573. return 0;
  574. }
  575. sch->stats.drops++;
  576. return -1;
  577. }
  578. #endif
  579. /* 
  580.    It is mission critical procedure.
  581.    We "regenerate" toplevel cutoff, if transmitting class
  582.    has backlog and it is not regulated. It is not part of
  583.    original CBQ description, but looks more reasonable.
  584.    Probably, it is wrong. This question needs further investigation.
  585. */
  586. static __inline__ void
  587. cbq_update_toplevel(struct cbq_sched_data *q, struct cbq_class *cl,
  588.     struct cbq_class *borrowed)
  589. {
  590. if (cl && q->toplevel >= borrowed->level) {
  591. if (cl->q->q.qlen > 1) {
  592. do {
  593. if (PSCHED_IS_PASTPERFECT(borrowed->undertime)) {
  594. q->toplevel = borrowed->level;
  595. return;
  596. }
  597. } while ((borrowed=borrowed->borrow) != NULL);
  598. }
  599. #if 0
  600. /* It is not necessary now. Uncommenting it
  601.    will save CPU cycles, but decrease fairness.
  602.  */
  603. q->toplevel = TC_CBQ_MAXLEVEL;
  604. #endif
  605. }
  606. }
  607. static void
  608. cbq_update(struct cbq_sched_data *q)
  609. {
  610. struct cbq_class *this = q->tx_class;
  611. struct cbq_class *cl = this;
  612. int len = q->tx_len;
  613. q->tx_class = NULL;
  614. for ( ; cl; cl = cl->share) {
  615. long avgidle = cl->avgidle;
  616. long idle;
  617. cl->stats.packets++;
  618. cl->stats.bytes += len;
  619. /*
  620.    (now - last) is total time between packet right edges.
  621.    (last_pktlen/rate) is "virtual" busy time, so that
  622.          idle = (now - last) - last_pktlen/rate
  623.  */
  624. idle = PSCHED_TDIFF(q->now, cl->last);
  625. if ((unsigned long)idle > 128*1024*1024) {
  626. avgidle = cl->maxidle;
  627. } else {
  628. idle -= L2T(cl, len);
  629. /* true_avgidle := (1-W)*true_avgidle + W*idle,
  630.    where W=2^{-ewma_log}. But cl->avgidle is scaled:
  631.    cl->avgidle == true_avgidle/W,
  632.    hence:
  633.  */
  634. avgidle += idle - (avgidle>>cl->ewma_log);
  635. }
  636. if (avgidle <= 0) {
  637. /* Overlimit or at-limit */
  638. if (avgidle < cl->minidle)
  639. avgidle = cl->minidle;
  640. cl->avgidle = avgidle;
  641. /* Calculate expected time, when this class
  642.    will be allowed to send.
  643.    It will occur, when:
  644.    (1-W)*true_avgidle + W*delay = 0, i.e.
  645.    idle = (1/W - 1)*(-true_avgidle)
  646.    or
  647.    idle = (1 - W)*(-cl->avgidle);
  648.  */
  649. idle = (-avgidle) - ((-avgidle) >> cl->ewma_log);
  650. /*
  651.    That is not all.
  652.    To maintain the rate allocated to the class,
  653.    we add to undertime virtual clock,
  654.    necesary to complete transmitted packet.
  655.    (len/phys_bandwidth has been already passed
  656.    to the moment of cbq_update)
  657.  */
  658. idle -= L2T(&q->link, len);
  659. idle += L2T(cl, len);
  660. PSCHED_AUDIT_TDIFF(idle);
  661. PSCHED_TADD2(q->now, idle, cl->undertime);
  662. } else {
  663. /* Underlimit */
  664. PSCHED_SET_PASTPERFECT(cl->undertime);
  665. if (avgidle > cl->maxidle)
  666. cl->avgidle = cl->maxidle;
  667. else
  668. cl->avgidle = avgidle;
  669. }
  670. cl->last = q->now;
  671. }
  672. cbq_update_toplevel(q, this, q->tx_borrowed);
  673. }
  674. static __inline__ struct cbq_class *
  675. cbq_under_limit(struct cbq_class *cl)
  676. {
  677. struct cbq_sched_data *q = (struct cbq_sched_data*)cl->qdisc->data;
  678. struct cbq_class *this_cl = cl;
  679. if (cl->tparent == NULL)
  680. return cl;
  681. if (PSCHED_IS_PASTPERFECT(cl->undertime) ||
  682.     !PSCHED_TLESS(q->now, cl->undertime)) {
  683. cl->delayed = 0;
  684. return cl;
  685. }
  686. do {
  687. /* It is very suspicious place. Now overlimit
  688.    action is generated for not bounded classes
  689.    only if link is completely congested.
  690.    Though it is in agree with ancestor-only paradigm,
  691.    it looks very stupid. Particularly,
  692.    it means that this chunk of code will either
  693.    never be called or result in strong amplification
  694.    of burstiness. Dangerous, silly, and, however,
  695.    no another solution exists.
  696.  */
  697. if ((cl = cl->borrow) == NULL) {
  698. this_cl->stats.overlimits++;
  699. this_cl->overlimit(this_cl);
  700. return NULL;
  701. }
  702. if (cl->level > q->toplevel)
  703. return NULL;
  704. } while (!PSCHED_IS_PASTPERFECT(cl->undertime) &&
  705.  PSCHED_TLESS(q->now, cl->undertime));
  706. cl->delayed = 0;
  707. return cl;
  708. }
  709. static __inline__ struct sk_buff *
  710. cbq_dequeue_prio(struct Qdisc *sch, int prio)
  711. {
  712. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  713. struct cbq_class *cl_tail, *cl_prev, *cl;
  714. struct sk_buff *skb;
  715. int deficit;
  716. cl_tail = cl_prev = q->active[prio];
  717. cl = cl_prev->next_alive;
  718. do {
  719. deficit = 0;
  720. /* Start round */
  721. do {
  722. struct cbq_class *borrow = cl;
  723. if (cl->q->q.qlen &&
  724.     (borrow = cbq_under_limit(cl)) == NULL)
  725. goto skip_class;
  726. if (cl->deficit <= 0) {
  727. /* Class exhausted its allotment per
  728.    this round. Switch to the next one.
  729.  */
  730. deficit = 1;
  731. cl->deficit += cl->quantum;
  732. goto next_class;
  733. }
  734. skb = cl->q->dequeue(cl->q);
  735. /* Class did not give us any skb :-(
  736.    It could occur even if cl->q->q.qlen != 0 
  737.    f.e. if cl->q == "tbf"
  738.  */
  739. if (skb == NULL)
  740. goto skip_class;
  741. cl->deficit -= skb->len;
  742. q->tx_class = cl;
  743. q->tx_borrowed = borrow;
  744. if (borrow != cl) {
  745. #ifndef CBQ_XSTATS_BORROWS_BYTES
  746. borrow->xstats.borrows++;
  747. cl->xstats.borrows++;
  748. #else
  749. borrow->xstats.borrows += skb->len;
  750. cl->xstats.borrows += skb->len;
  751. #endif
  752. }
  753. q->tx_len = skb->len;
  754. if (cl->deficit <= 0) {
  755. q->active[prio] = cl;
  756. cl = cl->next_alive;
  757. cl->deficit += cl->quantum;
  758. }
  759. return skb;
  760. skip_class:
  761. if (cl->q->q.qlen == 0 || prio != cl->cpriority) {
  762. /* Class is empty or penalized.
  763.    Unlink it from active chain.
  764.  */
  765. cl_prev->next_alive = cl->next_alive;
  766. cl->next_alive = NULL;
  767. /* Did cl_tail point to it? */
  768. if (cl == cl_tail) {
  769. /* Repair it! */
  770. cl_tail = cl_prev;
  771. /* Was it the last class in this band? */
  772. if (cl == cl_tail) {
  773. /* Kill the band! */
  774. q->active[prio] = NULL;
  775. q->activemask &= ~(1<<prio);
  776. if (cl->q->q.qlen)
  777. cbq_activate_class(cl);
  778. return NULL;
  779. }
  780. q->active[prio] = cl_tail;
  781. }
  782. if (cl->q->q.qlen)
  783. cbq_activate_class(cl);
  784. cl = cl_prev;
  785. }
  786. next_class:
  787. cl_prev = cl;
  788. cl = cl->next_alive;
  789. } while (cl_prev != cl_tail);
  790. } while (deficit);
  791. q->active[prio] = cl_prev;
  792. return NULL;
  793. }
  794. static __inline__ struct sk_buff *
  795. cbq_dequeue_1(struct Qdisc *sch)
  796. {
  797. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  798. struct sk_buff *skb;
  799. unsigned activemask;
  800. activemask = q->activemask&0xFF;
  801. while (activemask) {
  802. int prio = ffz(~activemask);
  803. activemask &= ~(1<<prio);
  804. skb = cbq_dequeue_prio(sch, prio);
  805. if (skb)
  806. return skb;
  807. }
  808. return NULL;
  809. }
  810. static struct sk_buff *
  811. cbq_dequeue(struct Qdisc *sch)
  812. {
  813. struct sk_buff *skb;
  814. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  815. psched_time_t now;
  816. psched_tdiff_t incr;
  817. PSCHED_GET_TIME(now);
  818. incr = PSCHED_TDIFF(now, q->now_rt);
  819. if (q->tx_class) {
  820. psched_tdiff_t incr2;
  821. /* Time integrator. We calculate EOS time
  822.    by adding expected packet transmittion time.
  823.    If real time is greater, we warp artificial clock,
  824.    so that:
  825.    cbq_time = max(real_time, work);
  826.  */
  827. incr2 = L2T(&q->link, q->tx_len);
  828. PSCHED_TADD(q->now, incr2);
  829. cbq_update(q);
  830. if ((incr -= incr2) < 0)
  831. incr = 0;
  832. }
  833. PSCHED_TADD(q->now, incr);
  834. q->now_rt = now;
  835. for (;;) {
  836. q->wd_expires = 0;
  837. skb = cbq_dequeue_1(sch);
  838. if (skb) {
  839. sch->q.qlen--;
  840. sch->flags &= ~TCQ_F_THROTTLED;
  841. return skb;
  842. }
  843. /* All the classes are overlimit.
  844.    It is possible, if:
  845.    1. Scheduler is empty.
  846.    2. Toplevel cutoff inhibited borrowing.
  847.    3. Root class is overlimit.
  848.    Reset 2d and 3d conditions and retry.
  849.    Note, that NS and cbq-2.0 are buggy, peeking
  850.    an arbitrary class is appropriate for ancestor-only
  851.    sharing, but not for toplevel algorithm.
  852.    Our version is better, but slower, because it requires
  853.    two passes, but it is unavoidable with top-level sharing.
  854. */
  855. if (q->toplevel == TC_CBQ_MAXLEVEL &&
  856.     PSCHED_IS_PASTPERFECT(q->link.undertime))
  857. break;
  858. q->toplevel = TC_CBQ_MAXLEVEL;
  859. PSCHED_SET_PASTPERFECT(q->link.undertime);
  860. }
  861. /* No packets in scheduler or nobody wants to give them to us :-(
  862.    Sigh... start watchdog timer in the last case. */
  863. if (sch->q.qlen) {
  864. sch->stats.overlimits++;
  865. if (q->wd_expires && !netif_queue_stopped(sch->dev)) {
  866. long delay = PSCHED_US2JIFFIE(q->wd_expires);
  867. del_timer(&q->wd_timer);
  868. if (delay <= 0)
  869. delay = 1;
  870. q->wd_timer.expires = jiffies + delay;
  871. add_timer(&q->wd_timer);
  872. sch->flags |= TCQ_F_THROTTLED;
  873. }
  874. }
  875. return NULL;
  876. }
  877. /* CBQ class maintanance routines */
  878. static void cbq_adjust_levels(struct cbq_class *this)
  879. {
  880. if (this == NULL)
  881. return;
  882. do {
  883. int level = 0;
  884. struct cbq_class *cl;
  885. if ((cl = this->children) != NULL) {
  886. do {
  887. if (cl->level > level)
  888. level = cl->level;
  889. } while ((cl = cl->sibling) != this->children);
  890. }
  891. this->level = level+1;
  892. } while ((this = this->tparent) != NULL);
  893. }
  894. static void cbq_normalize_quanta(struct cbq_sched_data *q, int prio)
  895. {
  896. struct cbq_class *cl;
  897. unsigned h;
  898. if (q->quanta[prio] == 0)
  899. return;
  900. for (h=0; h<16; h++) {
  901. for (cl = q->classes[h]; cl; cl = cl->next) {
  902. /* BUGGGG... Beware! This expression suffer of
  903.    arithmetic overflows!
  904.  */
  905. if (cl->priority == prio) {
  906. cl->quantum = (cl->weight*cl->allot*q->nclasses[prio])/
  907. q->quanta[prio];
  908. }
  909. if (cl->quantum <= 0 || cl->quantum>32*cl->qdisc->dev->mtu) {
  910. printk(KERN_WARNING "CBQ: class %08x has bad quantum==%ld, repaired.n", cl->classid, cl->quantum);
  911. cl->quantum = cl->qdisc->dev->mtu/2 + 1;
  912. }
  913. }
  914. }
  915. }
  916. static void cbq_sync_defmap(struct cbq_class *cl)
  917. {
  918. struct cbq_sched_data *q = (struct cbq_sched_data*)cl->qdisc->data;
  919. struct cbq_class *split = cl->split;
  920. unsigned h;
  921. int i;
  922. if (split == NULL)
  923. return;
  924. for (i=0; i<=TC_PRIO_MAX; i++) {
  925. if (split->defaults[i] == cl && !(cl->defmap&(1<<i)))
  926. split->defaults[i] = NULL;
  927. }
  928. for (i=0; i<=TC_PRIO_MAX; i++) {
  929. int level = split->level;
  930. if (split->defaults[i])
  931. continue;
  932. for (h=0; h<16; h++) {
  933. struct cbq_class *c;
  934. for (c = q->classes[h]; c; c = c->next) {
  935. if (c->split == split && c->level < level &&
  936.     c->defmap&(1<<i)) {
  937. split->defaults[i] = c;
  938. level = c->level;
  939. }
  940. }
  941. }
  942. }
  943. }
  944. static void cbq_change_defmap(struct cbq_class *cl, u32 splitid, u32 def, u32 mask)
  945. {
  946. struct cbq_class *split = NULL;
  947. if (splitid == 0) {
  948. if ((split = cl->split) == NULL)
  949. return;
  950. splitid = split->classid;
  951. }
  952. if (split == NULL || split->classid != splitid) {
  953. for (split = cl->tparent; split; split = split->tparent)
  954. if (split->classid == splitid)
  955. break;
  956. }
  957. if (split == NULL)
  958. return;
  959. if (cl->split != split) {
  960. cl->defmap = 0;
  961. cbq_sync_defmap(cl);
  962. cl->split = split;
  963. cl->defmap = def&mask;
  964. } else
  965. cl->defmap = (cl->defmap&~mask)|(def&mask);
  966. cbq_sync_defmap(cl);
  967. }
  968. static void cbq_unlink_class(struct cbq_class *this)
  969. {
  970. struct cbq_class *cl, **clp;
  971. struct cbq_sched_data *q = (struct cbq_sched_data*)this->qdisc->data;
  972. for (clp = &q->classes[cbq_hash(this->classid)]; (cl = *clp) != NULL; clp = &cl->next) {
  973. if (cl == this) {
  974. *clp = cl->next;
  975. cl->next = NULL;
  976. break;
  977. }
  978. }
  979. if (this->tparent) {
  980. clp=&this->sibling;
  981. cl = *clp;
  982. do {
  983. if (cl == this) {
  984. *clp = cl->sibling;
  985. break;
  986. }
  987. clp = &cl->sibling;
  988. } while ((cl = *clp) != this->sibling);
  989. if (this->tparent->children == this) {
  990. this->tparent->children = this->sibling;
  991. if (this->sibling == this)
  992. this->tparent->children = NULL;
  993. }
  994. } else {
  995. BUG_TRAP(this->sibling == this);
  996. }
  997. }
  998. static void cbq_link_class(struct cbq_class *this)
  999. {
  1000. struct cbq_sched_data *q = (struct cbq_sched_data*)this->qdisc->data;
  1001. unsigned h = cbq_hash(this->classid);
  1002. struct cbq_class *parent = this->tparent;
  1003. this->sibling = this;
  1004. this->next = q->classes[h];
  1005. q->classes[h] = this;
  1006. if (parent == NULL)
  1007. return;
  1008. if (parent->children == NULL) {
  1009. parent->children = this;
  1010. } else {
  1011. this->sibling = parent->children->sibling;
  1012. parent->children->sibling = this;
  1013. }
  1014. }
  1015. static int cbq_drop(struct Qdisc* sch)
  1016. {
  1017. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1018. struct cbq_class *cl, *cl_head;
  1019. int prio;
  1020. for (prio = TC_CBQ_MAXPRIO; prio >= 0; prio--) {
  1021. if ((cl_head = q->active[prio]) == NULL)
  1022. continue;
  1023. cl = cl_head;
  1024. do {
  1025. if (cl->q->ops->drop && cl->q->ops->drop(cl->q)) {
  1026. sch->q.qlen--;
  1027. return 1;
  1028. }
  1029. } while ((cl = cl->next_alive) != cl_head);
  1030. }
  1031. return 0;
  1032. }
  1033. static void
  1034. cbq_reset(struct Qdisc* sch)
  1035. {
  1036. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1037. struct cbq_class *cl;
  1038. int prio;
  1039. unsigned h;
  1040. q->activemask = 0;
  1041. q->pmask = 0;
  1042. q->tx_class = NULL;
  1043. q->tx_borrowed = NULL;
  1044. del_timer(&q->wd_timer);
  1045. del_timer(&q->delay_timer);
  1046. q->toplevel = TC_CBQ_MAXLEVEL;
  1047. PSCHED_GET_TIME(q->now);
  1048. q->now_rt = q->now;
  1049. for (prio = 0; prio <= TC_CBQ_MAXPRIO; prio++)
  1050. q->active[prio] = NULL;
  1051. for (h = 0; h < 16; h++) {
  1052. for (cl = q->classes[h]; cl; cl = cl->next) {
  1053. qdisc_reset(cl->q);
  1054. cl->next_alive = NULL;
  1055. PSCHED_SET_PASTPERFECT(cl->undertime);
  1056. cl->avgidle = cl->maxidle;
  1057. cl->deficit = cl->quantum;
  1058. cl->cpriority = cl->priority;
  1059. }
  1060. }
  1061. sch->q.qlen = 0;
  1062. }
  1063. static int cbq_set_lss(struct cbq_class *cl, struct tc_cbq_lssopt *lss)
  1064. {
  1065. if (lss->change&TCF_CBQ_LSS_FLAGS) {
  1066. cl->share = (lss->flags&TCF_CBQ_LSS_ISOLATED) ? NULL : cl->tparent;
  1067. cl->borrow = (lss->flags&TCF_CBQ_LSS_BOUNDED) ? NULL : cl->tparent;
  1068. }
  1069. if (lss->change&TCF_CBQ_LSS_EWMA)
  1070. cl->ewma_log = lss->ewma_log;
  1071. if (lss->change&TCF_CBQ_LSS_AVPKT)
  1072. cl->avpkt = lss->avpkt;
  1073. if (lss->change&TCF_CBQ_LSS_MINIDLE)
  1074. cl->minidle = -(long)lss->minidle;
  1075. if (lss->change&TCF_CBQ_LSS_MAXIDLE) {
  1076. cl->maxidle = lss->maxidle;
  1077. cl->avgidle = lss->maxidle;
  1078. }
  1079. if (lss->change&TCF_CBQ_LSS_OFFTIME)
  1080. cl->offtime = lss->offtime;
  1081. return 0;
  1082. }
  1083. static void cbq_rmprio(struct cbq_sched_data *q, struct cbq_class *cl)
  1084. {
  1085. q->nclasses[cl->priority]--;
  1086. q->quanta[cl->priority] -= cl->weight;
  1087. cbq_normalize_quanta(q, cl->priority);
  1088. }
  1089. static void cbq_addprio(struct cbq_sched_data *q, struct cbq_class *cl)
  1090. {
  1091. q->nclasses[cl->priority]++;
  1092. q->quanta[cl->priority] += cl->weight;
  1093. cbq_normalize_quanta(q, cl->priority);
  1094. }
  1095. static int cbq_set_wrr(struct cbq_class *cl, struct tc_cbq_wrropt *wrr)
  1096. {
  1097. struct cbq_sched_data *q = (struct cbq_sched_data *)cl->qdisc->data;
  1098. if (wrr->allot)
  1099. cl->allot = wrr->allot;
  1100. if (wrr->weight)
  1101. cl->weight = wrr->weight;
  1102. if (wrr->priority) {
  1103. cl->priority = wrr->priority-1;
  1104. cl->cpriority = cl->priority;
  1105. if (cl->priority >= cl->priority2)
  1106. cl->priority2 = TC_CBQ_MAXPRIO-1;
  1107. }
  1108. cbq_addprio(q, cl);
  1109. return 0;
  1110. }
  1111. static int cbq_set_overlimit(struct cbq_class *cl, struct tc_cbq_ovl *ovl)
  1112. {
  1113. switch (ovl->strategy) {
  1114. case TC_CBQ_OVL_CLASSIC:
  1115. cl->overlimit = cbq_ovl_classic;
  1116. break;
  1117. case TC_CBQ_OVL_DELAY:
  1118. cl->overlimit = cbq_ovl_delay;
  1119. break;
  1120. case TC_CBQ_OVL_LOWPRIO:
  1121. if (ovl->priority2-1 >= TC_CBQ_MAXPRIO ||
  1122.     ovl->priority2-1 <= cl->priority)
  1123. return -EINVAL;
  1124. cl->priority2 = ovl->priority2-1;
  1125. cl->overlimit = cbq_ovl_lowprio;
  1126. break;
  1127. case TC_CBQ_OVL_DROP:
  1128. cl->overlimit = cbq_ovl_drop;
  1129. break;
  1130. case TC_CBQ_OVL_RCLASSIC:
  1131. cl->overlimit = cbq_ovl_rclassic;
  1132. break;
  1133. default:
  1134. return -EINVAL;
  1135. }
  1136. cl->penalty = (ovl->penalty*HZ)/1000;
  1137. return 0;
  1138. }
  1139. #ifdef CONFIG_NET_CLS_POLICE
  1140. static int cbq_set_police(struct cbq_class *cl, struct tc_cbq_police *p)
  1141. {
  1142. cl->police = p->police;
  1143. if (cl->q->handle) {
  1144. if (p->police == TC_POLICE_RECLASSIFY)
  1145. cl->q->reshape_fail = cbq_reshape_fail;
  1146. else
  1147. cl->q->reshape_fail = NULL;
  1148. }
  1149. return 0;
  1150. }
  1151. #endif
  1152. static int cbq_set_fopt(struct cbq_class *cl, struct tc_cbq_fopt *fopt)
  1153. {
  1154. cbq_change_defmap(cl, fopt->split, fopt->defmap, fopt->defchange);
  1155. return 0;
  1156. }
  1157. static int cbq_init(struct Qdisc *sch, struct rtattr *opt)
  1158. {
  1159. struct cbq_sched_data *q = (struct cbq_sched_data*)sch->data;
  1160. struct rtattr *tb[TCA_CBQ_MAX];
  1161. struct tc_ratespec *r;
  1162. if (rtattr_parse(tb, TCA_CBQ_MAX, RTA_DATA(opt), RTA_PAYLOAD(opt)) < 0 ||
  1163.     tb[TCA_CBQ_RTAB-1] == NULL || tb[TCA_CBQ_RATE-1] == NULL ||
  1164.     RTA_PAYLOAD(tb[TCA_CBQ_RATE-1]) < sizeof(struct tc_ratespec))
  1165. return -EINVAL;
  1166. if (tb[TCA_CBQ_LSSOPT-1] &&
  1167.     RTA_PAYLOAD(tb[TCA_CBQ_LSSOPT-1]) < sizeof(struct tc_cbq_lssopt))
  1168. return -EINVAL;
  1169. r = RTA_DATA(tb[TCA_CBQ_RATE-1]);
  1170. MOD_INC_USE_COUNT;
  1171. if ((q->link.R_tab = qdisc_get_rtab(r, tb[TCA_CBQ_RTAB-1])) == NULL) {
  1172. MOD_DEC_USE_COUNT;
  1173. return -EINVAL;
  1174. }
  1175. q->link.refcnt = 1;
  1176. q->link.sibling = &q->link;
  1177. q->link.classid = sch->handle;
  1178. q->link.qdisc = sch;
  1179. if (!(q->link.q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops)))
  1180. q->link.q = &noop_qdisc;
  1181. q->link.priority = TC_CBQ_MAXPRIO-1;
  1182. q->link.priority2 = TC_CBQ_MAXPRIO-1;
  1183. q->link.cpriority = TC_CBQ_MAXPRIO-1;
  1184. q->link.ovl_strategy = TC_CBQ_OVL_CLASSIC;
  1185. q->link.overlimit = cbq_ovl_classic;
  1186. q->link.allot = psched_mtu(sch->dev);
  1187. q->link.quantum = q->link.allot;
  1188. q->link.weight = q->link.R_tab->rate.rate;
  1189. q->link.ewma_log = TC_CBQ_DEF_EWMA;
  1190. q->link.avpkt = q->link.allot/2;
  1191. q->link.minidle = -0x7FFFFFFF;
  1192. q->link.stats.lock = &sch->dev->queue_lock;
  1193. init_timer(&q->wd_timer);
  1194. q->wd_timer.data = (unsigned long)sch;
  1195. q->wd_timer.function = cbq_watchdog;
  1196. init_timer(&q->delay_timer);
  1197. q->delay_timer.data = (unsigned long)sch;
  1198. q->delay_timer.function = cbq_undelay;
  1199. q->toplevel = TC_CBQ_MAXLEVEL;
  1200. PSCHED_GET_TIME(q->now);
  1201. q->now_rt = q->now;
  1202. cbq_link_class(&q->link);
  1203. if (tb[TCA_CBQ_LSSOPT-1])
  1204. cbq_set_lss(&q->link, RTA_DATA(tb[TCA_CBQ_LSSOPT-1]));
  1205. cbq_addprio(q, &q->link);
  1206. return 0;
  1207. }
  1208. static __inline__ int cbq_dump_rate(struct sk_buff *skb, struct cbq_class *cl)
  1209. {
  1210. unsigned char  *b = skb->tail;
  1211. RTA_PUT(skb, TCA_CBQ_RATE, sizeof(cl->R_tab->rate), &cl->R_tab->rate);
  1212. return skb->len;
  1213. rtattr_failure:
  1214. skb_trim(skb, b - skb->data);
  1215. return -1;
  1216. }
  1217. static __inline__ int cbq_dump_lss(struct sk_buff *skb, struct cbq_class *cl)
  1218. {
  1219. unsigned char  *b = skb->tail;
  1220. struct tc_cbq_lssopt opt;
  1221. opt.flags = 0;
  1222. if (cl->borrow == NULL)
  1223. opt.flags |= TCF_CBQ_LSS_BOUNDED;
  1224. if (cl->share == NULL)
  1225. opt.flags |= TCF_CBQ_LSS_ISOLATED;
  1226. opt.ewma_log = cl->ewma_log;
  1227. opt.level = cl->level;
  1228. opt.avpkt = cl->avpkt;
  1229. opt.maxidle = cl->maxidle;
  1230. opt.minidle = (u32)(-cl->minidle);
  1231. opt.offtime = cl->offtime;
  1232. opt.change = ~0;
  1233. RTA_PUT(skb, TCA_CBQ_LSSOPT, sizeof(opt), &opt);
  1234. return skb->len;
  1235. rtattr_failure:
  1236. skb_trim(skb, b - skb->data);
  1237. return -1;
  1238. }
  1239. static __inline__ int cbq_dump_wrr(struct sk_buff *skb, struct cbq_class *cl)
  1240. {
  1241. unsigned char  *b = skb->tail;
  1242. struct tc_cbq_wrropt opt;
  1243. opt.flags = 0;
  1244. opt.allot = cl->allot;
  1245. opt.priority = cl->priority+1;
  1246. opt.cpriority = cl->cpriority+1;
  1247. opt.weight = cl->weight;
  1248. RTA_PUT(skb, TCA_CBQ_WRROPT, sizeof(opt), &opt);
  1249. return skb->len;
  1250. rtattr_failure:
  1251. skb_trim(skb, b - skb->data);
  1252. return -1;
  1253. }
  1254. static __inline__ int cbq_dump_ovl(struct sk_buff *skb, struct cbq_class *cl)
  1255. {
  1256. unsigned char  *b = skb->tail;
  1257. struct tc_cbq_ovl opt;
  1258. opt.strategy = cl->ovl_strategy;
  1259. opt.priority2 = cl->priority2+1;
  1260. opt.penalty = (cl->penalty*1000)/HZ;
  1261. RTA_PUT(skb, TCA_CBQ_OVL_STRATEGY, sizeof(opt), &opt);
  1262. return skb->len;
  1263. rtattr_failure:
  1264. skb_trim(skb, b - skb->data);
  1265. return -1;
  1266. }
  1267. static __inline__ int cbq_dump_fopt(struct sk_buff *skb, struct cbq_class *cl)
  1268. {
  1269. unsigned char  *b = skb->tail;
  1270. struct tc_cbq_fopt opt;
  1271. if (cl->split || cl->defmap) {
  1272. opt.split = cl->split ? cl->split->classid : 0;
  1273. opt.defmap = cl->defmap;
  1274. opt.defchange = ~0;
  1275. RTA_PUT(skb, TCA_CBQ_FOPT, sizeof(opt), &opt);
  1276. }
  1277. return skb->len;
  1278. rtattr_failure:
  1279. skb_trim(skb, b - skb->data);
  1280. return -1;
  1281. }
  1282. #ifdef CONFIG_NET_CLS_POLICE
  1283. static __inline__ int cbq_dump_police(struct sk_buff *skb, struct cbq_class *cl)
  1284. {
  1285. unsigned char  *b = skb->tail;
  1286. struct tc_cbq_police opt;
  1287. if (cl->police) {
  1288. opt.police = cl->police;
  1289. RTA_PUT(skb, TCA_CBQ_POLICE, sizeof(opt), &opt);
  1290. }
  1291. return skb->len;
  1292. rtattr_failure:
  1293. skb_trim(skb, b - skb->data);
  1294. return -1;
  1295. }
  1296. #endif
  1297. static int cbq_dump_attr(struct sk_buff *skb, struct cbq_class *cl)
  1298. {
  1299. if (cbq_dump_lss(skb, cl) < 0 ||
  1300.     cbq_dump_rate(skb, cl) < 0 ||
  1301.     cbq_dump_wrr(skb, cl) < 0 ||
  1302.     cbq_dump_ovl(skb, cl) < 0 ||
  1303. #ifdef CONFIG_NET_CLS_POLICE
  1304.     cbq_dump_police(skb, cl) < 0 ||
  1305. #endif
  1306.     cbq_dump_fopt(skb, cl) < 0)
  1307. return -1;
  1308. return 0;
  1309. }
  1310. int cbq_copy_xstats(struct sk_buff *skb, struct tc_cbq_xstats *st)
  1311. {
  1312. RTA_PUT(skb, TCA_XSTATS, sizeof(*st), st);
  1313. return 0;
  1314. rtattr_failure:
  1315. return -1;
  1316. }
  1317. static int cbq_dump(struct Qdisc *sch, struct sk_buff *skb)
  1318. {
  1319. struct cbq_sched_data *q = (struct cbq_sched_data*)sch->data;
  1320. unsigned char  *b = skb->tail;
  1321. struct rtattr *rta;
  1322. rta = (struct rtattr*)b;
  1323. RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
  1324. if (cbq_dump_attr(skb, &q->link) < 0)
  1325. goto rtattr_failure;
  1326. rta->rta_len = skb->tail - b;
  1327. spin_lock_bh(&sch->dev->queue_lock);
  1328. q->link.xstats.avgidle = q->link.avgidle;
  1329. if (cbq_copy_xstats(skb, &q->link.xstats)) {
  1330. spin_unlock_bh(&sch->dev->queue_lock);
  1331. goto rtattr_failure;
  1332. }
  1333. spin_unlock_bh(&sch->dev->queue_lock);
  1334. return skb->len;
  1335. rtattr_failure:
  1336. skb_trim(skb, b - skb->data);
  1337. return -1;
  1338. }
  1339. static int
  1340. cbq_dump_class(struct Qdisc *sch, unsigned long arg,
  1341.        struct sk_buff *skb, struct tcmsg *tcm)
  1342. {
  1343. struct cbq_sched_data *q = (struct cbq_sched_data*)sch->data;
  1344. struct cbq_class *cl = (struct cbq_class*)arg;
  1345. unsigned char  *b = skb->tail;
  1346. struct rtattr *rta;
  1347. if (cl->tparent)
  1348. tcm->tcm_parent = cl->tparent->classid;
  1349. else
  1350. tcm->tcm_parent = TC_H_ROOT;
  1351. tcm->tcm_handle = cl->classid;
  1352. tcm->tcm_info = cl->q->handle;
  1353. rta = (struct rtattr*)b;
  1354. RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
  1355. if (cbq_dump_attr(skb, cl) < 0)
  1356. goto rtattr_failure;
  1357. rta->rta_len = skb->tail - b;
  1358. cl->stats.qlen = cl->q->q.qlen;
  1359. if (qdisc_copy_stats(skb, &cl->stats))
  1360. goto rtattr_failure;
  1361. spin_lock_bh(&sch->dev->queue_lock);
  1362. cl->xstats.avgidle = cl->avgidle;
  1363. cl->xstats.undertime = 0;
  1364. if (!PSCHED_IS_PASTPERFECT(cl->undertime))
  1365. cl->xstats.undertime = PSCHED_TDIFF(cl->undertime, q->now);
  1366. q->link.xstats.avgidle = q->link.avgidle;
  1367. if (cbq_copy_xstats(skb, &cl->xstats)) {
  1368. spin_unlock_bh(&sch->dev->queue_lock);
  1369. goto rtattr_failure;
  1370. }
  1371. spin_unlock_bh(&sch->dev->queue_lock);
  1372. return skb->len;
  1373. rtattr_failure:
  1374. skb_trim(skb, b - skb->data);
  1375. return -1;
  1376. }
  1377. static int cbq_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
  1378.      struct Qdisc **old)
  1379. {
  1380. struct cbq_class *cl = (struct cbq_class*)arg;
  1381. if (cl) {
  1382. if (new == NULL) {
  1383. if ((new = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops)) == NULL)
  1384. return -ENOBUFS;
  1385. } else {
  1386. #ifdef CONFIG_NET_CLS_POLICE
  1387. if (cl->police == TC_POLICE_RECLASSIFY)
  1388. new->reshape_fail = cbq_reshape_fail;
  1389. #endif
  1390. }
  1391. sch_tree_lock(sch);
  1392. *old = cl->q;
  1393. cl->q = new;
  1394. qdisc_reset(*old);
  1395. sch_tree_unlock(sch);
  1396. return 0;
  1397. }
  1398. return -ENOENT;
  1399. }
  1400. static struct Qdisc *
  1401. cbq_leaf(struct Qdisc *sch, unsigned long arg)
  1402. {
  1403. struct cbq_class *cl = (struct cbq_class*)arg;
  1404. return cl ? cl->q : NULL;
  1405. }
  1406. static unsigned long cbq_get(struct Qdisc *sch, u32 classid)
  1407. {
  1408. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1409. struct cbq_class *cl = cbq_class_lookup(q, classid);
  1410. if (cl) {
  1411. cl->refcnt++;
  1412. return (unsigned long)cl;
  1413. }
  1414. return 0;
  1415. }
  1416. static void cbq_destroy_filters(struct cbq_class *cl)
  1417. {
  1418. struct tcf_proto *tp;
  1419. while ((tp = cl->filter_list) != NULL) {
  1420. cl->filter_list = tp->next;
  1421. tp->ops->destroy(tp);
  1422. }
  1423. }
  1424. static void cbq_destroy_class(struct cbq_class *cl)
  1425. {
  1426. cbq_destroy_filters(cl);
  1427. qdisc_destroy(cl->q);
  1428. qdisc_put_rtab(cl->R_tab);
  1429. #ifdef CONFIG_NET_ESTIMATOR
  1430. qdisc_kill_estimator(&cl->stats);
  1431. #endif
  1432. kfree(cl);
  1433. }
  1434. static void
  1435. cbq_destroy(struct Qdisc* sch)
  1436. {
  1437. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1438. struct cbq_class *cl;
  1439. unsigned h;
  1440. #ifdef CONFIG_NET_CLS_POLICE
  1441. q->rx_class = NULL;
  1442. #endif
  1443. for (h = 0; h < 16; h++) {
  1444. for (cl = q->classes[h]; cl; cl = cl->next)
  1445. cbq_destroy_filters(cl);
  1446. }
  1447. for (h = 0; h < 16; h++) {
  1448. struct cbq_class *next;
  1449. for (cl = q->classes[h]; cl; cl = next) {
  1450. next = cl->next;
  1451. if (cl != &q->link)
  1452. cbq_destroy_class(cl);
  1453. }
  1454. }
  1455. qdisc_put_rtab(q->link.R_tab);
  1456. MOD_DEC_USE_COUNT;
  1457. }
  1458. static void cbq_put(struct Qdisc *sch, unsigned long arg)
  1459. {
  1460. struct cbq_class *cl = (struct cbq_class*)arg;
  1461. if (--cl->refcnt == 0) {
  1462. #ifdef CONFIG_NET_CLS_POLICE
  1463. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1464. spin_lock_bh(&sch->dev->queue_lock);
  1465. if (q->rx_class == cl)
  1466. q->rx_class = NULL;
  1467. spin_unlock_bh(&sch->dev->queue_lock);
  1468. #endif
  1469. cbq_destroy_class(cl);
  1470. }
  1471. }
  1472. static int
  1473. cbq_change_class(struct Qdisc *sch, u32 classid, u32 parentid, struct rtattr **tca,
  1474.  unsigned long *arg)
  1475. {
  1476. int err;
  1477. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1478. struct cbq_class *cl = (struct cbq_class*)*arg;
  1479. struct rtattr *opt = tca[TCA_OPTIONS-1];
  1480. struct rtattr *tb[TCA_CBQ_MAX];
  1481. struct cbq_class *parent;
  1482. struct qdisc_rate_table *rtab = NULL;
  1483. if (opt==NULL ||
  1484.     rtattr_parse(tb, TCA_CBQ_MAX, RTA_DATA(opt), RTA_PAYLOAD(opt)))
  1485. return -EINVAL;
  1486. if (tb[TCA_CBQ_OVL_STRATEGY-1] &&
  1487.     RTA_PAYLOAD(tb[TCA_CBQ_OVL_STRATEGY-1]) < sizeof(struct tc_cbq_ovl))
  1488. return -EINVAL;
  1489. if (tb[TCA_CBQ_FOPT-1] &&
  1490.     RTA_PAYLOAD(tb[TCA_CBQ_FOPT-1]) < sizeof(struct tc_cbq_fopt))
  1491. return -EINVAL;
  1492. if (tb[TCA_CBQ_RATE-1] &&
  1493.     RTA_PAYLOAD(tb[TCA_CBQ_RATE-1]) < sizeof(struct tc_ratespec))
  1494. return -EINVAL;
  1495. if (tb[TCA_CBQ_LSSOPT-1] &&
  1496.     RTA_PAYLOAD(tb[TCA_CBQ_LSSOPT-1]) < sizeof(struct tc_cbq_lssopt))
  1497. return -EINVAL;
  1498. if (tb[TCA_CBQ_WRROPT-1] &&
  1499.     RTA_PAYLOAD(tb[TCA_CBQ_WRROPT-1]) < sizeof(struct tc_cbq_wrropt))
  1500. return -EINVAL;
  1501. #ifdef CONFIG_NET_CLS_POLICE
  1502. if (tb[TCA_CBQ_POLICE-1] &&
  1503.     RTA_PAYLOAD(tb[TCA_CBQ_POLICE-1]) < sizeof(struct tc_cbq_police))
  1504. return -EINVAL;
  1505. #endif
  1506. if (cl) {
  1507. /* Check parent */
  1508. if (parentid) {
  1509. if (cl->tparent && cl->tparent->classid != parentid)
  1510. return -EINVAL;
  1511. if (!cl->tparent && parentid != TC_H_ROOT)
  1512. return -EINVAL;
  1513. }
  1514. if (tb[TCA_CBQ_RATE-1]) {
  1515. rtab = qdisc_get_rtab(RTA_DATA(tb[TCA_CBQ_RATE-1]), tb[TCA_CBQ_RTAB-1]);
  1516. if (rtab == NULL)
  1517. return -EINVAL;
  1518. }
  1519. /* Change class parameters */
  1520. sch_tree_lock(sch);
  1521. if (cl->next_alive != NULL)
  1522. cbq_deactivate_class(cl);
  1523. if (rtab) {
  1524. rtab = xchg(&cl->R_tab, rtab);
  1525. qdisc_put_rtab(rtab);
  1526. }
  1527. if (tb[TCA_CBQ_LSSOPT-1])
  1528. cbq_set_lss(cl, RTA_DATA(tb[TCA_CBQ_LSSOPT-1]));
  1529. if (tb[TCA_CBQ_WRROPT-1]) {
  1530. cbq_rmprio(q, cl);
  1531. cbq_set_wrr(cl, RTA_DATA(tb[TCA_CBQ_WRROPT-1]));
  1532. }
  1533. if (tb[TCA_CBQ_OVL_STRATEGY-1])
  1534. cbq_set_overlimit(cl, RTA_DATA(tb[TCA_CBQ_OVL_STRATEGY-1]));
  1535. #ifdef CONFIG_NET_CLS_POLICE
  1536. if (tb[TCA_CBQ_POLICE-1])
  1537. cbq_set_police(cl, RTA_DATA(tb[TCA_CBQ_POLICE-1]));
  1538. #endif
  1539. if (tb[TCA_CBQ_FOPT-1])
  1540. cbq_set_fopt(cl, RTA_DATA(tb[TCA_CBQ_FOPT-1]));
  1541. if (cl->q->q.qlen)
  1542. cbq_activate_class(cl);
  1543. sch_tree_unlock(sch);
  1544. #ifdef CONFIG_NET_ESTIMATOR
  1545. if (tca[TCA_RATE-1]) {
  1546. qdisc_kill_estimator(&cl->stats);
  1547. qdisc_new_estimator(&cl->stats, tca[TCA_RATE-1]);
  1548. }
  1549. #endif
  1550. return 0;
  1551. }
  1552. if (parentid == TC_H_ROOT)
  1553. return -EINVAL;
  1554. if (tb[TCA_CBQ_WRROPT-1] == NULL || tb[TCA_CBQ_RATE-1] == NULL ||
  1555.     tb[TCA_CBQ_LSSOPT-1] == NULL)
  1556. return -EINVAL;
  1557. rtab = qdisc_get_rtab(RTA_DATA(tb[TCA_CBQ_RATE-1]), tb[TCA_CBQ_RTAB-1]);
  1558. if (rtab == NULL)
  1559. return -EINVAL;
  1560. if (classid) {
  1561. err = -EINVAL;
  1562. if (TC_H_MAJ(classid^sch->handle) || cbq_class_lookup(q, classid))
  1563. goto failure;
  1564. } else {
  1565. int i;
  1566. classid = TC_H_MAKE(sch->handle,0x8000);
  1567. for (i=0; i<0x8000; i++) {
  1568. if (++q->hgenerator >= 0x8000)
  1569. q->hgenerator = 1;
  1570. if (cbq_class_lookup(q, classid|q->hgenerator) == NULL)
  1571. break;
  1572. }
  1573. err = -ENOSR;
  1574. if (i >= 0x8000)
  1575. goto failure;
  1576. classid = classid|q->hgenerator;
  1577. }
  1578. parent = &q->link;
  1579. if (parentid) {
  1580. parent = cbq_class_lookup(q, parentid);
  1581. err = -EINVAL;
  1582. if (parent == NULL)
  1583. goto failure;
  1584. }
  1585. err = -ENOBUFS;
  1586. cl = kmalloc(sizeof(*cl), GFP_KERNEL);
  1587. if (cl == NULL)
  1588. goto failure;
  1589. memset(cl, 0, sizeof(*cl));
  1590. cl->R_tab = rtab;
  1591. rtab = NULL;
  1592. cl->refcnt = 1;
  1593. if (!(cl->q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops)))
  1594. cl->q = &noop_qdisc;
  1595. cl->classid = classid;
  1596. cl->tparent = parent;
  1597. cl->qdisc = sch;
  1598. cl->allot = parent->allot;
  1599. cl->quantum = cl->allot;
  1600. cl->weight = cl->R_tab->rate.rate;
  1601. cl->stats.lock = &sch->dev->queue_lock;
  1602. sch_tree_lock(sch);
  1603. cbq_link_class(cl);
  1604. cl->borrow = cl->tparent;
  1605. if (cl->tparent != &q->link)
  1606. cl->share = cl->tparent;
  1607. cbq_adjust_levels(parent);
  1608. cl->minidle = -0x7FFFFFFF;
  1609. cbq_set_lss(cl, RTA_DATA(tb[TCA_CBQ_LSSOPT-1]));
  1610. cbq_set_wrr(cl, RTA_DATA(tb[TCA_CBQ_WRROPT-1]));
  1611. if (cl->ewma_log==0)
  1612. cl->ewma_log = q->link.ewma_log;
  1613. if (cl->maxidle==0)
  1614. cl->maxidle = q->link.maxidle;
  1615. if (cl->avpkt==0)
  1616. cl->avpkt = q->link.avpkt;
  1617. cl->overlimit = cbq_ovl_classic;
  1618. if (tb[TCA_CBQ_OVL_STRATEGY-1])
  1619. cbq_set_overlimit(cl, RTA_DATA(tb[TCA_CBQ_OVL_STRATEGY-1]));
  1620. #ifdef CONFIG_NET_CLS_POLICE
  1621. if (tb[TCA_CBQ_POLICE-1])
  1622. cbq_set_police(cl, RTA_DATA(tb[TCA_CBQ_POLICE-1]));
  1623. #endif
  1624. if (tb[TCA_CBQ_FOPT-1])
  1625. cbq_set_fopt(cl, RTA_DATA(tb[TCA_CBQ_FOPT-1]));
  1626. sch_tree_unlock(sch);
  1627. #ifdef CONFIG_NET_ESTIMATOR
  1628. if (tca[TCA_RATE-1])
  1629. qdisc_new_estimator(&cl->stats, tca[TCA_RATE-1]);
  1630. #endif
  1631. *arg = (unsigned long)cl;
  1632. return 0;
  1633. failure:
  1634. qdisc_put_rtab(rtab);
  1635. return err;
  1636. }
  1637. static int cbq_delete(struct Qdisc *sch, unsigned long arg)
  1638. {
  1639. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1640. struct cbq_class *cl = (struct cbq_class*)arg;
  1641. if (cl->filters || cl->children || cl == &q->link)
  1642. return -EBUSY;
  1643. sch_tree_lock(sch);
  1644. if (cl->next_alive)
  1645. cbq_deactivate_class(cl);
  1646. if (q->tx_borrowed == cl)
  1647. q->tx_borrowed = q->tx_class;
  1648. if (q->tx_class == cl) {
  1649. q->tx_class = NULL;
  1650. q->tx_borrowed = NULL;
  1651. }
  1652. #ifdef CONFIG_NET_CLS_POLICE
  1653. if (q->rx_class == cl)
  1654. q->rx_class = NULL;
  1655. #endif
  1656. cbq_unlink_class(cl);
  1657. cbq_adjust_levels(cl->tparent);
  1658. cl->defmap = 0;
  1659. cbq_sync_defmap(cl);
  1660. cbq_rmprio(q, cl);
  1661. sch_tree_unlock(sch);
  1662. if (--cl->refcnt == 0)
  1663. cbq_destroy_class(cl);
  1664. return 0;
  1665. }
  1666. static struct tcf_proto **cbq_find_tcf(struct Qdisc *sch, unsigned long arg)
  1667. {
  1668. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1669. struct cbq_class *cl = (struct cbq_class *)arg;
  1670. if (cl == NULL)
  1671. cl = &q->link;
  1672. return &cl->filter_list;
  1673. }
  1674. static unsigned long cbq_bind_filter(struct Qdisc *sch, unsigned long parent,
  1675.      u32 classid)
  1676. {
  1677. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1678. struct cbq_class *p = (struct cbq_class*)parent;
  1679. struct cbq_class *cl = cbq_class_lookup(q, classid);
  1680. if (cl) {
  1681. if (p && p->level <= cl->level)
  1682. return 0;
  1683. cl->filters++;
  1684. return (unsigned long)cl;
  1685. }
  1686. return 0;
  1687. }
  1688. static void cbq_unbind_filter(struct Qdisc *sch, unsigned long arg)
  1689. {
  1690. struct cbq_class *cl = (struct cbq_class*)arg;
  1691. cl->filters--;
  1692. }
  1693. static void cbq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
  1694. {
  1695. struct cbq_sched_data *q = (struct cbq_sched_data *)sch->data;
  1696. unsigned h;
  1697. if (arg->stop)
  1698. return;
  1699. for (h = 0; h < 16; h++) {
  1700. struct cbq_class *cl;
  1701. for (cl = q->classes[h]; cl; cl = cl->next) {
  1702. if (arg->count < arg->skip) {
  1703. arg->count++;
  1704. continue;
  1705. }
  1706. if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
  1707. arg->stop = 1;
  1708. return;
  1709. }
  1710. arg->count++;
  1711. }
  1712. }
  1713. }
  1714. static struct Qdisc_class_ops cbq_class_ops =
  1715. {
  1716. cbq_graft,
  1717. cbq_leaf,
  1718. cbq_get,
  1719. cbq_put,
  1720. cbq_change_class,
  1721. cbq_delete,
  1722. cbq_walk,
  1723. cbq_find_tcf,
  1724. cbq_bind_filter,
  1725. cbq_unbind_filter,
  1726. cbq_dump_class,
  1727. };
  1728. struct Qdisc_ops cbq_qdisc_ops =
  1729. {
  1730. NULL,
  1731. &cbq_class_ops,
  1732. "cbq",
  1733. sizeof(struct cbq_sched_data),
  1734. cbq_enqueue,
  1735. cbq_dequeue,
  1736. cbq_requeue,
  1737. cbq_drop,
  1738. cbq_init,
  1739. cbq_reset,
  1740. cbq_destroy,
  1741. NULL /* cbq_change */,
  1742. cbq_dump,
  1743. };
  1744. #ifdef MODULE
  1745. int init_module(void)
  1746. {
  1747. return register_qdisc(&cbq_qdisc_ops);
  1748. }
  1749. void cleanup_module(void) 
  1750. {
  1751. unregister_qdisc(&cbq_qdisc_ops);
  1752. }
  1753. #endif
  1754. MODULE_LICENSE("GPL");