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 uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bts/+/14338
Change subject: Update T200 timer default values
......................................................................
Update T200 timer default values
The default values of 1s were *very* long, particularly for fast
channels such as FACCH. Let's use much more aggressive values
that are more in-line with various recommendations that cold be
found online, such as
https://pcstelconext.wordpress.com/2011/05/02/2g-timer-explanations/
https://www.erlang.com/forum/erlang/thread.htx?thread=2844
https://www.erlang.com/forum/erlang/thread.htx?thread=7180
https://de.slideshare.net/BisiAdebambo/138078380-gsmtimers-59637131
Change-Id: Ic1268ae2d769b12da6cdd4ac8375e4bc033a9e3e
---
M src/common/oml.c
1 file changed, 9 insertions(+), 9 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/38/14338/1
diff --git a/src/common/oml.c b/src/common/oml.c
index ad58cb9..7d24509 100644
--- a/src/common/oml.c
+++ b/src/common/oml.c
@@ -476,16 +476,16 @@
return oml_mo_send_msg(mo, nmsg, NM_MT_SW_ACTIVATED_REP);
}
-/* The defaults below correspond to the libosmocore default of 1s for
- * DCCH and 2s for ACCH. The BSC should override this via OML anyway. */
+/* The defaults below correspond to various sources/recommendations that could be found online.
+ * The BSC should override this via OML anyway. */
const unsigned int oml_default_t200_ms[7] = {
- [T200_SDCCH] = 1000,
- [T200_FACCH_F] = 1000,
- [T200_FACCH_H] = 1000,
- [T200_SACCH_TCH_SAPI0] = 2000,
- [T200_SACCH_SDCCH] = 2000,
- [T200_SDCCH_SAPI3] = 1000,
- [T200_SACCH_TCH_SAPI3] = 2000,
+ [T200_SDCCH] = 220,
+ [T200_SDCCH_SAPI3] = 450,
+ [T200_SACCH_SDCCH] = 900,
+ [T200_FACCH_F] = 250,
+ [T200_FACCH_H] = 250,
+ [T200_SACCH_TCH_SAPI0] = 1500,
+ [T200_SACCH_TCH_SAPI3] = 1500,
};
static void dl_set_t200(struct gsm_bts *bts, struct lapdm_datalink *dl, unsigned int t200_msec)
--
To view, visit https://gerrit.osmocom.org/c/osmo-bts/+/14338
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Change-Id: Ic1268ae2d769b12da6cdd4ac8375e4bc033a9e3e
Gerrit-Change-Number: 14338
Gerrit-PatchSet: 1
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190602/52fef0f4/attachment.htm>