diff options
author | Alex Gartrell <agartrell@fb.com> | 2014-10-06 13:30:08 -0700 |
---|---|---|
committer | Simon Horman <simon.horman@netronome.com> | 2014-10-28 09:50:06 +0900 |
commit | d7701089118d23bfed03bad0a6b5cc5115990c9e (patch) | |
tree | def2ac0f48a3eaabf1dd8dc0439bb9cd7e5a7226 /net/netfilter | |
parent | 61ed53deb1c6a4386d8710dbbfcee8779c381931 (diff) | |
download | linux-d7701089118d23bfed03bad0a6b5cc5115990c9e.tar.bz2 |
ipvs: remove unnecessary assignment in __ip_vs_get_out_rt
It is a precondition of the function that daddr be equal to dest->addr.ip
if dest is non-NULL, so this additional assignment is just confusing for
stupid engineers like me.
Signed-off-by: Alex Gartrell <agartrell@fb.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'net/netfilter')
-rw-r--r-- | net/netfilter/ipvs/ip_vs_xmit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/netfilter/ipvs/ip_vs_xmit.c b/net/netfilter/ipvs/ip_vs_xmit.c index 91f17c1eb8a2..5efa59792505 100644 --- a/net/netfilter/ipvs/ip_vs_xmit.c +++ b/net/netfilter/ipvs/ip_vs_xmit.c @@ -293,7 +293,6 @@ __ip_vs_get_out_rt(int skb_af, struct sk_buff *skb, struct ip_vs_dest *dest, &dest->addr.ip, &dest_dst->dst_saddr.ip, atomic_read(&rt->dst.__refcnt)); } - daddr = dest->addr.ip; if (ret_saddr) *ret_saddr = dest_dst->dst_saddr.ip; } else { |