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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INETPEER - A storage for permanent information about peers
  3.  *
  4.  *  Version: $Id: inetpeer.h,v 1.1.2.1 2002/01/12 07:53:15 davem Exp $
  5.  *
  6.  *  Authors: Andrey V. Savochkin <saw@msu.ru>
  7.  */
  8. #ifndef _NET_INETPEER_H
  9. #define _NET_INETPEER_H
  10. #include <linux/types.h>
  11. #include <linux/init.h>
  12. #include <linux/sched.h>
  13. #include <linux/spinlock.h>
  14. #include <asm/atomic.h>
  15. struct inet_peer
  16. {
  17. struct inet_peer *avl_left, *avl_right;
  18. struct inet_peer *unused_next, **unused_prevp;
  19. atomic_t refcnt;
  20. unsigned long dtime; /* the time of last use of not
  21.  * referenced entries */
  22. __u32 v4daddr; /* peer's address */
  23. __u16 avl_height;
  24. __u16 ip_id_count; /* IP ID for the next packet */
  25. __u32 tcp_ts;
  26. unsigned long tcp_ts_stamp;
  27. };
  28. void inet_initpeers(void) __init;
  29. /* can be called with or without local BH being disabled */
  30. struct inet_peer *inet_getpeer(__u32 daddr, int create);
  31. extern spinlock_t inet_peer_unused_lock;
  32. extern struct inet_peer *inet_peer_unused_head;
  33. extern struct inet_peer **inet_peer_unused_tailp;
  34. /* can be called from BH context or outside */
  35. static inline void inet_putpeer(struct inet_peer *p)
  36. {
  37. spin_lock_bh(&inet_peer_unused_lock);
  38. if (atomic_dec_and_test(&p->refcnt)) {
  39. p->unused_prevp = inet_peer_unused_tailp;
  40. p->unused_next = NULL;
  41. *inet_peer_unused_tailp = p;
  42. inet_peer_unused_tailp = &p->unused_next;
  43. p->dtime = jiffies;
  44. }
  45. spin_unlock_bh(&inet_peer_unused_lock);
  46. }
  47. extern spinlock_t inet_peer_idlock;
  48. /* can be called with or without local BH being disabled */
  49. static inline __u16 inet_getid(struct inet_peer *p)
  50. {
  51. __u16 id;
  52. spin_lock_bh(&inet_peer_idlock);
  53. id = p->ip_id_count++;
  54. spin_unlock_bh(&inet_peer_idlock);
  55. return id;
  56. }
  57. #endif /* _NET_INETPEER_H */