PERFORCE change 36359 for review
Robert Watson
rwatson at FreeBSD.org
Mon Aug 18 17:02:56 GMT 2003
http://perforce.freebsd.org/chv.cgi?CH=36359
Change 36359 by rwatson at rwatson_tislabs on 2003/08/18 10:02:19
Integrate backout of fine-grained locking for specfs, which might
be the cause of SEBSD install-time panics.
Affected files ...
.. //depot/projects/trustedbsd/sebsd/sys/fs/specfs/spec_vnops.c#3 integrate
Differences ...
==== //depot/projects/trustedbsd/sebsd/sys/fs/specfs/spec_vnops.c#3 (text+ko) ====
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
- * $FreeBSD: src/sys/fs/specfs/spec_vnops.c,v 1.205 2003/06/19 17:56:12 alc Exp $
+ * $FreeBSD: src/sys/fs/specfs/spec_vnops.c,v 1.207 2003/08/06 06:49:18 phk Exp $
*/
#include <sys/param.h>
@@ -505,9 +505,9 @@
devtoname(bp->b_dev), bp));
if (dsw->d_flags & D_NOGIANT) {
- DROP_GIANT();
+ /* XXX: notyet DROP_GIANT(); */
DEV_STRATEGY(bp);
- PICKUP_GIANT();
+ /* XXX: notyet PICKUP_GIANT(); */
} else
DEV_STRATEGY(bp);
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list