PERFORCE change 36228 for review

Sam Leffler sam at FreeBSD.org
Fri Aug 15 15:39:54 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=36228

Change 36228 by sam at sam_ebb on 2003/08/15 15:39:22

	Release the softc lock around ieee80211_input to avoid LOR's.
	This is consistent with other drivers but suboptimal.

Affected files ...

.. //depot/projects/netperf/sys/dev/wi/if_wi.c#5 edit

Differences ...

==== //depot/projects/netperf/sys/dev/wi/if_wi.c#5 (text+ko) ====

@@ -1530,7 +1530,9 @@
 	/*
 	 * Send frame up for processing.
 	 */
+	WI_UNLOCK(sc);
 	ieee80211_input(ifp, m, ni, rssi, rstamp);
+	WI_LOCK(sc);
 	/*
 	 * The frame may have caused the node to be marked for
 	 * reclamation (e.g. in response to a DEAUTH message)


More information about the p4-projects mailing list