aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Miller <davem@davemloft.net>2011-07-25 00:01:41 +0000
committerDavid S. Miller <davem@davemloft.net>2011-11-30 18:51:03 -0500
commit32092ecf0644e91070f9eff4f6e1edda8f90aecc (patch)
tree3e2e2a111364f08653b79fd7404346e9f4b5ee84 /include
parentneigh: Add device constructor/destructor capability. (diff)
downloadlinux-dev-32092ecf0644e91070f9eff4f6e1edda8f90aecc.tar.xz
linux-dev-32092ecf0644e91070f9eff4f6e1edda8f90aecc.zip
atm: clip: Use device neigh support on top of "arp_tbl".
Instead of instantiating an entire new neigh_table instance just for ATM handling, use the neigh device private facility. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/atmclip.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/net/atmclip.h b/include/net/atmclip.h
index 852a3b2890ec..5865924d4aac 100644
--- a/include/net/atmclip.h
+++ b/include/net/atmclip.h
@@ -41,17 +41,12 @@ struct atmarp_entry {
struct neighbour *neigh; /* neighbour back-pointer */
};
-
#define PRIV(dev) ((struct clip_priv *) netdev_priv(dev))
-
struct clip_priv {
int number; /* for convenience ... */
spinlock_t xoff_lock; /* ensures that pop is atomic (SMP) */
struct net_device *next; /* next CLIP interface */
};
-
-extern struct neigh_table *clip_tbl_hook;
-
#endif