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/ipv4 | |
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/ipv4')
-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 = { | |||
138 | .error_report = arp_error_report, | 138 | .error_report = arp_error_report, |
139 | .output = neigh_resolve_output, | 139 | .output = neigh_resolve_output, |
140 | .connected_output = neigh_connected_output, | 140 | .connected_output = neigh_connected_output, |
141 | .hh_output = dev_queue_xmit, | ||
142 | .queue_xmit = dev_queue_xmit, | 141 | .queue_xmit = dev_queue_xmit, |
143 | }; | 142 | }; |
144 | 143 | ||
@@ -148,7 +147,6 @@ static const struct neigh_ops arp_hh_ops = { | |||
148 | .error_report = arp_error_report, | 147 | .error_report = arp_error_report, |
149 | .output = neigh_resolve_output, | 148 | .output = neigh_resolve_output, |
150 | .connected_output = neigh_resolve_output, | 149 | .connected_output = neigh_resolve_output, |
151 | .hh_output = dev_queue_xmit, | ||
152 | .queue_xmit = dev_queue_xmit, | 150 | .queue_xmit = dev_queue_xmit, |
153 | }; | 151 | }; |
154 | 152 | ||
@@ -156,7 +154,6 @@ static const struct neigh_ops arp_direct_ops = { | |||
156 | .family = AF_INET, | 154 | .family = AF_INET, |
157 | .output = dev_queue_xmit, | 155 | .output = dev_queue_xmit, |
158 | .connected_output = dev_queue_xmit, | 156 | .connected_output = dev_queue_xmit, |
159 | .hh_output = dev_queue_xmit, | ||
160 | .queue_xmit = dev_queue_xmit, | 157 | .queue_xmit = dev_queue_xmit, |
161 | }; | 158 | }; |
162 | 159 | ||
@@ -166,7 +163,6 @@ static const struct neigh_ops arp_broken_ops = { | |||
166 | .error_report = arp_error_report, | 163 | .error_report = arp_error_report, |
167 | .output = neigh_compat_output, | 164 | .output = neigh_compat_output, |
168 | .connected_output = neigh_compat_output, | 165 | .connected_output = neigh_compat_output, |
169 | .hh_output = dev_queue_xmit, | ||
170 | .queue_xmit = dev_queue_xmit, | 166 | .queue_xmit = dev_queue_xmit, |
171 | }; | 167 | }; |
172 | 168 | ||