Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/docker-playground/+/36326?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Verified+1 by Jenkins Builder
Change subject: debian-bookworm-build: add libbladerf-dev
......................................................................
debian-bookworm-build: add libbladerf-dev
Related: OS#6409
Change-Id: I3c3fe95d8ebb21f7691a491144885c7deb8049a5
---
M debian-bookworm-build-arm/Dockerfile
M debian-bookworm-build/Dockerfile
2 files changed, 12 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/26/36326/2
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/36326?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I3c3fe95d8ebb21f7691a491144885c7deb8049a5
Gerrit-Change-Number: 36326
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset
laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/36324?usp=email )
Change subject: msgb: Also copy msgb {dst, lchan, cb} during msgb_copy_*
......................................................................
msgb: Also copy msgb {dst, lchan, cb} during msgb_copy_*
It wasn't really specified if those fields are supposed to be copied.
But after all, a copy is supposed to behave exactly like the original,
not just in terms of the data but all aspects.
Change-Id: I68328adb952ca8833ba047cb3b49ccc6f8a1f1b5
---
M src/core/msgb.c
1 file changed, 18 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/24/36324/1
diff --git a/src/core/msgb.c b/src/core/msgb.c
index 713510c..b79dc32 100644
--- a/src/core/msgb.c
+++ b/src/core/msgb.c
@@ -356,6 +356,11 @@
if (msg->l4h)
new_msg->l4h = new_msg->_data + (msg->l4h - msg->_data);
+ /* copy other metadata like cb */
+ new_msg->dst = msg->dst;
+ new_msg->lchan = msg->lchan;
+ memcpy(new_msg->cb, msg->cb, sizeof(new_msg->cb));
+
return new_msg;
}
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/36324?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: I68328adb952ca8833ba047cb3b49ccc6f8a1f1b5
Gerrit-Change-Number: 36324
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newchange
Attention is currently required from: laforge.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/36299?usp=email )
Change subject: docs: various osmux API documentation updates
......................................................................
Patch Set 3:
(2 comments)
File include/osmocom/netif/osmux.h:
https://gerrit.osmocom.org/c/libosmo-netif/+/36299/comment/eafa7023_67e72eba
PS3, Line 99: /*! return pointer to osmux payload (behind osmux_hdr */
missing ")"
File src/osmux.c:
https://gerrit.osmocom.org/c/libosmo-netif/+/36299/comment/17b9be88_afc31ff8
PS3, Line 31: if (ret < 0) \
This should probably be moved to osmo_strbuf anyway.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/36299?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I5af0133322ddd5345a13380f1c007474c0bea117
Gerrit-Change-Number: 36299
Gerrit-PatchSet: 3
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Comment-Date: Mon, 18 Mar 2024 10:21:01 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment