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 ef9ee6116ba145f8a09ecc614bb000004a302145 (commit)
via 7b6071208eb98bb1eaeb667e2fc3869896ed7123 (commit)
via c2083feefae447ad0afac232f38a62dc58d0ee82 (commit)
via 3ee8ac1593957119eec398b0682207dac31a2dd8 (commit)
via 70dd7e5b75b1e7e008545a615d33d1134cf42339 (commit)
via c4324da7c6f684689b6c2343fc817f96c98419b8 (commit)
via 4f9913f1fd3702c8e5af0e1afab0ada9bad3e522 (commit)
from 48d2a55b40871c584b0af8ff4c918a7734a12b59 (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=ef9ee6116ba145f8a09ecc614bb00…
commit ef9ee6116ba145f8a09ecc614bb000004a302145
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 00:32:36 2017 +0200
VIRT-PHY: Don't redefine GSMTAP port number, use libosmocore
Change-Id: I11d04d76292c52ec5ab70893e8c6a2e55586b2ec
http://cgit.osmocom.org/osmocom-bb/commit/?id=7b6071208eb98bb1eaeb667e2fc38…
commit 7b6071208eb98bb1eaeb667e2fc3869896ed7123
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 23:32:55 2017 +0200
VIRT-PHY Use libosmocore unix domain socket helper
Change-Id: Ic0fa003bd7c7468d39a0c39fbea89000d576a4f3
http://cgit.osmocom.org/osmocom-bb/commit/?id=c2083feefae447ad0afac232f38a6…
commit c2083feefae447ad0afac232f38a62dc58d0ee82
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 22:18:52 2017 +0200
VIRT-PHY: reorganize data structures
* l1_model_ms can become a static member of l1_model_ms
* crypto_info_ms can become a static member of l1_state_ms
Change-Id: I94ca4dad1c6c668ce6307d5e5d728b1c1502af12
http://cgit.osmocom.org/osmocom-bb/commit/?id=3ee8ac1593957119eec398b068220…
commit 3ee8ac1593957119eec398b0682207dac31a2dd8
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 21:41:24 2017 +0200
VIRT-PHY: some more comments/documentation
Change-Id: I24fc98624178e9441d6cfcd61bc14e17c1391e9e
http://cgit.osmocom.org/osmocom-bb/commit/?id=70dd7e5b75b1e7e008545a615d33d…
commit 70dd7e5b75b1e7e008545a615d33d1134cf42339
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 17:15:14 2017 +0200
VIRT-PHY: Use IPv4 multicast groups for private / local scope
The addresses in the original code make little sense:
* 224.0.0.1 is "All systems on this subnet" and not routed
outside the local ethernet segment
* 225.0.0.1 is in a RESERVED range that shouldn't be used
Change-Id: I8e3acd745e65a6cfa70b681a440da6a59a1ed0b5
http://cgit.osmocom.org/osmocom-bb/commit/?id=c4324da7c6f684689b6c2343fc817…
commit c4324da7c6f684689b6c2343fc817f96c98419b8
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 16:37:27 2017 +0200
VIRT-PHY: Use osmo_fd_close() introduced in libosmocore
libosmocore has recently received a new function osmo_fd_close() which
can be used to replace the private fd_close() function in this code.
This requires Change-Id Icd0933eed6a24edde7cdcb378e138897ecc5332c in
libosmocore.
Change-Id: Id8a518dfb09465c2765681407e5581aee2d62d6d
http://cgit.osmocom.org/osmocom-bb/commit/?id=4f9913f1fd3702c8e5af0e1afab0a…
commit 4f9913f1fd3702c8e5af0e1afab0ada9bad3e522
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 16:35:50 2017 +0200
VIRT-PHY: Use new OSMO_SOCK_F_NO_MCAST_{LOOP,ALL} flags
libosmocore has recently gained support for flags like
OSMO_SOCK_F_NO_MCAST_LOOP and OSMO_SOCK_F_NO_MCAST_ALL that can be
passed to the socket initializer functions, further reducing complexity
of the code in osmo_mcast_sock.c here.
The related change-IDs are I5ab5de45c0b64ceb3636ea98245a23defa24ffd4 and
I24a5b1ebc3f84d2d5d4734e54df50efaea26490b in libosmocore.git.
Change-Id: I961aa07a381fef2cf9a2fb5357937864364ca04b
-----------------------------------------------------------------------
Summary of changes:
src/host/virt_phy/include/virtphy/virt_l1_model.h | 19 ++++---
src/host/virt_phy/include/virtphy/virtual_um.h | 17 ++++--
src/host/virt_phy/src/gsmtapl1_if.c | 18 +++----
src/host/virt_phy/src/l1ctl_sap.c | 40 +++++++-------
src/host/virt_phy/src/l1ctl_sock.c | 39 ++++----------
src/host/virt_phy/src/shared/osmo_mcast_sock.c | 63 +++++------------------
src/host/virt_phy/src/virt_l1_model.c | 2 -
src/host/virt_phy/src/virt_l1_sched_simple.c | 2 +-
src/host/virt_phy/src/virt_prim_data.c | 4 +-
src/host/virt_phy/src/virt_prim_fbsb.c | 26 +++++-----
src/host/virt_phy/src/virt_prim_pm.c | 31 ++++++-----
src/host/virt_phy/src/virt_prim_rach.c | 9 ++--
src/host/virt_phy/src/virt_prim_traffic.c | 4 +-
src/host/virt_phy/src/virtphy.c | 10 ++--
14 files changed, 122 insertions(+), 162 deletions(-)
hooks/post-receive
--
The Open Source GSM Base Band stack