diff options
author | David S. Miller <davem@davemloft.net> | 2011-07-13 02:28:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-13 05:29:59 -0400 |
commit | e69dd336ee3a05a589629b505b18ba5e7a5b4c54 (patch) | |
tree | ce221d370029164d5ea498ab0da50672d03a5b0e /net/ethernet/eth.c | |
parent | 3769cffb1c48f64640ffab7ce3bffe867342c0f0 (diff) |
net: Push protocol type directly down to header_ops->cache()
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ethernet/eth.c')
-rw-r--r-- | net/ethernet/eth.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ethernet/eth.c b/net/ethernet/eth.c index 44d2b42fda56..5cffb63f481a 100644 --- a/net/ethernet/eth.c +++ b/net/ethernet/eth.c | |||
@@ -233,9 +233,8 @@ EXPORT_SYMBOL(eth_header_parse); | |||
233 | * @hh: destination cache entry | 233 | * @hh: destination cache entry |
234 | * Create an Ethernet header template from the neighbour. | 234 | * Create an Ethernet header template from the neighbour. |
235 | */ | 235 | */ |
236 | int eth_header_cache(const struct neighbour *neigh, struct hh_cache *hh) | 236 | int eth_header_cache(const struct neighbour *neigh, struct hh_cache *hh, __be16 type) |
237 | { | 237 | { |
238 | __be16 type = hh->hh_type; | ||
239 | struct ethhdr *eth; | 238 | struct ethhdr *eth; |
240 | const struct net_device *dev = neigh->dev; | 239 | const struct net_device *dev = neigh->dev; |
241 | 240 | ||