Attention is currently required from: pespin.
fixeria has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/osmo-pcu/+/41886?usp=email )
Change subject: csn1.h: Fix missing include stddef.h for offsetof()
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/osmo-pcu/+/41886?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: I3ddd10dd67e7850ace36ac996598cbfd4bbaa40e
Gerrit-Change-Number: 41886
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 20 Jan 2026 13:03:51 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-trx/+/41889?usp=email )
Change subject: Drop logging of stderr loglvel at startup
......................................................................
Drop logging of stderr loglvel at startup
Nowadays there's far better ways to figure out logging, like checking
through VTY. For instnace, that loglevel is the general log level of the
stderr target, but says nothing about specific categories, or other log
targets, etc.
Furthermore, this way we get rid of only access to struct log_target
from libosmocore, which should be private.
Change-Id: Ibaf1bdc09ddfa0ece86da42685ced2f2504d970d
---
M Transceiver52M/osmo-trx.cpp
1 file changed, 0 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/89/41889/1
diff --git a/Transceiver52M/osmo-trx.cpp b/Transceiver52M/osmo-trx.cpp
index c460e98..342c9eb 100644
--- a/Transceiver52M/osmo-trx.cpp
+++ b/Transceiver52M/osmo-trx.cpp
@@ -547,7 +547,6 @@
std::ostringstream ost("");
ost << "Config Settings" << std::endl;
- ost << " Log Level............... " << (unsigned int) osmo_stderr_target->loglevel << std::endl;
ost << " Device args............. " << charp2str(trx->cfg.dev_args) << std::endl;
ost << " TRX Base Port........... " << trx->cfg.base_port << std::endl;
ost << " TRX Address............. " << charp2str(trx->cfg.bind_addr) << std::endl;
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/41889?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ibaf1bdc09ddfa0ece86da42685ced2f2504d970d
Gerrit-Change-Number: 41889
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Attention is currently required from: fixeria, osmith.
pespin has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/osmo-pcu/+/41886?usp=email )
Change subject: csn1.h: Fix missing include stddef.h for offsetof()
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
This is already fixed in the libosmo-gprs version of csn1.h.
--
To view, visit https://gerrit.osmocom.org/c/osmo-pcu/+/41886?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: I3ddd10dd67e7850ace36ac996598cbfd4bbaa40e
Gerrit-Change-Number: 41886
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 20 Jan 2026 12:55:49 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Attention is currently required from: pespin.
Timur Davydov has posted comments on this change by Timur Davydov. ( https://gerrit.osmocom.org/c/libosmocore/+/41878?usp=email )
Change subject: build: move netns/tun conditionals to configure.ac Move Linux-/embedded-specific conditional compilation out of the sources and into configure.ac.
......................................................................
Patch Set 1:
(5 comments)
Patchset:
PS1:
> You are again mixing different unrelated stuff in the same patch, which is confusing when reviewing […]
Got it. I'll rework this and resend it split into separate orthogonal commits.
Commit Message:
https://gerrit.osmocom.org/c/libosmocore/+/41878/comment/ecdd1cef_93022584?… :
PS1, Line 12: - Detect struct in6_addr.s6_addr32 via AC_CHECK_MEMBER and use
> This should be a separate commit, since it's not related at all to the other ones.
Got it. I'll rework this and resend it split into separate orthogonal commits.
File configure.ac:
https://gerrit.osmocom.org/c/libosmocore/+/41878/comment/6f740b5a_8c5b3fab?… :
PS1, Line 242: AM_CONDITIONAL(ENABLE_TUN, test "x$embedded" != "xyes")
> Why are you adding ENABLE_TUN? It's never set to "no".
ENABLE_TUN is meant to be the inverse of EMBEDDED, so that tun.c is not built
for --enable-embedded. I added it for readability and to make extending the
condition easier later (e.g. Emscripten).
File include/osmocom/core/netns.h:
https://gerrit.osmocom.org/c/libosmocore/+/41878/comment/4b1a0aa0_944ca6a8?… :
PS1, Line 5: #if (USE_NETNS)
> if netns is not supported, modify Makefile.am to avoid adding this file to the buildset.
Understood. I'll handle this in a separate patch.
File src/core/Makefile.am:
https://gerrit.osmocom.org/c/libosmocore/+/41878/comment/8d202844_7c4aa79a?… :
PS1, Line 83: if ENABLE_TUN
> WHy this? AFAICT it can ever be false?
ENABLE_TUN is meant to be the inverse of EMBEDDED, so that tun.c is not built
for --enable-embedded. I added it for readability and to make extending the
condition easier later (e.g. Emscripten).
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/41878?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2322eb2936bea35596f1fd6b6a713ea5f997b1ea
Gerrit-Change-Number: 41878
Gerrit-PatchSet: 1
Gerrit-Owner: Timur Davydov <dtv.comp(a)gmail.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 20 Jan 2026 12:50:30 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: pespin <pespin(a)sysmocom.de>