osmo-bts.git branch neels/dyn_pdch_trx_no_deact updated. 0.4.0-246-gaf34433

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 Jul 28 15:59:40 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 "Osmocom BTS-side code (Abis, scheduling, ...)".

The branch, neels/dyn_pdch_trx_no_deact has been updated
  discards  67d1aebacc936e93b45a3c517ef9e8f61c5e78b1 (commit)
  discards  84c69a3d978ff5628dbbc981a389b99e7998ebb6 (commit)
  discards  a7ce9e6dc6414aa0df3b3ca554c26ed1517e3bed (commit)
       via  af3443385b4da3b951601a8d847cbf1101dfe51f (commit)
       via  0d4b37d641bc09c62f80b685e9450116f7a6aaa8 (commit)
       via  45d3bbfb443e9a8c9d6590c073cfac2bfef257eb (commit)
       via  576071d6ca2ffa266b3a6e0858b00205827fa10a (commit)
       via  5069c1c518fa9e6622adcfb3979da8f58c1c26b9 (commit)
       via  108b60fabac8f85739584124658e062c3fd7f7cb (commit)
       via  ba656fff9186f76544cf4c59900d5a649c133599 (commit)
       via  2b34ae32cf5f986ab594d3b9882392c0fb8fb4e3 (commit)
       via  53d792c3b027bfb42d77804e3e687a287e122ef3 (commit)
       via  dab54b91783d5197e0129de950a705e2da2a4cb9 (commit)
       via  9407e644b0246fadec74a45faeedb570a0c04c6b (commit)
       via  e07ba54d626145a858f9e75e7fe40dd0456bef48 (commit)
       via  a888e95efafbb449105965f3043d913b93668862 (commit)
       via  dd34540ce4547a2567bdd266e1a456fc4a199170 (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 (67d1aebacc936e93b45a3c517ef9e8f61c5e78b1)
            \
             N -- N -- N (af3443385b4da3b951601a8d847cbf1101dfe51f)

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=af3443385b4da3b951601a8d847cbf1101dfe51f

commit af3443385b4da3b951601a8d847cbf1101dfe51f
Author: Neels Hofmeyr <neels at hofmeyr.de>
Date:   Wed Jul 27 16:06:36 2016 +0200

    dyn PDCH: trx l1_if.c: drop fixme, add comment
    
    Change-Id: Ib240f21f4d460524767f4273fc9077617d1ffb43

http://cgit.osmocom.org/osmo-bts/commit/?id=0d4b37d641bc09c62f80b685e9450116f7a6aaa8

commit 0d4b37d641bc09c62f80b685e9450116f7a6aaa8
Author: Neels Hofmeyr <neels at hofmeyr.de>
Date:   Wed Jul 27 16:20:59 2016 +0200

    dyn PDCH: complete for trx: implement bts_model_ts_[dis]connect()
    
    bts_model_ts_disconnect() has nothing to do.
    
    bts_model_ts_connect() merely sets the new pchan on the ts.
    
    Change-Id: Ieb66935d6efc26854e95d238e810c4f8b16cfa88

http://cgit.osmocom.org/osmo-bts/commit/?id=45d3bbfb443e9a8c9d6590c073cfac2bfef257eb

commit 45d3bbfb443e9a8c9d6590c073cfac2bfef257eb
Author: Neels Hofmeyr <neels at hofmeyr.de>
Date:   Wed Jul 27 16:09:43 2016 +0200

    dyn PDCH: trx l1_if.c: factor out trx_set_ts_as_pchan() from trx_set_ts()
    
    To be able to set a specific pchan type for dynamic channels, have the
    trx_set_ts_as_pchan() function with an explicit pchan argument instead of
    using ts->pchan.
    
    Keep trx_set_ts() as a thin wrapper to use ts->pchan directly.
    
    Change-Id: I9eeef05d2a6763f86a5b89ee7c3b4211f6736e4d

http://cgit.osmocom.org/osmo-bts/commit/?id=576071d6ca2ffa266b3a6e0858b00205827fa10a

commit 576071d6ca2ffa266b3a6e0858b00205827fa10a
Author: Neels Hofmeyr <neels at hofmeyr.de>
Date:   Wed Jul 27 15:52:55 2016 +0200

    dyn TS, dyn PDCH: common/l1sap.c: properly notice PDCH
    
    In l1sap_ph_rts_ind(), l1sap_ph_data_ind() and to_gsmtap(), the decision
    to handle a TS as PDCH was still missing for dynamic TS.
    
    It is not yet clear why this did not impact functionality for dynamic timeslots
    on other BTS models. AFAICT they should not work without this patch, but in
    fact they do. It would be nice to clarify this some day.
    
    Change-Id: I7b873a089a3de70d980885a7539cb91997464743

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

Summary of changes:
 include/osmo-bts/scheduler.h         |   12 +-
 include/osmo-bts/scheduler_backend.h |   43 +-
 src/common/l1sap.c                   |    4 +-
 src/common/pcu_sock.c                |   60 +-
 src/common/scheduler.c               |   28 +-
 src/osmo-bts-litecell15/l1_if.c      |    1 +
 src/osmo-bts-octphy/l1_tch.c         |    2 +-
 src/osmo-bts-sysmo/l1_if.c           |    1 +
 src/osmo-bts-sysmo/oml.c             |    3 +-
 src/osmo-bts-sysmo/sysmobts_vty.c    |   17 +
 src/osmo-bts-trx/gsm0503_coding.c    | 1016 +++++++++++++++++++++++++++++++++-
 src/osmo-bts-trx/gsm0503_coding.h    |   22 +
 src/osmo-bts-trx/l1_if.c             |    2 +-
 src/osmo-bts-trx/scheduler_trx.c     |  159 ++++--
 src/osmo-bts-trx/trx_if.c            |   31 +-
 src/osmo-bts-trx/trx_if.h            |    2 +-
 16 files changed, 1241 insertions(+), 162 deletions(-)


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



More information about the osmocom-commitlog mailing list