daniel has abandoned this change. ( https://gerrit.osmocom.org/c/libosmocore/+/30938 )
Change subject: ctrl_if: Fix test
......................................................................
Abandoned
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/30938
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: If35aa2340f69f9ac6178f07b7a4bbe392217a1f5
Gerrit-Change-Number: 30938
Gerrit-PatchSet: 2
Gerrit-Owner: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: abandon
daniel has abandoned this change. ( https://gerrit.osmocom.org/c/libosmocore/+/30939 )
Change subject: osmo-stat-dummy: Link to libosmogsm
......................................................................
Abandoned
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/30939
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I4ea20087ceeb276e4f0fbb7ce50da6a61446beb5
Gerrit-Change-Number: 30939
Gerrit-PatchSet: 2
Gerrit-Owner: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: abandon
Attention is currently required from: daniel.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmocore/+/30934
to look at the new patch set (#3).
Change subject: Add osmo_io with initial poll backend
......................................................................
Add osmo_io with initial poll backend
* make backend configurable for later
* segmentation callback for chunked streams
* logging target for osmo_io
* support partial writes
Change-Id: I50d73cf550d6ce8154bf827bf47408131cf5b0a0
Related: SYS#5094, OS#5751
---
M TODO-RELEASE
M include/Makefile.am
M include/osmocom/core/logging.h
A include/osmocom/core/osmo_io.h
M src/Makefile.am
M src/logging.c
A src/osmo_io.c
A src/osmo_io_internal.h
A src/osmo_io_poll.c
M tests/logging/logging_vty_test.vty
10 files changed, 854 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/34/30934/3
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/30934
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I50d73cf550d6ce8154bf827bf47408131cf5b0a0
Gerrit-Change-Number: 30934
Gerrit-PatchSet: 3
Gerrit-Owner: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Gerrit-MessageType: newpatchset
Attention is currently required from: daniel.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmocore/+/30937
to look at the new patch set (#3).
Change subject: control_if: Use osmo_io instead of osmo_fd
......................................................................
control_if: Use osmo_io instead of osmo_fd
* uses the ipa support for osmo_io introduced to libosmogsm
Change-Id: I2977e6f90a2f5a74910ddf3bafb8865dda081b5a
---
M include/osmocom/ctrl/control_cmd.h
M include/osmocom/ctrl/control_if.h
M src/ctrl/control_cmd.c
M src/ctrl/control_if.c
M tests/Makefile.am
M tests/ctrl/ctrl_test.c
6 files changed, 124 insertions(+), 98 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/37/30937/3
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/30937
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2977e6f90a2f5a74910ddf3bafb8865dda081b5a
Gerrit-Change-Number: 30937
Gerrit-PatchSet: 3
Gerrit-Owner: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Gerrit-MessageType: newpatchset
fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/30954 )
Change subject: modem: fix modem_tx_chan_req(): check if SI13 was received
......................................................................
modem: fix modem_tx_chan_req(): check if SI13 was received
There was no need for this check because the channel establishment
logic was at the end of handle_si13(), so I overlooked this.
Change-Id: I829948de325461ab5d7e950493497a7537ba06ac
Fixes: 8a506dcd4e2736aac2bf30d1784f0e1f0c3a9d00
Related: OS#5500
---
M src/host/layer23/src/modem/app_modem.c
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/54/30954/1
diff --git a/src/host/layer23/src/modem/app_modem.c b/src/host/layer23/src/modem/app_modem.c
index 8af3243..ad05603 100644
--- a/src/host/layer23/src/modem/app_modem.c
+++ b/src/host/layer23/src/modem/app_modem.c
@@ -73,8 +73,8 @@
OSMO_ASSERT(rr->state == GSM48_RR_ST_IDLE);
- if (!app_data.si.si1)
- return -EBUSY;
+ if (!app_data.si.si1 || !app_data.si.si13)
+ return -EAGAIN;
if (!app_data.si.gprs.supported)
return -ENOTSUP;
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30954
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I829948de325461ab5d7e950493497a7537ba06ac
Gerrit-Change-Number: 30954
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange
Attention is currently required from: pespin.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/30953 )
Change subject: cosmetic: layer23/include/common/Makefile.am: Set one item per line
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30953
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I2e385d403bd37ad9491fd421509fe7e4104225f9
Gerrit-Change-Number: 30953
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Thu, 12 Jan 2023 15:14:37 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment