diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2006-06-01 05:21:07 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2006-06-01 05:21:07 +0000 |
commit | 5bb57997ba63ec1e323ccd016a62a823fcc37a85 (patch) | |
tree | ec9f2f4c5470556c2722c85ca767b347790e895a /sys/net | |
parent | 155557ab018401b6e1c377b443afd2dfc2f324db (diff) |
use the table ID as array index directly, faster in the forwarding path
we trade higher memory consumption if the user doesn't use continous table
IDs, but in the worst case (table IDs 0 and 255, 64bit machine) that is 2KB
ok claudio ryan
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/route.c | 37 | ||||
-rw-r--r-- | sys/net/route.h | 4 |
2 files changed, 22 insertions, 19 deletions
diff --git a/sys/net/route.c b/sys/net/route.c index 53ea4710e6c..d1a459bde51 100644 --- a/sys/net/route.c +++ b/sys/net/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.75 2006/05/31 02:02:22 henning Exp $ */ +/* $OpenBSD: route.c,v 1.76 2006/06/01 05:21:06 henning Exp $ */ /* $NetBSD: route.c,v 1.14 1996/02/13 22:00:46 christos Exp $ */ /* @@ -135,7 +135,7 @@ struct rtstat rtstat; struct radix_node_head ***rt_tables; u_int8_t af2rtafidx[AF_MAX+1]; u_int8_t rtafidx_max; -u_int rtbl_cnt = 0; +u_int rtbl_id_max = 0; int rttrash; /* routes not in table but not freed */ struct sockaddr wildcard; /* zero cookie for wildcard searches */ @@ -144,7 +144,7 @@ struct pool rtentry_pool; /* pool for rtentry structures */ struct pool rttimer_pool; /* pool for rttimer structures */ int rtable_init(struct radix_node_head ***); -int rtable_add(char *); +int rtable_add(u_int); int okaytoclone(u_int, int); int rtdeletemsg(struct rtentry *); int rtflushclone1(struct radix_node *, void *); @@ -152,7 +152,6 @@ void rtflushclone(struct radix_node_head *, struct rtentry *); int rt_if_remove_rtdelete(struct radix_node *, void *); #define LABELID_MAX 50000 -#define RTBL_CNT_INC 4 /* allocate rtables in chunks of 4 */ struct rt_label { TAILQ_ENTRY(rt_label) rtl_entry; @@ -209,34 +208,36 @@ route_init() if (dom->dom_rtattach) af2rtafidx[dom->dom_family] = rtafidx_max++; - if (rtable_add("main") == -1) + if (rtable_add(0) == -1) panic("route_init rtable_add"); } int -rtable_add(char *tblname) /* must be called at splsoftnet */ +rtable_add(u_int id) /* must be called at splsoftnet */ { - u_int i; void *p; - for (i = 0; i < rtbl_cnt; i++) - if (rt_tables[i] == NULL) - break; + if (id > RT_TABLEID_MAX) + return (-1); + + if (id == 0 || id > rtbl_id_max) { + size_t newlen = sizeof(void *) * (id+1); - if (i == rtbl_cnt) { - rtbl_cnt += RTBL_CNT_INC; - if ((p = malloc(sizeof(void *) * rtbl_cnt, M_RTABLE, - M_NOWAIT)) == NULL) + if ((p = malloc(newlen, M_RTABLE, M_NOWAIT)) == NULL) return (-1); - bzero(p, sizeof(void *) * rtbl_cnt); - if (i > 0) { - bcopy(rt_tables, p, sizeof(void *) * i); + bzero(p, newlen); + if (id > 0) { + bcopy(rt_tables, p, sizeof(void *) * (rtbl_id_max+1)); free(rt_tables, M_RTABLE); } rt_tables = p; + rtbl_id_max = id; } - return (rtable_init(&rt_tables[i])); + if (rt_tables[id] != NULL) /* already exists */ + return (-1); + + return (rtable_init(&rt_tables[id])); } void diff --git a/sys/net/route.h b/sys/net/route.h index c2622e94ac8..add43964d08 100644 --- a/sys/net/route.h +++ b/sys/net/route.h @@ -1,4 +1,4 @@ -/* $OpenBSD: route.h,v 1.40 2006/05/31 01:35:11 henning Exp $ */ +/* $OpenBSD: route.h,v 1.41 2006/06/01 05:21:06 henning Exp $ */ /* $NetBSD: route.h,v 1.9 1996/02/13 22:00:49 christos Exp $ */ /* @@ -304,6 +304,8 @@ void rtlabel_unref(u_int16_t); #define ONNET_CLONING 1 #define NO_CLONING 2 +#define RT_TABLEID_MAX 255 + extern struct route_cb route_cb; extern struct rtstat rtstat; extern const struct sockaddr_rtin rt_defmask4; |