osmocom-bb.git branch master updated. osmocon_v0.0.0-1832-gf122d4cd

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
Wed Jul 19 12:15:35 UTC 2017


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 Open Source GSM Base Band stack".

The branch, master has been updated
       via  f122d4cd364a6ba0c3d73ff017c3cc598ebf10f1 (commit)
       via  c0fba7a298fc8c7fada32b24f71aa27e0ec90cd6 (commit)
       via  d80c6f4ef8a58a728ed41e6f36d57b96cad4c4ce (commit)
       via  f7dafcc5d2db77c03354c549e5493b2c4f78ac67 (commit)
       via  198dbda3c830e5a361d335a34305fb70a805986e (commit)
       via  f5e0f6424b35751d54e82a08f8d6e6de22ddea9a (commit)
      from  ef9ee6116ba145f8a09ecc614bb000004a302145 (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/osmocom-bb/commit/?id=f122d4cd364a6ba0c3d73ff017c3cc598ebf10f1

commit f122d4cd364a6ba0c3d73ff017c3cc598ebf10f1
Author: Harald Welte <laforge at gnumonks.org>
Date:   Wed Jul 19 13:53:30 2017 +0200

    VIRT-PHY: Properly destroy l1_model_ms after disconnect
    
    If a MS disconnects, we need to clean up all related state
    
    Change-Id: Ib7adef61150b5a4338483019e4dd75d7279d1f5d

http://cgit.osmocom.org/osmocom-bb/commit/?id=c0fba7a298fc8c7fada32b24f71aa27e0ec90cd6

commit c0fba7a298fc8c7fada32b24f71aa27e0ec90cd6
Author: Harald Welte <laforge at gnumonks.org>
Date:   Wed Jul 19 13:39:54 2017 +0200

    VIRT-PHY: Change default log levels
    
    This will basically only print L1C message for all L1CTL happening
    between MS and the BTS, while suppressing the GSMTAP/virtUM and L1P
    related messages.
    
    Change-Id: I9513db3cee12644ed9b9858e13b740ffd27aba24

http://cgit.osmocom.org/osmocom-bb/commit/?id=d80c6f4ef8a58a728ed41e6f36d57b96cad4c4ce

commit d80c6f4ef8a58a728ed41e6f36d57b96cad4c4ce
Author: Harald Welte <laforge at gnumonks.org>
Date:   Wed Jul 19 13:01:56 2017 +0200

    VIRT-PHY: Clean up logging statements
    
    The generated log lines have been *super* long, let's make them
    significantly shorter.  Also, differentiate between DEBUG and INFO
    level, so normal operation with LOGL_INFO will not spam the user while
    still printing useful information.
    
    Change-Id: If06a8b5f99349796d66a71201524361a6547945a

http://cgit.osmocom.org/osmocom-bb/commit/?id=f7dafcc5d2db77c03354c549e5493b2c4f78ac67

commit f7dafcc5d2db77c03354c549e5493b2c4f78ac67
Author: Harald Welte <laforge at gnumonks.org>
Date:   Wed Jul 19 12:14:35 2017 +0200

    VIRT-PHY: Separate logging of L1 Control and L1 Data
    
    L1 Data is quite verbose, while control is typically limited, so let's
    make sure we log them as separate sub-systems
    
    Change-Id: Idebc371a63508c593855486ff01b2ba6e8c2cfd1

http://cgit.osmocom.org/osmocom-bb/commit/?id=198dbda3c830e5a361d335a34305fb70a805986e

commit 198dbda3c830e5a361d335a34305fb70a805986e
Author: Harald Welte <laforge at gnumonks.org>
Date:   Wed Jul 19 11:53:13 2017 +0200

    VIRT-PHY: Log MS context number whenever possible
    
    Now that we can have multiple MS connected to one virtphy instance,
    it is important to log some context whenever possible.  To do so, we
    introduce a monotonically increasing MS number which gets assigned
    whenever we allocate a l1_model_ms and printed when the LOGPMS() or
    DEBUGPMS() macros are used.
    
    Change-Id: Id7d9507126a03def5bd7690f1dbe987f9a749e65

http://cgit.osmocom.org/osmocom-bb/commit/?id=f5e0f6424b35751d54e82a08f8d6e6de22ddea9a

commit f5e0f6424b35751d54e82a08f8d6e6de22ddea9a
Author: Harald Welte <laforge at gnumonks.org>
Date:   Wed Jul 19 11:02:47 2017 +0200

    VIRT-PHY: Major rewrite to deal with muliple L1CTL clients
    
    Change-Id: Ibfb2a93f8b45a95215c01368b1a52d92283474e6

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

Summary of changes:
 src/host/virt_phy/include/virtphy/gsmtapl1_if.h   |   6 +-
 src/host/virt_phy/include/virtphy/l1ctl_sap.h     |  64 +++----
 src/host/virt_phy/include/virtphy/l1ctl_sock.h    |  35 +++-
 src/host/virt_phy/include/virtphy/logging.h       |  12 +-
 src/host/virt_phy/include/virtphy/virt_l1_model.h |  12 +-
 src/host/virt_phy/include/virtphy/virt_l1_sched.h |  16 +-
 src/host/virt_phy/src/gsmtapl1_if.c               | 190 +++++++++----------
 src/host/virt_phy/src/l1ctl_sap.c                 | 219 +++++++++++-----------
 src/host/virt_phy/src/l1ctl_sock.c                |  98 ++++++----
 src/host/virt_phy/src/logging.c                   |  24 ++-
 src/host/virt_phy/src/virt_l1_model.c             |  22 ++-
 src/host/virt_phy/src/virt_l1_sched_simple.c      |  56 +++---
 src/host/virt_phy/src/virt_prim_data.c            |  47 ++---
 src/host/virt_phy/src/virt_prim_fbsb.c            |  38 ++--
 src/host/virt_phy/src/virt_prim_pm.c              |  35 ++--
 src/host/virt_phy/src/virt_prim_rach.c            |  38 ++--
 src/host/virt_phy/src/virt_prim_traffic.c         |  46 ++---
 src/host/virt_phy/src/virtphy.c                   |  61 ++++--
 18 files changed, 537 insertions(+), 482 deletions(-)


hooks/post-receive
-- 
The Open Source GSM Base Band stack



More information about the osmocom-commitlog mailing list