Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Aug 2003 10:02:56 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 36359 for review
Message-ID:  <200308181702.h7IH2uK6010292@repoman.freebsd.org>

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

Change 36359 by rwatson@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);
 		



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