Display more information for beacon miss debugging.

PR:		kern/197143
Submitted by:	Andriy Voskoboinyk <s3erios@gmail.com>
This commit is contained in:
Adrian Chadd 2015-05-03 23:25:33 +00:00
parent 5c0159195d
commit cf990903c7

View File

@ -2126,8 +2126,9 @@ wpi_notif_intr(struct wpi_softc *sc)
threshold = MAX(2, vap->iv_bmissthreshold);
DPRINTF(sc, WPI_DEBUG_BMISS,
"%s: beacons missed %d/%d\n", __func__, misses,
le32toh(miss->total));
"%s: beacons missed %u(%u) (received %u/%u)\n",
__func__, misses, le32toh(miss->total), received,
expected);
if (vap->iv_state == IEEE80211_S_RUN &&
(ic->ic_flags & IEEE80211_F_SCAN) == 0 &&