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.

Suggested by:	ken
This commit is contained in:
Edward Tomasz Napierala 2013-04-04 18:00:18 +00:00
parent 4373522abf
commit 7aba111672
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249102

View File

@ -318,7 +318,7 @@ static struct scsi_control_page control_page_changeable = {
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;
#ifdef CTL_DISABLE
int ctl_disable = 1;