Date: Fri, 22 Nov 2019 18:18:36 +0000 (UTC) From: Scott Long <scottl@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r355009 - head/sys/cam/scsi Message-ID: <201911221818.xAMIIaBq044329@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911221818.xAMIIaBq044329>