PERFORCE change 97232 for review

Scott Long scottl at FreeBSD.org
Tue May 16 04:44:28 UTC 2006


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

Change 97232 by scottl at scottl-x64 on 2006/05/16 04:43:57

	Remove the GIANT_REQUIRED marking from some trivial functions.

Affected files ...

.. //depot/projects/scottl-camlock/src/sys/cam/cam_xpt.c#26 edit

Differences ...

==== //depot/projects/scottl-camlock/src/sys/cam/cam_xpt.c#26 (text+ko) ====

@@ -4972,8 +4972,6 @@
 {
 	union ccb *new_ccb;
 
-	GIANT_REQUIRED;
-
 	new_ccb = malloc(sizeof(*new_ccb), M_CAMXPT, M_WAITOK);
 	return (new_ccb);
 }
@@ -4983,8 +4981,6 @@
 {
 	union ccb *new_ccb;
 
-	GIANT_REQUIRED;
-
 	new_ccb = malloc(sizeof(*new_ccb), M_CAMXPT, M_NOWAIT);
 	return (new_ccb);
 }


More information about the p4-projects mailing list