From 616a949456fdefa06bf26f1d12df720823bc43cc Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Tue, 20 Jul 2021 22:14:35 +0200 Subject: [PATCH] gprs_ns2: calculate the nse->*_sums before notifing the sns fsm The sns fsm needs these information to determine if there is a signalling nsvc left Change-Id: I7b115921780bd1ae895d8b9d0d4aec3e1cbaaf58 --- src/gb/gprs_ns2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gb/gprs_ns2.c b/src/gb/gprs_ns2.c index adf3b3231..6c48ca6f1 100644 --- a/src/gb/gprs_ns2.c +++ b/src/gb/gprs_ns2.c @@ -1391,8 +1391,8 @@ void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked) { struct gprs_ns2_nse *nse = nsvc->nse; - ns2_sns_notify_alive(nse, nsvc, unblocked); ns2_nse_data_sum(nse); + ns2_sns_notify_alive(nse, nsvc, unblocked); if (unblocked == nse->alive) return;