Review at  https://gerrit.osmocom.org/5922

HO: always use Handover Command, not Assignment

Change-Id: I5c1ec8c228a557ac59a31ea47e21fb856467742e
---
M src/libbsc/handover_logic.c
1 file changed, 4 insertions(+), 12 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/22/5922/1

diff --git a/src/libbsc/handover_logic.c b/src/libbsc/handover_logic.c
index 0b44b2e..3523576 100644
--- a/src/libbsc/handover_logic.c
+++ b/src/libbsc/handover_logic.c
@@ -171,10 +171,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;
 
        LOGPHO(ho, LOGL_INFO, "Triggering %s\n", do_assignment? "Assignment" : 
"Handover");
 
@@ -199,9 +197,7 @@
        new_lchan->conn->ho_lchan = new_lchan;
 
        rc = rsl_chan_activate_lchan(new_lchan,
-                                    ho->inter_cell
-                                      ? (ho->async ? RSL_ACT_INTER_ASYNC : 
RSL_ACT_INTER_SYNC)
-                                      : RSL_ACT_INTRA_IMM_ASS,
+                                    ho->async ? RSL_ACT_INTER_ASYNC : 
RSL_ACT_INTER_SYNC,
                                     ho->ho_ref);
        if (rc < 0) {
                LOGPHO(ho, LOGL_INFO, "%s Failure: activate lchan rc = %d\n",
@@ -276,11 +272,7 @@
        /* we can now send the 04.08 HANDOVER COMMAND to the MS
         * using the old lchan */
 
-       if (ho->inter_cell) {
-               gsm48_send_rr_ass_cmd(ho->old_lchan, new_lchan, 
new_lchan->ms_power);
-       } else {
-               gsm48_send_ho_cmd(ho->old_lchan, new_lchan, 
new_lchan->ms_power, ho->ho_ref);
-       }
+       gsm48_send_ho_cmd(ho->old_lchan, new_lchan, new_lchan->ms_power, 
ho->ho_ref);
 
        /* start T3103.  We can continue either with T3103 expiration,
         * 04.08 HANDOVER COMPLETE or 04.08 HANDOVER FAIL */

-- 
To view, visit https://gerrit.osmocom.org/5922
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5c1ec8c228a557ac59a31ea47e21fb856467742e
Gerrit-PatchSet: 1
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofm...@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder

Reply via email to