Date: Tue, 16 May 2006 04:44:12 GMT From: Scott Long <scottl@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 97232 for review Message-ID: <200605160444.k4G4iCwZ083610@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=97232 Change 97232 by scottl@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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605160444.k4G4iCwZ083610>