taglinefilesource code
f1513net/ipv4/route.cstruct fib_node *f, *f1;
f1633net/ipv4/route.cf1 = fz->fz_list;
f1634net/ipv4/route.cwhile (f1)
f1637net/ipv4/route.cunsigned hash = fz_hash_code(f1->fib_dst, logmask);
f1638net/ipv4/route.cnext = f1->fib_next;
f1639net/ipv4/route.cf1->fib_next = ht[hash];
f1640net/ipv4/route.cht[hash] = f1;
f1641net/ipv4/route.cf1 = next;
f1657net/ipv4/route.cwhile ((f1 = *fp) != NULL)
f1659net/ipv4/route.cif (f1->fib_dst == dst)
f1661net/ipv4/route.cfp = &f1->fib_next;
f1667net/ipv4/route.cwhile ((f1 = *fp) != NULL && f1->fib_dst == dst)
f1669net/ipv4/route.cif (f1->fib_metric >= metric)
f1676net/ipv4/route.cif (f1->fib_info->fib_gateway == gw)
f1678net/ipv4/route.cfp = &f1->fib_next;
f1685net/ipv4/route.cif (f1 && f1->fib_metric == metric && f1->fib_info == fi)
f1696net/ipv4/route.cf->fib_next = f1;
f1713net/ipv4/route.cwhile ((f1 = *fp) != NULL && f1->fib_dst == dst)
f1715net/ipv4/route.cif (f1->fib_info->fib_gateway == gw)
f1718net/ipv4/route.c*fp = f1->fib_next;
f1719net/ipv4/route.cif (fib_loopback == f1)
f1722net/ipv4/route.cip_netlink_msg(RTMSG_DELROUTE, dst, gw, mask, flags, metric, f1->fib_info->fib_dev->name);
f1723net/ipv4/route.cfib_free_node(f1);
f1727net/ipv4/route.cfp = &f1->fib_next;