Module Name: src
Committed By: christos
Date: Thu Apr 7 03:09:56 UTC 2016
Modified Files:
src/sys/net: route.c
Log Message:
Don't create an RTM_MISS message for every route allocation.
GC unused code and variables.
To generate a diff of this commit:
cvs rdiff -u -r1.158 -r1.159 src/sys/net/route.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/net/route.c
diff -u src/sys/net/route.c:1.158 src/sys/net/route.c:1.159
--- src/sys/net/route.c:1.158 Mon Apr 4 03:37:07 2016
+++ src/sys/net/route.c Wed Apr 6 23:09:56 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: route.c,v 1.158 2016/04/04 07:37:07 ozaki-r Exp $ */
+/* $NetBSD: route.c,v 1.159 2016/04/07 03:09:56 christos Exp $ */
/*-
* Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
@@ -96,7 +96,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: route.c,v 1.158 2016/04/04 07:37:07 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: route.c,v 1.159 2016/04/07 03:09:56 christos Exp $");
#include <sys/param.h>
#ifdef RTFLUSH_DEBUG
@@ -393,33 +393,32 @@ rtalloc1(const struct sockaddr *dst, int
{
rtbl_t *rtbl;
struct rtentry *rt;
- struct rtentry *newrt = NULL;
- struct rt_addrinfo info;
- int s = splsoftnet(), err = 0, msgtype = RTM_MISS;
+ int s;
+ s = splsoftnet();
rtbl = rt_gettable(dst->sa_family);
- if (rtbl == NULL) {
- rtstat.rts_unreach++;
+ if (rtbl == NULL)
goto miss;
- }
rt = rt_matchaddr(rtbl, dst);
- if (rt == NULL) {
- rtstat.rts_unreach++;
+ if (rt == NULL)
goto miss;
- }
+
rt->rt_refcnt++;
- newrt = rt;
+ splx(s);
+ return rt;
miss:
+ rtstat.rts_unreach++;
if (report) {
+ struct rt_addrinfo info;
+
memset((void *)&info, 0, sizeof(info));
info.rti_info[RTAX_DST] = dst;
- rt_missmsg(msgtype, &info, 0, err);
+ rt_missmsg(RTM_MISS, &info, 0, 0);
}
-
splx(s);
- return newrt;
+ return NULL;
}
#ifdef DEBUG