Attention is currently required from: Hoernchen.
Hello Jenkins Builder, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-trx/+/30536
to look at the new patch set (#7).
Change subject: clang-format: proper c++ standard
......................................................................
clang-format: proper c++ standard
Change-Id: I9828093a08ed8b4c2a11f482f674368ac137d4dc
---
M .clang-format
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/36/30536/7
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/30536
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I9828093a08ed8b4c2a11f482f674368ac137d4dc
Gerrit-Change-Number: 30536
Gerrit-PatchSet: 7
Gerrit-Owner: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: Hoernchen <ewild(a)sysmocom.de>
Gerrit-MessageType: newpatchset
dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bts/+/30522 )
Change subject: l1sap: remove unused pointer variable
......................................................................
l1sap: remove unused pointer variable
The pointer variable l1sap is only used to determine the size of the
related struct but for nothing else. We can use the struct name in
sizeof also directly and get rid of it.
Change-Id: I93abdce1dec60d53ddceb1fce6e9e7451ba6283a
---
M src/common/l1sap.c
1 file changed, 1 insertion(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
fixeria: Looks good to me, approved
diff --git a/src/common/l1sap.c b/src/common/l1sap.c
index 8bcd417..22b5e8c 100644
--- a/src/common/l1sap.c
+++ b/src/common/l1sap.c
@@ -1882,7 +1882,6 @@
{
struct gsm_lchan *lchan = rs->priv;
struct msgb *msg;
- struct osmo_phsap_prim *l1sap;
/* if we're in loopback mode, we don't accept frames from the
* RTP socket anymore */
@@ -1893,7 +1892,7 @@
if (!msg)
return;
memcpy(msgb_put(msg, rtp_pl_len), rtp_pl, rtp_pl_len);
- msgb_pull(msg, sizeof(*l1sap));
+ msgb_pull(msg, sizeof(struct osmo_phsap_prim));
/* Store RTP header Marker bit in control buffer */
rtpmsg_marker_bit(msg) = marker;
--
To view, visit https://gerrit.osmocom.org/c/osmo-bts/+/30522
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Change-Id: I93abdce1dec60d53ddceb1fce6e9e7451ba6283a
Gerrit-Change-Number: 30522
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: merged
Jenkins Builder has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-pcu/+/30564 )
Change subject: Move control_ts explicit checks out of the scheduler implementation
......................................................................
Patch Set 1:
(3 comments)
File src/nacc_fsm.c:
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-1854):
https://gerrit.osmocom.org/c/osmo-pcu/+/30564/comment/6e39b2e1_13635d52
PS1, Line 910: }
adding a line without newline at end of file
File src/tbf_dl_ass_fsm.h:
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-1854):
https://gerrit.osmocom.org/c/osmo-pcu/+/30564/comment/b9c53582_5caac257
PS1, Line 66: bool tbf_dl_ass_rts(const struct gprs_rlcmac_tbf* tbf, const struct gprs_rlcmac_pdch *pdch);
"foo* bar" should be "foo *bar"
File src/tbf_ul_ass_fsm.h:
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-1854):
https://gerrit.osmocom.org/c/osmo-pcu/+/30564/comment/b9edf27d_73c0c732
PS1, Line 69: bool tbf_ul_ass_rts(const struct gprs_rlcmac_tbf* tbf, const struct gprs_rlcmac_pdch *pdch);
"foo* bar" should be "foo *bar"
--
To view, visit https://gerrit.osmocom.org/c/osmo-pcu/+/30564
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: Ifaf7dde651d56942779d84aa9135fc8c974b6f26
Gerrit-Change-Number: 30564
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-CC: Jenkins Builder
Gerrit-Comment-Date: Mon, 12 Dec 2022 20:46:43 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment