aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/route.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2008-06-03 16:36:01 -0700
committerDavid S. Miller <davem@davemloft.net>2008-06-03 16:36:01 -0700
commit51b77cae0d5aa8e1546fca855dcfe48ddfadfa9c (patch)
tree5d6824e94b09784b6b41f39ca08e11844bc73c7b /net/ipv4/route.c
parentnet_dma: remove duplicate assignment in dma_skb_copy_datagram_iovec (diff)
downloadlinux-dev-51b77cae0d5aa8e1546fca855dcfe48ddfadfa9c.tar.xz
linux-dev-51b77cae0d5aa8e1546fca855dcfe48ddfadfa9c.zip
route: Mark unused route cache flags as such.
Also removes an obsolete check for the unused flag RTCF_MASQ. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/ipv4/route.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index df41026b60db..96be336064fb 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1792,7 +1792,7 @@ static int __mkroute_input(struct sk_buff *skb,
if (err)
flags |= RTCF_DIRECTSRC;
- if (out_dev == in_dev && err && !(flags & RTCF_MASQ) &&
+ if (out_dev == in_dev && err &&
(IN_DEV_SHARED_MEDIA(out_dev) ||
inet_addr_onlink(out_dev, saddr, FIB_RES_GW(*res))))
flags |= RTCF_DOREDIRECT;