Commit 5ad39176 authored by Haruki NAOI's avatar Haruki NAOI

add logs.

parent 6bae0fed
...@@ -5937,6 +5937,7 @@ cqi_indication(module_id_t mod_idP, ...@@ -5937,6 +5937,7 @@ cqi_indication(module_id_t mod_idP,
{ {
int UE_id = find_UE_id(mod_idP, rntiP); int UE_id = find_UE_id(mod_idP, rntiP);
UE_info_t *UE_info = &RC.mac[mod_idP]->UE_info; UE_info_t *UE_info = &RC.mac[mod_idP]->UE_info;
uint64_t pdu_val = *(uint64_t *) pdu;
if (UE_id == -1) { if (UE_id == -1) {
LOG_W(MAC, "cqi_indication: UE %x not found\n", rntiP); LOG_W(MAC, "cqi_indication: UE %x not found\n", rntiP);
...@@ -5976,10 +5977,10 @@ cqi_indication(module_id_t mod_idP, ...@@ -5976,10 +5977,10 @@ cqi_indication(module_id_t mod_idP,
subframeP, subframeP,
pdu, pdu,
rel9->length); rel9->length);
LOG_D(MAC,"Frame %d Subframe %d update CQI:%d\n", LOG_D(MAC,"Frame %d Subframe %d update CQI:%d pdu 0x%016"PRIx64"\n",
frameP, frameP,
subframeP, subframeP,
sched_ctl->dl_cqi[CC_idP]); sched_ctl->dl_cqi[CC_idP],pdu_val);
sched_ctl->cqi_req_flag &= (~(1 << subframeP)); sched_ctl->cqi_req_flag &= (~(1 << subframeP));
sched_ctl->cqi_received = 1; sched_ctl->cqi_received = 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment