fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-bsc/+/34358?usp=email )


Change subject: oml: ipacc: fix copy-pasted talloc chunk names
......................................................................

oml: ipacc: fix copy-pasted talloc chunk names

Change-Id: Ib0858c0d84b9bd2d3a4d732cfedb045862d2efed
Related: OS#4505
---
M src/osmo-bsc/bts_ipaccess_nanobts_omlattr.c
1 file changed, 20 insertions(+), 5 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/58/34358/1

diff --git a/src/osmo-bsc/bts_ipaccess_nanobts_omlattr.c 
b/src/osmo-bsc/bts_ipaccess_nanobts_omlattr.c
index ddbb05a..bc6c59e 100644
--- a/src/osmo-bsc/bts_ipaccess_nanobts_omlattr.c
+++ b/src/osmo-bsc/bts_ipaccess_nanobts_omlattr.c
@@ -99,7 +99,8 @@
        struct msgb *msgb;
        uint8_t buf[256];
        int rlt;
-       msgb = msgb_alloc(1024, "nanobts_attr_bts");
+
+       msgb = msgb_alloc(1024, __func__);
        if (!msgb)
                return NULL;

@@ -183,7 +184,8 @@
        struct abis_nm_ipacc_att_ns_cfg ns_cfg;
        struct abis_nm_ipacc_att_bssgp_cfg bssgp_cfg;
        struct gsm_bts *bts = gsm_bts_sm_get_bts(bts_sm);
-       msgb = msgb_alloc(1024, "nanobts_attr_bts");
+
+       msgb = msgb_alloc(1024, __func__);
        if (!msgb)
                return NULL;

@@ -229,7 +231,8 @@
        const struct gprs_rlc_cfg *rlcc = &cell->rlc_cfg;
        struct msgb *msgb;
        uint8_t buf[2];
-       msgb = msgb_alloc(1024, "nanobts_attr_bts");
+
+       msgb = msgb_alloc(1024, __func__);
        if (!msgb)
                return NULL;
 
@@ -299,7 +302,8 @@
 {
        struct msgb *msgb;
        uint8_t buf[256];
-       msgb = msgb_alloc(1024, "nanobts_attr_bts");
+
+       msgb = msgb_alloc(1024, __func__);
        if (!msgb)
                return NULL;

@@ -344,7 +348,8 @@
 {
        struct msgb *msgb;
        uint8_t buf[256];
-       msgb = msgb_alloc(1024, "nanobts_attr_bts");
+
+       msgb = msgb_alloc(1024, __func__);
        if (!msgb)
                return NULL;


-- 
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/34358?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: Ib0858c0d84b9bd2d3a4d732cfedb045862d2efed
Gerrit-Change-Number: 34358
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <[email protected]>
Gerrit-MessageType: newchange

Reply via email to