diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-11-11 20:25:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-11 20:25:22 -0500 |
commit | 6bb3ce25d05f2990c8a19adaf427531430267c1f (patch) | |
tree | 38c19e4776b36163b9d100258139d58287475f6b /net/ipv6/route.c | |
parent | 9b739ba5e66c96938fbc07a4dbd9da5b81eac56f (diff) |
net: remove struct dst_entry::entry_size
Unused after kmem_cache_zalloc() conversion.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r-- | net/ipv6/route.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 4d40dc214b2d..9da1ece466a2 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -108,7 +108,6 @@ static struct dst_ops ip6_dst_ops_template = { | |||
108 | .link_failure = ip6_link_failure, | 108 | .link_failure = ip6_link_failure, |
109 | .update_pmtu = ip6_rt_update_pmtu, | 109 | .update_pmtu = ip6_rt_update_pmtu, |
110 | .local_out = __ip6_local_out, | 110 | .local_out = __ip6_local_out, |
111 | .entry_size = sizeof(struct rt6_info), | ||
112 | .entries = ATOMIC_INIT(0), | 111 | .entries = ATOMIC_INIT(0), |
113 | }; | 112 | }; |
114 | 113 | ||
@@ -122,7 +121,6 @@ static struct dst_ops ip6_dst_blackhole_ops = { | |||
122 | .destroy = ip6_dst_destroy, | 121 | .destroy = ip6_dst_destroy, |
123 | .check = ip6_dst_check, | 122 | .check = ip6_dst_check, |
124 | .update_pmtu = ip6_rt_blackhole_update_pmtu, | 123 | .update_pmtu = ip6_rt_blackhole_update_pmtu, |
125 | .entry_size = sizeof(struct rt6_info), | ||
126 | .entries = ATOMIC_INIT(0), | 124 | .entries = ATOMIC_INIT(0), |
127 | }; | 125 | }; |
128 | 126 | ||