route.c (292dd876ee765c478b27c93cc51e93a558ed58bf) route.c (85259878499d6c428cba191bb4e415a250dcd75a)
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * ROUTE - implementation of the IP router.
7 *
8 * Version: $Id: route.c,v 1.103 2002/01/12 07:44:09 davem Exp $

--- 821 unchanged lines hidden (view full) ---

830#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
831 /* remove all related balanced entries
832 * if necessary
833 */
834 if (rth->u.dst.flags & DST_BALANCED) {
835 int r;
836
837 rthp = rt_remove_balanced_route(
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * ROUTE - implementation of the IP router.
7 *
8 * Version: $Id: route.c,v 1.103 2002/01/12 07:44:09 davem Exp $

--- 821 unchanged lines hidden (view full) ---

830#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
831 /* remove all related balanced entries
832 * if necessary
833 */
834 if (rth->u.dst.flags & DST_BALANCED) {
835 int r;
836
837 rthp = rt_remove_balanced_route(
838 &rt_hash_table[i].chain,
838 &rt_hash_table[k].chain,
839 rth,
840 &r);
841 goal -= r;
842 if (!rthp)
843 break;
844 } else {
845 *rthp = rth->u.rt_next;
846 rt_free(rth);

--- 2361 unchanged lines hidden ---
839 rth,
840 &r);
841 goal -= r;
842 if (!rthp)
843 break;
844 } else {
845 *rthp = rth->u.rt_next;
846 rt_free(rth);

--- 2361 unchanged lines hidden ---