Attention is currently required from: arehbein.
Patch set 2:Code-Review -1
4 comments:
File include/osmocom/bsc/gsm_data.h:
Patch Set #2, Line 50: #define GSM_N3101_STRICT_LOWER_BOUND 8UL
STRICT_LOWER_BOUND means simply "MIN" ? :D
File src/osmo-bsc/bts_ipaccess_nanobts_omlattr.c:
Patch Set #2, Line 234: struct osmo_tdef *tdefs = bts->network->T_defs;
Nope! this should be per BTS.
File src/osmo-bsc/net_init.c:
Patch Set #2, Line 51: { .T = 3142, .default_val = 20,
I know tons of parameters are already added here, but we should not continue adding BTS-specific parameters here, it just doesn't make sense. Some of them even may not be configurable on other BTS types.
So we really need to add a osmo_tdef group per bts object. You can have a look at asp->cfg.T_defs_lm in libosmo-sccp/src/osmo_ss7_asp.c:673 to find out how to add a T_def instance per object (as opposed to a single structure per process like the gsm_network_T_defs here). Basically:
"""
asp->cfg.T_defs_lm = talloc_memdup(asp, ss7_asp_lm_timer_defaults,
sizeof(ss7_asp_lm_timer_defaults));
osmo_tdefs_reset(asp->cfg.T_defs_lm);
"""
BTW, when doing so, also create different T_Def groups, like done in this same file here (see bsc_tdef_group below).
File tests/nanobts_omlattr/nanobts_omlattr_test.c:
Patch Set #2, Line 228: 0x02, 0x00, 0x02, 0xa3, 0x00, 0x09,
why is this changing? are you changing the default values?
To view, visit change 31878. To unsubscribe, or for help writing mail filters, visit settings.