[Task-ID: ODUHIGH-485] Memory Leak Detector Tool
[o-du/l2.git] / src / cm / cm_tenb_stats.c
index 29cc975..244bff9 100755 (executable)
@@ -50,7 +50,7 @@
 #include "cm_lte.h"             /* Common LTE header file */
 #include "cm_llist.h"           /* Linked list header file */
 #include "cm_tkns.h"            /* Common tokens header file */
-
+#include "du_log.h"
 
 /* header/extern include files (.x) */
 
 #include "cm_tenb_stats.x"    /* Total EnodeB Stats declarations */
 
 #ifdef TENB_STATS
-PRIVATE Void TSInfUtlPackUeInfo ARGS((
+static Void TSInfUtlPackUeInfo ARGS((
  Buffer            *mBuf,
  TSInfL2UeStats     *stats 
 ));
-PRIVATE Void TSInfUtlPackCellInfo ARGS((
+static Void TSInfUtlPackCellInfo ARGS((
  Buffer              *mBuf,
  TSInfL2CellStats     *stats 
 ));
-PRIVATE Void TSInfUtlUnpkUeInfo ARGS((
+static Void TSInfUtlUnpkUeInfo ARGS((
  Buffer            *mBuf,
  TSInfL2UeStats     *stats 
 ));
-PRIVATE Void TSInfUtlUnpkCellInfo ARGS((
+static Void TSInfUtlUnpkCellInfo ARGS((
  Buffer              *mBuf,
  TSInfL2CellStats     *stats
 ));
-PRIVATE Buffer* TSInfUtlAllocMsg ARGS((
+static Buffer* TSInfUtlAllocMsg ARGS((
  Pst   *pst
 ));
  
@@ -100,17 +100,7 @@ PRIVATE Buffer* TSInfUtlAllocMsg ARGS((
 *
 *
 */
-#ifdef ANSI
-PRIVATE Void TSInfTrigL2Stats
-(
- Region    region,
- Pool      pool
-)
-#else
-PRIVATE Void TSInfTrigL2Stats(region, pool)
- Region    region;
- Pool      pool;
-#endif
+static Void TSInfTrigL2Stats(Region region,Pool pool)
 {
    Buffer* pBuf;
    Pst pst = {0};
@@ -143,17 +133,7 @@ PRIVATE Void TSInfTrigL2Stats(region, pool)
 *
 *
 */
-#ifdef ANSI
-Void TSInfTrigStats
-(
- Region    region,
- Pool      pool
-)
-#else
-Void TSInfTrigStats(region, pool)
- Region    region;
- Pool      pool;
-#endif
+Void TSInfTrigStats(Region region,Pool pool)
 {
 //TODO
    TSInfTrigL2Stats(region, pool);
@@ -162,36 +142,18 @@ Void TSInfTrigStats(region, pool)
 }
 
          
-#ifdef ANSI
-PRIVATE Buffer* TSInfUtlAllocMsg
-(
- Pst   *pst
-)
-#else
-PRIVATE Buffer* TSInfUtlAllocMsg(pst)
- Pst   *pst;
-#endif
+static Buffer* TSInfUtlAllocMsg(Pst   *pst)
 {
    Buffer *mBuf; 
 
 
    if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) {
-      printf("\n MBuf Allocation failed\n");
+      DU_LOG("\nERROR  -->  RLC : MBuf Allocation failed\n");
    }
    return (mBuf);
 }
 
-#ifdef ANSI
-PRIVATE Void TSInfUtlPackUeInfo
-(
- Buffer            *mBuf,
- TSInfL2UeStats     *stats
-)
-#else
-PRIVATE Void TSInfUtlPackUeInfo(mBuf, stats)
- Buffer            *mBuf;
- TSInfL2UeStats     *stats; 
-#endif
+static Void TSInfUtlPackUeInfo(Buffer *mBuf,TSInfL2UeStats *stats)
 {
    S32 i;
    uint32_t k;
@@ -262,17 +224,7 @@ PRIVATE Void TSInfUtlPackUeInfo(mBuf, stats)
    return;
 }
 
-#ifdef ANSI
-PRIVATE Void TSInfUtlPackCellInfo
-(
- Buffer              *mBuf,
- TSInfL2CellStats     *stats  
-)
-#else
-PRIVATE Void TSInfUtlPackCellInfo(mBuf, stats)
- Buffer              *mBuf;
- TSInfL2CellStats     *stats; 
-#endif
+static Void TSInfUtlPackCellInfo(Buffer *mBuf,TSInfL2CellStats *stats  )
 {
    S32 i,j;
 
@@ -378,17 +330,7 @@ PRIVATE Void TSInfUtlPackCellInfo(mBuf, stats)
    return;
 }
 
-#ifdef ANSI
-PRIVATE Void TSInfUtlUnpkUeInfo
-(
- Buffer            *mBuf,
- TSInfL2UeStats     *stats 
-)
-#else
-PRIVATE Void TSInfUtlUnpkUeInfo(mBuf, stats)
- Buffer            *mBuf;
- TSInfL2UeStats     *stats; 
-#endif
+static Void TSInfUtlUnpkUeInfo(Buffer *mBuf, TSInfL2UeStats *stats )
 {
    S32 i;
    uint32_t k;
@@ -460,17 +402,7 @@ PRIVATE Void TSInfUtlUnpkUeInfo(mBuf, stats)
    return;
 }
 
-#ifdef ANSI
-PRIVATE Void TSInfUtlUnpkCellInfo
-(
- Buffer              *mBuf,
- TSInfL2CellStats     *stats 
-)
-#else
-PRIVATE Void TSInfUtlUnpkCellInfo(mBuf, stats)
- Buffer              *mBuf;
- TSInfL2CellStats     *stats; 
-#endif
+static Void TSInfUtlUnpkCellInfo(Buffer *mBuf,TSInfL2CellStats *stats )
 {
    S32 i,j;
 
@@ -576,19 +508,7 @@ PRIVATE Void TSInfUtlUnpkCellInfo(mBuf, stats)
    return;
 }
 
-#ifdef ANSI
-Void TSInfPkSndL2UeStats
-(
- Pst               *pst,
- SuId              suId,
- TSInfL2UeStats     *stats  
-)
-#else
-Void TSInfPkSndL2UeStats(pst, suId, stats)
- Pst               *pst;
- SuId              suId;
- TSInfL2UeStats     *stats;
-#endif
+Void TSInfPkSndL2UeStats(Pst  *pst,SuId suId,TSInfL2UeStats *stats)
 {
    Buffer *mBuf;
 
@@ -601,24 +521,11 @@ Void TSInfPkSndL2UeStats(pst, suId, stats)
    return;
 }
 
-#ifdef ANSI
-Void TSInfUnpkL2UeStats
-(
- TSInfL2UeStatsInd   func,
- Pst                *pst,
- Buffer             *mBuf
-)
-#else
-Void TSInfUnpkL2UeStats(func, pst, mBuf)
- TSInfL2UeStatsInd   func;
- Pst                *pst;
- Buffer             *mBuf;
-#endif
+Void TSInfUnpkL2UeStats(TSInfL2UeStatsInd func, Pst  *pst,Buffer *mBuf)
 {
    SuId              suId;
    TSInfL2UeStats     stats; 
 
-
    SUnpkS16(&suId, mBuf);
    TSInfUtlUnpkUeInfo(mBuf, &stats);
    SPutMsg(mBuf);
@@ -626,23 +533,10 @@ Void TSInfUnpkL2UeStats(func, pst, mBuf)
    return;
 }
 
-#ifdef ANSI
-Void TSInfPkSndL2CellStats
-(
- Pst                 *pst,
- SuId                suId,
- TSInfL2CellStats   *stats 
-)
-#else
-Void TSInfPkSndL2CellStats(pst, suId, stats)
- Pst                 *pst;
- SuId                suId;
- TSInfL2Cellstats   *stats;
-#endif
+Void TSInfPkSndL2CellStats(Pst *pst,SuId suId,TSInfL2CellStats   *stats )
 {
    Buffer *mBuf;
 
-
    mBuf = TSInfUtlAllocMsg(pst);
    TSInfUtlPackCellInfo(mBuf, stats);
    SPkS16(suId, mBuf);
@@ -651,19 +545,7 @@ Void TSInfPkSndL2CellStats(pst, suId, stats)
    return;
 }
 
-#ifdef ANSI
-Void TSInfUnpkL2CellStats
-(
- TSInfL2CellStatsInd   func,
- Pst                *pst,
- Buffer             *mBuf
-)
-#else
-Void TSInfUnpkL2CellStats(func, pst, mBuf)
- TSInfL2CellStatsInd   func;
- Pst                *pst;
- Buffer             *mBuf;
-#endif
+Void TSInfUnpkL2CellStats(TSInfL2CellStatsInd func,Pst  *pst,Buffer *mBuf)
 {
    SuId                suId;
    TSInfL2CellStats    stats;