Date: Wed, 15 Dec 2004 19:21:01 GMT From: Sam Leffler <sam@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 67138 for review Message-ID: <200412151921.iBFJL1VP068336@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=67138 Change 67138 by sam@sam_ebb on 2004/12/15 19:20:51 for parts that require split keycache entries report the the index of the first entry on a mic error so we're consistent with parts that don't have split keycache Affected files ... .. //depot/projects/wifi/sys/dev/ath/if_ath.c#43 edit Differences ... ==== //depot/projects/wifi/sys/dev/ath/if_ath.c#43 (text+ko) ==== @@ -2608,7 +2608,10 @@ BUS_DMASYNC_POSTREAD); ieee80211_notify_michael_failure(ic, mtod(m, struct ieee80211_frame *), - ds->ds_rxstat.rs_keyix); + sc->sc_splitmic ? + ds->ds_rxstat.rs_keyix-32 : + ds->ds_rxstat.rs_keyix + ); } } ifp->if_ierrors++;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200412151921.iBFJL1VP068336>