IuPS: explicitly check RAN type; move comment

Change-Id: I054d72590dfb2012f6f8506d3a5f8fd2953194e1
This commit is contained in:
Neels Hofmeyr 2017-07-20 14:41:40 +02:00 committed by Neels Hofmeyr
parent ed739b9dac
commit ecd8c048fc
1 changed files with 3 additions and 1 deletions

View File

@ -971,10 +971,12 @@ static int gsm48_tx_gmm_service_rej(struct sgsn_mm_ctx *mm,
static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm);
#ifdef BUILD_IU
/* Send RAB activation requests for all PDP contexts */
void activate_pdp_rabs(struct sgsn_mm_ctx *ctx)
{
/* Send RAB activation requests for all PDP contexts */
struct sgsn_pdp_ctx *pdp;
if (ctx->ran_type != MM_CTX_T_UTRAN_Iu)
return;
llist_for_each_entry(pdp, &ctx->pdp_list, list) {
iu_rab_act_ps(pdp->nsapi, pdp, 1);
}