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/core | |
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/core')
-rw-r--r-- | net/core/neighbour.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index 50bd960983e0..8f7e1d8d92a0 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c | |||
@@ -1247,7 +1247,7 @@ static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst, | |||
1247 | hh->hh_type = protocol; | 1247 | hh->hh_type = protocol; |
1248 | atomic_set(&hh->hh_refcnt, 2); | 1248 | atomic_set(&hh->hh_refcnt, 2); |
1249 | 1249 | ||
1250 | if (dev->header_ops->cache(n, hh)) { | 1250 | if (dev->header_ops->cache(n, hh, protocol)) { |
1251 | kfree(hh); | 1251 | kfree(hh); |
1252 | return; | 1252 | return; |
1253 | } | 1253 | } |