From 966636f39f17e5d42e7918a2055d400c791671b4 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 26 Jun 2009 19:39:35 +0200 Subject: use named variant when allocating msgb's when we generate a talloc report (SIGUSR1), we can now see which system allocated a given msgb, this helps memory leak debugging --- openbsc/src/trau_mux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openbsc/src/trau_mux.c') diff --git a/openbsc/src/trau_mux.c b/openbsc/src/trau_mux.c index 7615b6294..04febbd63 100644 --- a/openbsc/src/trau_mux.c +++ b/openbsc/src/trau_mux.c @@ -170,7 +170,8 @@ int trau_mux_input(struct gsm_e1_subslot *src_e1_ss, return -EINVAL; if (!ue->callref) return -EINVAL; - msg = msgb_alloc(sizeof(struct gsm_trau_frame) + sizeof(tf)); + msg = msgb_alloc(sizeof(struct gsm_trau_frame) + sizeof(tf), + "TRAU"); if (!msg) return -ENOMEM; frame = (struct gsm_trau_frame *)msg->data; -- cgit v1.2.3