From: YOSHIFUJI Hideaki / 吉藤英明 Date: Tue, 9 Mar 2010 16:47:52 +0000 (+0000) Subject: ipv6 ip6_tunnel: eliminate unused recursion field from ip6_tnl{}. X-Git-Tag: v3.0~5043^2~263 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b4c32972b9bcfee29d5e2c1b6f261dda5ef2a21;p=platform%2Fkernel%2Flinux-amlogic.git ipv6 ip6_tunnel: eliminate unused recursion field from ip6_tnl{}. Commit a43912ab19... ("tunnel: eliminate recursion field") eliminated use of recursion field from tunnel structures, but its definition still exists in ip6_tnl{}. Let's remove that unused field. Signed-off-by: YOSHIFUJI Hideaki Acked-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/include/net/ip6_tunnel.h b/include/net/ip6_tunnel.h index 83b4e00..fbf9d1c 100644 --- a/include/net/ip6_tunnel.h +++ b/include/net/ip6_tunnel.h @@ -15,7 +15,6 @@ struct ip6_tnl { struct ip6_tnl *next; /* next tunnel in list */ struct net_device *dev; /* virtual device associated with tunnel */ - int recursion; /* depth of hard_start_xmit recursion */ struct ip6_tnl_parm parms; /* tunnel configuration parameters */ struct flowi fl; /* flowi template for xmit */ struct dst_entry *dst_cache; /* cached dst */