net: thunderx: remove a couple of redundant assignments
[linux-2.6/btrfs-unstable.git] / include / net / inetpeer.h
blob950ed182f62f6f2e359b8ead28d903b4c6dc877f
1 /*
2 * INETPEER - A storage for permanent information about peers
4 * Authors: Andrey V. Savochkin <saw@msu.ru>
5 */
7 #ifndef _NET_INETPEER_H
8 #define _NET_INETPEER_H
10 #include <linux/types.h>
11 #include <linux/init.h>
12 #include <linux/jiffies.h>
13 #include <linux/spinlock.h>
14 #include <linux/rtnetlink.h>
15 #include <net/ipv6.h>
16 #include <linux/atomic.h>
18 /* IPv4 address key for cache lookups */
19 struct ipv4_addr_key {
20 __be32 addr;
21 int vif;
24 #define INETPEER_MAXKEYSZ (sizeof(struct in6_addr) / sizeof(u32))
26 struct inetpeer_addr {
27 union {
28 struct ipv4_addr_key a4;
29 struct in6_addr a6;
30 u32 key[INETPEER_MAXKEYSZ];
32 __u16 family;
35 struct inet_peer {
36 struct rb_node rb_node;
37 struct inetpeer_addr daddr;
39 u32 metrics[RTAX_MAX];
40 u32 rate_tokens; /* rate limiting for ICMP */
41 unsigned long rate_last;
43 * Once inet_peer is queued for deletion (refcnt == 0), following field
44 * is not available: rid
45 * We can share memory with rcu_head to help keep inet_peer small.
47 union {
48 struct {
49 atomic_t rid; /* Frag reception counter */
51 struct rcu_head rcu;
54 /* following fields might be frequently dirtied */
55 __u32 dtime; /* the time of last use of not referenced entries */
56 refcount_t refcnt;
59 struct inet_peer_base {
60 struct rb_root rb_root;
61 seqlock_t lock;
62 int total;
65 void inet_peer_base_init(struct inet_peer_base *);
67 void inet_initpeers(void) __init;
69 #define INETPEER_METRICS_NEW (~(u32) 0)
71 static inline void inetpeer_set_addr_v4(struct inetpeer_addr *iaddr, __be32 ip)
73 iaddr->a4.addr = ip;
74 iaddr->a4.vif = 0;
75 iaddr->family = AF_INET;
78 static inline __be32 inetpeer_get_addr_v4(struct inetpeer_addr *iaddr)
80 return iaddr->a4.addr;
83 static inline void inetpeer_set_addr_v6(struct inetpeer_addr *iaddr,
84 struct in6_addr *in6)
86 iaddr->a6 = *in6;
87 iaddr->family = AF_INET6;
90 static inline struct in6_addr *inetpeer_get_addr_v6(struct inetpeer_addr *iaddr)
92 return &iaddr->a6;
95 /* can be called with or without local BH being disabled */
96 struct inet_peer *inet_getpeer(struct inet_peer_base *base,
97 const struct inetpeer_addr *daddr,
98 int create);
100 static inline struct inet_peer *inet_getpeer_v4(struct inet_peer_base *base,
101 __be32 v4daddr,
102 int vif, int create)
104 struct inetpeer_addr daddr;
106 daddr.a4.addr = v4daddr;
107 daddr.a4.vif = vif;
108 daddr.family = AF_INET;
109 return inet_getpeer(base, &daddr, create);
112 static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base,
113 const struct in6_addr *v6daddr,
114 int create)
116 struct inetpeer_addr daddr;
118 daddr.a6 = *v6daddr;
119 daddr.family = AF_INET6;
120 return inet_getpeer(base, &daddr, create);
123 static inline int inetpeer_addr_cmp(const struct inetpeer_addr *a,
124 const struct inetpeer_addr *b)
126 int i, n;
128 if (a->family == AF_INET)
129 n = sizeof(a->a4) / sizeof(u32);
130 else
131 n = sizeof(a->a6) / sizeof(u32);
133 for (i = 0; i < n; i++) {
134 if (a->key[i] == b->key[i])
135 continue;
136 if (a->key[i] < b->key[i])
137 return -1;
138 return 1;
141 return 0;
144 /* can be called from BH context or outside */
145 void inet_putpeer(struct inet_peer *p);
146 bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout);
148 void inetpeer_invalidate_tree(struct inet_peer_base *);
150 #endif /* _NET_INETPEER_H */