diff options
author | David S. Miller <davem@davemloft.net> | 2011-07-16 17:39:57 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-16 17:39:57 -0700 |
commit | 47ec132a40d788d45e2f088545dea68798034dab (patch) | |
tree | f3089b58b4ef12cca150bdd4bf213d8a627a0035 /net/ipv4/arp.c | |
parent | 0895b08adeb3f660cdff21990d0a9c2b59a919e7 (diff) | |
download | blackbird-obmc-linux-47ec132a40d788d45e2f088545dea68798034dab.tar.gz blackbird-obmc-linux-47ec132a40d788d45e2f088545dea68798034dab.zip |
neigh: Kill neigh_ops->hh_output
It's always dev_queue_xmit().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/arp.c')
-rw-r--r-- | net/ipv4/arp.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c index 3e5545675ccf..f5f0aa1cd3ac 100644 --- a/net/ipv4/arp.c +++ b/net/ipv4/arp.c @@ -138,7 +138,6 @@ static const struct neigh_ops arp_generic_ops = { .error_report = arp_error_report, .output = neigh_resolve_output, .connected_output = neigh_connected_output, - .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit, }; @@ -148,7 +147,6 @@ static const struct neigh_ops arp_hh_ops = { .error_report = arp_error_report, .output = neigh_resolve_output, .connected_output = neigh_resolve_output, - .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit, }; @@ -156,7 +154,6 @@ static const struct neigh_ops arp_direct_ops = { .family = AF_INET, .output = dev_queue_xmit, .connected_output = dev_queue_xmit, - .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit, }; @@ -166,7 +163,6 @@ static const struct neigh_ops arp_broken_ops = { .error_report = arp_error_report, .output = neigh_compat_output, .connected_output = neigh_compat_output, - .hh_output = dev_queue_xmit, .queue_xmit = dev_queue_xmit, }; |