diff --git a/openair1/PHY/LTE_ESTIMATION/lte_sync_timefreq.c b/openair1/PHY/LTE_ESTIMATION/lte_sync_timefreq.c index a2d4c91b73008ff68b6b410a5943cb32bf0099a5..dba4d5d7e4d1b94c02a5351f529e8e02032ed0b0 100644 --- a/openair1/PHY/LTE_ESTIMATION/lte_sync_timefreq.c +++ b/openair1/PHY/LTE_ESTIMATION/lte_sync_timefreq.c @@ -49,7 +49,7 @@ #include "pss6144.h" #define DEBUG_TF 1 -extern print_shorts(char*,__m128i*); +extern void print_shorts(char*,__m128i*); void lte_sync_timefreq(PHY_VARS_UE *ue,int band,unsigned int DL_freq) { diff --git a/openair1/PHY/LTE_TRANSPORT/print_stats.c b/openair1/PHY/LTE_TRANSPORT/print_stats.c index 75f111c981a19b04b97b25ea3259bc5b34b1faa6..b30c790c21d0a3d7a0c333fc1f33feff941a0e37 100644 --- a/openair1/PHY/LTE_TRANSPORT/print_stats.c +++ b/openair1/PHY/LTE_TRANSPORT/print_stats.c @@ -508,7 +508,6 @@ int dump_ue_stats(PHY_VARS_UE *phy_vars_ue, char* buffer, int length, runmode_t } len += sprintf(&buffer[len],"EOF\n"); - len += sprintf(&buffer[len],"\0"); return len; } // is_clusterhead @@ -751,7 +750,6 @@ int dump_eNB_stats(PHY_VARS_eNB *phy_vars_eNB, char* buffer, int length) { len += sprintf(&buffer[len],"\n"); } len += sprintf(&buffer[len],"EOF\n"); - len += sprintf(&buffer[len],"\0"); return len; } diff --git a/openair1/SCHED/phy_procedures_lte_ue.c b/openair1/SCHED/phy_procedures_lte_ue.c index b799c7e62f77c6084a4dce85d1aba8164eb6ed80..dd7f3aa7e45a87745587497380577208851055d1 100755 --- a/openair1/SCHED/phy_procedures_lte_ue.c +++ b/openair1/SCHED/phy_procedures_lte_ue.c @@ -3640,7 +3640,8 @@ void phy_UE_lte_check_measurement_thresholds(instance_t instanceP, ral_threshold frame_tx, subframe_rx, subframe_select(&phy_vars_ue->lte_frame_parms,subframe_tx), - eNB_id); + eNB_id, + 0/*FIXME CC_id*/); if (ret == CONNECTION_LOST) { LOG_E(PHY,"[UE %d] Frame %d, subframe %d RRC Connection lost, returning to PRACH\n",phy_vars_ue->Mod_id, frame_rx,subframe_tx); diff --git a/openair2/ENB_APP/enb_config.c b/openair2/ENB_APP/enb_config.c index fbb0053129b5cdc9d4168b830f62e5fc70b5a6aa..5a3bb9b1709b0d8dd53de923664c865ea4ce7997 100755 --- a/openair2/ENB_APP/enb_config.c +++ b/openair2/ENB_APP/enb_config.c @@ -460,7 +460,7 @@ const Enb_properties_array_t *enb_config_init(char* lib_config_file_name_pP) { libconfig_int tdd_config_s; const char* prefix_type = NULL; libconfig_int eutra_band; - int64_t downlink_frequency; + long long int downlink_frequency; libconfig_int uplink_frequency_offset; libconfig_int Nid_cell; libconfig_int Nid_cell_mbsfn; diff --git a/openair2/LAYER2/MAC/eNB_scheduler_RA.c b/openair2/LAYER2/MAC/eNB_scheduler_RA.c index b4414138fa01acdda9aa1720c0f1c66de1b9fab8..7ea9bacf34caa40538dec3b822d0baa152f05e88 100644 --- a/openair2/LAYER2/MAC/eNB_scheduler_RA.c +++ b/openair2/LAYER2/MAC/eNB_scheduler_RA.c @@ -393,7 +393,7 @@ void schedule_RA(module_id_t module_idP,frame_t frameP, sub_frame_t subframeP,un DevAssert( UE_id != UE_INDEX_INVALID ); // FIXME not sure how to gracefully return offset = generate_dlsch_header((unsigned char*)eNB->UE_list.DLSCH_pdu[CC_id][0][(unsigned char)UE_id].payload[0], 1, //num_sdus - &rrc_sdu_length, // + (unsigned short*)&rrc_sdu_length, // &lcid, // sdu_lcid 255, // no drx 0, // no timing advance diff --git a/openair2/LAYER2/MAC/pre_processor.c b/openair2/LAYER2/MAC/pre_processor.c index 9d839628fcf48bd70756b2a0f0b0bd96e73c0edd..a8c76b06a46827b3fa363e22ee6deb008a86b6a6 100644 --- a/openair2/LAYER2/MAC/pre_processor.c +++ b/openair2/LAYER2/MAC/pre_processor.c @@ -450,9 +450,10 @@ void dlsch_scheduler_pre_processor (module_id_t Mod_id, else if( (min_rb_unit[CC_id] * total_ue_count) <= (frame_parms[CC_id]->N_RB_DL) ) average_rbs_per_user[CC_id] = (uint16_t) floor(frame_parms[CC_id]->N_RB_DL/total_ue_count); else - average_rbs_per_user[CC_id] = min_rb_unit[CC_id]; + average_rbs_per_user[CC_id] = min_rb_unit[CC_id]; // consider the total number of use that can be scheduled UE } } + // note: nb_rbs_required is assigned according to total_buffer_dl // extend nb_rbs_required to capture per LCID RB required for(i=UE_list->head;i>=0;i=UE_list->next[i]){ @@ -461,14 +462,16 @@ void dlsch_scheduler_pre_processor (module_id_t Mod_id, // control channel if (mac_get_rrc_status(Mod_id,1,i) < RRC_RECONFIGURED) nb_rbs_required_remaining_1[CC_id][i] = nb_rbs_required[CC_id][i]; - else + else{ nb_rbs_required_remaining_1[CC_id][i] = cmin(average_rbs_per_user[CC_id],nb_rbs_required[CC_id][i]); + + } } } //Allocation to UEs is done in 2 rounds, - // 1st round: average number of RBs allocated to each UE - // 2nd round: remaining RBs are allocated to high priority UEs + // 1st stage: average number of RBs allocated to each UE + // 2nd stage: remaining RBs are allocated to high priority UEs for(r1=0;r1<2;r1++){ for(i=UE_list->head; i>=0;i=UE_list->next[i]) { @@ -511,7 +514,7 @@ void dlsch_scheduler_pre_processor (module_id_t Mod_id, // retransmission in data channels // control channel in the 1st transmission // data channel for all TM - LOG_D(MAC,"calling dlsch_scheduler_pre_processor_allocate .. \n "); + LOG_T(MAC,"calling dlsch_scheduler_pre_processor_allocate .. \n "); dlsch_scheduler_pre_processor_allocate (Mod_id, UE_id, CC_id, diff --git a/openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c b/openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c index f878e7f0e01cddbf8a1866f9a342dc164daaddbc..2c3642d1ac1fd3d359d83d634f460dd1a10b4443 100755 --- a/openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c +++ b/openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c @@ -933,7 +933,9 @@ void pdcp_fifo_read_input_sdus_from_otg (const protocol_ctxt_t* const ctxt_pP) for (dst_id = 0; dst_id<NUMBER_OF_UE_MAX; dst_id++) { if (mac_get_rrc_status(ctxt_pP->enb_module_id, ctxt_pP->enb_flag, dst_id ) > 2) { - otg_pkt=packet_gen(src_id, dst_id, 0, ctime, &pkt_size); + unsigned int temp = 0; + otg_pkt = packet_gen( src_id, dst_id, 0, ctime, &temp ); + pkt_size = temp; if (otg_pkt != NULL){ rb_id = dst_id * maxDRB + DTCH; ctxt.ue_module_id = dst_id; diff --git a/openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.c b/openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.c index 2497ed562d4489193d2705dab52cf4f505d5bfef..6331a236d21a9ddd84eb173faecae49493af5fc9 100755 --- a/openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.c +++ b/openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.c @@ -416,7 +416,8 @@ rlc_am_write_status_pdu( rlc_am_write16_bit_field(&byte_pos_p, &bit_pos, 15, pdu_info_pP->nack_list[index].so_end); } } - num_bytes = ((unsigned int)byte_pos_p) - ((unsigned int)(&rlc_am_pdu_sn_10_pP->b1)); + ptrdiff_t diff = byte_pos_p - &rlc_am_pdu_sn_10_pP->b1; // this is the difference in terms of typeof(byte_pos_p), which is uint8_t + num_bytes = diff; if (bit_pos > 0) { num_bytes += 1; } diff --git a/openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.c b/openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.c index 8348b6a509d417504efbf911cb1ac08a2c7c95bc..b0414f2944d1a69fcaa6f68d5672ea068ab76cd3 100755 --- a/openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.c +++ b/openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.c @@ -297,7 +297,7 @@ rlc_um_segment_10 (const protocol_ctxt_t* const ctxtP, rlc_um_entity_t *rlc_pP) sdu_mngt_p->sdu_size); #endif } - data_sdu_p = &(sdu_in_buffer->data[sizeof (struct rlc_um_tx_sdu_management) + sdu_mngt_p->sdu_segmented_size]); + data_sdu_p = (char *) &(sdu_in_buffer->data[sizeof (struct rlc_um_tx_sdu_management) + sdu_mngt_p->sdu_segmented_size]); if (sdu_mngt_p->sdu_remaining_size > pdu_remaining_size) { #if defined(TRACE_RLC_UM_SEGMENT) @@ -744,7 +744,7 @@ rlc_um_segment_5 (const protocol_ctxt_t* const ctxtP, rlc_um_entity_t *rlc_pP) sdu_mngt_p->sdu_size); #endif } - data_sdu_p = &(sdu_in_buffer->data[sizeof (struct rlc_um_tx_sdu_management) + sdu_mngt_p->sdu_segmented_size]); + data_sdu_p = (char*) &(sdu_in_buffer->data[sizeof (struct rlc_um_tx_sdu_management) + sdu_mngt_p->sdu_segmented_size]); if (sdu_mngt_p->sdu_remaining_size > pdu_remaining_size) { #if defined(TRACE_RLC_UM_SEGMENT) diff --git a/openair2/LAYER2/RLC/rlc_rrc.c b/openair2/LAYER2/RLC/rlc_rrc.c index 3745cbd9c1f7fcd0559a7af6cd761feac5199e78..116a2a01ea67a88752dec2bd0150c8ec3f31fe17 100644 --- a/openair2/LAYER2/RLC/rlc_rrc.c +++ b/openair2/LAYER2/RLC/rlc_rrc.c @@ -522,7 +522,7 @@ rlc_op_status_t rrc_rlc_remove_rlc ( AssertFatal (rb_idP < NB_RB_MAX, "RB id is too high (%u/%d)!\n", rb_idP, NB_RB_MAX); - h_rc = hashtable_get(rlc_coll_p, key, &rlc_union_p); + h_rc = hashtable_get(rlc_coll_p, key, (void**)&rlc_union_p); if (h_rc == HASH_TABLE_OK) { h_rc = hashtable_remove(rlc_coll_p, key); LOG_D(RLC, "[Frame %05u][%s][RLC_RRC][INST %u/%u][%s %u] RELEASED %s\n", diff --git a/openair2/PHY_INTERFACE/defs.h b/openair2/PHY_INTERFACE/defs.h index 5223c64a78d76b60ef3ccc8baffca9d2f1c7e9ef..ad988482468aff784c22200b324b28fd4e2fa977 100755 --- a/openair2/PHY_INTERFACE/defs.h +++ b/openair2/PHY_INTERFACE/defs.h @@ -174,7 +174,7 @@ typedef struct void (*dl_phy_sync_success) (module_id_t Mod_id,frame_t frameP, uint8_t CH_index,uint8_t first_sync); /// Only calls the PDCP for now - UE_L2_STATE_t (*ue_scheduler)(module_id_t Mod_id, frame_t frameP,sub_frame_t subframe, lte_subframe_t direction,uint8_t eNB_id); + UE_L2_STATE_t (*ue_scheduler)(module_id_t Mod_id, frame_t frameP,sub_frame_t subframe, lte_subframe_t direction, uint8_t eNB_id, int CC_id); /// PHY-Config-Dedicated UE void (*phy_config_dedicated_ue)(module_id_t Mod_id,int CC_id,uint8_t CH_index, diff --git a/openair2/RRC/LITE/rrc_UE.c b/openair2/RRC/LITE/rrc_UE.c index 060a13018c0f969375237820b194c4057145d8dd..a2fcc3c6291c985f07906f4c9ef28a530622bb84 100644 --- a/openair2/RRC/LITE/rrc_UE.c +++ b/openair2/RRC/LITE/rrc_UE.c @@ -3265,7 +3265,7 @@ void switch (rrc_get_state(ue_mod_id)) { case RRC_STATE_IDLE: { - if (rrc_get_sub_state(ue_mod_id) == RRC_SUB_STATE_IDLE_SIB_COMPLETE) + if (rrc_get_sub_state(ue_mod_id) == RRC_SUB_STATE_IDLE_SIB_COMPLETE) { rrc_set_sub_state (ue_mod_id, RRC_SUB_STATE_IDLE_CONNECTING); } break; diff --git a/openair2/RRC/LITE/rrc_eNB.c b/openair2/RRC/LITE/rrc_eNB.c index 085687e1b29da484028c3b1b9dae011ab1553e86..d526776b064bc45cb2ea96539375f7aa62a3510b 100644 --- a/openair2/RRC/LITE/rrc_eNB.c +++ b/openair2/RRC/LITE/rrc_eNB.c @@ -2849,7 +2849,7 @@ int rrc_eNB_decode_ccch( SRB_INFO * Srb_info) { /*------------------------------------------------------------------------------*/ - module_id_t Idx, ue_mod_id; + module_id_t Idx, ue_mod_id = 0; asn_dec_rval_t dec_rval; UL_CCCH_Message_t *ul_ccch_msg = NULL; RRCConnectionRequest_r8_IEs_t *rrcConnectionRequest; diff --git a/openair2/UTIL/LOG/log.c b/openair2/UTIL/LOG/log.c index 88d63eeb36846e12eb32f8a5519784bfbdca1fd6..7d46648e45d79eaaa53f2c27eff35afaf4e72c69 100755 --- a/openair2/UTIL/LOG/log.c +++ b/openair2/UTIL/LOG/log.c @@ -487,6 +487,7 @@ void logRecord(const char *file, const char *func, int line, int comp, log_list_nb_elements++; } if(pthread_cond_signal(&log_notify) != 0) { + pthread_mutex_unlock(&log_lock); return; } diff --git a/openair2/UTIL/MEM/mem_block.c b/openair2/UTIL/MEM/mem_block.c index cf9af86caf365dcb720591aa1151c37a6e0dcbae..f7988a34e046c8c3f35e2ab4f3efba4e336bbfdb 100644 --- a/openair2/UTIL/MEM/mem_block.c +++ b/openair2/UTIL/MEM/mem_block.c @@ -82,43 +82,43 @@ pool_buffer_init () //memory->mem_blocks[mb_index + index].next = NULL; -> done in memset 0 switch (pool_index) { case 0: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool0[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool0[index][0]); break; case 1: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool1[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool1[index][0]); break; case 2: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool2[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool2[index][0]); break; case 3: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool3[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool3[index][0]); break; case 4: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool4[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool4[index][0]); break; case 5: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool5[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool5[index][0]); break; case 6: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool6[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool6[index][0]); break; case 7: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool7[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool7[index][0]); break; case 8: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool8[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool8[index][0]); break; case 9: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool9[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool9[index][0]); break; case 10: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool10[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool10[index][0]); break; case 11: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool11[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool11[index][0]); break; case 12: - memory->mem_blocks[mb_index + index].data = &(memory->mem_pool12[index][0]); + memory->mem_blocks[mb_index + index].data = (unsigned char*)&(memory->mem_pool12[index][0]); break; default:; memory->mem_blocks[mb_index + index].data = NULL; // pool copy @@ -300,79 +300,79 @@ check_mem_area (void) mem_pool *memory = (mem_pool *) &mem_block_var; for (index = 0; index < MEM_MNGT_MB0_NB_BLOCKS; index++) { - if ((memory->mem_blocks[index].data != &(memory->mem_pool0[index][0])) && (memory->mem_blocks[index].pool_id != MEM_MNGT_POOL_ID0)) { + if ((memory->mem_blocks[index].data != (unsigned char*)&(memory->mem_pool0[index][0])) && (memory->mem_blocks[index].pool_id != MEM_MNGT_POOL_ID0)) { msg ("[MEM] ERROR POOL0 block index %d\n", index); } } mb_index = MEM_MNGT_MB0_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB1_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool1[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID1)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool1[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID1)) { msg ("[MEM] ERROR POOL1 block index %d\n", index); } } mb_index += MEM_MNGT_MB1_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB2_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool2[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID2)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool2[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID2)) { msg ("[MEM] ERROR POOL2 block index %d\n", index); } } mb_index += MEM_MNGT_MB2_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB3_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool3[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID3)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool3[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID3)) { msg ("[MEM] ERROR POOL3 block index %d\n", index); } } mb_index += MEM_MNGT_MB3_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB4_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool4[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID4)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool4[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID4)) { msg ("[MEM] ERROR POOL4 block index %d\n", index); } } mb_index += MEM_MNGT_MB4_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB5_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool5[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID5)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool5[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID5)) { msg ("[MEM] ERROR POOL5 block index %d\n", index); } } mb_index += MEM_MNGT_MB5_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB6_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool6[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID6)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool6[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID6)) { msg ("[MEM] ERROR POOL6 block index %d\n", index); } } mb_index += MEM_MNGT_MB6_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB7_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool7[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID7)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool7[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID7)) { msg ("[MEM] ERROR POOL7 block index %d\n", index); } } mb_index += MEM_MNGT_MB7_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB8_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool8[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID8)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool8[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID8)) { msg ("[MEM] ERROR POOL8 block index %d\n", index); } } mb_index += MEM_MNGT_MB8_NB_BLOCKS; for (index = 0; index < MEM_MNGT_MB9_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool9[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID9)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool9[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID9)) { msg ("[MEM] ERROR POOL9 block index %d\n", index); } } mb_index += MEM_MNGT_MB9_NB_BLOCKS; for (index = mb_index; index < MEM_MNGT_MB10_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool10[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID10)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool10[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID10)) { msg ("[MEM] ERROR POOL10 block index %d\n", index); } } mb_index += MEM_MNGT_MB10_NB_BLOCKS; for (index = mb_index; index < MEM_MNGT_MB11_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool11[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID11)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool11[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID11)) { msg ("[MEM] ERROR POOL11 block index %d\n", index); } } mb_index += MEM_MNGT_MB11_NB_BLOCKS; for (index = mb_index; index < MEM_MNGT_MB12_NB_BLOCKS; index++) { - if ((memory->mem_blocks[mb_index + index].data != &(memory->mem_pool12[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID12)) { + if ((memory->mem_blocks[mb_index + index].data != (unsigned char*)&(memory->mem_pool12[index][0])) && (memory->mem_blocks[mb_index + index].pool_id != MEM_MNGT_POOL_ID12)) { msg ("[MEM] ERROR POOL12 block index %d\n", index); } } diff --git a/openair2/UTIL/OCG/OCG.h b/openair2/UTIL/OCG/OCG.h index 3b1b0e03b2e1270e4463a1e8af0936527f877c3e..431beed61fed4d801f772f208ebaf7890d59c1d3 100644 --- a/openair2/UTIL/OCG/OCG.h +++ b/openair2/UTIL/OCG/OCG.h @@ -467,28 +467,33 @@ The following diagram is based on graphviz (http://www.graphviz.org/), you need typedef struct { - uint16_t priority[11];//pas possible d'acceder au MAX_NUM_LCID - // - uint8_t DCI_aggregation_min; - uint8_t DLSCH_dci_size_bits; - //UL transmission bandwidth in RBs - uint8_t ul_bandwidth[11]; - //DL transmission bandwidth in RBs - uint8_t dl_bandwidth[11]; - //UL transmission bandwidth in RBs - uint8_t min_ul_bandwidth[11]; - //DL transmission bandwidth in RBs - uint8_t min_dl_bandwidth[11]; - //aggregated bit rate of non-gbr bearer per UE - uint64_t ue_AggregatedMaximumBitrateDL; - //aggregated bit rate of non-gbr bearer per UE - uint64_t ue_AggregatedMaximumBitrateUL; - //CQI scheduling interval in subframes. - uint16_t cqiSchedInterval; - //Contention resolution timer used during random access - uint8_t mac_ContentionResolutionTimer; - uint16_t max_allowed_rbs[11]; - uint8_t max_mcs[11]; + uint16_t priority[11];//pas possible d'acceder au MAX_NUM_LCID + // + uint8_t DCI_aggregation_min; + uint8_t DLSCH_dci_size_bits; + //UL transmission bandwidth in RBs + uint8_t ul_bandwidth[11]; + //DL transmission bandwidth in RBs + uint8_t dl_bandwidth[11]; + //UL transmission bandwidth in RBs + uint8_t min_ul_bandwidth[11]; + //DL transmission bandwidth in RBs + uint8_t min_dl_bandwidth[11]; + //aggregated bit rate of non-gbr bearer per UE + uint64_t ue_AggregatedMaximumBitrateDL; + //aggregated bit rate of non-gbr bearer per UE + uint64_t ue_AggregatedMaximumBitrateUL; + //CQI scheduling interval in subframes. + uint16_t cqiSchedInterval; + //Contention resolution timer used during random access + uint8_t mac_ContentionResolutionTimer; + uint16_t max_allowed_rbs[11]; + uint8_t max_mcs[11]; + + + uint8_t num_groups; + + } Mac_config; /** @defgroup _Predefined_traffic Configuration @@ -653,6 +658,24 @@ The following diagram is based on graphviz (http://www.graphviz.org/), you need } Emulation_Config; /* @}*/ +/** @defgroup _OSD_basic OAI protocol config + * @ingroup _OCG + * @brief OAI Emulation struct for protocol configuration + * @{*/ + + typedef struct{ + uint8_t num_groups; + } eNB_MAC_Config; + + typedef struct + { + eNB_MAC_Config eNB_mac_config; /*!< \brief eNB MAC configuration parameters */ + + } Protocol_Config; + + +/* @}*/ + /** @defgroup _OSD_basic Basic OpenAirInterface Scenario Descriptor * @ingroup _OCG * @brief OAI Emulation struct for OSD_basic @@ -762,11 +785,12 @@ The following diagram is based on graphviz (http://www.graphviz.org/), you need * @{*/ typedef struct { - Mac_config mac_config[NUMBER_OF_UE_MAX]; + Mac_config mac_config[NUMBER_OF_UE_MAX]; Environment_System_Config environment_system_config; /*!< \brief Evironment configuration */ Topology_Config topology_config; /*!< \brief Topology configuration */ Application_Config application_config; /*!< \brief Applications configuration */ Emulation_Config emulation_config; /*!< \brief Emulation configuration */ + Protocol_Config protocol_config; /* specific protocol configuration*/ Info info; /*!< \brief Some important information which should be able to be reached by OAISIM */ char *profile; } OAI_Emulation; diff --git a/openair2/UTIL/OCG/OCG_parse_XML.c b/openair2/UTIL/OCG/OCG_parse_XML.c index ee43265ed9a6e986dfea24c1fee459b49a9a0051..67cf05ae58ada02b0b852dfd7a00f2a83f273f11 100644 --- a/openair2/UTIL/OCG/OCG_parse_XML.c +++ b/openair2/UTIL/OCG/OCG_parse_XML.c @@ -199,6 +199,11 @@ static int emu_; static int omg_; static int otg_; +/* MAC*/ +static int protocol_; +static int mac_; +static int num_groups_; + static int log_; static int level_; static int verbosity_; @@ -572,7 +577,14 @@ void start_element(void *user_data, const xmlChar *name, const xmlChar **attrs) } else if (!xmlStrcmp(name,(unsigned char*) "START_UE")) { cli_start_ue_ = 1; - } else if (!xmlStrcmp(name,(unsigned char*) "PROFILE")) { + } else if (!xmlStrcmp(name,(unsigned char*) "PROTOCOL")) { + protocol_ = 1; + } else if (!xmlStrcmp(name,(unsigned char*) "MAC")) { + mac_ = 1; + } else if (!xmlStrcmp(name,(unsigned char*) "NUM_GROUPS")) { + num_groups_ = 1; + } + else if (!xmlStrcmp(name,(unsigned char*) "PROFILE")) { profile_ = 1; } else { LOG_W(OCG, "One element could not be parsed : unknown element name '%s'\n", name); @@ -905,6 +917,12 @@ void end_element(void *user_data, const xmlChar *name) { // called once at the e cli_start_enb_ = 0; } else if (!xmlStrcmp(name,(unsigned char*) "START_UE")) { cli_start_ue_ = 0; + } else if (!xmlStrcmp(name,(unsigned char*) "PROTOCOL")) { + protocol_ = 0; + } else if (!xmlStrcmp(name,(unsigned char*) "MAC")) { + mac_ = 0; + } else if (!xmlStrcmp(name,(unsigned char*) "NUM_GROUPS")) { + num_groups_ = 0; } else if (!xmlStrcmp(name,(unsigned char*) "PROFILE")) { profile_ = 0; } @@ -1312,7 +1330,15 @@ void characters(void *user_data, const xmlChar *xmlch, int xmllen) { // called o oai_emulation.info.cli_start_ue[i] = atoi(ch); } } - } else if (profile_) { + } + else if (protocol_) { + if (mac_){ + if (num_groups_){ + oai_emulation.protocol_config.eNB_mac_config.num_groups=atoi(ch); + } + } + } + else if (profile_) { oai_emulation.profile = strndup(ch, len); } } diff --git a/openair2/UTIL/OPT/probe.c b/openair2/UTIL/OPT/probe.c index e3a631ac8fc2dd1b0e7aa0de07cb47d77074d194..38fcaac387e20c096f0de46de09d21137faf4a1d 100644 --- a/openair2/UTIL/OPT/probe.c +++ b/openair2/UTIL/OPT/probe.c @@ -498,13 +498,14 @@ int init_opt(char *path, char *ip, char *port, radio_type_t radio_type_p) subframesSinceCaptureStart = 0; if (path != NULL) { - strncpy( in_path, sizeof(in_path), path ); + strncpy( in_path, path, sizeof(in_path) ); in_path[sizeof(in_path) - 1] = 0; // terminate string } else { strcpy( in_path, "oai_opt.pcap" ); } if (ip != NULL) { - strncpy( in_ip, sizeof(in_ip), ip ); + strncpy( in_ip, ip, sizeof(in_ip) ); + in_ip[sizeof(in_ip) - 1] = 0; // terminate string } else { strcpy( in_ip, "127.0.0.1" ); } diff --git a/openair2/UTIL/OTG/otg_kpi.c b/openair2/UTIL/OTG/otg_kpi.c index e93bd8c35425be41483c61bc68dbfe79e8f578c8..b4964ad0aaa07a72ff01ae8ef66a012b0640d65d 100644 --- a/openair2/UTIL/OTG/otg_kpi.c +++ b/openair2/UTIL/OTG/otg_kpi.c @@ -390,11 +390,10 @@ fc=fopen("/tmp/otg.log","w");; else strcpy(traffic_type,"APPLICATION"); - if (map_int_to_str(otg_app_type_names,g_otg->application_type[i][j][k]) == -1){ + if (map_int_to_str(otg_app_type_names,g_otg->application_type[i][j][k]) == 0){ LOG_E(OTG,"(src=%d, dst=%d, appli %d) : Unknown traffic \n ", i, j,k); strcpy(traffic,"UKNOWN TRAFFIC"); } else { - //strcpy (traffic, map_int_to_str(otg_app_type_names,g_otg->application_type[i][j][k])); strncpy (traffic, map_int_to_str(otg_app_type_names,g_otg->application_type[i][j][k]), sizeof(traffic)); traffic[sizeof(traffic) - 1] = 0; // terminate string } diff --git a/openair2/UTIL/OTG/otg_models.c b/openair2/UTIL/OTG/otg_models.c index 379cc04f947c03151b40606ff013eac561a54190..50e462747061eb8b483036509035b58c71b2738b 100644 --- a/openair2/UTIL/OTG/otg_models.c +++ b/openair2/UTIL/OTG/otg_models.c @@ -431,7 +431,7 @@ void tarmaPrintVideoInit(tarmaVideo_t *video){ input: output: - random realization of R_s (B/s) */ -double backgroundRateRnd(){ +double backgroundRateRnd(void){ double rate; rate=pow(10,lognormal_dist(1.3525, 0.1954))/8; /*Byte/s*/; if(rate>BACKGROUND_RATE_MAX){ @@ -447,7 +447,7 @@ double backgroundRateRnd(){ input: output: - random realization of D_s (ms) */ -int backgroundSessionDurationRnd(){ +int backgroundSessionDurationRnd(void){ int duration; duration = ceil(pow(10,exponential_dist(1/0.3591))*1000); /*ms*/ if(duration<0){ diff --git a/targets/RT/USER/lte-ue.c b/targets/RT/USER/lte-ue.c index dddd2456391c850b47e7a8f1681a637eeb2de9a7..444a98e547605fe739737324e4c33d2bc96f8a85 100644 --- a/targets/RT/USER/lte-ue.c +++ b/targets/RT/USER/lte-ue.c @@ -575,7 +575,8 @@ static void *UE_thread_tx(void *arg) { UE->frame_tx, UE->slot_rx>>1, subframe_select(&UE->lte_frame_parms,UE->slot_tx>>1), - 0); + 0, + 0/*FIXME CC_id*/); if (ret == CONNECTION_LOST) { LOG_E(PHY,"[UE %d] Frame %d, subframe %d RRC Connection lost, returning to PRACH\n",UE->Mod_id, @@ -711,7 +712,8 @@ static void *UE_thread_rx(void *arg) { UE->frame_tx, UE->slot_rx>>1, subframe_select(&UE->lte_frame_parms,UE->slot_tx>>1), - 0); + 0, + 0/*FIXME CC_id*/); if (ret == CONNECTION_LOST) { LOG_E(PHY,"[UE %d] Frame %d, subframe %d RRC Connection lost, returning to PRACH\n",UE->Mod_id, diff --git a/targets/SIMU/USER/oaisim_config.c b/targets/SIMU/USER/oaisim_config.c index 5d521dd64996e164df6f222e9173478a96f3676a..47af195f921f2f1b6274df165350d04fc4813136 100644 --- a/targets/SIMU/USER/oaisim_config.c +++ b/targets/SIMU/USER/oaisim_config.c @@ -209,7 +209,8 @@ void init_oai_emulation(void) { oai_emulation.application_config.customized_traffic.ed_size_pkts[i]= 0; } - + /* protocol config */ + oai_emulation.protocol_config.eNB_mac_config.num_groups=1; oai_emulation.emulation_config.emulation_time_ms = 0; @@ -354,7 +355,8 @@ void oaisim_config(void) { ocg_config_emu(); ocg_config_env();// mobility gen ocg_config_topo(); // packet tracer using wireshark - // if T is set or ocg enabled + ocg_config_proto(); + // if T is set or ocg enabled if (oai_emulation.info.otg_enabled ) { set_component_filelog(OTG); set_component_filelog(OTG_LATENCY); @@ -367,10 +369,10 @@ void oaisim_config(void) { g_log->log_component[OTG_OWD].filelog = 1;*/ ocg_config_app(); // packet generator } - // add a var to control this, and pass this var to OMG - set_component_filelog(OMG); - LOG_I(OMG,"setting OMG file log \n"); - + // add a var to control this, and pass this var to OMG + set_component_filelog(OMG); + LOG_I(OMG,"setting OMG file log \n"); + } int olg_config(void) { @@ -1180,3 +1182,9 @@ int ocg_config_emu(void){ return 1; } +void ocg_config_proto(void){ + + LOG_I(MAC,"num groups is set to %d\n",oai_emulation.protocol_config.eNB_mac_config.num_groups); + +} + diff --git a/targets/build_oai.bash b/targets/build_oai.bash index 37ca00f77b0e729701c67e71127f49f14938a6dc..c34e913211023361901d1b637c2d1abbc0c28013 100755 --- a/targets/build_oai.bash +++ b/targets/build_oai.bash @@ -49,7 +49,7 @@ declare OAI_DB_ADMIN_USER_NAME="root" declare OAI_DB_ADMIN_USER_PASSWORD="linux" #only one could be set at the time -declare BUILD_LTE="ENB" # ENB, EPC, HSS +declare BUILD_LTE="NONE" # ENB, EPC, HSS declare HW="EXMIMO" # EXMIMO, USRP, ETHERNET, NONE declare TARGET="ALL" # ALL, SOFTMODEM, OAISIM, UNISIM, NONE