Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Jan 2009 06:36:28 +0000 (UTC)
From:      Kip Macy <kmacy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r187012 - user/kmacy/HEAD_fast_net/sys/net
Message-ID:  <200901100636.n0A6aS2w082451@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kmacy
Date: Sat Jan 10 06:36:28 2009
New Revision: 187012
URL: http://svn.freebsd.org/changeset/base/187012

Log:
  fix rn_mpath_count and reduce frequency of printing

Modified:
  user/kmacy/HEAD_fast_net/sys/net/radix_mpath.c

Modified: user/kmacy/HEAD_fast_net/sys/net/radix_mpath.c
==============================================================================
--- user/kmacy/HEAD_fast_net/sys/net/radix_mpath.c	Sat Jan 10 06:18:26 2009	(r187011)
+++ user/kmacy/HEAD_fast_net/sys/net/radix_mpath.c	Sat Jan 10 06:36:28 2009	(r187012)
@@ -83,10 +83,12 @@ rn_mpath_count(struct radix_node *rn)
 	uint32_t i = 0;
 	struct rtentry *rt;
 	
-	while ((rn = rn_mpath_next(rn)) != NULL) {
+	while (rn != NULL) {
+		
 		rt = (struct rtentry *)rn;
 		if ((rt->rt_flags & RTF_SHUTDOWN) == 0)
 			i += rt->rt_rmx.rmx_weight;
+		rn = rn_mpath_next(rn);
 	}
 	return (i);
 }
@@ -298,7 +300,7 @@ rtalloc_mpath_fib(struct route *ro, uint
 	/* gw selection by Modulo-N Hash (RFC2991) XXX need improvement? */
 	hash += hashjitter;
 	hash %= n;
-	if ((lookup_count % 500) == 0)
+	if ((lookup_count % 50000) == 0)
 		printf("hash=%d ", hash);
 	while (rn) {
 		rt = (struct rtentry *)rn;
@@ -306,7 +308,7 @@ rtalloc_mpath_fib(struct route *ro, uint
 			continue;
 
 		total_weight += rt->rt_rmx.rmx_weight;
-		if ((lookup_count % 500) == 0)
+		if ((lookup_count % 50000) == 0)
 			printf("rmx_weight=%ld ", rt->rt_rmx.rmx_weight);
 		
 		if (total_weight >= hash)
@@ -317,7 +319,7 @@ rtalloc_mpath_fib(struct route *ro, uint
 			break;
 		rn = rn->rn_dupedkey;
 	}
-	if ((lookup_count % 500) == 0)
+	if ((lookup_count % 50000) == 0)
 		printf("\n");
 	lookup_count++;
 	



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901100636.n0A6aS2w082451>