Attention is currently required from: fixeria, laforge.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email )
Change subject: gsm: add TCH block/lchan definitions for CSD
......................................................................
Patch Set 3:
(1 comment)
File include/osmocom/gsm/gsm44021.h:
https://gerrit.osmocom.org/c/libosmocore/+/35914/comment/9557c7d9_e30847e6
PS3, Line 17: extern const struct osmo_csd_tch_lchan_desc osmo_csd_chan_mode_rate_desc[256];
BTW, now that we are moving this into a library, I think it makes more sense to have an API (function to obtain a const pointer to struct osmo_csd_tch_lchan_desc, rather than having the table accessible directly.
This has several benefits:
- Keep the table size smaller and being able to extend it later if needed.
- offset checks
- Extend the struct osmo_csd_tch_lchan_desc struct if needed without breaking apps.
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ie230e09d496c9b791981d8ee04902fc9966ed6d7
Gerrit-Change-Number: 35914
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
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-Comment-Date: Mon, 12 Feb 2024 09:29:25 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: fixeria, laforge, neels, pespin.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-msc/+/35872?usp=email )
Change subject: pick up all *.vty in EXTRA_DIST
......................................................................
Patch Set 1: Code-Review+1
(1 comment)
Patchset:
PS1:
> Aren't the packages in OBS built from 'make dist'??????
The packages in OBS are built from the debian source packages created from the checked out git tree with "dpkg-buildpackage -S".
In my opinion it is fine to use wildcards here. We don't have the use case described in https://www.gnu.org/software/automake/manual/1.8.4/html_node/wildcards.html as we don't run "make dist" in a developer's checked out tree and then publish that tarball. Instead we have a jenkins job that always runs "make dist" in a clean git checkout, in a known environment, and only from there we publish the tarballs. This also means we don't need to care much about portability here IMHO.
--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/35872?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: Id28e020fc59b83d1b4cd0e5b72314a46bea62259
Gerrit-Change-Number: 35872
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: neels <nhofmeyr(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, 12 Feb 2024 08:25:00 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: neels <nhofmeyr(a)sysmocom.de>
Comment-In-Reply-To: laforge <laforge(a)osmocom.org>
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Comment-In-Reply-To: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: laforge.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-sccp/+/35940?usp=email )
Change subject: vty_test_runner: Don't wait for more than 10s when connecting to sockets
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sccp/+/35940?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Change-Id: Iadb437ce0bafb28baa978d287dbb1006ec97f236
Gerrit-Change-Number: 35940
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Comment-Date: Mon, 12 Feb 2024 08:10:14 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: laforge, pespin.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email )
Change subject: gsm: add TCH block/lchan definitions for CSD
......................................................................
Patch Set 3:
(1 comment)
File src/gsm/gsm44021.c:
https://gerrit.osmocom.org/c/libosmocore/+/35914/comment/6921a056_8a7afc4b
PS2, Line 30: if 0
: [GSM48_CMODE_DATA_14k5] = {
: /* TCH/F14.4: 290 bits every 20 ms (14.5 kbit/s) */
: .fr = { .num_frames = 1, .num_bits = 290 },
: },
: #endif
> The problem here is that I was not sure whether this definition is correct, so this is why I left th […]
Done
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ie230e09d496c9b791981d8ee04902fc9966ed6d7
Gerrit-Change-Number: 35914
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Sat, 10 Feb 2024 16:13:35 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: laforge <laforge(a)osmocom.org>
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: laforge, pespin.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email )
Change subject: gsm: add TCH block/lchan definitions for CSD
......................................................................
Patch Set 2:
(1 comment)
File src/gsm/gsm44021.c:
https://gerrit.osmocom.org/c/libosmocore/+/35914/comment/10722539_a12b4204
PS2, Line 30: if 0
: [GSM48_CMODE_DATA_14k5] = {
: /* TCH/F14.4: 290 bits every 20 ms (14.5 kbit/s) */
: .fr = { .num_frames = 1, .num_bits = 290 },
: },
: #endif
> i'm not quite sure I like that kind of commented-out data structure in libosmocore. […]
The problem here is that I was not sure whether this definition is correct, so this is why I left this entry commented out. I just checked 3GPP TS 44.021, section 10.3.2, and found out that a radio block for TCH/F14.4 consists of 8 modified V.110 frames (36 bits each) plus the `M1`/`M2` bits. I'll update the patch.
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ie230e09d496c9b791981d8ee04902fc9966ed6d7
Gerrit-Change-Number: 35914
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Sat, 10 Feb 2024 16:13:23 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: comment
Attention is currently required from: fixeria, laforge, pespin.
Hello Jenkins Builder, laforge, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email
to look at the new patch set (#3).
The following approvals got outdated and were removed:
Code-Review+1 by laforge, Code-Review+1 by pespin, Verified+1 by Jenkins Builder
Change subject: gsm: add TCH block/lchan definitions for CSD
......................................................................
gsm: add TCH block/lchan definitions for CSD
For more details, see 3GPP TS 44.021.
Change-Id: Ie230e09d496c9b791981d8ee04902fc9966ed6d7
Related: OS#1572, OS#4396
---
M include/osmocom/gsm/gsm44021.h
M src/gsm/gsm44021.c
M src/gsm/libosmogsm.map
3 files changed, 56 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/14/35914/3
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/35914?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ie230e09d496c9b791981d8ee04902fc9966ed6d7
Gerrit-Change-Number: 35914
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newpatchset