This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Harald Welte gerrit-no-reply at lists.osmocom.orgHarald Welte has submitted this change and it was merged.
Change subject: HO: always do async handover
......................................................................
HO: always do async handover
We're really only interested in async handover so far.
Set ho->async to true always.
Change-Id: I48715864d4b953987c86d93fe1b3a5456f0c4e0f
---
M src/libbsc/handover_logic.c
1 file changed, 2 insertions(+), 4 deletions(-)
Approvals:
Harald Welte: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/libbsc/handover_logic.c b/src/libbsc/handover_logic.c
index fad4a33..2b61c93 100644
--- a/src/libbsc/handover_logic.c
+++ b/src/libbsc/handover_logic.c
@@ -138,10 +138,8 @@
ho->old_lchan = old_lchan;
ho->new_lchan = new_lchan;
ho->ho_ref = ho_ref++;
- if (!do_assignment) {
- ho->inter_cell = true;
- ho->async = true;
- }
+ ho->inter_cell = !do_assignment;
+ ho->async = true;
/* copy some parameters from old lchan */
memcpy(&new_lchan->encr, &old_lchan->encr, sizeof(new_lchan->encr));
--
To view, visit https://gerrit.osmocom.org/6465
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I48715864d4b953987c86d93fe1b3a5456f0c4e0f
Gerrit-PatchSet: 3
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder