svn commit: r260958 - stable/10/sys/cam/scsi

Alexander Motin mav at FreeBSD.org
Mon Jan 20 23:56:49 UTC 2014


Author: mav
Date: Mon Jan 20 23:56:49 2014
New Revision: 260958
URL: http://svnweb.freebsd.org/changeset/base/260958

Log:
  MFC r260407:
  Allow delete_method sysctl to be set to "DISABLE".

Modified:
  stable/10/sys/cam/scsi/scsi_da.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/cam/scsi/scsi_da.c
==============================================================================
--- stable/10/sys/cam/scsi/scsi_da.c	Mon Jan 20 23:52:28 2014	(r260957)
+++ stable/10/sys/cam/scsi/scsi_da.c	Mon Jan 20 23:56:49 2014	(r260958)
@@ -1959,7 +1959,7 @@ dadeletemethodsysctl(SYSCTL_HANDLER_ARGS
 	char buf[16];
 	const char *p;
 	struct da_softc *softc;
-	int i, error, value;
+	int i, error, methods, value;
 
 	softc = (struct da_softc *)arg1;
 
@@ -1972,8 +1972,9 @@ dadeletemethodsysctl(SYSCTL_HANDLER_ARGS
 	error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
 	if (error != 0 || req->newptr == NULL)
 		return (error);
+	methods = softc->delete_available | (1 << DA_DELETE_DISABLE);
 	for (i = 0; i <= DA_DELETE_MAX; i++) {
-		if (!(softc->delete_available & (1 << i)) ||
+		if (!(methods & (1 << i)) ||
 		    strcmp(buf, da_delete_method_names[i]) != 0)
 			continue;
 		dadeletemethodset(softc, i);


More information about the svn-src-all mailing list