diff options
author | David S. Miller <davem@davemloft.net> | 2011-07-16 20:39:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-16 20:39:57 -0400 |
commit | 47ec132a40d788d45e2f088545dea68798034dab (patch) | |
tree | f3089b58b4ef12cca150bdd4bf213d8a627a0035 /net/ipv6/ndisc.c | |
parent | 0895b08adeb3f660cdff21990d0a9c2b59a919e7 (diff) |
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 7596f071d308..db782d2f7cc2 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c | |||
@@ -107,7 +107,6 @@ static const struct neigh_ops ndisc_generic_ops = { | |||
107 | .error_report = ndisc_error_report, | 107 | .error_report = ndisc_error_report, |
108 | .output = neigh_resolve_output, | 108 | .output = neigh_resolve_output, |
109 | .connected_output = neigh_connected_output, | 109 | .connected_output = neigh_connected_output, |
110 | .hh_output = dev_queue_xmit, | ||
111 | .queue_xmit = dev_queue_xmit, | 110 | .queue_xmit = dev_queue_xmit, |
112 | }; | 111 | }; |
113 | 112 | ||
@@ -117,7 +116,6 @@ static const struct neigh_ops ndisc_hh_ops = { | |||
117 | .error_report = ndisc_error_report, | 116 | .error_report = ndisc_error_report, |
118 | .output = neigh_resolve_output, | 117 | .output = neigh_resolve_output, |
119 | .connected_output = neigh_resolve_output, | 118 | .connected_output = neigh_resolve_output, |
120 | .hh_output = dev_queue_xmit, | ||
121 | .queue_xmit = dev_queue_xmit, | 119 | .queue_xmit = dev_queue_xmit, |
122 | }; | 120 | }; |
123 | 121 | ||
@@ -126,7 +124,6 @@ static const struct neigh_ops ndisc_direct_ops = { | |||
126 | .family = AF_INET6, | 124 | .family = AF_INET6, |
127 | .output = dev_queue_xmit, | 125 | .output = dev_queue_xmit, |
128 | .connected_output = dev_queue_xmit, | 126 | .connected_output = dev_queue_xmit, |
129 | .hh_output = dev_queue_xmit, | ||
130 | .queue_xmit = dev_queue_xmit, | 127 | .queue_xmit = dev_queue_xmit, |
131 | }; | 128 | }; |
132 | 129 | ||