All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fib_trie resize break
@ 2007-03-16 10:46 Robert Olsson
  2007-03-19 23:27 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Olsson @ 2007-03-16 10:46 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, Robert.Olsson, Jens.Laas, hans.liss


Hello.

The patch below adds break condition for the resize operations. If 
we don't achieve the desired fill factor a warning is printed. Trie 
should still be operational but new thresholds should be considered.

Cheers
					--ro


Signed-off-by: Robert Olsson <robert.olsson@its.uu.se>


diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
index 1e589b9..7ef5948 100644
--- a/net/ipv4/fib_trie.c
+++ b/net/ipv4/fib_trie.c
@@ -50,7 +50,7 @@
  *		Patrick McHardy <kaber@trash.net>
  */
 
-#define VERSION "0.407"
+#define VERSION "0.408"
 
 #include <asm/uaccess.h>
 #include <asm/system.h>
@@ -460,6 +460,7 @@ static struct node *resize(struct trie *t, struct tnode *tn)
 	struct tnode *old_tn;
 	int inflate_threshold_use;
 	int halve_threshold_use;
+	int max_resize;
 
  	if (!tn)
 		return NULL;
@@ -560,7 +561,8 @@ static struct node *resize(struct trie *t, struct tnode *tn)
 		inflate_threshold_use = inflate_threshold;
 
 	err = 0;
-	while ((tn->full_children > 0 &&
+	max_resize = 10;
+	while ((tn->full_children > 0 &&  max_resize-- &&
 	       50 * (tn->full_children + tnode_child_length(tn) - tn->empty_children) >=
 				inflate_threshold_use * tnode_child_length(tn))) {
 
@@ -575,6 +577,17 @@ static struct node *resize(struct trie *t, struct tnode *tn)
 		}
 	}
 
+	if(max_resize < 0) {
+		
+		if(!tn->parent) 
+			printk(KERN_WARNING "Fix inflate_threshold_root. Now=%d size=%d bits\n", 
+			       inflate_threshold_root, tn->bits);
+		
+		else 
+			printk(KERN_WARNING "Fix inflate_threshold. Now=%d size=%d bits\n", 
+			       inflate_threshold, tn->bits);
+	}
+
 	check_tnode(tn);
 
 	/*
@@ -591,7 +604,8 @@ static struct node *resize(struct trie *t, struct tnode *tn)
 		halve_threshold_use = halve_threshold;
 
 	err = 0;
-	while (tn->bits > 1 &&
+	max_resize = 10;
+	while (tn->bits > 1 &&  max_resize-- &&
 	       100 * (tnode_child_length(tn) - tn->empty_children) <
 	       halve_threshold_use * tnode_child_length(tn)) {
 
@@ -606,6 +620,16 @@ static struct node *resize(struct trie *t, struct tnode *tn)
 		}
 	}
 
+	if(max_resize < 0) {
+		
+		if(!tn->parent) 
+			printk(KERN_WARNING "Fix halve_threshold_root. Now=%d size=%d bits\n", 
+			       halve_threshold_root, tn->bits);
+		
+		else 
+			printk(KERN_WARNING "Fix halve_threshold. Now=%d size=%d bits\n", 
+			       halve_threshold, tn->bits);
+	}
 
 	/* Only one child remains */
 	if (tn->empty_children == tnode_child_length(tn) - 1)

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] fib_trie resize break
  2007-03-16 10:46 [PATCH] fib_trie resize break Robert Olsson
@ 2007-03-19 23:27 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2007-03-19 23:27 UTC (permalink / raw)
  To: Robert.Olsson; +Cc: netdev, Jens.Laas, hans.liss

From: Robert Olsson <Robert.Olsson@data.slu.se>
Date: Fri, 16 Mar 2007 11:46:41 +0100

> 
> Hello.
> 
> The patch below adds break condition for the resize operations. If 
> we don't achieve the desired fill factor a warning is printed. Trie 
> should still be operational but new thresholds should be considered.
> 
> Cheers
> 					--ro
> 
> 
> Signed-off-by: Robert Olsson <robert.olsson@its.uu.se>

Applied with whitespace problems fixed up to net-2.6.22, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-03-19 23:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-16 10:46 [PATCH] fib_trie resize break Robert Olsson
2007-03-19 23:27 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.