• Guido Casati's avatar
    Fix ULSCH ID type to handle large max_nb_pusch values (ULSCH procedures) · 5a59793b
    Guido Casati authored
    The ULSCH_id variable is currently defined as uint8_t, which limits its
    range to 0-255. However, gNB->max_nb_pusch can exceed this range
    depending on the configuration (buffer_ul_slots and MAX_MOBILES_PER_GNB).
    This can lead to incorrect behavior or undefined results when max_nb_pusch
    is larger than 255. This commit changes the type of ULSCH_id from uint8_t
    to int to accommodate larger values of max_nb_pusch.
    
    The issue was observed when running the OAI gNB with MAX_MOBILES_PER_GNB set
    to 64 UEs. The root cause was traced back to the changes to UL processing
    introduced in !3166 (!2952).
    5a59793b
phy_procedures_nr_gNB.c 50.6 KB