neels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/32912 )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: remove obsolete context_map_check_released() call ......................................................................
remove obsolete context_map_check_released() call
When in map_rua_fsm_cleanup(), we are always already deallocating the context map, i.e. neither RUA nor SCCP are active anymore. No need to call context_map_check_released() again.
Change-Id: I4bf9a9de7861296ec38c3a37de0254ad9a41ef1b --- M src/osmo-hnbgw/context_map_rua.c 1 file changed, 13 insertions(+), 1 deletion(-)
Approvals: pespin: Looks good to me, but someone else must approve laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/osmo-hnbgw/context_map_rua.c b/src/osmo-hnbgw/context_map_rua.c index bc012f3..5a715c4 100644 --- a/src/osmo-hnbgw/context_map_rua.c +++ b/src/osmo-hnbgw/context_map_rua.c @@ -314,7 +314,6 @@ { struct hnbgw_context_map *map = fi->priv; map->rua_fi = NULL; - context_map_check_released(map); }
#define S(x) (1 << (x))