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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* net/atm/ipcommon.c - Common items for all ways of doing IP over ATM */
  2. /* Written 1996-2000 by Werner Almesberger, EPFL LRC/ICA */
  3. #include <linux/module.h>
  4. #include <linux/string.h>
  5. #include <linux/skbuff.h>
  6. #include <linux/netdevice.h>
  7. #include <linux/in.h>
  8. #include <linux/atmdev.h>
  9. #include <linux/atmclip.h>
  10. #include "common.h"
  11. #include "ipcommon.h"
  12. #if 0
  13. #define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
  14. #else
  15. #define DPRINTK(format,args...)
  16. #endif
  17. const unsigned char llc_oui[] = {
  18. 0xaa, /* DSAP: non-ISO */
  19. 0xaa, /* SSAP: non-ISO */
  20. 0x03, /* Ctrl: Unnumbered Information Command PDU */
  21. 0x00, /* OUI: EtherType */
  22. 0x00,
  23. 0x00 };
  24. /*
  25.  * skb_migrate appends the list at "from" to "to", emptying "from" in the
  26.  * process. skb_migrate is atomic with respect to all other skb operations on
  27.  * "from" and "to". Note that it locks both lists at the same time, so beware
  28.  * of potential deadlocks.
  29.  *
  30.  * This function should live in skbuff.c or skbuff.h.
  31.  */
  32. void skb_migrate(struct sk_buff_head *from,struct sk_buff_head *to)
  33. {
  34. struct sk_buff *skb;
  35. unsigned long flags;
  36. struct sk_buff *skb_from = (struct sk_buff *) from;
  37. struct sk_buff *skb_to = (struct sk_buff *) to;
  38. struct sk_buff *prev;
  39. spin_lock_irqsave(&from->lock,flags);
  40. spin_lock(&to->lock);
  41. prev = from->prev;
  42. from->next->prev = to->prev;
  43. prev->next = skb_to;
  44. to->prev->next = from->next;
  45. to->prev = from->prev;
  46. for (skb = from->next; skb != skb_to; skb = skb->next)
  47. skb->list = to;
  48. to->qlen += from->qlen;
  49. spin_unlock(&to->lock);
  50. from->prev = skb_from;
  51. from->next = skb_from;
  52. from->qlen = 0;
  53. spin_unlock_irqrestore(&from->lock,flags);
  54. }
  55. EXPORT_SYMBOL(skb_migrate);