Re: [PATCH v2] rt2x00: Fix MMIC Countermeasures.

2017-08-07 Thread Michael Skeffington
Sorry about that, I work on other projects that use spaces and I must have missed that when double checking the patch. I sent out a new patch with the correct line length, removal of trailing '.' and indentation fix. On Mon, Aug 7, 2017 at 2:31 AM, Stanislaw Gruszka wrote: > On Thu, Aug 03, 2017

Re: [PATCH v2] rt2x00: Fix MMIC Countermeasures.

2017-08-06 Thread Stanislaw Gruszka
On Thu, Aug 03, 2017 at 11:31:21AM -0400, Michael Skeffingfon wrote: > @@ -136,10 +136,19 @@ void rt2800mmio_fill_rxdone(struct queue_entry *entry, >*/ > rxdesc->flags |= RX_FLAG_MMIC_STRIPPED; > > - if (rxdesc->cipher_status == RX_CRYPTO_SUCCESS) > +

Re: [PATCH v2] rt2x00: Fix MMIC Countermeasures.

2017-08-03 Thread Kalle Valo
Michael Skeffingfon writes: > From: Michael Skeffington > > Set RX_FLAG_DECRYPTED in case of MMIC failure so that > ieee80211_rx_h_decrypt() doesnt drop the frame before getting to > ieee80211_rx_h_michael_mic_verify(). > > Signed-off-by: Michael Skeffington The commit log is not wrapped to

[PATCH v2] rt2x00: Fix MMIC Countermeasures.

2017-08-03 Thread Michael Skeffingfon
From: Michael Skeffington Set RX_FLAG_DECRYPTED in case of MMIC failure so that ieee80211_rx_h_decrypt() doesnt drop the frame before getting to ieee80211_rx_h_michael_mic_verify(). Signed-off-by: Michael Skeffington --- drivers/net/wireless/ralink/rt2x00/rt2800mmio.c | 13 +++-- dri