libosmocore.git branch jerlbeck/wip/stats updated. 0.9.0-37-gd8dd911

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 Dec 17 09:29:04 UTC 2015


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 "An utility library for Open Source Mobile Communications".

The branch, jerlbeck/wip/stats has been updated
  discards  07ab21292da2aa6b441fae8c5829f4f28376bce2 (commit)
  discards  0b8d2f81d8ff5b2fc443aef4a52912cac640b057 (commit)
  discards  56922b3f7bdf58153b450d56adf50b0c4b404a45 (commit)
  discards  342706d51c75a4c840a50a1e20178dc48a940b77 (commit)
  discards  b52d8121888f3aedc1f1390f13347201db931876 (commit)
       via  d8dd911de66e10c87e4b8f0fa0e26f1be832eb82 (commit)
       via  62f80fccb8a222bd81f0b15b099150dab6206bfc (commit)
       via  fad5752ab5b91e615dd82365c0663e38b4540dcd (commit)
       via  f4b173cb0c8c5179081a4b82928b375fdf0caf17 (commit)
       via  771a58feeec15c1e36373f0fe165ddf3ba83cbf6 (commit)
       via  84c19a9b36c5e416e3df6b42afb5b0e8aa8095cc (commit)
       via  49a8f88565385107cf008d1f2c01344a3f165c4d (commit)
       via  ac4ed17dbd15ed703583584626d820f66ea5a17d (commit)
       via  af5bad5ed00f0d21617c34f0e4e96eb2fd977a02 (commit)
       via  90e614f7ccb0902e6ddb510bb10f78eb14a13d94 (commit)
       via  ee702cd590688c1e65296319c5bc4c9cf160ba65 (commit)
       via  f13de868be052f96325c337f25453f1d97777005 (commit)
       via  46b703d083a57d7718340f8f71da29d96ce15170 (commit)
       via  2e8f9ed5560ac6286b1fe70ade868569d30cb392 (commit)
       via  b6e6bea4ecea4b0769fc56136321f01f553459ba (commit)
       via  5fa0dcc2750a79920d4a6404e960c50667840058 (commit)
       via  d086f2119509af2e26a0d7a587b9e176df814998 (commit)
       via  a10ef29b47123a60755b59befca9b2d45f3e29fa (commit)
       via  b32a19467ffde540b059bf166a378decf07701b8 (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (07ab21292da2aa6b441fae8c5829f4f28376bce2)
            \
             N -- N -- N (d8dd911de66e10c87e4b8f0fa0e26f1be832eb82)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

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/libosmocore/commit/?id=d8dd911de66e10c87e4b8f0fa0e26f1be832eb82

commit d8dd911de66e10c87e4b8f0fa0e26f1be832eb82
Author: Jacob Erlbeck <jerlbeck at sysmocom.de>
Date:   Thu Dec 17 09:51:53 2015 +0100

    ns/stats: Add missing osmo_stat_item_group_free to gprs_nsvc_delete
    
    The stat item group is not removed by gprs_nsvc_delete which will
    corrupt the group list.
    
    Addresses:
      valgrind tests/gbproxy/gbproxy_test
      [...]
      ==4541== Invalid write of size 4
      ==4541==    at 0x4071ACA: __llist_add (linuxlist.h:65)
      ==4541==    by 0x4071ACA: llist_add (linuxlist.h:81)
      ==4541==    by 0x4071ACA: osmo_stat_item_group_alloc
      (stat_item.c:112)
      ==4541==    by 0x407EDFD: gprs_nsvc_create (gprs_ns.c:244)
      ==4541==    by 0x408109D: gprs_ns_instantiate (gprs_ns.c:1388)
      ==4541==    by 0x804CFD3: test_gbproxy_ident_changes
      (gbproxy_test.c:1501)
      ==4541==    by 0x805FBD3: main (gbproxy_test.c:5803)
    
    Sponsored-by: On-Waves ehf

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

Summary of changes:
 configure.ac                                       |   16 +-
 debian/control                                     |    6 +-
 .../{libosmocore6.install => libosmocore7.install} |    0
 include/Makefile.am                                |    5 +-
 include/osmocom/core/stat_item.h                   |    3 +-
 include/osmocom/core/talloc.h                      |  191 +--
 include/osmocom/gsm/protocol/gsm_03_41.h           |   31 +
 include/osmocom/gsm/protocol/gsm_08_58.h           |   25 +
 include/osmocom/gsm/rsl.h                          |    6 +
 libosmocore.pc.in                                  |    4 +-
 libosmoctrl.pc.in                                  |    2 +-
 libosmogb.pc.in                                    |    2 +-
 libosmogsm.pc.in                                   |    2 +-
 libosmosim.pc.in                                   |    2 +-
 libosmovty.pc.in                                   |    2 +-
 src/Makefile.am                                    |   16 +-
 src/ctrl/Makefile.am                               |    4 +-
 src/gb/Makefile.am                                 |    4 +-
 src/gb/gprs_ns.c                                   |    1 +
 src/gsm/Makefile.am                                |    4 +-
 src/gsm/libosmogsm.map                             |    1 +
 src/gsm/rsl.c                                      |   26 +
 src/sim/Makefile.am                                |    4 +-
 src/stat_item.c                                    |   10 +-
 src/stats_statsd.c                                 |   12 +-
 src/talloc.c                                       | 1804 --------------------
 src/vty/Makefile.am                                |    4 +-
 src/vty/utils.c                                    |    5 +-
 tests/Makefile.am                                  |    3 +-
 utils/Makefile.am                                  |    2 +-
 30 files changed, 148 insertions(+), 2049 deletions(-)
 rename debian/{libosmocore6.install => libosmocore7.install} (100%)
 delete mode 100644 src/talloc.c


hooks/post-receive
-- 
An utility library for Open Source Mobile Communications



More information about the osmocom-commitlog mailing list