View | Details | Raw Unified | Return to bug 197143 | Differences between
and this patch

Collapse All | Expand All

(-)sys/dev/wpi/if_wpi.c (-2 / +3 lines)
Lines 2126-2133 Link Here
2126
			threshold = MAX(2, vap->iv_bmissthreshold);
2126
			threshold = MAX(2, vap->iv_bmissthreshold);
2127
2127
2128
			DPRINTF(sc, WPI_DEBUG_BMISS,
2128
			DPRINTF(sc, WPI_DEBUG_BMISS,
2129
			    "%s: beacons missed %d/%d\n", __func__, misses,
2129
			    "%s: beacons missed %u(%u) (received %u/%u)\n",
2130
			    le32toh(miss->total));
2130
			    __func__, misses, le32toh(miss->total), received,
2131
			    expected);
2131
2132
2132
			if (vap->iv_state == IEEE80211_S_RUN &&
2133
			if (vap->iv_state == IEEE80211_S_RUN &&
2133
			    (ic->ic_flags & IEEE80211_F_SCAN) == 0 &&
2134
			    (ic->ic_flags & IEEE80211_F_SCAN) == 0 &&

Return to bug 197143