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, master has been updated
via 310b73079814584c0ff92772939f9cc80e1c0171 (commit)
from 7b5dbc280510b6ad74d08b71bcf387b0f970a0bd (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=310b73079814584c0ff92772939f9cc8…
commit 310b73079814584c0ff92772939f9cc80e1c0171
Author: Max <msuraev(a)sysmocom.de>
Date: Tue May 2 16:10:07 2017 +0200
Use ipa.py for ctrl tests
Remove duplicated code and make sure that python code is actively used
as part of test harness
Change-Id: I676390abe2f179df6004cdd33d0eaaf60e18df03
-----------------------------------------------------------------------
Summary of changes:
openbsc/tests/ctrl_test_runner.py | 24 ++++++++----------------
1 file changed, 8 insertions(+), 16 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 91685096f8eae4a0be2b3bd2a773259c516897de (commit)
from 40dca8f991465aaa8e3c95c23d00f155106f584d (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=91685096f8eae4a0be2b3bd2a773259…
commit 91685096f8eae4a0be2b3bd2a773259c516897de
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Mon Mar 6 14:22:51 2017 +0100
bts: revert trx shutdown order
When a new TRX is allocated using gsm_bts_trx_alloc() (see gsm_data_shared.c in
openbsc.git), than it is added to the list in order. When octphy is shutting
down the BTS, it uses llist_for_each_entry() to iterate the tansceiver list to
shut all transceivers down. This means it starts the shut down process with
the primary TRX and then continues with the secondary transceivers in order.
However, octphy does not allow to close primary TRX if the secondary TRX is
open. The shutdown sequence must begin with the secondary transceivers and
finish with the primiary transceiver as last item.
The problem can be easily fixed by iterating the transceiver list in reverse
order using llist_for_each_entry_reverse() instead of llist_for_each_entry()
Since this is a change in the common code, all BTS models (not only octphy)
are affected, but from the logical perspective, this change makes sense
for all other BTS models too.
Change-Id: I18485de586b402610f9e98053d69e92bc9b18dc2
-----------------------------------------------------------------------
Summary of changes:
src/common/bts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 40dca8f991465aaa8e3c95c23d00f155106f584d (commit)
from d62a58dbfb4424a104960bca7ffff01a173c101f (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=40dca8f991465aaa8e3c95c23d00f15…
commit 40dca8f991465aaa8e3c95c23d00f155106f584d
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Jul 1 20:56:27 2016 +0200
sysmobts: Store a simple network config in the EEPROM as well
Make it possible to store:
* Static vs. DHCP mode
* IPv4 address
* Netmask
* GW IPv4 address
* DNS IPv4 address
Add a simple CRC8 and pick 0xFF as initial value so an all
zero EEPROM will not generate a 0 CRC. The code tries to
differentiate exit code between unreadable EEPROM and CRC error.
This is a reference to see if we want to have store it in the
EEPROM or not.
Change-Id: Id8a37fe952ef2a8ef36778729f506f900accf8d1
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-sysmo/misc/sysmobts_eeprom.h | 16 +++--
src/osmo-bts-sysmo/misc/sysmobts_par.c | 52 +++++++++++++++
src/osmo-bts-sysmo/misc/sysmobts_par.h | 4 ++
src/osmo-bts-sysmo/misc/sysmobts_util.c | 104 +++++++++++++++++++++++++++++-
4 files changed, 168 insertions(+), 8 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, master has been updated
via 7b5dbc280510b6ad74d08b71bcf387b0f970a0bd (commit)
from c6e8a01e706ac95561888e03e15e891884aa7d68 (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=7b5dbc280510b6ad74d08b71bcf387b0…
commit 7b5dbc280510b6ad74d08b71bcf387b0f970a0bd
Author: Max <msuraev(a)sysmocom.de>
Date: Fri May 5 13:24:03 2017 +0200
Gb: use textual representation for parse log
Use textual representation for message type and protocol descriminator
in case of Gb parsing errors.
Change-Id: Ida925258be119619d8705361730c554a130b75bc
Related: SYS#3610
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/gprs/gprs_gb_parse.c | 5 ++---
1 file changed, 2 insertions(+), 3 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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 85a6af213e8ccc0eb177b994db4137cf5b3089a4 (commit)
from a8a5819155323be6fab2c874d4448c0c9510331e (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=85a6af213e8ccc0eb177b994db41…
commit 85a6af213e8ccc0eb177b994db4137cf5b3089a4
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Apr 28 10:55:05 2017 +0200
gsm0808: fix control flow issue
Coverity Scan reported a control flow issue in line 206:
CID 166898: Control flow issues (DEADCODE)
The second branch of the if statement can not be reached. The
purpose of the second if branch was to filter out zero length
elements if the header states that it is a non extended speech
codec type. This makes no sense, since the header needs at
least one byte.
This patch removes the second if branch, zero length elements
are catched by the already existing zero length check at the
beginning of the function
Change-Id: I89751fc0d598734c64ef1fdced75b7c4fa77c616
-----------------------------------------------------------------------
Summary of changes:
src/gsm/gsm0808_utils.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via d06ff6426e849fdf3b33a56f076ed3bc26c2ac75 (commit)
from 1e93b9fc5519a5a35c9342415764859912fbc9f9 (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-gsm-manuals/commit/?id=d06ff6426e849fdf3b33a56…
commit d06ff6426e849fdf3b33a56f076ed3bc26c2ac75
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Tue May 2 13:49:34 2017 +0200
OsmoBTS/chapters/configuration.adoc: Add bts index in example
Change-Id: If13643cdfa59c50b6af8ab0657635fed2ca219f0
-----------------------------------------------------------------------
Summary of changes:
OsmoBTS/chapters/configuration.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Manuals for Osmocom GSM components
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 a8a5819155323be6fab2c874d4448c0c9510331e (commit)
via 2c3066e5da54659f19799005eddb1d134c6d0166 (commit)
via e604ee39cff121fdb2c6946a230bc2374929b35b (commit)
from 409e897df56b62b8282d54e759e2f30f0476ab12 (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=a8a5819155323be6fab2c874d444…
commit a8a5819155323be6fab2c874d4448c0c9510331e
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Mon May 8 00:07:21 2017 +0700
configure.ac: check for __builtin_cpu_supports call support
The '__builtin_cpu_supports' is a GCC's built-in function which
returns a positive integer if the run-time CPU supports specified
SIMD feature and returns 0 otherwise. It is required for further
SSE optimization of Viterbi decoder.
This change adds a new check, whether compiler supports this call.
See /gcc/X86-Built-in-Functions.html at gcc.gnu.org for reference.
Change-Id: I5d52cfb3e8fab3eedc0293a2842708cbee0f476a
http://cgit.osmocom.org/libosmocore/commit/?id=2c3066e5da54659f19799005eddb…
commit 2c3066e5da54659f19799005eddb1d134c6d0166
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sun Apr 30 19:41:56 2017 +0700
configure.ac: add SIMD detection capabilities
This change adds a check whether compiler supports some SIMD
(Single Instruction, Multiple Data) instructions. It is enabled
by default, and can be disabled by configure option --disable-simd.
The check macro is based on the AX_EXT from autoconf-archive:
www.gnu.org/software/autoconf-archive/ax_ext.html
And depends on the ax_check_compile_flag macro:
www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html
Currently only the following SIMD extensions are being checked:
AVX2, SSE3, SSE4.1, but adding others is also possible. All found
extensions are being defined in the 'config.h' header.
Change-Id: Idf8fff984bd936a75c7c307338df88ba4b005817
http://cgit.osmocom.org/libosmocore/commit/?id=e604ee39cff121fdb2c6946a230b…
commit e604ee39cff121fdb2c6946a230bc2374929b35b
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Mon May 1 16:44:02 2017 +0700
core/conv: strip unused memalign() call
The alligned memory allocation is only required for SSE, which
is currently unsupported. Moreover, it's better to use dedicated
_mm_malloc() and _mm_free() from xmmintrin.h instead, which are
introduced by Intel specifically for SIMD computations.
Change-Id: Ide764d1c643527323334ef14335be7f8915f7622
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 1 +
configure.ac | 43 ++++++++++++++++++++++++
m4/ax_check_compile_flag.m4 | 74 ++++++++++++++++++++++++++++++++++++++++
m4/ax_check_simd.m4 | 82 +++++++++++++++++++++++++++++++++++++++++++++
src/viterbi.c | 11 +-----
5 files changed, 201 insertions(+), 10 deletions(-)
create mode 100644 m4/ax_check_compile_flag.m4
create mode 100644 m4/ax_check_simd.m4
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 "Small Hardware Projects".
The branch, master has been updated
via 5d7d725c130ff5a5878fc5e539df0b2d610aa0fc (commit)
from 7a142572a17f738f747e09495eff2ef57d7b4d30 (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-small-hardware/commit/?id=5d7d725c130ff5a5878f…
commit 5d7d725c130ff5a5878fc5e539df0b2d610aa0fc
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun May 7 18:31:11 2017 +0200
e1-tap: Add BOM attributes
-----------------------------------------------------------------------
Summary of changes:
e1-tap/e1_tap.brd | 85 ++++++++++++++++++++++--
e1-tap/e1_tap.sch | 194 +++++++++++++++++++++++++++++++++++++++++++++++++-----
2 files changed, 258 insertions(+), 21 deletions(-)
hooks/post-receive
--
Small Hardware Projects
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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via 1e93b9fc5519a5a35c9342415764859912fbc9f9 (commit)
from 5b1770f5b4032f0a13e16f07b0df62947e470f5d (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-gsm-manuals/commit/?id=1e93b9fc5519a5a35c93424…
commit 1e93b9fc5519a5a35c9342415764859912fbc9f9
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri May 5 02:50:45 2017 +0200
OsmoGSMTester: add / tweak overview graphs
Some mistakes fixed (missing osmo-trx, B200 pointing at NITB instead of
osmo-bts-trx)
Add graph showing resource selection.
Add graph showing a trial dir.
Change-Id: I1cfcd99ee11b851095a75107246cb156ede7f4cf
-----------------------------------------------------------------------
Summary of changes:
OsmoGSMTester/chapters/intro.adoc | 105 ++++++++++++++++++++++++++++++++++----
1 file changed, 94 insertions(+), 11 deletions(-)
hooks/post-receive
--
Manuals for Osmocom GSM components