aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/route.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r--net/ipv4/route.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index bbe529774fd9..e14df8ec5082 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1118,13 +1118,13 @@ static void rt_del(unsigned hash, struct rtable *rt)
1118 spin_unlock_bh(rt_hash_lock_addr(hash)); 1118 spin_unlock_bh(rt_hash_lock_addr(hash));
1119} 1119}
1120 1120
1121void ip_rt_redirect(u32 old_gw, u32 daddr, u32 new_gw, 1121void ip_rt_redirect(__be32 old_gw, __be32 daddr, __be32 new_gw,
1122 u32 saddr, struct net_device *dev) 1122 __be32 saddr, struct net_device *dev)
1123{ 1123{
1124 int i, k; 1124 int i, k;
1125 struct in_device *in_dev = in_dev_get(dev); 1125 struct in_device *in_dev = in_dev_get(dev);
1126 struct rtable *rth, **rthp; 1126 struct rtable *rth, **rthp;
1127 u32 skeys[2] = { saddr, 0 }; 1127 __be32 skeys[2] = { saddr, 0 };
1128 int ikeys[2] = { dev->ifindex, 0 }; 1128 int ikeys[2] = { dev->ifindex, 0 };
1129 struct netevent_redirect netevent; 1129 struct netevent_redirect netevent;
1130 1130