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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* net/atm/atm_misc.c - Various functions for use by ATM drivers */
  2. /* Written 1995-2000 by Werner Almesberger, EPFL ICA */
  3. #include <linux/module.h>
  4. #include <linux/atm.h>
  5. #include <linux/atmdev.h>
  6. #include <linux/skbuff.h>
  7. #include <linux/sonet.h>
  8. #include <linux/bitops.h>
  9. #include <asm/atomic.h>
  10. #include <asm/errno.h>
  11. int atm_charge(struct atm_vcc *vcc,int truesize)
  12. {
  13. atm_force_charge(vcc,truesize);
  14. if (atomic_read(&vcc->rx_inuse) <= vcc->sk->rcvbuf) return 1;
  15. atm_return(vcc,truesize);
  16. atomic_inc(&vcc->stats->rx_drop);
  17. return 0;
  18. }
  19. struct sk_buff *atm_alloc_charge(struct atm_vcc *vcc,int pdu_size,
  20.     int gfp_flags)
  21. {
  22. int guess = atm_guess_pdu2truesize(pdu_size);
  23. atm_force_charge(vcc,guess);
  24. if (atomic_read(&vcc->rx_inuse) <= vcc->sk->rcvbuf) {
  25. struct sk_buff *skb = alloc_skb(pdu_size,gfp_flags);
  26. if (skb) {
  27. atomic_add(skb->truesize-guess,&vcc->rx_inuse);
  28. return skb;
  29. }
  30. }
  31. atm_return(vcc,guess);
  32. atomic_inc(&vcc->stats->rx_drop);
  33. return NULL;
  34. }
  35. static int check_ci(struct atm_vcc *vcc,short vpi,int vci)
  36. {
  37. struct atm_vcc *walk;
  38. for (walk = vcc->dev->vccs; walk; walk = walk->next)
  39. if (test_bit(ATM_VF_ADDR,&walk->flags) && walk->vpi == vpi &&
  40.     walk->vci == vci && ((walk->qos.txtp.traffic_class !=
  41.     ATM_NONE && vcc->qos.txtp.traffic_class != ATM_NONE) ||
  42.     (walk->qos.rxtp.traffic_class != ATM_NONE &&
  43.     vcc->qos.rxtp.traffic_class != ATM_NONE)))
  44. return -EADDRINUSE;
  45. /* allow VCCs with same VPI/VCI iff they don't collide on
  46.    TX/RX (but we may refuse such sharing for other reasons,
  47.    e.g. if protocol requires to have both channels) */
  48. return 0;
  49. }
  50. int atm_find_ci(struct atm_vcc *vcc,short *vpi,int *vci)
  51. {
  52. static short p = 0; /* poor man's per-device cache */
  53. static int c = 0;
  54. short old_p;
  55. int old_c;
  56. if (*vpi != ATM_VPI_ANY && *vci != ATM_VCI_ANY)
  57. return check_ci(vcc,*vpi,*vci);
  58. /* last scan may have left values out of bounds for current device */
  59. if (*vpi != ATM_VPI_ANY) p = *vpi;
  60. else if (p >= 1 << vcc->dev->ci_range.vpi_bits) p = 0;
  61. if (*vci != ATM_VCI_ANY) c = *vci;
  62. else if (c < ATM_NOT_RSV_VCI || c >= 1 << vcc->dev->ci_range.vci_bits)
  63. c = ATM_NOT_RSV_VCI;
  64. old_p = p;
  65. old_c = c;
  66. do {
  67. if (!check_ci(vcc,p,c)) {
  68. *vpi = p;
  69. *vci = c;
  70. return 0;
  71. }
  72. if (*vci == ATM_VCI_ANY) {
  73. c++;
  74. if (c >= 1 << vcc->dev->ci_range.vci_bits)
  75. c = ATM_NOT_RSV_VCI;
  76. }
  77. if ((c == ATM_NOT_RSV_VCI || *vci != ATM_VCI_ANY) &&
  78.     *vpi == ATM_VPI_ANY) {
  79. p++;
  80. if (p >= 1 << vcc->dev->ci_range.vpi_bits) p = 0;
  81. }
  82. }
  83. while (old_p != p || old_c != c);
  84. return -EADDRINUSE;
  85. }
  86. /*
  87.  * atm_pcr_goal returns the positive PCR if it should be rounded up, the
  88.  * negative PCR if it should be rounded down, and zero if the maximum available
  89.  * bandwidth should be used.
  90.  *
  91.  * The rules are as follows (* = maximum, - = absent (0), x = value "x",
  92.  * (x+ = x or next value above x, x- = x or next value below):
  93.  *
  94.  * min max pcr result min max pcr result
  95.  * -   -   - * (UBR only) x   -   - x+
  96.  * -   -   * * x   -   * *
  97.  * -   -   z z- x   -   z z-
  98.  * -   *   - * x   *   - x+
  99.  * -   *   * * x   *   * *
  100.  * -   *   z z- x   *   z z-
  101.  * -   y   - y- x   y   - x+
  102.  * -   y   * y- x   y   * y-
  103.  * -   y   z z- x   y   z z-
  104.  *
  105.  * All non-error cases can be converted with the following simple set of rules:
  106.  *
  107.  *   if pcr == z then z-
  108.  *   else if min == x && pcr == - then x+
  109.  *     else if max == y then y-
  110.  *  else *
  111.  */
  112. int atm_pcr_goal(struct atm_trafprm *tp)
  113. {
  114. if (tp->pcr && tp->pcr != ATM_MAX_PCR) return -tp->pcr;
  115. if (tp->min_pcr && !tp->pcr) return tp->min_pcr;
  116. if (tp->max_pcr != ATM_MAX_PCR) return -tp->max_pcr;
  117. return 0;
  118. }
  119. void sonet_copy_stats(struct k_sonet_stats *from,struct sonet_stats *to)
  120. {
  121. #define __HANDLE_ITEM(i) to->i = atomic_read(&from->i)
  122. __SONET_ITEMS
  123. #undef __HANDLE_ITEM
  124. }
  125. void sonet_subtract_stats(struct k_sonet_stats *from,struct sonet_stats *to)
  126. {
  127. #define __HANDLE_ITEM(i) atomic_sub(to->i,&from->i)
  128. __SONET_ITEMS
  129. #undef __HANDLE_ITEM
  130. }
  131. EXPORT_SYMBOL(atm_charge);
  132. EXPORT_SYMBOL(atm_alloc_charge);
  133. EXPORT_SYMBOL(atm_find_ci);
  134. EXPORT_SYMBOL(atm_pcr_goal);
  135. EXPORT_SYMBOL(sonet_copy_stats);
  136. EXPORT_SYMBOL(sonet_subtract_stats);