Attention is currently required from: fixeria, laforge, pespin.
falconia has posted comments on this change by falconia. ( https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email )
Change subject: libosmotrau: implement RAA' encoder function
......................................................................
Patch Set 5:
(1 comment)
File include/Makefile.am:
https://gerrit.osmocom.org/c/libosmo-abis/+/38292/comment/c0b7ed33_58bddf0e… :
PS4, Line 8: raa_prime
> > I think it's good to rename […]
The newly uploaded patches have the rename. Following Harald's instruction, I'll re-add +2 myself in a couple of days if no one else reviews sooner.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I11fc1529f5be88fa778c7e05cb11eef58a389d40
Gerrit-Change-Number: 38292
Gerrit-PatchSet: 5
Gerrit-Owner: falconia <falcon(a)freecalypso.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 30 Sep 2024 07:09:58 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: falconia <falcon(a)freecalypso.org>
Comment-In-Reply-To: laforge <laforge(a)osmocom.org>
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Attention is currently required from: falconia, fixeria, laforge, pespin.
Hello Jenkins Builder, fixeria, laforge, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-abis/+/38293?usp=email
to look at the new patch set (#5).
The following approvals got outdated and were removed:
Code-Review+1 by laforge, Code-Review+1 by pespin, Code-Review+2 by fixeria, Verified+1 by Jenkins Builder
The change is no longer submittable: Code-Review and Verified are unsatisfied now.
Change subject: libosmotrau: implement RAA' decoder function
......................................................................
libosmotrau: implement RAA' decoder function
The previous patch implements RAA' encoder function;
now comes the decoder.
Related: OS#6167
Change-Id: I1347a25ce97d5022502ee9112caded66315b09a4
---
M .gitignore
M include/osmocom/trau/csd_raa_prime.h
M src/Makefile.am
A src/trau/raa_prime_decode.c
M tests/Makefile.am
A tests/raa_prime/test_dec.c
M tests/testsuite.at
7 files changed, 280 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-abis refs/changes/93/38293/5
--
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/38293?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I1347a25ce97d5022502ee9112caded66315b09a4
Gerrit-Change-Number: 38293
Gerrit-PatchSet: 5
Gerrit-Owner: falconia <falcon(a)freecalypso.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: falconia <falcon(a)freecalypso.org>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Attention is currently required from: fixeria, laforge, pespin.
Hello Jenkins Builder, fixeria, laforge, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email
to look at the new patch set (#5).
The following approvals got outdated and were removed:
Code-Review+1 by laforge, Code-Review+1 by pespin, Code-Review+2 by fixeria, Verified+1 by Jenkins Builder
The change is no longer submittable: Code-Review and Verified are unsatisfied now.
Change subject: libosmotrau: implement RAA' encoder function
......................................................................
libosmotrau: implement RAA' encoder function
RAA' is the rate adaption function specific to 14.4 kbit/s CSD
services. It is defined in 3GPP TS 48.020 chapter 11, and consists
of transforming each user data frame of 290 bits (as it would appear
at the radio channel coder interface) into a special A-TRAU frame.
64 kbit/s streams consisting of these A-TRAU frames are meant to
traverse the call switching network from one mobile call leg to
the other, or from a mobile call leg to an IWF.
RAA' transform involves rather bewildering manipulation of payload
bit content, done to prevent any possibility of false A-TRAU frame
alignment in octet-oriented (no frame boundaries) 64 kbit/s transport.
The complexity is such that unit tests are essential, especially
unit tests that cross-check our software implementation against
those made by others.
Fortunately this RAA' function is included in traditional T1/E1 TRAUs,
those that support CSD in 14.4 kbit/s mode and implement it according
to the specs. Nokia TCSM2 in Themyscira lab includes the necessary
support, and the present patch includes a unit test that verifies
perfect agreement between our software implementation of RAA' encoder
and the historical hw implementation in the old Nokia TRAU.
Related: OS#6167
Change-Id: I11fc1529f5be88fa778c7e05cb11eef58a389d40
---
M .gitignore
M include/Makefile.am
A include/osmocom/trau/csd_raa_prime.h
M src/Makefile.am
A src/trau/raa_prime_encode.c
M tests/Makefile.am
A tests/raa_prime/README.test-data
A tests/raa_prime/d144-ul-input.asc
A tests/raa_prime/nokia-tcsm2-atrau.hex
A tests/raa_prime/test_enc.c
M tests/testsuite.at
11 files changed, 396 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-abis refs/changes/92/38292/5
--
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I11fc1529f5be88fa778c7e05cb11eef58a389d40
Gerrit-Change-Number: 38292
Gerrit-PatchSet: 5
Gerrit-Owner: falconia <falcon(a)freecalypso.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Attention is currently required from: fixeria, laforge, pespin.
falconia has posted comments on this change by falconia. ( https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email )
Change subject: libosmotrau: implement RAA' encoder function
......................................................................
Patch Set 4:
(1 comment)
File include/Makefile.am:
https://gerrit.osmocom.org/c/libosmo-abis/+/38292/comment/8125e244_e371d59a… :
PS4, Line 8: raa_prime
> I think it's good to rename
This part is the important bit: since both of you agree that `csd_raa_prime.h` is better than current `raa_prime.h`, I'll produce modified patches with this renaming.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I11fc1529f5be88fa778c7e05cb11eef58a389d40
Gerrit-Change-Number: 38292
Gerrit-PatchSet: 4
Gerrit-Owner: falconia <falcon(a)freecalypso.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 30 Sep 2024 06:37:03 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: falconia <falcon(a)freecalypso.org>
Comment-In-Reply-To: laforge <laforge(a)osmocom.org>
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Attention is currently required from: dexter.
laforge has posted comments on this change by dexter. ( https://gerrit.osmocom.org/c/pysim/+/38117?usp=email )
Change subject: ts_51_011: replace encoding of EF.MSISDN with construct model
......................................................................
Patch Set 12: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/38117?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I647f5c63f7f87902a86c0c5d8e92fdc7f4350a5a
Gerrit-Change-Number: 38117
Gerrit-PatchSet: 12
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 30 Sep 2024 06:15:50 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: falconia, fixeria, pespin.
laforge has posted comments on this change by falconia. ( https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email )
Change subject: libosmotrau: implement RAA' encoder function
......................................................................
Patch Set 4: Code-Review+1
(1 comment)
File include/Makefile.am:
https://gerrit.osmocom.org/c/libosmo-abis/+/38292/comment/0d58ccea_62e33f65… :
PS4, Line 8: raa_prime
> Before I spin yet another patch revision and invalidate everyone's votes, let's ask the other review […]
you can do the rename (I think it's good to rename) and then re-add the +2 yourself if the new version only contians the rename.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/38292?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I11fc1529f5be88fa778c7e05cb11eef58a389d40
Gerrit-Change-Number: 38292
Gerrit-PatchSet: 4
Gerrit-Owner: falconia <falcon(a)freecalypso.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: falconia <falcon(a)freecalypso.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 30 Sep 2024 06:14:53 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: falconia <falcon(a)freecalypso.org>
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Attention is currently required from: jolly, neels.
fixeria has posted comments on this change by jolly. ( https://gerrit.osmocom.org/c/osmo-msc/+/38305?usp=email )
Change subject: Create transaction for all call indepenant SS messages
......................................................................
Patch Set 1:
(1 comment)
Commit Message:
https://gerrit.osmocom.org/c/osmo-msc/+/38305/comment/92dd0a9a_9d12a03c?usp… :
PS1, Line 14: This patch ensures that a transaction is created even if the message
: is not a REGISTER message
> I am fine with this approach in general, however it does not solve the problem globally. […]
For the record, we had a Jitsi call with @andreas@eversberg.eu on Friday and came up with something that looks more like a universal problem solution: calling `msc_a_put(MSC_A_USE_)` to trigger connection release quicker.
--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/38305?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: Ic6765e5d480735e67d97f0f560da24653b26d487
Gerrit-Change-Number: 38305
Gerrit-PatchSet: 1
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Comment-Date: Sun, 29 Sep 2024 18:13:13 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Attention is currently required from: falconia.
fixeria has posted comments on this change by fixeria. ( https://gerrit.osmocom.org/c/osmo-msc/+/38311?usp=email )
Change subject: silent-call: add CSD channel modes
......................................................................
Patch Set 1:
(1 comment)
File src/libmsc/msc_vty.c:
https://gerrit.osmocom.org/c/osmo-msc/+/38311/comment/48aa23b0_9fab28a1?usp… :
PS1, Line 1596: ct.ch_rate_type = sign ? GSM0808_SPEECH_FULL_PREF : GSM0808_SIGN_ANY;
> It looks like you forgot to reverse the order of `GSM0808_SPEECH_FULL_PREF` and `GSM0808_SIGN_ANY` w […]
Indeed, good catch. Thanks! Fixed.
--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/38311?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: Ife83f5bcb2b68a228a014f47c7cbb21660290593
Gerrit-Change-Number: 38311
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: falconia <falcon(a)freecalypso.org>
Gerrit-Attention: falconia <falcon(a)freecalypso.org>
Gerrit-Comment-Date: Sat, 28 Sep 2024 19:14:06 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: falconia <falcon(a)freecalypso.org>