svn commit: r355009 - head/sys/cam/scsi

Scott Long scottl at FreeBSD.org
Fri Nov 22 18:18:37 UTC 2019


Author: scottl
Date: Fri Nov 22 18:18:36 2019
New Revision: 355009
URL: https://svnweb.freebsd.org/changeset/base/355009

Log:
  Remove NEEDGIANT from the scsi_sg /dev node.  It likely has not been
  needed for many years.
  
  Reported by:	imp

Modified:
  head/sys/cam/scsi/scsi_sg.c

Modified: head/sys/cam/scsi/scsi_sg.c
==============================================================================
--- head/sys/cam/scsi/scsi_sg.c	Fri Nov 22 17:13:02 2019	(r355008)
+++ head/sys/cam/scsi/scsi_sg.c	Fri Nov 22 18:18:36 2019	(r355009)
@@ -142,7 +142,7 @@ PERIPHDRIVER_DECLARE(sg, sgdriver);
 
 static struct cdevsw sg_cdevsw = {
 	.d_version =	D_VERSION,
-	.d_flags =	D_NEEDGIANT | D_TRACKCLOSE,
+	.d_flags =	D_TRACKCLOSE,
 	.d_open =	sgopen,
 	.d_close =	sgclose,
 	.d_ioctl =	sgioctl,


More information about the svn-src-all mailing list