|
@@ -162,7 +162,6 @@ static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd);
|
|
|
static int qla4xxx_eh_target_reset(struct scsi_cmnd *cmd);
|
|
|
static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd);
|
|
|
static int qla4xxx_slave_alloc(struct scsi_device *device);
|
|
|
-static int qla4xxx_slave_configure(struct scsi_device *device);
|
|
|
static umode_t qla4_attr_is_visible(int param_type, int param);
|
|
|
static int qla4xxx_host_reset(struct Scsi_Host *shost, int reset_type);
|
|
|
static int qla4xxx_change_queue_depth(struct scsi_device *sdev, int qdepth,
|
|
@@ -203,7 +202,6 @@ static struct scsi_host_template qla4xxx_driver_template = {
|
|
|
.eh_host_reset_handler = qla4xxx_eh_host_reset,
|
|
|
.eh_timed_out = qla4xxx_eh_cmd_timed_out,
|
|
|
|
|
|
- .slave_configure = qla4xxx_slave_configure,
|
|
|
.slave_alloc = qla4xxx_slave_alloc,
|
|
|
.change_queue_depth = qla4xxx_change_queue_depth,
|
|
|
|
|
@@ -9059,7 +9057,6 @@ static int qla4xxx_slave_alloc(struct scsi_device *sdev)
|
|
|
ddb = sess->dd_data;
|
|
|
|
|
|
sdev->hostdata = ddb;
|
|
|
- sdev->tagged_supported = 1;
|
|
|
|
|
|
if (ql4xmaxqdepth != 0 && ql4xmaxqdepth <= 0xffffU)
|
|
|
queue_depth = ql4xmaxqdepth;
|
|
@@ -9068,12 +9065,6 @@ static int qla4xxx_slave_alloc(struct scsi_device *sdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int qla4xxx_slave_configure(struct scsi_device *sdev)
|
|
|
-{
|
|
|
- sdev->tagged_supported = 1;
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
static int qla4xxx_change_queue_depth(struct scsi_device *sdev, int qdepth,
|
|
|
int reason)
|
|
|
{
|