From 1a401918bbce4b3be849340ac75a597f58db0f14 Mon Sep 17 00:00:00 2001 From: Lai Jiangshan Date: Fri, 14 Oct 2011 09:14:04 -0500 Subject: [PATCH] rculfhash: use dbg_printf() for grow/shrink printout Signed-off-by: Lai Jiangshan Signed-off-by: Mathieu Desnoyers --- rculfhash.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rculfhash.c b/rculfhash.c index e379c71..cf822fc 100644 --- a/rculfhash.c +++ b/rculfhash.c @@ -1609,8 +1609,8 @@ void _do_cds_lfht_grow(struct cds_lfht *ht, old_order = get_count_order_ulong(old_size) + 1; new_order = get_count_order_ulong(new_size) + 1; - printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n", - old_size, old_order, new_size, new_order); + dbg_printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n", + old_size, old_order, new_size, new_order); assert(new_size > old_size); init_table(ht, old_order, new_order - old_order); } @@ -1625,8 +1625,8 @@ void _do_cds_lfht_shrink(struct cds_lfht *ht, new_size = max(new_size, MIN_TABLE_SIZE); old_order = get_count_order_ulong(old_size) + 1; new_order = get_count_order_ulong(new_size) + 1; - printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n", - old_size, old_order, new_size, new_order); + dbg_printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n", + old_size, old_order, new_size, new_order); assert(new_size < old_size); /* Remove and unlink all dummy nodes to remove. */ -- 2.34.1