osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/upf-benchmark/+/43165?usp=email )
Change subject: README: fix link to usermanual
......................................................................
README: fix link to usermanual
Change-Id: Ib78a9af939fac89fc4e2e346be3f9b9de664cac2
---
M README.md
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/upf-benchmark refs/changes/65/43165/1
diff --git a/README.md b/README.md
index e7b4841..ccf2d12 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@
User Manual are [optionally] built in PDF form as part of the build process.
Pre-rendered PDF version of the current "master" can be found at
-[User Manual](https://ftp.osmocom.org/docs/latest/upfbenchmark-usermanual.pdf)
+[User Manual](https://ftp.osmocom.org/docs/upf-benchmark/master/upfbenchmark-user…
Mailing List
--
To view, visit https://gerrit.osmocom.org/c/upf-benchmark/+/43165?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: upf-benchmark
Gerrit-Branch: master
Gerrit-Change-Id: Ib78a9af939fac89fc4e2e346be3f9b9de664cac2
Gerrit-Change-Number: 43165
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/43164?usp=email )
Change subject: stream: srv_link: Fix DSCP not set on already created listen socket
......................................................................
stream: srv_link: Fix DSCP not set on already created listen socket
If DSCP is configured in an already opened srv_link, it should apply the
config on the existing socket; no need to re-create it.
Change-Id: Ib601b18c9b6a7fc944846f4ad782c43fb6a6a69a
---
M src/stream_srv.c
1 file changed, 12 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
jolly: Looks good to me, approved
diff --git a/src/stream_srv.c b/src/stream_srv.c
index 3c8921e..901be89 100644
--- a/src/stream_srv.c
+++ b/src/stream_srv.c
@@ -299,7 +299,19 @@
*/
int osmo_stream_srv_link_set_ip_dscp(struct osmo_stream_srv_link *link, uint8_t ip_dscp)
{
+ int rc;
+
link->ip_dscp = ip_dscp;
+
+ if (!osmo_stream_srv_link_is_opened(link))
+ return 0;
+
+ rc = osmo_sock_set_dscp(link->ofd.fd, link->ip_dscp);
+ if (rc < 0) {
+ LOGSLNK(link, LOGL_ERROR, "set_ip_dscp(%u): failed setsockopt err=%d\n",
+ link->ip_dscp, errno);
+ return -EIO;
+ }
return 0;
}
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/43164?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: Ib601b18c9b6a7fc944846f4ad782c43fb6a6a69a
Gerrit-Change-Number: 43164
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Attention is currently required from: jolly, laforge, pespin.
Hello Jenkins Builder, laforge, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-sigtran/+/42817?usp=email
to look at the new patch set (#3).
The following approvals got outdated and were removed:
Code-Review-1 by laforge, Verified-1 by Jenkins Builder
Change subject: Add VTY test for "listen" node of osmo-stp VTY config
......................................................................
Add VTY test for "listen" node of osmo-stp VTY config
Change-Id: Ia1ceb5f0374f47ff269b557be30fc4d59550d1a6
---
M tests/vty/osmo_stp_test.vty
1 file changed, 29 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/17/42817/3
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sigtran/+/42817?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: Ia1ceb5f0374f47ff269b557be30fc4d59550d1a6
Gerrit-Change-Number: 42817
Gerrit-PatchSet: 3
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Attention is currently required from: jolly.
Hello Jenkins Builder, laforge, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-sigtran/+/42809?usp=email
to look at the new patch set (#10).
The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder
Change subject: Add test case to verify proper DSCP settings
......................................................................
Add test case to verify proper DSCP settings
Related: SYS#8071
Change-Id: I6ac965998433b4d8213cce30fc3fcf8fe485a092
---
M tests/testsuite.at
M tests/vty/vty_test_runner.py
2 files changed, 150 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/09/42809/10
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sigtran/+/42809?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: I6ac965998433b4d8213cce30fc3fcf8fe485a092
Gerrit-Change-Number: 42809
Gerrit-PatchSet: 10
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Attention is currently required from: pespin.
jolly has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/libosmo-netif/+/43164?usp=email )
Change subject: stream: srv_link: Fix DSCP not set on already created listen socket
......................................................................
Patch Set 1: Code-Review+2
(1 comment)
Patchset:
PS1:
Tested and is working
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/43164?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: Ib601b18c9b6a7fc944846f4ad782c43fb6a6a69a
Gerrit-Change-Number: 43164
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 05 Aug 2026 10:49:16 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-netif/+/43164?usp=email )
Change subject: stream: srv_link: Fix DSCP not set on already created listen socket
......................................................................
stream: srv_link: Fix DSCP not set on already created listen socket
If DSCP is configured in an already opened srv_link, it should apply the
config on the existing socket; no need to re-create it.
Change-Id: Ib601b18c9b6a7fc944846f4ad782c43fb6a6a69a
---
M src/stream_srv.c
1 file changed, 12 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/64/43164/1
diff --git a/src/stream_srv.c b/src/stream_srv.c
index 3c8921e..901be89 100644
--- a/src/stream_srv.c
+++ b/src/stream_srv.c
@@ -299,7 +299,19 @@
*/
int osmo_stream_srv_link_set_ip_dscp(struct osmo_stream_srv_link *link, uint8_t ip_dscp)
{
+ int rc;
+
link->ip_dscp = ip_dscp;
+
+ if (!osmo_stream_srv_link_is_opened(link))
+ return 0;
+
+ rc = osmo_sock_set_dscp(link->ofd.fd, link->ip_dscp);
+ if (rc < 0) {
+ LOGSLNK(link, LOGL_ERROR, "set_ip_dscp(%u): failed setsockopt err=%d\n",
+ link->ip_dscp, errno);
+ return -EIO;
+ }
return 0;
}
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/43164?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: Ib601b18c9b6a7fc944846f4ad782c43fb6a6a69a
Gerrit-Change-Number: 43164
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Attention is currently required from: fixeria.
pespin has posted comments on this change by fixeria. ( https://gerrit.osmocom.org/c/osmo-trx/+/43116?usp=email )
Change subject: Transceiver52M: implement TRXDv2 support
......................................................................
Patch Set 5: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/43116?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ie6a33e3980b3ca4ab05a3d4221d5a8ba0132233d
Gerrit-Change-Number: 43116
Gerrit-PatchSet: 5
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 04 Aug 2026 19:15:06 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: pespin.
Jenkins Builder has posted comments on this change by fixeria. ( https://gerrit.osmocom.org/c/osmo-trx/+/43116?usp=email )
Change subject: Transceiver52M: implement TRXDv2 support
......................................................................
Patch Set 5:
(4 comments)
File Transceiver52M/Transceiver.h:
Robot Comment from checkpatch (run ID ):
https://gerrit.osmocom.org/c/osmo-trx/+/43116/comment/b4f33084_ff628b8c?usp… :
PS5, Line 213: bool sendBurstInd(size_t chan, const struct osmo_trxd_burst_ind *bi);
please, no spaces at the start of a line
Robot Comment from checkpatch (run ID ):
https://gerrit.osmocom.org/c/osmo-trx/+/43116/comment/5176746f_7a5b79c0?usp… :
PS5, Line 217: bool queueBurstIndBatched(size_t chan, const struct osmo_trxd_burst_ind *bi);
please, no spaces at the start of a line
Robot Comment from checkpatch (run ID ):
https://gerrit.osmocom.org/c/osmo-trx/+/43116/comment/710c12a2_c580e9ab?usp… :
PS5, Line 220: bool flushBurstIndBatch(size_t chan);
please, no spaces at the start of a line
Robot Comment from checkpatch (run ID ):
https://gerrit.osmocom.org/c/osmo-trx/+/43116/comment/71728bc2_36aa8cc1?usp… :
PS5, Line 223: bool handleBurstReq(size_t chan, const struct osmo_trxd_burst_req *br);
please, no spaces at the start of a line
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/43116?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ie6a33e3980b3ca4ab05a3d4221d5a8ba0132233d
Gerrit-Change-Number: 43116
Gerrit-PatchSet: 5
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 04 Aug 2026 17:59:57 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No