[libosmocore] branch master updated (584f2d4 -> a7cc2cd)

Ruben Undheim rubund-guest at moszumanska.debian.org
Sun Nov 29 13:33:04 UTC 2015


This is an automated email from the git hooks/post-receive script.

rubund-guest pushed a change to branch master
in repository libosmocore.

      from  584f2d4   Apply changes done by sponsor when uploading
       new  da79952   record new upstream branch
      adds  c2ddc4f   build: have a disable-static build succeed
      adds  3de7b05   utils: add 'returns' doc to osmo_hexparse().
      adds  5eeb17a   ipaccess: add OAP proto_ext (in design).
      adds  c84851b   comments
      adds  9732cb4   stats: Add stat_item for value monitoring
      adds  738d9e2   stats: Add vty_out_stat_item_group
      adds  0a1400f   ns: Add statistics for some events
      adds  b27b352   stats: Use a global index for stat item values
      adds  423c1e5   core: Extend rate_ctr by helper functions
      adds  c6a7108   stats: Add stat_item_for_each functions
      adds  e5b0fe2   core: Update osmo_counters_for_each doc
      adds  aec583f   stat/vty: Use the iterator algorithms to show ctrg and statg
      adds  7211fe1   stat/vty: Add vty_out_statistics_full to show all statistics
      adds  45513e6   stats/vty: Add stats_vty.c
      adds  95bf828   stats: Add the reporting framework
      adds  adc900e   stats/vty: Add stats configuration
      adds  b1dbfb4   stats: Implement timer based reporting
      adds  c27671c   stats: Report stat item values
      adds  80db4ec   core: Add difference function to osmo_counter
      adds  c8f47b6   stats: Add support for osmo_counters
      adds  d01acfc   stats: Support statsd Multi-Metric Packets
      adds  4aa1177   stats: Add missing mtu command to 'write' output
      adds  ed197fd   stats: Make net config optional
      adds  490b38f   stats: Use function pointers in reporter objects
      adds  bc4f7ae   stats: Add log reporter
      adds  fc9533d   stats: Add osmo_ name prefix to identifiers
      adds  34eec7d   vty: Add reserved nodes to enum node_type
      adds  16fe8da   stats: Report group indices as unsigned int
      adds  bc9d9ac   stats: Limit reporting by class id
      adds  79125ec   log: Add new DLSTATS log level
      adds  837e940   stats: Remove warnings about never read variables
      adds  7921975   stats: Do not assign the wrong addresss
      adds  8f0374f   stats: Fix handling of the no mtu command
      adds  d7b0577   Merge branch 'jerlbeck/wip/stats'
      adds  667e83d   fix some typos
      adds  07cf861   gtphub: add OSMO_VTY_PORT_GTPHUB.
      adds  3f838b7   timer: Fix compiler warning about timeval
      adds  c337693   stats: Fix build on FreeBSD
      adds  8649d57   misc: Prepare the release of libosmocore 0.9.0
      adds  16ca4ae   Merge tag 'upstream/0.9.0' into upstream
       new  26760c4   Removed illegal pkg-config directive
       new  eea84e9   Some spelling errors corrected
       new  d9e8942   merge patched into master
       new  a7cc2cd   Updated debian files

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 configure.ac                                       |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   8 +
 debian/control                                     |   6 +-
 debian/libosmocore-dev.install                     |   1 -
 debian/libosmocore6.symbols                        |  32 +
 .../{libosmovty2.install => libosmovty3.install}   |   0
 .../{libosmovty2.symbols => libosmovty3.symbols}   |   6 +-
 ...0001-Removed-illegal-pkg-config-directive.patch |   2 +-
 .../0002-Some-spelling-errors-corrected.patch      |   6 +-
 include/Makefile.am                                |   3 +
 include/osmocom/core/bitXXgen.h.tpl                |   4 +-
 include/osmocom/core/linuxlist.h                   |   3 +-
 include/osmocom/core/logging.h                     |   3 +-
 include/osmocom/core/rate_ctr.h                    |  21 +
 include/osmocom/core/stat_item.h                   | 130 ++++
 include/osmocom/core/statistics.h                  |   8 +-
 include/osmocom/core/stats.h                       | 112 ++++
 include/osmocom/core/timer.h                       |   8 +-
 include/osmocom/gprs/gprs_ns.h                     |   2 +
 include/osmocom/gsm/protocol/ipaccess.h            |   1 +
 include/osmocom/vty/command.h                      |  10 +
 include/osmocom/vty/misc.h                         |   8 +-
 include/osmocom/vty/ports.h                        |   3 +-
 include/osmocom/vty/stats.h                        |   3 +
 src/Makefile.am                                    |   2 +-
 src/gb/gprs_bssgp.c                                |   2 +
 src/gb/gprs_ns.c                                   |  38 ++
 src/gb/gprs_ns_vty.c                               |   4 +-
 src/gsm/Makefile.am                                |   8 +-
 src/gsm/tlv_parser.c                               |   4 +-
 src/logging.c                                      |   5 +
 src/rate_ctr.c                                     |  41 ++
 src/stat_item.c                                    | 268 ++++++++
 src/statistics.c                                   |   8 +
 src/stats.c                                        | 697 +++++++++++++++++++++
 src/timer.c                                        |   7 +-
 src/utils.c                                        |   1 +
 src/vty/Makefile.am                                |   4 +-
 src/vty/stats_vty.c                                | 430 +++++++++++++
 src/vty/utils.c                                    | 125 +++-
 tests/Makefile.am                                  |  21 +-
 tests/stats/stats_test.c                           | 213 +++++++
 doc/.empty => tests/stats/stats_test.ok            |   0
 tests/testsuite.at                                 |   6 +
 tests/vty/vty_test.ok                              |   6 +-
 47 files changed, 2223 insertions(+), 64 deletions(-)
 rename debian/{libosmovty2.install => libosmovty3.install} (100%)
 rename debian/{libosmovty2.symbols => libosmovty3.symbols} (93%)
 create mode 100644 include/osmocom/core/stat_item.h
 create mode 100644 include/osmocom/core/stats.h
 create mode 100644 include/osmocom/vty/stats.h
 create mode 100644 src/stat_item.c
 create mode 100644 src/stats.c
 create mode 100644 src/vty/stats_vty.c
 create mode 100644 tests/stats/stats_test.c
 copy doc/.empty => tests/stats/stats_test.ok (100%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/libosmocore.git



More information about the debian-science-commits mailing list