summaryrefslogtreecommitdiff
path: root/net/core
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-12-13 16:44:22 -0500
committerDavid S. Miller <davem@davemloft.net>2011-12-13 16:44:22 -0500
commit5c3ddec73d01a1fae9409c197078cb02c42238c3 (patch)
tree574936e32ed759ed90cc5d6b29add6cfe825e734 /net/core
parent6edf91da43017b15b45604fcd332c19e3000c535 (diff)
net: Remove unused neighbour layer ops.
It's simpler to just keep these things out until there is a real user of them, so we can see what the needs actually are, rather than keep these things around as useless overhead. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/neighbour.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index 4af151e1bf5..d57a40a2598 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -497,13 +497,6 @@ struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
}
}
- /* Device specific setup. */
- if (n->parms->neigh_setup &&
- (error = n->parms->neigh_setup(n)) < 0) {
- rc = ERR_PTR(error);
- goto out_neigh_release;
- }
-
n->confirmed = jiffies - (n->parms->base_reachable_time << 1);
write_lock_bh(&tbl->lock);
@@ -717,9 +710,6 @@ void neigh_destroy(struct neighbour *neigh)
skb_queue_purge(&neigh->arp_queue);
neigh->arp_queue_len_bytes = 0;
- if (dev->netdev_ops->ndo_neigh_destroy)
- dev->netdev_ops->ndo_neigh_destroy(neigh);
-
dev_put(dev);
neigh_parms_put(neigh->parms);