svn commit: r282390 - head/sys/dev/wpi
Adrian Chadd
adrian at FreeBSD.org
Sun May 3 23:25:34 UTC 2015
Author: adrian
Date: Sun May 3 23:25:33 2015
New Revision: 282390
URL: https://svnweb.freebsd.org/changeset/base/282390
Log:
Display more information for beacon miss debugging.
PR: kern/197143
Submitted by: Andriy Voskoboinyk <s3erios at gmail.com>
Modified:
head/sys/dev/wpi/if_wpi.c
Modified: head/sys/dev/wpi/if_wpi.c
==============================================================================
--- head/sys/dev/wpi/if_wpi.c Sun May 3 23:24:20 2015 (r282389)
+++ head/sys/dev/wpi/if_wpi.c Sun May 3 23:25:33 2015 (r282390)
@@ -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 &&
More information about the svn-src-all
mailing list