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, master has been updated
via 250d77f8dfe4e9ce3ccbcdb2e5695bd819178318 (commit)
via 53ce11ab955de487063442d6e83a034f2f5a695b (commit)
from 59d0c2cca64c9efe199733fc04708cc500f44090 (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/osmo-bts/commit/?id=250d77f8dfe4e9ce3ccbcdb2e5695bd…
commit 250d77f8dfe4e9ce3ccbcdb2e5695bd819178318
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Jun 23 18:26:24 2017 +0200
Add loopback support for PDTCH
This add support for BTS-side lookback of PDTCH channels.
If lchan-loopback is enabled, We take the uplink frames as received in
PH-DATA.ind and put them into the dl_tch_queue for that lchan. When we
receive PH-RTS.ind, we dequeue frames from that queue and transmit them
in downlink. If no frame is found in queue, we transmit an empty
(all-zero) frame of 23 bytes (CS-1).
Change-Id: Idd07a3f4a88c38398d3e844333c0104e2de23864
http://cgit.osmocom.org/osmo-bts/commit/?id=53ce11ab955de487063442d6e83a034…
commit 53ce11ab955de487063442d6e83a034f2f5a695b
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Jun 24 02:09:43 2017 +0200
TRX: Use timerfd and CLOCK_MONOTONIC for GSM frame timer
using gettimeofday() is not suitable for the GSM frame timer, as it
relies on the normal 'wall clock' system time, which may be adjusted by
ntp, gps or other means at runtime.
Switching to a different clock source means we cannot use
osmo_timer_list anymore, but timerfd integrates just fine with our
libosmocore select() loop handling.
Change-Id: I51b19adde14ebb7ef3bb863d45e06243c323e22e
Closes: #2325
-----------------------------------------------------------------------
Summary of changes:
src/common/l1sap.c | 116 ++++++++++----
src/osmo-bts-trx/scheduler_trx.c | 330 +++++++++++++++++++++++++++++----------
src/osmo-bts-trx/trx_vty.c | 3 +-
3 files changed, 335 insertions(+), 114 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, pmaier/aoip has been updated
via 8761c965ff0b3d5f225a55411914313173758db9 (commit)
from 40703dd1f441ee754a3b9b8b838feb66bc8e032d (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/openbsc/commit/?id=8761c965ff0b3d5f225a554119143131…
commit 8761c965ff0b3d5f225a55411914313173758db9
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Jun 28 18:22:46 2017 +0200
mgcp: Fix missing call id in DLCX
The call id field in the DLCX message is missing. Use the endpoint
id as call id in all CRCX and DLCX messages.
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/mgcpgw_client.h | 3 ++-
openbsc/src/libmgcp/mgcpgw_client.c | 9 ++++-----
openbsc/src/libmsc/msc_ifaces.c | 11 +++++++----
3 files changed, 13 insertions(+), 10 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
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 OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, pmaier/aoip has been updated
via 40703dd1f441ee754a3b9b8b838feb66bc8e032d (commit)
from 030312043a84b0bfaf35c36790e56e3016c68661 (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/openbsc/commit/?id=40703dd1f441ee754a3b9b8b838feb66…
commit 40703dd1f441ee754a3b9b8b838feb66bc8e032d
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Jun 23 14:43:55 2017 +0200
a_iface: use vty to configure BSC/MSC connections
Use the VTY to configure the connections between BSC and MSC
on both sides.
We now can add new connections, we also can write the config,
removing existing connections is implemented on the MSC side,
but not yet on the BSC side.
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/a_iface.h | 16 ++--
openbsc/include/openbsc/a_reset.h | 5 +-
openbsc/include/openbsc/bsc_msc.h | 7 --
openbsc/include/openbsc/bsc_msc_data.h | 10 +++
openbsc/include/openbsc/gsm_data.h | 5 +-
openbsc/src/libcommon-cs/a_reset.c | 37 ++++++++-
openbsc/src/libcommon-cs/common_cs.c | 2 +-
openbsc/src/libmsc/a_iface.c | 131 +++++++++++++++++++++-----------
openbsc/src/libmsc/msc_vty.c | 104 +++++++++++++++++++++++++
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 2 +-
openbsc/src/osmo-bsc/osmo_bsc_main.c | 22 +-----
openbsc/src/osmo-bsc/osmo_bsc_sigtran.c | 45 +++++------
openbsc/src/osmo-bsc/osmo_bsc_vty.c | 89 ++++++++++++++++++++++
openbsc/src/osmo-msc/msc_main.c | 2 -
14 files changed, 367 insertions(+), 110 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
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 OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/pmaier_aoip has been updated
via 0eb5e206d93d655dcc0efd6f57d8c85619f16c69 (commit)
from a494d00c2fe76c00003f9bd196a04386c5c974aa (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/openbsc/commit/?id=0eb5e206d93d655dcc0efd6f57d8c856…
commit 0eb5e206d93d655dcc0efd6f57d8c85619f16c69
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Jun 28 15:27:41 2017 +0200
build: osmo-bsc_nat: add missing sigtran LDADD
Change-Id: I838cc9176b9d3e61e33f25d10bedd37c9c057fd3
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/osmo-bsc_nat/Makefile.am | 1 +
1 file changed, 1 insertion(+)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
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, master has been updated
via 59d0c2cca64c9efe199733fc04708cc500f44090 (commit)
via 5047fbe3b8b9e1e2404c7c8952ae2ac7a0ada662 (commit)
via 521ab50dcc95a7f0626340b76f9803805ee09bfc (commit)
via ae7ece10640c042072eb1efb257a1cf6511edc22 (commit)
from 4962ed1811b26e1b01fbfd445a8e8fee97a398a0 (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/osmo-bts/commit/?id=59d0c2cca64c9efe199733fc04708cc…
commit 59d0c2cca64c9efe199733fc04708cc500f44090
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Mon Jun 26 17:43:40 2017 +0200
octphy: remove log output
When handle_ph_data_ind() runs BER and RSSI is logged. Remove
this log output by removing the call to dump_meas_res
(Patch by Octasic Inc.)
Change-Id: I5e755465daa3daec2e2b4f61bc8d779c49196e9a
http://cgit.osmocom.org/osmo-bts/commit/?id=5047fbe3b8b9e1e2404c7c8952ae2ac…
commit 5047fbe3b8b9e1e2404c7c8952ae2ac7a0ada662
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Mon Jun 26 17:28:43 2017 +0200
octphy: initalize nmsg only when needed
nmsg is initalized every time the function runs, even when it
is not needed. Move the initalization into the if (msg) body
so that nmsg is only initalized when we really need it.
(Patch by Octasic Inc.)
Change-Id: If51dc50a9f4bdb4aba62c0ae5fbfac552806f0c0
http://cgit.osmocom.org/osmo-bts/commit/?id=521ab50dcc95a7f0626340b76f98038…
commit 521ab50dcc95a7f0626340b76f9803805ee09bfc
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Mon Jun 26 17:24:03 2017 +0200
octphy: initalize l1msg and only when needed
l1msg is initalized when the variable is declared. This means
the allocation always runs right on the beginning. Even when
the buffer is not needed at all.
do a prober l1msg initalization only when needed and check the
return code.
(Patch by Octasic Inc.)
Change-Id: Ia71d49b9cc109af53d997a687a7fb1b5ed062d1c
http://cgit.osmocom.org/osmo-bts/commit/?id=ae7ece10640c042072eb1efb257a1cf…
commit ae7ece10640c042072eb1efb257a1cf6511edc22
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Jun 13 16:59:42 2017 +0200
octphy: improve log output
Printing the RX payload size is strictly informative, so the
loglevel LOGL_ERROR is wrong. This commit changes it to
LOGL_DEBUG
(Patch by Octasic Inc.)
Change-Id: I712cdd79cbba93f457705d38871bd8d4b7f4e897
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-octphy/l1_if.c | 23 +++++++++++++++--------
src/osmo-bts-octphy/l1_tch.c | 2 +-
2 files changed, 16 insertions(+), 9 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 590c402e6cfbdb6dc3953fda7d8e4d55cf293d0a (commit)
from 70861e33d2c9c65fec19c7ec8328cad67a74e3f4 (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/libosmocore/commit/?id=590c402e6cfbdb6dc3953fda7d8e…
commit 590c402e6cfbdb6dc3953fda7d8e4d55cf293d0a
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Jun 28 14:29:24 2017 +0200
BSSGP: handle BVC-RESET-ACK
That's necessary for SGSN to properly handle BSS response to reset
procedure initiated by SGSN (foe example via 'bssgp bvc nsei 101 bvci 0
reset' command).
According to 3GPP TS 48.018 §8.4 "after performing the BVC Reset
procedure all affected BVCs are assumed to be unblocked at the SGSN" so
there's no need in any special handling.
Change-Id: I90dfbd0195a8403406429ccc746299d072445f7b
Related: OS#1638
-----------------------------------------------------------------------
Summary of changes:
src/gb/gprs_bssgp.c | 3 +++
1 file changed, 3 insertions(+)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
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 "UNNAMED PROJECT".
The branch, user/max/asantest has been created
at c82f4a7ec3f75472711af5f4d3c8966f1773272d (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-pcu/commit/?id=c82f4a7ec3f75472711af5f4d3c8966…
commit c82f4a7ec3f75472711af5f4d3c8966f1773272d
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Jun 28 12:51:05 2017 +0200
Remove warning regarding ASAN
Change-Id: I8b306dc9bd5392f669b0effcac6413cf08edef13
-----------------------------------------------------------------------
hooks/post-receive
--
UNNAMED PROJECT
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, master has been updated
via 4962ed1811b26e1b01fbfd445a8e8fee97a398a0 (commit)
from d0846651a3c2120a661212d07106584267f66475 (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/osmo-bts/commit/?id=4962ed1811b26e1b01fbfd445a8e8fe…
commit 4962ed1811b26e1b01fbfd445a8e8fee97a398a0
Author: Max <msuraev(a)sysmocom.de>
Date: Mon Jun 26 11:07:38 2017 +0200
RSL: receive and send multiple SI2q messages
* change BCCH Info handler to explicitly support multiple SI2quater
messages sent from BSC
* change SI scheduler to send SI2q in round-robin way
That's resubmission of 340cff51f49f6e798cb5fb6d1b9febdd09902906 and
186c6bac0758b6f94aa101e151664b0dea5d8975 with memory initialization
order change to fix the issue detected by osmo-gsm-tester - see OS#2338.
Change-Id: Ib595733cde108387bc7ee76b1b11ada6a235f13c
Related: OS#1660, OS#2338
-----------------------------------------------------------------------
Summary of changes:
src/common/rsl.c | 39 ++++++++++++++++++++++++++-------------
src/common/sysinfo.c | 16 +++++++++++++++-
2 files changed, 41 insertions(+), 14 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 70861e33d2c9c65fec19c7ec8328cad67a74e3f4 (commit)
from 52a881e98a77ec939bdeddadbba9d47e7a7ec32e (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/libosmocore/commit/?id=70861e33d2c9c65fec19c7ec8328…
commit 70861e33d2c9c65fec19c7ec8328cad67a74e3f4
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Jun 27 13:51:02 2017 +0200
deb: fix build by adding libosmogb doc package
Change-Id: I3fe45feaee4033c17e25c4c0552d54a81d9b44f5
Fixes: OS#2340
-----------------------------------------------------------------------
Summary of changes:
debian/control | 15 +++++++++++++++
debian/libosmogb-doc.doc-base | 7 +++++++
debian/libosmogb-doc.install | 1 +
debian/rules | 1 +
4 files changed, 24 insertions(+)
create mode 100644 debian/libosmogb-doc.doc-base
create mode 100644 debian/libosmogb-doc.install
hooks/post-receive
--
An utility library for Open Source Mobile Communications
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 OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/pmaier_aoip has been created
at a494d00c2fe76c00003f9bd196a04386c5c974aa (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=a494d00c2fe76c00003f9bd196a04386…
commit a494d00c2fe76c00003f9bd196a04386c5c974aa
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Jun 23 10:13:27 2017 +0200
wip: vty: make msc sccp addressesconfigurable
Currently all sccp addresses on the msc (and bsc)
side are hardcoded.
Prepare the msc code to make the associated BSCs
configurble. Make the compiler link libosmo-sccp
properly and start using the sccp addressbook
feature of libosmoc-sccp.
Change-Id: I0171da40cfc2d90a4ca8e423b51cf7275c3d5571
http://cgit.osmocom.org/openbsc/commit/?id=155d638af04627e5512f3bad27c10b33…
commit 155d638af04627e5512f3bad27c10b33fc3b90e7
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Jun 20 14:13:37 2017 +0200
wip: a_iface: MSC sided reset
-----------------------------------------------------------------------
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)