rlc: Count nacked frames in the statistics too
diff --git a/src/bts.h b/src/bts.h
index 178be3d..a28d6be 100644
--- a/src/bts.h
+++ b/src/bts.h
@@ -161,6 +161,7 @@
 		CTR_RLC_SENT,
 		CTR_RLC_RESENT,
 		CTR_RLC_STALLED,
+		CTR_RLC_NACKED,
 		CTR_DECODE_ERRORS,
 		CTR_SBA_ALLOCATED,
 		CTR_SBA_FREED,
@@ -210,6 +211,7 @@
 	void rlc_sent();
 	void rlc_resent();
 	void rlc_stalled();
+	void rlc_nacked();
 	void decode_error();
 	void sba_allocated();
 	void sba_freed();
@@ -276,6 +278,7 @@
 CREATE_COUNT_INLINE(rlc_sent, CTR_RLC_SENT)
 CREATE_COUNT_INLINE(rlc_resent, CTR_RLC_RESENT)
 CREATE_COUNT_INLINE(rlc_stalled, CTR_RLC_STALLED)
+CREATE_COUNT_INLINE(rlc_nacked, CTR_RLC_NACKED)
 CREATE_COUNT_INLINE(decode_error, CTR_DECODE_ERRORS)
 CREATE_COUNT_INLINE(sba_allocated, CTR_SBA_ALLOCATED)
 CREATE_COUNT_INLINE(sba_freed, CTR_SBA_FREED)