Attention is currently required from: pespin.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/34767?usp=email )
Change subject: ansible: known_hosts: update
......................................................................
Patch Set 1:
(1 comment)
Commit Message:
https://gerrit.osmocom.org/c/osmo-ci/+/34767/comment/4023ad5d_c65b8e78
PS1, Line 9: After deploying with ansible to the jenkins nodes, these entries were
> not sure what you mean here. […]
These are the VPN IPs of the raspberry pis from the hosts file. The entries in known_hosts are generated when connecting to them the first time via SSH. The idea is to do trust on first use. It's not that useful when connecting to them via VPN anyway, but it makes more sense for the hosts above in the file where we don't do that. I've committed the changes so it doesn't show up as diff in git after running ansible.
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/34767?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I3e3841d9f1f5581067b7dd90cdfcaf8337700e6f
Gerrit-Change-Number: 34767
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 16 Oct 2023 11:20:58 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: comment
fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/34756?usp=email )
Change subject: firmware/layer1: emit TRAFFIC.ind even if B_BFI is set
......................................................................
firmware/layer1: emit TRAFFIC.ind even if B_BFI is set
Even if the DSP marks a traffic frame as bad (B_BFI), we still want
to deliver something to the upper layers, just like we do for FACCH.
Change-Id: I559793a3506089b1c1758ee7022cceb7753afb30
Related: OS#4396
---
M src/target/firmware/layer1/prim_tch.c
1 file changed, 15 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, but someone else must approve
pespin: Looks good to me, approved
diff --git a/src/target/firmware/layer1/prim_tch.c b/src/target/firmware/layer1/prim_tch.c
index fb7ebf4..c6fbddd 100644
--- a/src/target/firmware/layer1/prim_tch.c
+++ b/src/target/firmware/layer1/prim_tch.c
@@ -313,8 +313,6 @@
goto skip_rx_traffic;
if (~traffic_buf[0] & (1 << B_BLUD))
goto skip_rx_traffic;
- if (~traffic_buf[0] & (1 << B_BFI))
- goto skip_rx_traffic;
/* Allocate msgb */
/* FIXME: we actually want all allocation out of L1S! */
@@ -341,6 +339,8 @@
else
dl->num_biterr = num_biterr;
+ dl->fire_crc = ((traffic_buf[0] & 0xffff) & ((1 << B_FIRE1) | (1 << B_FIRE0))) >> B_FIRE0;
+
/* Update rx level for pm report */
pu_update_rx_level(dl->rx_level);
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/34756?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I559793a3506089b1c1758ee7022cceb7753afb30
Gerrit-Change-Number: 34756
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: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged