Attention is currently required from: jolly, laforge.
Hello Jenkins Builder, laforge, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmocore/+/40584?usp=email
to look at the new patch set (#4).
The following approvals got outdated and were removed:
Code-Review+1 by laforge, Verified+1 by Jenkins Builder
Change subject: Avoid reusing pending buffer; append incoming data instead
......................................................................
Avoid reusing pending buffer; append incoming data instead
When reading from a stream, a single read may return only part of a
message segment. In such cases, the partial data was stored in
'iofd->pending' and reused for subsequent reads to complete the message.
With upcoming changes that submit multiple read SQEs to io_uring,
each read uses its own pre-submitted buffer. Reusing 'iofd->pending' is
not possible, as the next read buffer is already submitted.
This change ensures that newly received data is appended to the existing
pending buffer, allowing message segments to accumulate until complete.
Change-Id: I08df9736ccc5e9a7df61ca6dcf94629ee010752f
---
M src/core/osmo_io.c
M src/core/osmo_io_internal.h
M src/core/osmo_io_poll.c
M src/core/osmo_io_uring.c
4 files changed, 26 insertions(+), 28 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/84/40584/4
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/40584?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I08df9736ccc5e9a7df61ca6dcf94629ee010752f
Gerrit-Change-Number: 40584
Gerrit-PatchSet: 4
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>
fixeria has submitted this change. ( https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/40701?usp=email )
Change subject: rebar.{config,lock}: use a fork of exometer_report_statsd
......................................................................
rebar.{config,lock}: use a fork of exometer_report_statsd
As it turns out, the statsd reporter plugin that we have been using
so far has a flaw: the way it reports counters differs from what
daemons like statsd or collectd expect. The problem is that this
plugin reports absolute (current) values, while the delta is expected.
Change-Id: Ic5c80dd66b2659efc6bf148b91316b7e45dfaf7b
Related: https://github.com/esl/exometer_report_statsd/pull/3
Related: SYS#7065, SYS#7307
---
M rebar.config
M rebar.lock
2 files changed, 3 insertions(+), 3 deletions(-)
Approvals:
Jenkins Builder: Verified
osmith: Looks good to me, approved
diff --git a/rebar.config b/rebar.config
index b69ef47..4be5a1c 100644
--- a/rebar.config
+++ b/rebar.config
@@ -14,7 +14,7 @@
{exometer_core,
{git, "https://github.com/Feuerlabs/exometer_core.git", {branch, "master"}}},
{exometer_report_statsd,
- {git, "https://github.com/esl/exometer_report_statsd.git", {branch, "master"}}}
+ {git, "https://github.com/osmocom/exometer_report_statsd.git", {branch, "counters"}}}
]}.
%% test deps
diff --git a/rebar.lock b/rebar.lock
index 0b99137..ccee08d 100644
--- a/rebar.lock
+++ b/rebar.lock
@@ -9,8 +9,8 @@
{ref,"fc744c45bbe5de2ab0ee550e2667f93f7abbb618"}},
0},
{<<"exometer_report_statsd">>,
- {git,"https://github.com/esl/exometer_report_statsd.git",
- {ref,"f1c369becb6e57871f1c7b0e491f6c3a302a65ee"}},
+ {git,"https://github.com/osmocom/exometer_report_statsd.git",
+ {ref,"d35a98edf87996f2ab9ef0feda93b38677b0d063"}},
0},
{<<"hut">>,{pkg,<<"hut">>,<<"1.3.0">>},1},
{<<"jiffy">>,
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/40701?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: erlang/osmo-s1gw
Gerrit-Branch: master
Gerrit-Change-Id: Ic5c80dd66b2659efc6bf148b91316b7e45dfaf7b
Gerrit-Change-Number: 40701
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <vyanitskiy(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-Reviewer: pespin <pespin(a)sysmocom.de>