Scalability fix: tracepoint.c hash table size increase
[lttng-ust.git] / liblttng-ust / tracepoint.c
index 85b14d2c176af0cbccaf9ad517cb0afc42ab6056..7de56ca0361dbbe5b55c0704cdcbe1eca44fb58a 100644 (file)
@@ -38,7 +38,7 @@
 #include <helper.h>
 
 #include "tracepoint-internal.h"
-#include "ltt-tracer-core.h"
+#include "lttng-tracer-core.h"
 #include "jhash.h"
 #include "error.h"
 
@@ -78,7 +78,7 @@ static CDS_LIST_HEAD(libs);
  * Tracepoint hash table, containing the active tracepoints.
  * Protected by tracepoint mutex.
  */
-#define TRACEPOINT_HASH_BITS 6
+#define TRACEPOINT_HASH_BITS 12
 #define TRACEPOINT_TABLE_SIZE (1 << TRACEPOINT_HASH_BITS)
 static struct cds_hlist_head tracepoint_table[TRACEPOINT_TABLE_SIZE];
 
This page took 0.025549 seconds and 4 git commands to generate.