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/ipv6/ndisc.c | |
| parent | 0895b08adeb3f660cdff21990d0a9c2b59a919e7 (diff) | |
| download | olio-linux-3.10-47ec132a40d788d45e2f088545dea68798034dab.tar.xz olio-linux-3.10-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/ipv6/ndisc.c')
| -rw-r--r-- | net/ipv6/ndisc.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 7596f071d30..db782d2f7cc 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -107,7 +107,6 @@ static const struct neigh_ops ndisc_generic_ops = {  	.error_report =		ndisc_error_report,  	.output =		neigh_resolve_output,  	.connected_output =	neigh_connected_output, -	.hh_output =		dev_queue_xmit,  	.queue_xmit =		dev_queue_xmit,  }; @@ -117,7 +116,6 @@ static const struct neigh_ops ndisc_hh_ops = {  	.error_report =		ndisc_error_report,  	.output =		neigh_resolve_output,  	.connected_output =	neigh_resolve_output, -	.hh_output =		dev_queue_xmit,  	.queue_xmit =		dev_queue_xmit,  }; @@ -126,7 +124,6 @@ static const struct neigh_ops ndisc_direct_ops = {  	.family =		AF_INET6,  	.output =		dev_queue_xmit,  	.connected_output =	dev_queue_xmit, -	.hh_output =		dev_queue_xmit,  	.queue_xmit =		dev_queue_xmit,  };  |