osmo-bts.git branch neels/mnc3 updated. 0.7.0-141-g02ab01b

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
Sun Mar 4 22:50:20 UTC 2018


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 "Osmocom BTS-side code (Abis, scheduling, ...)".

The branch, neels/mnc3 has been updated
  discards  cc03be4988285fb053ba55c699e08b9023c306c1 (commit)
       via  02ab01b28e5b6ba3e5e7e5fdd1cc6f181102ae63 (commit)
       via  2f052f33de6ac09afa04037e5870a87497e5e9b9 (commit)
       via  16929dc75c8c8e507565b6a6b6a52ba5140c63a9 (commit)
       via  4046e3b3dd0cffd53d8d0d1f3e1bf9d0dec83ede (commit)
       via  f03a3a584cf0a54cc7bd2647d3e1e65cfb4a6d91 (commit)
       via  94a74e1b1c78e6c27b22be5ca675374e8b6a8222 (commit)
       via  80dddfd90d90b35b936ac9f21ecadea19c8be41b (commit)
       via  cb0a076728692e5577fc08ffdfdef7b0f59dd0c8 (commit)
       via  d5988d27e95ec34e2ec5d67473338ff3cc9b1853 (commit)
       via  0be82004550a4296ca78c8d718b215d424989be2 (commit)
       via  bae7af9c1362c49fa3b03b96dcfdd2fcebe43090 (commit)
       via  70a0ee56f7027d2e5738f30d62669afe1d7255a0 (commit)
       via  e1ff92b8ddcab3dd8d39760b2b3860b989dc0606 (commit)
       via  5bd6132c044b022d17f113f55d4778ce686a6259 (commit)
       via  916d508bf6312acbc29a3e3575151b9bc7bc66d2 (commit)
       via  acefd0586e5d463b2e7a6a039131994bc12573fc (commit)
       via  c092f4e1ded65447061198ea1c57458becc71574 (commit)
       via  d5bbd8ccf79eaf13bc23cc71accbeb3ff638b6dd (commit)
       via  b3a2a3e24f44adcc6660d33cc9684a8f24271e2e (commit)
       via  c2b4c668f3510b7b0baace749c5a310959010e90 (commit)
       via  b60d9e9464dabba64e7ba73a1a8f41adab21ff31 (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 (cc03be4988285fb053ba55c699e08b9023c306c1)
            \
             N -- N -- N (02ab01b28e5b6ba3e5e7e5fdd1cc6f181102ae63)

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/osmo-bts/commit/?id=02ab01b28e5b6ba3e5e7e5fdd1cc6f181102ae63

commit 02ab01b28e5b6ba3e5e7e5fdd1cc6f181102ae63
Author: Neels Hofmeyr <neels at hofmeyr.de>
Date:   Wed Feb 21 00:38:05 2018 +0100

    implement support for 3-digit MNC with leading zeros
    
    Record the mnc_3_digits flag from SI and pass on via the PCU interface.
    
    Bump the PCU interface version from 7 to 9, since osmo-bsc.git had a pcuif of
    version 8 already, and its addition of the mnc_3_digits flag bumped to 9. I am
    actually not sure whether this needs to match.
    See I78f30aef7aa224b2e9db54c3a844d8f520b3aee0
    
    Depends: Id2240f7f518494c9df6c8bda52c0d5092f90f221 (libosmocore)
    Change-Id: I49cd762c3c9d7ee6a82451bdf3ffa2a060767947

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

Summary of changes:
 include/osmo-bts/gsm_data.h              |  1 +
 include/osmo-bts/gsm_data_shared.h       |  6 ++--
 include/osmo-bts/pcu_if.h                |  2 --
 include/osmo-bts/pcuif_proto.h           | 30 ++++++++++++++---
 include/osmo-bts/scheduler.h             |  6 ++--
 include/osmo-bts/scheduler_backend.h     | 14 ++++----
 src/common/bts.c                         |  3 +-
 src/common/l1sap.c                       | 39 ++++++++++++++-------
 src/common/measurement.c                 | 11 +++---
 src/common/pcu_sock.c                    | 29 +++++++++++++++-
 src/common/rsl.c                         | 35 ++++++++++++-------
 src/common/scheduler.c                   | 10 +++---
 src/common/vty.c                         | 46 ++++++++++++++++++++++++-
 src/osmo-bts-litecell15/l1_if.c          | 20 +++++------
 src/osmo-bts-octphy/l1_if.c              | 40 +++++++++-------------
 src/osmo-bts-octphy/l1_oml.c             |  2 +-
 src/osmo-bts-sysmo/l1_if.c               | 20 +++++------
 src/osmo-bts-trx/l1_if.c                 | 12 +++----
 src/osmo-bts-trx/l1_if.h                 |  2 +-
 src/osmo-bts-trx/loops.c                 | 31 +++++++++--------
 src/osmo-bts-trx/loops.h                 |  2 +-
 src/osmo-bts-trx/scheduler_trx.c         | 58 +++++++++++++++++---------------
 src/osmo-bts-trx/trx_if.c                | 12 +++----
 src/osmo-bts-virtual/l1_if.c             |  4 +--
 src/osmo-bts-virtual/scheduler_virtbts.c | 10 +++---
 25 files changed, 276 insertions(+), 169 deletions(-)


hooks/post-receive
-- 
Osmocom BTS-side code (Abis, scheduling, ...)



More information about the osmocom-commitlog mailing list