Re: [ath5k-devel] [PATCH 2/2] ath5k: capture CCK and OFDM restarts

2014-06-23 Thread Mathy Vanhoef
wrote: > On 2014-06-13 16:14, Mathy Vanhoef wrote: > [snip] >> Just saw a spelling mistake in the comment, s/Threat/Treat. > > One more mistake in the comment. > > Change the word "of" to "or": > > > ...underwent a CCK of OFDM reset... >

Re: [ath5k-devel] [PATCH 2/2] ath5k: capture CCK and OFDM restarts

2014-06-13 Thread Mathy Vanhoef
On 14/06/2014 0:07, Felix Fietkau wrote: > On 2014-06-13 23:41, Mathy Vanhoef wrote: >> Hi all, >> >> This patch allows users to see CCK and OFDM restarts when FIF_FCSFAIL is set. >> Without this patch only the stronger frame (causing the restart) would be >>

[ath5k-devel] [PATCH 2/2] ath5k: capture CCK and OFDM restarts

2014-06-13 Thread Mathy Vanhoef
with bad CRC! -- From: "Mathy Vanhoef" Treat frames that underwent a CCK or OFDM restart as frames with an invalid CRC. Signed-off-by: Mathy Vanhoef --- drivers/net/wireless/ath/ath5k/base.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/drivers/net/wi

[ath5k-devel] [PATCH 1/2] ath5k: support for FIF_FCSFAIL filter

2014-06-13 Thread Mathy Vanhoef
Hi all, Currently ath5k can't report frames with CRC errors. In ath5k_configure_filter it actually sets the hardware filter properly when the FIF_FCSFAIL flag is set. However, in other functions the necessary checks weren't being done. This patch fixes that. -- From: "Mathy Vanh