Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Aug 2003 15:39:51 -0700 (PDT)
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 36228 for review
Message-ID:  <200308152239.h7FMdpjm096745@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=36228

Change 36228 by sam@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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308152239.h7FMdpjm096745>