aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/neighbour.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/neighbour.h')
-rw-r--r--include/net/neighbour.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/net/neighbour.h b/include/net/neighbour.h
index e31f0a86f9b7..34c996f46181 100644
--- a/include/net/neighbour.h
+++ b/include/net/neighbour.h
@@ -139,10 +139,12 @@ struct pneigh_entry {
139 * neighbour table manipulation 139 * neighbour table manipulation
140 */ 140 */
141 141
142#define NEIGH_NUM_HASH_RND 4
143
142struct neigh_hash_table { 144struct neigh_hash_table {
143 struct neighbour __rcu **hash_buckets; 145 struct neighbour __rcu **hash_buckets;
144 unsigned int hash_shift; 146 unsigned int hash_shift;
145 __u32 hash_rnd; 147 __u32 hash_rnd[NEIGH_NUM_HASH_RND];
146 struct rcu_head rcu; 148 struct rcu_head rcu;
147}; 149};
148 150
@@ -154,7 +156,7 @@ struct neigh_table {
154 int key_len; 156 int key_len;
155 __u32 (*hash)(const void *pkey, 157 __u32 (*hash)(const void *pkey,
156 const struct net_device *dev, 158 const struct net_device *dev,
157 __u32 hash_rnd); 159 __u32 *hash_rnd);
158 int (*constructor)(struct neighbour *); 160 int (*constructor)(struct neighbour *);
159 int (*pconstructor)(struct pneigh_entry *); 161 int (*pconstructor)(struct pneigh_entry *);
160 void (*pdestructor)(struct pneigh_entry *); 162 void (*pdestructor)(struct pneigh_entry *);