|
From: <sv...@va...> - 2009-05-22 18:12:12
|
Author: bart
Date: 2009-05-22 19:12:00 +0100 (Fri, 22 May 2009)
New Revision: 10110
Log:
Parameter tuning / removed an unused counter.
Modified:
branches/DRDDEV/drd/drd_bitmap.c
branches/DRDDEV/drd/drd_bitmap.h
branches/DRDDEV/drd/pub_drd_bitmap.h
Modified: branches/DRDDEV/drd/drd_bitmap.c
===================================================================
--- branches/DRDDEV/drd/drd_bitmap.c 2009-05-22 14:48:24 UTC (rev 10109)
+++ branches/DRDDEV/drd/drd_bitmap.c 2009-05-22 18:12:00 UTC (rev 10110)
@@ -1087,11 +1087,6 @@
return s_bitmap_creation_count;
}
-ULong DRD_(bm_get_bitmap2_node_creation_count)(void)
-{
- return s_bitmap2_node_creation_count;
-}
-
ULong DRD_(bm_get_bitmap2_creation_count)(void)
{
return s_bitmap2_creation_count;
Modified: branches/DRDDEV/drd/drd_bitmap.h
===================================================================
--- branches/DRDDEV/drd/drd_bitmap.h 2009-05-22 14:48:24 UTC (rev 10109)
+++ branches/DRDDEV/drd/drd_bitmap.h 2009-05-22 18:12:00 UTC (rev 10110)
@@ -66,7 +66,7 @@
/** Number of bits assigned to the least significant component of an address.
*/
-#define ADDR_LSB_BITS 12
+#define ADDR_LSB_BITS 14
/** Mask that has to be applied to an address of type Addr in order to
* compute the least significant part of an address split, after having
@@ -201,7 +201,6 @@
/* Local variables. */
static ULong s_bitmap2_creation_count;
-static ULong s_bitmap2_node_creation_count;
Modified: branches/DRDDEV/drd/pub_drd_bitmap.h
===================================================================
--- branches/DRDDEV/drd/pub_drd_bitmap.h 2009-05-22 14:48:24 UTC (rev 10109)
+++ branches/DRDDEV/drd/pub_drd_bitmap.h 2009-05-22 18:12:00 UTC (rev 10110)
@@ -122,7 +122,6 @@
struct bitmap* const bm2);
void DRD_(bm_print)(struct bitmap* bm);
ULong DRD_(bm_get_bitmap_creation_count)(void);
-ULong DRD_(bm_get_bitmap2_node_creation_count)(void);
ULong DRD_(bm_get_bitmap2_creation_count)(void);
ULong DRD_(bm_get_bitmap2_merge_count)(void);
|