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:
trasz 2013-04-04 18:00:18 +00:00
parent b4c33f6473
commit ffaf630014

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;