openbsc.git branch master updated. 0.15.0-496-g39ae17f

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Thu Oct 13 13:14:57 UTC 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".

The branch, master has been updated
       via  39ae17fb6945c0b4d88fa219fea1563fb9177fdc (commit)
       via  4c2d4ab5db5f5703d435e6a49639fca65a049778 (commit)
       via  e072da9d2e1ea7face8136fa90e6d9e9be70b997 (commit)
       via  20436c85069bd4d181146ee8447f5f9e93d5a6fd (commit)
       via  30f7310a620e0891e4187d803b69ee0fd04b4f63 (commit)
       via  3edd0b03d59f13ce12d9ebaf268bc6b131ee34e0 (commit)
      from  b6591072d8f6940e51af83983fd0edafed3a6fee (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=39ae17fb6945c0b4d88fa219fea1563fb9177fdc

commit 39ae17fb6945c0b4d88fa219fea1563fb9177fdc
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Fri Sep 16 01:49:08 2016 +0200

    msgb ctx: use new msgb_talloc_ctx_init(), don't access talloc_msgb_ctx
    
    Drop extern definitions of talloc_msgb_ctx and use msgb_talloc_ctx_init()
    instead.
    
    In sgsn_test.c, use a local variable msgb_ctx to do the talloc report
    from the return value of msgb_talloc_ctx_init().
    
    Change-Id: I2f9ace855f0ecbdc9adf5d75bcb1a3d666570de4

http://cgit.osmocom.org/openbsc/commit/?id=4c2d4ab5db5f5703d435e6a49639fca65a049778

commit 4c2d4ab5db5f5703d435e6a49639fca65a049778
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Fri Sep 16 02:31:17 2016 +0200

    msgb talloc ctx: initialize in all main() scopes
    
    Add msgb_talloc_ctx_init() call to many main() functions still lacking a
    msgb talloc context.
    
    Change-Id: Ib0d6751260659cabf18a7ce80680ba2fb4228ea1

http://cgit.osmocom.org/openbsc/commit/?id=e072da9d2e1ea7face8136fa90e6d9e9be70b997

commit e072da9d2e1ea7face8136fa90e6d9e9be70b997
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Fri Sep 16 02:30:08 2016 +0200

    gtphub_test.c: remove unused include of msgb.h
    
    Change-Id: I7a8003a0e0bff803941d7981ffc07cf78c3ae9a9

http://cgit.osmocom.org/openbsc/commit/?id=20436c85069bd4d181146ee8447f5f9e93d5a6fd

commit 20436c85069bd4d181146ee8447f5f9e93d5a6fd
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Fri Sep 16 02:29:50 2016 +0200

    meas_pcap2db.c: remove unused include of msgb.h
    
    Change-Id: I2197432c9482537bd5cf06a6c4fc912607ffab53

http://cgit.osmocom.org/openbsc/commit/?id=30f7310a620e0891e4187d803b69ee0fd04b4f63

commit 30f7310a620e0891e4187d803b69ee0fd04b4f63
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Fri Sep 16 02:33:30 2016 +0200

    bs11_config: initialize bs11 tall ctx, use instead of bsc ctx
    
    Actually initialize tall_bs11cfg_ctx as named const.
    
    Change-Id: I3b42b29cd1a688cb4c9d1d4e44208509d936e4ef

http://cgit.osmocom.org/openbsc/commit/?id=3edd0b03d59f13ce12d9ebaf268bc6b131ee34e0

commit 3edd0b03d59f13ce12d9ebaf268bc6b131ee34e0
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Fri Sep 16 02:28:30 2016 +0200

    ipaccess-config: initialize root talloc ctx with name
    
    tall_ctx_config is defined but remains NULL. Instead initialize as named
    const.
    
    Change-Id: Iec708eda2e4f8eb88b9e5bc5f82f6342709760b1

-----------------------------------------------------------------------

Summary of changes:
 openbsc/src/gprs/gb_proxy_main.c       | 4 +---
 openbsc/src/gprs/gtphub_main.c         | 1 +
 openbsc/src/gprs/sgsn_main.c           | 3 +--
 openbsc/src/ipaccess/ipaccess-config.c | 3 +++
 openbsc/src/ipaccess/ipaccess-proxy.c  | 1 +
 openbsc/src/libcommon/talloc_ctx.c     | 3 +--
 openbsc/src/osmo-bsc/osmo_bsc_main.c   | 1 +
 openbsc/src/osmo-bsc_mgcp/mgcp_main.c  | 1 +
 openbsc/src/osmo-bsc_nat/bsc_nat.c     | 3 +--
 openbsc/src/utils/bs11_config.c        | 3 +++
 openbsc/src/utils/meas_pcap2db.c       | 1 -
 openbsc/src/utils/meas_udp2db.c        | 2 ++
 openbsc/src/utils/meas_vis.c           | 2 ++
 openbsc/src/utils/smpp_mirror.c        | 2 ++
 openbsc/tests/bsc-nat/bsc_nat_test.c   | 1 +
 openbsc/tests/bsc/bsc_test.c           | 1 +
 openbsc/tests/gbproxy/gbproxy_test.c   | 2 ++
 openbsc/tests/gtphub/gtphub_test.c     | 1 -
 openbsc/tests/mgcp/mgcp_test.c         | 1 +
 openbsc/tests/oap/oap_test.c           | 1 +
 openbsc/tests/sgsn/sgsn_test.c         | 7 +++----
 openbsc/tests/trau/trau_test.c         | 2 ++
 22 files changed, 31 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)



More information about the osmocom-commitlog mailing list