From b3d5ee2934f930e611cd4447b90dce6723340062 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 13 Nov 2013 16:43:26 +0100 Subject: bts: Count the number of llc frames that were "scheduled" to be sent This does not mean that they have been successfully transferred to the SGSN/MS but at least that they have reached a certain point in the message flow. --- src/bts.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/bts.h') diff --git a/src/bts.h b/src/bts.h index 5a55ed08..7aa150b0 100644 --- a/src/bts.h +++ b/src/bts.h @@ -164,6 +164,7 @@ public: CTR_SBA_TIMEDOUT, CTR_LLC_FRAME_TIMEDOUT, CTR_LLC_FRAME_DROPPED, + CTR_LLC_FRAME_SCHED, CTR_RACH_REQUESTS, }; @@ -207,8 +208,9 @@ public: void sba_allocated(); void sba_freed(); void sba_timedout(); - void timedout_frame(); - void dropped_frame(); + void llc_timedout_frame(); + void llc_dropped_frame(); + void llc_frame_sched(); void rach_frame(); /* @@ -269,8 +271,9 @@ CREATE_COUNT_INLINE(decode_error, CTR_DECODE_ERRORS) CREATE_COUNT_INLINE(sba_allocated, CTR_SBA_ALLOCATED) CREATE_COUNT_INLINE(sba_freed, CTR_SBA_FREED) CREATE_COUNT_INLINE(sba_timedout, CTR_SBA_TIMEDOUT) -CREATE_COUNT_INLINE(timedout_frame, CTR_LLC_FRAME_TIMEDOUT); -CREATE_COUNT_INLINE(dropped_frame, CTR_LLC_FRAME_DROPPED); +CREATE_COUNT_INLINE(llc_timedout_frame, CTR_LLC_FRAME_TIMEDOUT); +CREATE_COUNT_INLINE(llc_dropped_frame, CTR_LLC_FRAME_DROPPED); +CREATE_COUNT_INLINE(llc_frame_sched, CTR_LLC_FRAME_SCHED); CREATE_COUNT_INLINE(rach_frame, CTR_RACH_REQUESTS); #undef CREATE_COUNT_INLINE -- cgit v1.2.3