X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttng-context-callstack.c;h=fd730bbc164090bdaf9ef708a4265894de2154a7;hb=3685cc8094c0fdf561f1ef6379f0e451d14d149e;hp=bdc1761ee705669ad8d7c95c8edeede0b434cb34;hpb=12c1f012312009f2af95757306aa51af792f1bf6;p=lttng-modules.git diff --git a/lttng-context-callstack.c b/lttng-context-callstack.c index bdc1761e..fd730bbc 100644 --- a/lttng-context-callstack.c +++ b/lttng-context-callstack.c @@ -32,7 +32,7 @@ * * size = cpus * nest * depth * sizeof(unsigned long) * - * Which is about 800 bytes per CPU on 64-bit host and a depth of 25. + * Which is 4096 bytes per CPU on 64-bit host and a depth of 128. * The allocation is done at the initialization to avoid memory * allocation overhead while tracing, using a shallow stack. * @@ -62,7 +62,7 @@ #include "wrapper/vmalloc.h" #include "lttng-tracer.h" -#define MAX_ENTRIES 25 +#define MAX_ENTRIES 128 enum lttng_cs_ctx_modes { CALLSTACK_KERNEL = 0,