diff options
| author | David S. Miller <davem@davemloft.net> | 2012-06-28 22:17:39 -0700 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-06-28 22:17:39 -0700 | 
| commit | 3085a4b7d33eb3111244173d1383256e94d249a5 (patch) | |
| tree | 51253bfaa3ffe12ac24c5ef9e6c3e60765f9a023 | |
| parent | 9e56e3800ea42e78b7c816bdd2d87d047be80541 (diff) | |
| download | olio-linux-3.10-3085a4b7d33eb3111244173d1383256e94d249a5.tar.xz olio-linux-3.10-3085a4b7d33eb3111244173d1383256e94d249a5.zip  | |
ipv4: Remove extraneous assignment of dst->tclassid.
We already set it several lines above.
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/ipv4/route.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 919d69e60ba..6a5afc71555 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -2327,9 +2327,6 @@ local_input:  	rth->rt_key_tos	= tos;  	rth->rt_dst	= daddr;  	rth->rt_src	= saddr; -#ifdef CONFIG_IP_ROUTE_CLASSID -	rth->dst.tclassid = itag; -#endif  	rth->rt_route_iif = dev->ifindex;  	rth->rt_iif	= dev->ifindex;  	rth->rt_oif	= 0;  |