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/.
laforge gerrit-no-reply at lists.osmocom.orglaforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/18936 )
Change subject: system_information: Set BSS_PAGING_COORDINATION in SI13 for osmo-bts
......................................................................
system_information: Set BSS_PAGING_COORDINATION in SI13 for osmo-bts
osmo-bts (in combination with osmo-pcu) has been supporting paging
for CS services via PCU/PACCH for a very long time. Let's make sure
this is reflected by the correct BSS_PAGING_COORDINATION bit.
Change-Id: I0e80ca5afc06737273b6699bde6e325e454b57f6
Requires: libosmocore.git Ifb2e83eaf05dd36e5b203ed2de1a74864b039e38
Related: OS#2406
---
M src/osmo-bsc/bts_sysmobts.c
M src/osmo-bsc/system_information.c
2 files changed, 6 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/36/18936/1
diff --git a/src/osmo-bsc/bts_sysmobts.c b/src/osmo-bsc/bts_sysmobts.c
index ad12733..6f9dc77 100644
--- a/src/osmo-bsc/bts_sysmobts.c
+++ b/src/osmo-bsc/bts_sysmobts.c
@@ -58,6 +58,7 @@
osmo_bts_set_feature(&model_sysmobts.features, BTS_FEAT_GPRS);
osmo_bts_set_feature(&model_sysmobts.features, BTS_FEAT_EGPRS);
+ osmo_bts_set_feature(&model_sysmobts.features, BTS_FEAT_PAGING_COORDINATION);
return gsm_bts_model_register(&model_sysmobts);
}
diff --git a/src/osmo-bsc/system_information.c b/src/osmo-bsc/system_information.c
index de01112..4a1118e 100644
--- a/src/osmo-bsc/system_information.c
+++ b/src/osmo-bsc/system_information.c
@@ -1202,6 +1202,11 @@
else
si13_default.cell_opts.ext_info.use_egprs_p_ch_req = 0;
+ if (osmo_bts_has_feature(&bts->features, BTS_FEAT_PAGING_COORDINATION))
+ si13_default.cell_opts.ext_info.bss_paging_coordination = 1;
+ else
+ si13_default.cell_opts.ext_info.bss_paging_coordination = 0;
+
ret = rest_octets_si13(si13->rest_octets, &si13_default);
if (ret < 0)
return ret;
--
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/18936
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I0e80ca5afc06737273b6699bde6e325e454b57f6
Gerrit-Change-Number: 18936
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200621/958a2c14/attachment.htm>