Commit f571043d authored by Teodora's avatar Teodora

Fix E2 Setup Request memory leakage

parent 1cae1879
...@@ -420,26 +420,29 @@ bool read_kpm_sm(void* data) ...@@ -420,26 +420,29 @@ bool read_kpm_sm(void* data)
} }
static const char* kpm_meas_du[] = { static const char* kpm_meas_du[] = {
"DRB.RlcSduDelayDl", "DRB.RlcSduDelayDl",
"DRB.UEThpDl", "DRB.UEThpDl",
"DRB.UEThpUl", "DRB.UEThpUl",
"RRU.PrbTotDl", "RRU.PrbTotDl",
"RRU.PrbTotUl", "RRU.PrbTotUl",
NULL,
}; };
static const char* kpm_meas_gnb[] = { static const char* kpm_meas_gnb[] = {
"DRB.PdcpSduVolumeDL", "DRB.PdcpSduVolumeDL",
"DRB.PdcpSduVolumeUL", "DRB.PdcpSduVolumeUL",
"DRB.RlcSduDelayDl", "DRB.RlcSduDelayDl",
"DRB.UEThpDl", "DRB.UEThpDl",
"DRB.UEThpUl", "DRB.UEThpUl",
"RRU.PrbTotDl", "RRU.PrbTotDl",
"RRU.PrbTotUl", "RRU.PrbTotUl",
NULL,
}; };
static const char* kpm_meas_cuup[] = { static const char* kpm_meas_cuup[] = {
"DRB.PdcpSduVolumeDL", "DRB.PdcpSduVolumeDL",
"DRB.PdcpSduVolumeUL", "DRB.PdcpSduVolumeUL",
NULL,
}; };
typedef const char** meas_list; typedef const char** meas_list;
......
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