Moved macCellCfg to duCellCb
[o-du/l2.git] / src / cm / cm_tenb_stats.c
index dba907f..538d926 100755 (executable)
@@ -115,7 +115,6 @@ PRIVATE Void TSInfTrigL2Stats(region, pool)
    Buffer* pBuf;
    Pst pst = {0};
 
-   TRC2(TSInfTrigL2Stats)
 
    SGetMsg(region, pool, &pBuf);
 //#if defined(SCH_STATS) || defined(TENB_STATS)
@@ -145,18 +144,17 @@ PRIVATE Void TSInfTrigL2Stats(region, pool)
 *
 */
 #ifdef ANSI
-PUBLIC Void TSInfTrigStats
+Void TSInfTrigStats
 (
  Region    region,
  Pool      pool
 )
 #else
-PUBLIC Void TSInfTrigStats(region, pool)
+Void TSInfTrigStats(region, pool)
  Region    region;
  Pool      pool;
 #endif
 {
-   TRC2(TSInfTrigStats)
 //TODO
    TSInfTrigL2Stats(region, pool);
 
@@ -176,7 +174,6 @@ PRIVATE Buffer* TSInfUtlAllocMsg(pst)
 {
    Buffer *mBuf; 
 
-   TRC2(TSInfUtlAllocMsg)
 
    if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) {
       printf("\n MBuf Allocation failed\n");
@@ -199,7 +196,6 @@ PRIVATE Void TSInfUtlPackUeInfo(mBuf, stats)
    S32 i;
    U32 k;
 
-   TRC2(TSInfUtlPackUeInfo)
 
    CMCHKPK(oduUnpackUInt32, stats->persistent.numDeactivation, mBuf);
    CMCHKPK(oduUnpackUInt32, stats->persistent.numActivation, mBuf);
@@ -280,7 +276,6 @@ PRIVATE Void TSInfUtlPackCellInfo(mBuf, stats)
 {
    S32 i,j;
 
-   TRC2(TSInfUtlPackCellInfo)
 
    CMCHKPK(oduUnpackUInt32, stats->rlc.reOdrTmrExp, mBuf);
    CMCHKPK(oduUnpackUInt32, stats->rlc.maxRlcDrbRetxFail, mBuf);
@@ -398,7 +393,6 @@ PRIVATE Void TSInfUtlUnpkUeInfo(mBuf, stats)
    S32 i;
    U32 k;
 
-   TRC2(TSInfUtlUnpkUeInfo)
 
    CMCHKUNPK(oduPackUInt32, &stats->rnti, mBuf);
 
@@ -480,7 +474,6 @@ PRIVATE Void TSInfUtlUnpkCellInfo(mBuf, stats)
 {
    S32 i,j;
 
-   TRC2(TSInfUtlUnpkCellInfo)
 
       CMCHKUNPK(oduPackUInt32, &stats->cellId, mBuf);
 
@@ -584,14 +577,14 @@ PRIVATE Void TSInfUtlUnpkCellInfo(mBuf, stats)
 }
 
 #ifdef ANSI
-PUBLIC Void TSInfPkSndL2UeStats
+Void TSInfPkSndL2UeStats
 (
  Pst               *pst,
  SuId              suId,
  TSInfL2UeStats     *stats  
 )
 #else
-PUBLIC Void TSInfPkSndL2UeStats(pst, suId, stats)
+Void TSInfPkSndL2UeStats(pst, suId, stats)
  Pst               *pst;
  SuId              suId;
  TSInfL2UeStats     *stats;
@@ -599,7 +592,6 @@ PUBLIC Void TSInfPkSndL2UeStats(pst, suId, stats)
 {
    Buffer *mBuf;
 
-   TRC2(TSInfPkSndL2UeStats)
 
    mBuf = TSInfUtlAllocMsg(pst);
    TSInfUtlPackUeInfo(mBuf, stats);
@@ -610,14 +602,14 @@ PUBLIC Void TSInfPkSndL2UeStats(pst, suId, stats)
 }
 
 #ifdef ANSI
-PUBLIC Void TSInfUnpkL2UeStats
+Void TSInfUnpkL2UeStats
 (
  TSInfL2UeStatsInd   func,
  Pst                *pst,
  Buffer             *mBuf
 )
 #else
-PUBLIC Void TSInfUnpkL2UeStats(func, pst, mBuf)
+Void TSInfUnpkL2UeStats(func, pst, mBuf)
  TSInfL2UeStatsInd   func;
  Pst                *pst;
  Buffer             *mBuf;
@@ -626,7 +618,6 @@ PUBLIC Void TSInfUnpkL2UeStats(func, pst, mBuf)
    SuId              suId;
    TSInfL2UeStats     stats; 
 
-   TRC2(TSInfUnpkL2UeStats)
 
    SUnpkS16(&suId, mBuf);
    TSInfUtlUnpkUeInfo(mBuf, &stats);
@@ -636,14 +627,14 @@ PUBLIC Void TSInfUnpkL2UeStats(func, pst, mBuf)
 }
 
 #ifdef ANSI
-PUBLIC Void TSInfPkSndL2CellStats
+Void TSInfPkSndL2CellStats
 (
  Pst                 *pst,
  SuId                suId,
  TSInfL2CellStats   *stats 
 )
 #else
-PUBLIC Void TSInfPkSndL2CellStats(pst, suId, stats)
+Void TSInfPkSndL2CellStats(pst, suId, stats)
  Pst                 *pst;
  SuId                suId;
  TSInfL2Cellstats   *stats;
@@ -651,7 +642,6 @@ PUBLIC Void TSInfPkSndL2CellStats(pst, suId, stats)
 {
    Buffer *mBuf;
 
-   TRC2(TSInfPkSndL2CellStats)
 
    mBuf = TSInfUtlAllocMsg(pst);
    TSInfUtlPackCellInfo(mBuf, stats);
@@ -662,14 +652,14 @@ PUBLIC Void TSInfPkSndL2CellStats(pst, suId, stats)
 }
 
 #ifdef ANSI
-PUBLIC Void TSInfUnpkL2CellStats
+Void TSInfUnpkL2CellStats
 (
  TSInfL2CellStatsInd   func,
  Pst                *pst,
  Buffer             *mBuf
 )
 #else
-PUBLIC Void TSInfUnpkL2CellStats(func, pst, mBuf)
+Void TSInfUnpkL2CellStats(func, pst, mBuf)
  TSInfL2CellStatsInd   func;
  Pst                *pst;
  Buffer             *mBuf;
@@ -678,7 +668,6 @@ PUBLIC Void TSInfUnpkL2CellStats(func, pst, mBuf)
    SuId                suId;
    TSInfL2CellStats    stats; 
 
-   TRC2(TSInfUnpkL2CellStats)
 
    SUnpkS16(&suId, mBuf);
    TSInfUtlUnpkCellInfo(mBuf, &stats);