aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/talloc_ctx.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2009-12-24 09:43:25 +0100
committerHarald Welte <laforge@netfilter.org>2009-12-24 09:43:25 +0100
commit30d2ebddd6eb1fd62deff137aa2c8eab55f2efc3 (patch)
tree038e7af8e79c5c9321c09dfc7d560141b2305118 /openbsc/src/talloc_ctx.c
parent09f7ad0ff7961b713264629dae790db9453c8116 (diff)
move msgb talloc context into talloc_ctx.c
This keeps the ordering right, independent of link ordering, it will ensure that the talloc dump will also catch msgb related memory leaks.
Diffstat (limited to 'openbsc/src/talloc_ctx.c')
-rw-r--r--openbsc/src/talloc_ctx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/src/talloc_ctx.c b/openbsc/src/talloc_ctx.c
index aa9f0b4d7..e90677b7e 100644
--- a/openbsc/src/talloc_ctx.c
+++ b/openbsc/src/talloc_ctx.c
@@ -1,6 +1,7 @@
#include <openbsc/talloc.h>
#include <openbsc/gsm_data.h>
+extern void *tall_msgb_ctx;
extern void *tall_fle_ctx;
extern void *tall_locop_ctx;
extern void *tall_gsms_ctx;
@@ -16,6 +17,7 @@ extern void *tall_upq_ctx;
void talloc_ctx_init(void)
{
+ tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
tall_fle_ctx = talloc_named_const(tall_bsc_ctx, 0,
"bs11_file_list_entry");
tall_locop_ctx = talloc_named_const(tall_bsc_ctx, 0, "loc_updating_oper");