summaryrefslogtreecommitdiffstats
path: root/sys/net/route.c
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2002-12-25 10:21:02 +0000
committerru <ru@FreeBSD.org>2002-12-25 10:21:02 +0000
commit2719b5ea8cf3644f875ec6613f32325ff39ad4fe (patch)
treef8da1f036cd1db39f17ea82b59d8c9fc9ac6dabf /sys/net/route.c
parent94490dce08e3e41b8f099a608f0151bd9f408fc0 (diff)
downloadFreeBSD-src-2719b5ea8cf3644f875ec6613f32325ff39ad4fe.zip
FreeBSD-src-2719b5ea8cf3644f875ec6613f32325ff39ad4fe.tar.gz
If the caller of rtrequest*(RTM_DELETE, ...) asked for a copy of
the entry being removed (ret_nrt != NULL), increment the entry's rt_refcnt like we do it for RTM_ADD and RTM_RESOLVE, rather than messing around with 1->0 transitions for rtfree() all over.
Diffstat (limited to 'sys/net/route.c')
-rw-r--r--sys/net/route.c22
1 files changed, 5 insertions, 17 deletions
diff --git a/sys/net/route.c b/sys/net/route.c
index 260f375..41f1335 100644
--- a/sys/net/route.c
+++ b/sys/net/route.c
@@ -566,6 +566,8 @@ rtrequest1(req, info, ret_nrt)
if (rn->rn_flags & (RNF_ACTIVE | RNF_ROOT))
panic ("rtrequest delete");
rt = (struct rtentry *)rn;
+ rt->rt_refcnt++;
+ rt->rt_flags &= ~RTF_UP;
/*
* Now search what's left of the subtree for any cloned
@@ -589,15 +591,6 @@ rtrequest1(req, info, ret_nrt)
}
/*
- * NB: RTF_UP must be set during the search above,
- * because we might delete the last ref, causing
- * rt to get freed prematurely.
- * eh? then why not just add a reference?
- * I'm not sure how RTF_UP helps matters. (JRE)
- */
- rt->rt_flags &= ~RTF_UP;
-
- /*
* give the protocol a chance to keep things in sync.
*/
if ((ifa = rt->rt_ifa) && ifa->ifa_rtrequest)
@@ -616,10 +609,8 @@ rtrequest1(req, info, ret_nrt)
*/
if (ret_nrt)
*ret_nrt = rt;
- else if (rt->rt_refcnt <= 0) {
- rt->rt_refcnt++; /* make a 1->0 transition */
- rtfree(rt);
- }
+ else
+ RTFREE(rt);
break;
case RTM_RESOLVE:
@@ -1137,10 +1128,7 @@ bad:
* If we are deleting, and we found an entry, then
* it's been removed from the tree.. now throw it away.
*/
- if (rt->rt_refcnt <= 0) {
- rt->rt_refcnt++; /* make a 1->0 transition */
- rtfree(rt);
- }
+ RTFREE(rt);
} else if (cmd == RTM_ADD) {
/*
* We just wanted to add it.. we don't actually
OpenPOWER on IntegriCloud