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 888dc7d31aa4b39ba8e08884c39be1c09c92f82a (commit)
from 6950b191e84c73687f9dc77462ff66cbeaec5686 (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=888dc7d31aa4b39ba8e08884c39b…
commit 888dc7d31aa4b39ba8e08884c39be1c09c92f82a
Author: Stefan Sperling <ssperling(a)sysmocom.de>
Date: Mon Feb 26 19:17:02 2018 +0100
print BIG FAT ERROR message if osmo_fsm lacks event names
Event names are displayed in VTY commands so all FSM should have them.
Print an error message if an FSM is registered without event names.
We could also return an error code, however at present no caller checks
the return value of osmo_fsm_register() so this would be pointless.
Add event names to the test FSM and update expected output accordingly.
Change-Id: I08b100d62b5c50bf025ef87d31ea39072539cf37
Related: OS#3008
-----------------------------------------------------------------------
Summary of changes:
src/fsm.c | 2 ++
tests/fsm/fsm_test.c | 7 +++++++
tests/fsm/fsm_test.err | 8 ++++----
3 files changed, 13 insertions(+), 4 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 0d6c3e811007be828207c0f69ff4e2dddeeb64db (commit)
via 3a80a56b9befe5f47cae5e4210ebc81d343b04f8 (commit)
from 6381900677001088b8f2a74905cd3ac1994f33ba (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=0d6c3e811007be828207c0f69ff4e2d…
commit 0d6c3e811007be828207c0f69ff4e2dddeeb64db
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Feb 23 14:06:27 2018 +0100
measurement.c: Don't silently copy "FULL" measurements to "SUB"
The existing code contained an ugly hack that if we didn't have any
"SUB" measurements we would simply use the "FULL" values. That's wrong
as TS 45.008 contains quite detailed rules on how the "SUB" values are
to be computed. In some cases, they are identical to "FULL", but in
most they are not.
Let's remove the hack and replace it with an ERROR message, as clearly
something is wrong if we ever encounter a measurement period end in
which no single "SUB" measurement was received. The only situation in
which this can occur is if the related uplink burst/block was missing,
so let's set BER to 100% and level to lowest possible.
Change-Id: I358f7b97fd4ea19264a77eff7abef13da7d5fbcd
http://cgit.osmocom.org/osmo-bts/commit/?id=3a80a56b9befe5f47cae5e4210ebc81…
commit 3a80a56b9befe5f47cae5e4210ebc81d343b04f8
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Feb 23 13:59:17 2018 +0100
measurement: Compute RX{LEV,QUAL}-SUB for SDCCH and non-AMR TCH
The rules on how to compute RX{LEV,QUAL}-SUB are rather convoluted, and
depend on the detailed channel type and mode.
For SDCCH and TCH/H in signalling mode, it's easy: No DTX is allowed,
and all measurements are used in SUB.
For non-AMR (TCH/F and TCH/H in non-signalling mode), we need to count
the SACCH block measurements, as well as any
SID/SID_UPDATE/L3_FILL/DUMMY blocks received in the blocks of table
8.3 of TS 45.008.
Only AMR (TCH/AFS + TCH/AHS) are more difficult, as there are no fixed
blocks/bursts/frames that always contain uplink messages, but the L1
will have to determine if a valid SID_UPDATE was received or not.
This patch implements the above rules (except AMR related) in the common
part of OsmoBTS. The AMR specific bits will have to follow as a later
patch, likely in a BTS specific way, i.e. separate changes to
sysmo/lc15/octphy/trx code.
Related: OS#2978
Change-Id: I16eb3747a1c23df935a4c50dafe46abce512a474
-----------------------------------------------------------------------
Summary of changes:
src/common/measurement.c | 109 ++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 104 insertions(+), 5 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 6381900677001088b8f2a74905cd3ac1994f33ba (commit)
via bcc20a871c61c9ab6188d6abe183dbced7ac241f (commit)
via 591c8993e9533da419fe1d995748b545a374416f (commit)
via f100992a20ea1f833f44c8f97efcd58cd18016e0 (commit)
via 49a8969bd6ff2cf89984a101677c5f09191a48ea (commit)
from de3b4a248e46b5bed1cce20774dceafc74c74073 (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=6381900677001088b8f2a74905cd3ac…
commit 6381900677001088b8f2a74905cd3ac1994f33ba
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Feb 23 13:37:45 2018 +0100
split scheduler_mframe.c from scheduler.c
There are use cases for the multiframe scheduler tables outside the
context of the entire scheduler. Let's prepare for that.
Related: OS#2978
Change-Id: I6a501e66c47809ae3cdc55bef2cb6390ee0096b1
http://cgit.osmocom.org/osmo-bts/commit/?id=bcc20a871c61c9ab6188d6abe183dbc…
commit bcc20a871c61c9ab6188d6abe183dbced7ac241f
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Feb 26 13:12:20 2018 +0100
{sysmo,lc15}: Fix RACH reporting in combined CBCH case
Combined CCCH with CBCH is a separate PCHAN type and hence we must
accept it in the list of RACH-carrying pchan types in order to correctly
report the RACH chan_nr when handing RACH requests up to L1SAP.
The bug this fixes likely might have rendered cells with combined CBCH
impossible to use.
Change-Id: I9537463e5eedd2b8b30f298e0d3b308367c5b1fb
http://cgit.osmocom.org/osmo-bts/commit/?id=591c8993e9533da419fe1d995748b54…
commit 591c8993e9533da419fe1d995748b545a374416f
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Feb 26 13:42:10 2018 +0100
{sysmo,lc15}: Correctly report BER to L1SAP in INFO_MEAS_IND
L1SAP uses 'ber10k' values, i.e. BER in 1/10000 units, where 10000
is all errors are bit-errors (= 100%).
The PHY on osmo-bts-sysmo and osmo-bts-lc15 is reporting a float fBer
value scaled to 1, i.e. 1.00 = 100% and hence must be 10000 as ber10k.
Before this patch, BER values reported on those BTS models were too
low by a factor of 100, resulting in way too optimistic RxQual values
reported to the BSC.
Closes: OS#3005
Change-Id: I17e2f8fe8055f613da1e554cd36ed13289f56fb3
http://cgit.osmocom.org/osmo-bts/commit/?id=f100992a20ea1f833f44c8f97efcd58…
commit f100992a20ea1f833f44c8f97efcd58cd18016e0
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Feb 26 11:37:53 2018 +0100
octphy: Remove code duplication for BER / RSSI conversion
Let's introduce some functions to hide the details of BER and RSSI
conversion from OCTPHY representation to L1SAP representation.
Change-Id: I517669c87a97b2ba164a2812811c8802fe0b92e8
http://cgit.osmocom.org/osmo-bts/commit/?id=49a8969bd6ff2cf89984a101677c5f0…
commit 49a8969bd6ff2cf89984a101677c5f09191a48ea
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Feb 26 08:49:59 2018 +0100
counters: split rach:sent into rach:drop, rach:ho, rach:cs and rach:ps
Change-Id: I51e9938df0e05b8fdb12686b9a9bb6994546deed
-----------------------------------------------------------------------
Summary of changes:
include/osmo-bts/bts.h | 5 +-
include/osmo-bts/scheduler.h | 30 +
src/common/Makefile.am | 2 +-
src/common/bts.c | 5 +-
src/common/l1sap.c | 8 +-
src/common/scheduler.c | 815 ---------------------
src/common/{scheduler.c => scheduler_mframe.c} | 935 +------------------------
src/osmo-bts-litecell15/l1_if.c | 5 +-
src/osmo-bts-octphy/l1_if.c | 40 +-
src/osmo-bts-sysmo/l1_if.c | 5 +-
src/osmo-bts-trx/Makefile.am | 2 +-
src/osmo-bts-virtual/Makefile.am | 2 +-
12 files changed, 78 insertions(+), 1776 deletions(-)
copy src/common/{scheduler.c => scheduler_mframe.c} (68%)
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 network interface library".
The branch, pespin/jitterbuffer has been updated
discards 89180efea12f2f748517156bc5ee13c01d104524 (commit)
discards 76e852d2a6217c49849deb1a5f9cb8402e509ee5 (commit)
discards 5746bb868ecb48924f2ff634c5ec2ad8d4baf591 (commit)
discards a409ae63e3d035f7f15da07755cd392bec53e6c6 (commit)
discards b3c1f5e0ddc718c9014a7afbe3e33874d192a4f4 (commit)
discards 4b292a8939147fb055ebaa87d6e53069c824c731 (commit)
discards 032b950b30aa382cc3716d40d3a58c2b5d140c0e (commit)
discards f28e85d48ff0048500625e6d67232443a0e1cfae (commit)
discards 7652418623942f16d6bb6ee6f8133536daa308d6 (commit)
via cde6815efa38616be3bca3b16386a1e7e9ff3770 (commit)
via e245cdfb04a9b382f0943ffa7e29a9eea4d325dd (commit)
via 8283292c4b01da2d893aafc844c9dfa123a39381 (commit)
via b55e6ca74825c4ecacd11ec21d57959c6e4bcbbe (commit)
via 12131da94cf3fcb6f562be513ba3381152411afc (commit)
via 8e39adfed8e5b0a6786827a8323b37fa0397d426 (commit)
via 84ec6cfde314c76a227e72dfaca0abc77f3b7be9 (commit)
via 350120cda3201e84a9626d71b6846dbd0aef1b55 (commit)
via e7b2a8f4eab92fc95d1368fe4acd61a24face5b3 (commit)
via f27fdf89dc52799e7c908493da2c9ccdf7b1d3c4 (commit)
via 2cbaf4139ae768ff5a79c79d389045b4ef4dd0e6 (commit)
via 3f93caea6e404618f2da49410e2f06e40aaac83e (commit)
via 3173ca7ac7e9c6c9e2ff9bb80a9d27a3c10c7608 (commit)
via c72be77aa330c968f9f1d624e38141b3c2e24323 (commit)
via b6e8d39417b217e9bbf396d50c3ef2a91a6c4054 (commit)
via 2547e87b94223d2a90057d87aa821f3745687196 (commit)
via 6d4acefb69b6a6f7fe29bb398ec617d7e3e01a71 (commit)
via bea215a565390009ddc79b830db334fa33cc7b3a (commit)
via fb31c0953c90496a96627821a95806175e4a2dde (commit)
via 443f40a6bf8bd153625820e7e6541b283c236ded (commit)
via cc7f236a4a2398f3f618c430fc4e1616c9d940bd (commit)
via 1274b374301ed7087e5316be0544111ede07cc15 (commit)
via 5edefaf0e6ec3b0839fc0afd5f3bd7253df066ce (commit)
via 358350468f8c31c9f05a41ede46627a47cce1f4a (commit)
via bdfe9682fef3606092fccc5b288f364fe22ec640 (commit)
via c2c8b5c557650a1842029fd081ffddca6db65af6 (commit)
via c01033fcacd7b87cc9eb47279a5d40445d770c18 (commit)
via 61b5b65debf407bb89da9df2b329d650f9526b29 (commit)
via d8f2b38eb96592567398c69bafdb9b3ecb82432e (commit)
via 77d08a67b53fe92856cdec9b3da91a980381d0cc (commit)
via 05bb1c2b2ef02c340d098be50546a0fafaecdb4e (commit)
via 1bfbf98f066dc1fa34bffb5377220323ea7aa802 (commit)
via a2b50809c766bfb1f94ac0fc7c76517e3e3a66ab (commit)
via 8440357d4cc88479921350344e435ee9c5e4e0f1 (commit)
via fae8559ff5ce825a874eeb33b2f1053430c07dc3 (commit)
via c98bf1b880ec10924cd12477bf46ef5d0f959257 (commit)
via 59941982083f7f0d6ab11f7bbb42c297a3fb8d69 (commit)
via 14af167a5553519d8164f4a21556888535eeefeb (commit)
via 9c5f01e7b2cb1455314443ceaeb035326354d280 (commit)
via 03b84ec99ba591950b6598c682f6f7083c8cc2f5 (commit)
via e3189dc8c2161cafd465a59077a5fc2e0cf4ac4f (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 (89180efea12f2f748517156bc5ee13c01d104524)
\
N -- N -- N (cde6815efa38616be3bca3b16386a1e7e9ff3770)
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/libosmo-netif/commit/?id=cde6815efa38616be3bca3b163…
commit cde6815efa38616be3bca3b16386a1e7e9ff3770
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jun 9 14:04:31 2017 +0200
jibuf: Estimate src clock skew
Change-Id: Ifae633d53107417a8e2f9b0f200d2711db72d199
http://cgit.osmocom.org/libosmo-netif/commit/?id=e245cdfb04a9b382f0943ffa7e…
commit e245cdfb04a9b382f0943ffa7e29a9eea4d325dd
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Jun 8 17:08:13 2017 +0200
tests: jibuf: enable mouse control in gnuplot script
Change-Id: I0ccf4d6fd57f1634e86b713e6c915d2c96aea0e8
http://cgit.osmocom.org/libosmo-netif/commit/?id=8283292c4b01da2d893aafc844…
commit 8283292c4b01da2d893aafc844c9dfa123a39381
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Jun 8 17:06:58 2017 +0200
tests: jibuf_test: Add parameters to control size of buffer
Change-Id: I8a7fa39985f8d197e24c32cab80299aba2d03087
http://cgit.osmocom.org/libosmo-netif/commit/?id=b55e6ca74825c4ecacd11ec21d…
commit b55e6ca74825c4ecacd11ec21d57959c6e4bcbbe
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Sun Apr 23 19:22:15 2017 +0200
jibuf: re-sync clock out of sync timestamps
Change-Id: I33556b33d7549654442d9bdd7f31128792506652
http://cgit.osmocom.org/libosmo-netif/commit/?id=12131da94cf3fcb6f562be513b…
commit 12131da94cf3fcb6f562be513ba3381152411afc
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Apr 19 17:25:09 2017 +0200
jibuf: Take RTP marker into account
Change-Id: Ie142acfb45650e0af775f58226fd191beaf8178e
http://cgit.osmocom.org/libosmo-netif/commit/?id=8e39adfed8e5b0a6786827a832…
commit 8e39adfed8e5b0a6786827a8323b37fa0397d426
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Apr 19 18:58:00 2017 +0200
tests: jibuf_test: Add OSMUX support
Change-Id: I0f02da0329e6739ff340d31113161bb520b1b760
http://cgit.osmocom.org/libosmo-netif/commit/?id=84ec6cfde314c76a227e72dfac…
commit 84ec6cfde314c76a227e72dfaca0abc77f3b7be9
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Apr 19 13:30:10 2017 +0200
tests: jibuf: Improve jibuf_test to read pcaps
Change-Id: I7a13c823fb70e0adbc5fa0726fd66b15dc40014e
Signed-off-by: Pau Espin Pedrol <pespin(a)sysmocom.de>
http://cgit.osmocom.org/libosmo-netif/commit/?id=350120cda3201e84a9626d71b6…
commit 350120cda3201e84a9626d71b6846dbd0aef1b55
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Apr 19 17:20:34 2017 +0200
jibuf: Add osmo_jibuf_empty API
This is useful to know if we need to keep iterating over
osmo_select_main() to dequeue packets before finishing.
Change-Id: I91a23e220c56924b847265c5dc752f286b109c2c
http://cgit.osmocom.org/libosmo-netif/commit/?id=e7b2a8f4eab92fc95d1368fe4a…
commit e7b2a8f4eab92fc95d1368fe4acd61a24face5b3
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Apr 12 19:36:47 2017 +0200
jibuf: Add initial implementation of Jitter Buffer
Change-Id: I9688ba9c4d5b733b9f29d0f15f73750f9271ef55
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 4 +
Makefile.am | 2 +
TODO-RELEASE | 9 ++
configure.ac | 20 ++-
contrib/jenkins.sh | 14 ++-
debian/changelog | 14 ++-
debian/control | 13 +-
debian/copyright | 22 +---
...libosmonetif3.install => libosmonetif4.install} | 0
debian/rules | 3 +
examples/Makefile.am | 10 ++
examples/udp-test-client.c | 43 +++++++
examples/udp-test-server.c | 35 ++++++
examples/udp-test.h | 137 +++++++++++++++++++++
include/osmocom/netif/stream.h | 1 +
src/Makefile.am | 6 +-
src/amr.c | 2 +
src/channel.c | 19 +++
src/channel/abis/Makefile.am | 4 +-
src/channel/abis/ipa_stream_client.c | 19 +++
src/channel/abis/ipa_stream_server.c | 19 +++
src/datagram.c | 31 ++++-
src/ipa.c | 19 +++
src/ipa_unit.c | 20 +++
src/osmux.c | 131 +++++++++++++-------
src/rs232.c | 6 +-
src/rtp.c | 51 +++++---
src/stream.c | 66 +++++++++-
tests/osmux/osmux_test.c | 8 +-
29 files changed, 613 insertions(+), 115 deletions(-)
create mode 100644 TODO-RELEASE
rename debian/{libosmonetif3.install => libosmonetif4.install} (100%)
create mode 100644 examples/udp-test-client.c
create mode 100644 examples/udp-test-server.c
create mode 100644 examples/udp-test.h
hooks/post-receive
--
Osmocom network interface library
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 de3b4a248e46b5bed1cce20774dceafc74c74073 (commit)
from 989f779cfcaa89a6e1d979a3ba7d5ab8b16613b6 (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=de3b4a248e46b5bed1cce20774dceaf…
commit de3b4a248e46b5bed1cce20774dceafc74c74073
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Feb 24 00:20:19 2018 +0100
measurement.c: Fix sdcch4_meas_rep_fn102 / sdcch8_meas_rep_fn102
Since Change-Id: I23fba50f48415314da40cf5bf86fce2ed3e66af6 we were not
reporting measurements for SDCCH channel types due to the wrong
encoding of the sdcch{4,8}_meas_rep_fn102 table.
Let's fix the table by encoding the needed information:
"What is the modulo-102 remainder of the first burst of the last block
before fn%102 reaches 37?" (SDCCH/4)
"What is the modulo-102 remainder of the first burst of the last block
before fn%102 reaches 12?" (SDCCH/8)
The TS 45.002 Clause 7 tables have to be consulted carefully to
determine this information.
Change-Id: Icf02354872670126ab3297b787b216981ca6c309
Related: OS#2965
-----------------------------------------------------------------------
Summary of changes:
src/common/measurement.c | 29 ++++++++++++++---------------
1 file changed, 14 insertions(+), 15 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 6950b191e84c73687f9dc77462ff66cbeaec5686 (commit)
from 175a4ae93aaf1068b61041dca12962059d65ed55 (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=6950b191e84c73687f9dc77462ff…
commit 6950b191e84c73687f9dc77462ff66cbeaec5686
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Feb 26 11:48:00 2018 +0100
coding: Add BER-reporting RACH decode functions
For all other decode operations we report the BER, but not for the
RACH. This results in osmo-bts-trx not being able to report BER
to the higher layers, which is possible on other BTS backends.
Let's close this gap by introducing gsm0503_rach_ext_decode_ber()
and gsm0503_rach_decode_ber() with the usual n_errors / n_bits_total
arguments.
Change-Id: I2b1926a37bde860dcfeb0d613eb55a71271928c5
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/coding/gsm0503_coding.h | 10 +++++--
src/coding/gsm0503_coding.c | 46 ++++++++++++++++++++++++++++++---
src/coding/libosmocoding.map | 2 ++
tests/coding/coding_test.c | 4 +--
4 files changed, 54 insertions(+), 8 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 "CI scripts".
The branch, master has been updated
via 8bab2702b45543620c28c9d8bcaef04f9656f32a (commit)
via 77f5ceb8d477a81b30db4710810e78671711cb6f (commit)
via 45bb81c8c08a07da3de9210b36ebcc31cb54eacd (commit)
via 71cb57cc880f7ce285cdc80b8101455998096afe (commit)
from 8efadaf7934ab5c3a9d3f3e5509a416d003217fb (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-ci/commit/?id=8bab2702b45543620c28c9d8bcaef04f…
commit 8bab2702b45543620c28c9d8bcaef04f9656f32a
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Sun Feb 25 20:38:13 2018 +0100
jenkins: gerrit-builds: replace the label linux_amd64_debian8/9 -> osmocom-gerrit-debian8/9
Introduce more precise labels to allow more flexibility when extending the jenkins setup.
The linux_amd64_debian8 or linux_amd64_debian9 is used across all build jobs which
make it hard to add new nodes which might only support one group of
jobs.
Change-Id: I900b7b50b33cc95e127ca78d2a47f59d32a6dfee
http://cgit.osmocom.org/osmo-ci/commit/?id=77f5ceb8d477a81b30db4710810e7867…
commit 77f5ceb8d477a81b30db4710810e78671711cb6f
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Sun Feb 25 16:25:44 2018 +0100
jenkins: master-builds: replace the label linux_amd64_debian8/9 -> osmocom-master-debian8/9
Introduce more precise labels to allow more flexibility when extending the jenkins setup.
The linux_amd64_debian8 or linux_amd64_debian9 is used across all build jobs which
make it hard to add new nodes which might only support one group of
jobs.
Change-Id: I0fa3d3f81ab01e2488fe07601740f42eb54b6d9c
http://cgit.osmocom.org/osmo-ci/commit/?id=45bb81c8c08a07da3de9210b36ebcc31…
commit 45bb81c8c08a07da3de9210b36ebcc31cb54eacd
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Sun Feb 25 16:50:02 2018 +0100
jenkins: add node admin2-deb8build to the update jobs
Change-Id: I6b703b9f27865b146f20bea953fe3d6500a88166
http://cgit.osmocom.org/osmo-ci/commit/?id=71cb57cc880f7ce285cdc80b81014559…
commit 71cb57cc880f7ce285cdc80b8101455998096afe
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Sun Feb 25 14:07:04 2018 +0100
jenkins: add node admin2-deb9build to the update jobs
Change-Id: Ie3803a46ee192dc72823291004ee20f4bdbe0126
-----------------------------------------------------------------------
Summary of changes:
jobs/README.adoc | 10 ++++++++++
jobs/gerrit-verifications.yml | 8 ++++----
jobs/master-builds.yml | 8 ++++----
jobs/update-osmo-ci-on-slaves.yml | 2 +-
jobs/update-osmo-python-on-slaves.yml | 2 +-
5 files changed, 20 insertions(+), 10 deletions(-)
hooks/post-receive
--
CI scripts
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 989f779cfcaa89a6e1d979a3ba7d5ab8b16613b6 (commit)
from 9c4ea743fdf0501be64bc09f8c6ae982da21627c (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=989f779cfcaa89a6e1d979a3ba7d5ab…
commit 989f779cfcaa89a6e1d979a3ba7d5ab8b16613b6
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun Feb 25 12:51:18 2018 +0100
RSL IPA DLCX: Avoid another null-pointer dereference
In case a DLCX _with conn-id_ is issued without any CRCX before,
we ran into a NULL pointer dereference in adding the connection
statistics. Let's handle this gracefully and simply return empty
statistics.
Change-Id: If8b71266c847b90cdc51695b9f47b527c51bd70c
Closes: OS#2996
-----------------------------------------------------------------------
Summary of changes:
src/common/rsl.c | 11 +++++------
1 file changed, 5 insertions(+), 6 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 9c4ea743fdf0501be64bc09f8c6ae982da21627c (commit)
from 756bfca599630ee64393d877343a9034416d20c3 (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=9c4ea743fdf0501be64bc09f8c6ae98…
commit 9c4ea743fdf0501be64bc09f8c6ae982da21627c
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun Feb 25 12:26:38 2018 +0100
RSL: Fix encoding of ConnectionID in IPA_DLCX_ACK
Change-Id: Ifdea747e78f191902870af53692f7a70fa7ece93
Closes: OS#2999
-----------------------------------------------------------------------
Summary of changes:
src/common/rsl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)