From 5f6386937200d9780407c93d10f6fdaae7e6e65c Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Sun, 29 Mar 2015 21:45:48 +0000 Subject: [PATCH] Add a new field to HAL_ANISTATS - the extension channel busy count. This is only used by the AR9300 HAL for now - but just be careful if you decide to recompile the kernel with NO_CLEAN=1. --- sys/dev/ath/ath_hal/ah.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/ath/ath_hal/ah.h b/sys/dev/ath/ath_hal/ah.h index 67881a321b0..db8b45fd4c0 100644 --- a/sys/dev/ath/ath_hal/ah.h +++ b/sys/dev/ath/ath_hal/ah.h @@ -540,6 +540,7 @@ typedef enum { typedef struct { u_int32_t cyclecnt_diff; /* delta cycle count */ u_int32_t rxclr_cnt; /* rx clear count */ + u_int32_t extrxclr_cnt; /* ext chan rx clear count */ u_int32_t txframecnt_diff; /* delta tx frame count */ u_int32_t rxframecnt_diff; /* delta rx frame count */ u_int32_t listen_time; /* listen time in msec - time for which ch is free */ -- 2.45.2