svn commit: r256212 - stable/9/sys/cam/ctl
Alexander Motin
mav at FreeBSD.org
Wed Oct 9 18:44:05 UTC 2013
Author: mav
Date: Wed Oct 9 18:44:05 2013
New Revision: 256212
URL: http://svnweb.freebsd.org/changeset/base/256212
Log:
MFC r249102 (by trasz):
Since the CTL version in FreeBSD does not support High Availability,
ctl_is_single should always be set to 1. Make it so. Previously
it was always 0, because ctl_isc_start() never got to run.
Modified:
stable/9/sys/cam/ctl/ctl.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/cam/ctl/ctl.c
==============================================================================
--- stable/9/sys/cam/ctl/ctl.c Wed Oct 9 18:43:29 2013 (r256211)
+++ stable/9/sys/cam/ctl/ctl.c Wed Oct 9 18:44:05 2013 (r256212)
@@ -316,7 +316,7 @@ static struct scsi_control_page control_
static int rcv_sync_msg;
static int persis_offset;
static uint8_t ctl_pause_rtr;
-static int ctl_is_single;
+static int ctl_is_single = 1;
static int index_to_aps_page;
int ctl_disable = 0;
More information about the svn-src-stable-9
mailing list