From 5b0f19e6f27c7799884ab52c8f70bf8474283736 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 21 Aug 2012 10:42:38 -0400 Subject: [PATCH] rcuja: fix max depth test Signed-off-by: Mathieu Desnoyers --- rcuja/rcuja.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcuja/rcuja.c b/rcuja/rcuja.c index c1fc7fa..a651c7e 100644 --- a/rcuja/rcuja.c +++ b/rcuja/rcuja.c @@ -73,7 +73,7 @@ struct cds_ja_type { #define JA_ENTRY_PER_NODE 256UL #define JA_BITS_PER_BYTE 3 -#define JA_MAX_DEPTH 5 /* Maximum depth, including leafs */ +#define JA_MAX_DEPTH 9 /* Maximum depth, including leafs */ /* * Entry for NULL node is at index 8 of the table. It is never encoded -- 2.34.1