summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2004-04-14 01:13:14 +0000
committerluigi <luigi@FreeBSD.org>2004-04-14 01:13:14 +0000
commit94049d08108115375769443eafab463669a31cb2 (patch)
treef4a4748113d8b5bfae8b81f49b706eab4bb21503
parent6a86b016720e6c490ba881c2bc0267b410e78005 (diff)
downloadFreeBSD-src-94049d08108115375769443eafab463669a31cb2.zip
FreeBSD-src-94049d08108115375769443eafab463669a31cb2.tar.gz
In an effort to simplify the routing code, try to deprecate rtalloc()
in favour of rtalloc_ign(), which is what would end up being called anyways. There are 25 more instances of rtalloc() in net*/ and about 10 instances of rtalloc_ign()
-rw-r--r--sys/netinet/in_gif.c2
-rw-r--r--sys/netinet/ip_output.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in_gif.c b/sys/netinet/in_gif.c
index fd6397e..72e2f86 100644
--- a/sys/netinet/in_gif.c
+++ b/sys/netinet/in_gif.c
@@ -190,7 +190,7 @@ in_gif_output(ifp, family, m)
}
if (sc->gif_ro.ro_rt == NULL) {
- rtalloc(&sc->gif_ro);
+ rtalloc_ign(&sc->gif_ro, 0);
if (sc->gif_ro.ro_rt == NULL) {
m_freem(m);
return ENETUNREACH;
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index e6f7311..d57b749 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -276,7 +276,7 @@ ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro,
* operation (as it is for ARP).
*/
if (ro->ro_rt == 0)
- rtalloc(ro);
+ rtalloc_ign(ro, 0);
if (ro->ro_rt == 0) {
ipstat.ips_noroute++;
error = EHOSTUNREACH;
OpenPOWER on IntegriCloud