neighbour.h (cd0893369ca85fd11bc517081b2d9079d2ef2f90) neighbour.h (f6b72b6217f8c24f2a54988e58af858b4e66024d)
1#ifndef _NET_NEIGHBOUR_H
2#define _NET_NEIGHBOUR_H
3
4#include <linux/neighbour.h>
5
6/*
7 * Generic neighbour manipulation
8 *

--- 94 unchanged lines hidden (view full) ---

103 unsigned long used;
104 atomic_t probes;
105 __u8 flags;
106 __u8 nud_state;
107 __u8 type;
108 __u8 dead;
109 seqlock_t ha_lock;
110 unsigned char ha[ALIGN(MAX_ADDR_LEN, sizeof(unsigned long))];
1#ifndef _NET_NEIGHBOUR_H
2#define _NET_NEIGHBOUR_H
3
4#include <linux/neighbour.h>
5
6/*
7 * Generic neighbour manipulation
8 *

--- 94 unchanged lines hidden (view full) ---

103 unsigned long used;
104 atomic_t probes;
105 __u8 flags;
106 __u8 nud_state;
107 __u8 type;
108 __u8 dead;
109 seqlock_t ha_lock;
110 unsigned char ha[ALIGN(MAX_ADDR_LEN, sizeof(unsigned long))];
111 struct hh_cache *hh;
111 struct hh_cache hh;
112 int (*output)(struct sk_buff *skb);
113 const struct neigh_ops *ops;
114 struct rcu_head rcu;
115 struct net_device *dev;
116 u8 primary_key[0];
117};
118
119struct neigh_ops {

--- 271 unchanged lines hidden ---
112 int (*output)(struct sk_buff *skb);
113 const struct neigh_ops *ops;
114 struct rcu_head rcu;
115 struct net_device *dev;
116 u8 primary_key[0];
117};
118
119struct neigh_ops {

--- 271 unchanged lines hidden ---