[IPV4]: Remove IPVS icmp hack from route.c for now.

Revert: 2d771cd86d4c3af26f34a7bcdc1b87696824cad9

This is dangerous if enabled and a better solution to the
problem is being worked on.

Signed-off-by: David S. Miller <davem@davemloft.net>

+2 -2
+2 -2
net/ipv4/route.c
··· 2396 2396 2397 2397 /* It is equivalent to inet_addr_type(saddr) == RTN_LOCAL */ 2398 2398 dev_out = ip_dev_find(oldflp->fl4_src); 2399 - if ((dev_out == NULL) && !(sysctl_ip_nonlocal_bind)) 2399 + if (dev_out == NULL) 2400 2400 goto out; 2401 2401 2402 2402 /* I removed check for oif == dev_out->oif here. ··· 2407 2407 of another iface. --ANK 2408 2408 */ 2409 2409 2410 - if (dev_out && oldflp->oif == 0 2410 + if (oldflp->oif == 0 2411 2411 && (MULTICAST(oldflp->fl4_dst) || oldflp->fl4_dst == htonl(0xFFFFFFFF))) { 2412 2412 /* Special hack: user can direct multicasts 2413 2413 and limited broadcast via necessary interface