Commit bdf79621 authored by 's avatar Committed by James Bottomley

[PATCH] qla2xxx: remove lun discovery codes...

Remove internal lun discovery routines and support
structures.
Signed-off-by: default avatarAndrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 8482e118
...@@ -227,12 +227,17 @@ qla2x00_get_starget_node_name(struct scsi_target *starget) ...@@ -227,12 +227,17 @@ qla2x00_get_starget_node_name(struct scsi_target *starget)
{ {
struct Scsi_Host *host = dev_to_shost(starget->dev.parent); struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
scsi_qla_host_t *ha = to_qla_host(host); scsi_qla_host_t *ha = to_qla_host(host);
os_tgt_t *tq = (os_tgt_t *) TGT_Q(ha, starget->id); fc_port_t *fcport;
uint64_t node_name = 0; uint64_t node_name = 0;
if (tq->fcport) list_for_each_entry(fcport, &ha->fcports, list) {
node_name = be64_to_cpu(*(uint64_t *)tq->fcport->node_name); if (starget->id == fcport->os_target_id) {
fc_starget_node_name(starget) = node_name; node_name = *(uint64_t *)fcport->node_name;
break;
}
}
fc_starget_node_name(starget) = be64_to_cpu(node_name);
} }
static void static void
...@@ -240,12 +245,17 @@ qla2x00_get_starget_port_name(struct scsi_target *starget) ...@@ -240,12 +245,17 @@ qla2x00_get_starget_port_name(struct scsi_target *starget)
{ {
struct Scsi_Host *host = dev_to_shost(starget->dev.parent); struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
scsi_qla_host_t *ha = to_qla_host(host); scsi_qla_host_t *ha = to_qla_host(host);
os_tgt_t *tq = (os_tgt_t *) TGT_Q(ha, starget->id); fc_port_t *fcport;
uint64_t port_name = 0; uint64_t port_name = 0;
if (tq->fcport) list_for_each_entry(fcport, &ha->fcports, list) {
port_name = be64_to_cpu(*(uint64_t *)tq->fcport->port_name); if (starget->id == fcport->os_target_id) {
fc_starget_port_name(starget) = port_name; port_name = *(uint64_t *)fcport->port_name;
break;
}
}
fc_starget_port_name(starget) = be64_to_cpu(port_name);
} }
static void static void
...@@ -253,20 +263,25 @@ qla2x00_get_starget_port_id(struct scsi_target *starget) ...@@ -253,20 +263,25 @@ qla2x00_get_starget_port_id(struct scsi_target *starget)
{ {
struct Scsi_Host *host = dev_to_shost(starget->dev.parent); struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
scsi_qla_host_t *ha = to_qla_host(host); scsi_qla_host_t *ha = to_qla_host(host);
os_tgt_t *tq = (os_tgt_t *) TGT_Q(ha, starget->id); fc_port_t *fcport;
uint32_t port_id = 0; uint32_t port_id = ~0U;
list_for_each_entry(fcport, &ha->fcports, list) {
if (starget->id == fcport->os_target_id) {
port_id = fcport->d_id.b.domain << 16 |
fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
break;
}
}
if (tq->fcport)
port_id = tq->fcport->d_id.b.domain << 16 |
tq->fcport->d_id.b.area << 8 | tq->fcport->d_id.b.al_pa;
fc_starget_port_id(starget) = port_id; fc_starget_port_id(starget) = port_id;
} }
static void static void
qla2x00_get_rport_loss_tmo(struct fc_rport *rport) qla2x00_get_rport_loss_tmo(struct fc_rport *rport)
{ {
os_tgt_t *tq = rport->dd_data; struct Scsi_Host *host = rport_to_shost(rport);
scsi_qla_host_t *ha = tq->ha; scsi_qla_host_t *ha = to_qla_host(host);
rport->dev_loss_tmo = ha->port_down_retry_count + 5; rport->dev_loss_tmo = ha->port_down_retry_count + 5;
} }
...@@ -274,8 +289,8 @@ qla2x00_get_rport_loss_tmo(struct fc_rport *rport) ...@@ -274,8 +289,8 @@ qla2x00_get_rport_loss_tmo(struct fc_rport *rport)
static void static void
qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout) qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
{ {
os_tgt_t *tq = rport->dd_data; struct Scsi_Host *host = rport_to_shost(rport);
scsi_qla_host_t *ha = tq->ha; scsi_qla_host_t *ha = to_qla_host(host);
if (timeout) if (timeout)
ha->port_down_retry_count = timeout; ha->port_down_retry_count = timeout;
...@@ -292,7 +307,7 @@ static struct fc_function_template qla2xxx_transport_functions = { ...@@ -292,7 +307,7 @@ static struct fc_function_template qla2xxx_transport_functions = {
.get_host_port_id = qla2x00_get_host_port_id, .get_host_port_id = qla2x00_get_host_port_id,
.show_host_port_id = 1, .show_host_port_id = 1,
.dd_fcrport_size = sizeof(os_tgt_t *), .dd_fcrport_size = sizeof(struct fc_port *),
.get_starget_node_name = qla2x00_get_starget_node_name, .get_starget_node_name = qla2x00_get_starget_node_name,
.show_starget_node_name = 1, .show_starget_node_name = 1,
......
...@@ -1065,11 +1065,6 @@ qla2x00_print_scsi_cmd(struct scsi_cmnd * cmd) ...@@ -1065,11 +1065,6 @@ qla2x00_print_scsi_cmd(struct scsi_cmnd * cmd)
printk(" sp flags=0x%x\n", sp->flags); printk(" sp flags=0x%x\n", sp->flags);
printk(" r_start=0x%lx, u_start=0x%lx, f_start=0x%lx, state=%d\n", printk(" r_start=0x%lx, u_start=0x%lx, f_start=0x%lx, state=%d\n",
sp->r_start, sp->u_start, sp->f_start, sp->state); sp->r_start, sp->u_start, sp->f_start, sp->state);
printk(" e_start= 0x%lx, ext_history=%d, fo retry=%d, loopid=%x, "
"port path=%d\n", sp->e_start, sp->ext_history, sp->fo_retry_cnt,
sp->lun_queue->fclun->fcport->loop_id,
sp->lun_queue->fclun->fcport->cur_path);
} }
#if defined(QL_DEBUG_ROUTINES) #if defined(QL_DEBUG_ROUTINES)
......
...@@ -241,6 +241,7 @@ typedef struct srb { ...@@ -241,6 +241,7 @@ typedef struct srb {
struct list_head list; struct list_head list;
struct scsi_qla_host *ha; /* HA the SP is queued on */ struct scsi_qla_host *ha; /* HA the SP is queued on */
struct fc_port *fcport;
struct scsi_cmnd *cmd; /* Linux SCSI command pkt */ struct scsi_cmnd *cmd; /* Linux SCSI command pkt */
...@@ -251,11 +252,6 @@ typedef struct srb { ...@@ -251,11 +252,6 @@ typedef struct srb {
/* Request state */ /* Request state */
uint16_t state; uint16_t state;
/* Target/LUN queue pointers. */
struct os_tgt *tgt_queue; /* ptr to visible ha's target */
struct os_lun *lun_queue; /* ptr to visible ha's lun */
struct fc_lun *fclun; /* FC LUN context pointer. */
/* Timing counts. */ /* Timing counts. */
unsigned long e_start; /* Start of extend timeout */ unsigned long e_start; /* Start of extend timeout */
unsigned long r_start; /* Start of request */ unsigned long r_start; /* Start of request */
...@@ -1602,73 +1598,6 @@ typedef struct { ...@@ -1602,73 +1598,6 @@ typedef struct {
rpt_lun_lst_t list; rpt_lun_lst_t list;
} rpt_lun_cmd_rsp_t; } rpt_lun_cmd_rsp_t;
/*
* SCSI Target Queue structure
*/
typedef struct os_tgt {
struct os_lun *olun[MAX_LUNS]; /* LUN context pointer. */
struct fc_port *fcport;
unsigned long flags;
uint8_t port_down_retry_count;
uint32_t down_timer;
struct scsi_qla_host *ha;
/* Persistent binding information */
port_id_t d_id;
uint8_t node_name[WWN_SIZE];
uint8_t port_name[WWN_SIZE];
} os_tgt_t;
/*
* SCSI Target Queue flags
*/
#define TQF_ONLINE 0 /* Device online to OS. */
#define TQF_SUSPENDED 1
#define TQF_RETRY_CMDS 2
/*
* SCSI LUN Queue structure
*/
typedef struct os_lun {
struct fc_lun *fclun; /* FC LUN context pointer. */
spinlock_t q_lock; /* Lun Lock */
unsigned long q_flag;
#define LUN_MPIO_RESET_CNTS 1 /* Lun */
#define LUN_MPIO_BUSY 2 /* Lun is changing paths */
#define LUN_EXEC_DELAYED 7 /* Lun execution is delayed */
u_long q_timeout; /* total command timeouts */
atomic_t q_timer; /* suspend timer */
uint32_t q_count; /* current count */
uint32_t q_max; /* maxmum count lun can be suspended */
uint8_t q_state; /* lun State */
#define LUN_STATE_READY 1 /* lun is ready for i/o */
#define LUN_STATE_RUN 2 /* lun has a timer running */
#define LUN_STATE_WAIT 3 /* lun is suspended */
#define LUN_STATE_TIMEOUT 4 /* lun has timed out */
u_long io_cnt; /* total xfer count since boot */
u_long out_cnt; /* total outstanding IO count */
u_long w_cnt; /* total writes */
u_long r_cnt; /* total reads */
u_long avg_time; /* */
} os_lun_t;
/* LUN BitMask structure definition, array of 32bit words,
* 1 bit per lun. When bit == 1, the lun is masked.
* Most significant bit of mask[0] is lun 0, bit 24 is lun 7.
*/
typedef struct lun_bit_mask {
/* Must allocate at least enough bits to accomodate all LUNs */
#if ((MAX_FIBRE_LUNS & 0x7) == 0)
uint8_t mask[MAX_FIBRE_LUNS >> 3];
#else
uint8_t mask[(MAX_FIBRE_LUNS + 8) >> 3];
#endif
} lun_bit_mask_t;
/* /*
* Fibre channel port type. * Fibre channel port type.
*/ */
...@@ -1686,8 +1615,6 @@ typedef struct lun_bit_mask { ...@@ -1686,8 +1615,6 @@ typedef struct lun_bit_mask {
*/ */
typedef struct fc_port { typedef struct fc_port {
struct list_head list; struct list_head list;
struct list_head fcluns;
struct scsi_qla_host *ha; struct scsi_qla_host *ha;
struct scsi_qla_host *vis_ha; /* only used when suspending lun */ struct scsi_qla_host *vis_ha; /* only used when suspending lun */
...@@ -1702,8 +1629,7 @@ typedef struct fc_port { ...@@ -1702,8 +1629,7 @@ typedef struct fc_port {
atomic_t state; atomic_t state;
uint32_t flags; uint32_t flags;
os_tgt_t *tgt_queue; unsigned int os_target_id;
uint16_t os_target_id;
uint16_t iodesc_idx_sent; uint16_t iodesc_idx_sent;
...@@ -1717,7 +1643,6 @@ typedef struct fc_port { ...@@ -1717,7 +1643,6 @@ typedef struct fc_port {
uint8_t mp_byte; /* multi-path byte (not used) */ uint8_t mp_byte; /* multi-path byte (not used) */
uint8_t cur_path; /* current path id */ uint8_t cur_path; /* current path id */
lun_bit_mask_t lun_mask;
struct fc_rport *rport; struct fc_rport *rport;
} fc_port_t; } fc_port_t;
...@@ -1764,25 +1689,6 @@ typedef struct fc_port { ...@@ -1764,25 +1689,6 @@ typedef struct fc_port {
/* No loop ID flag. */ /* No loop ID flag. */
#define FC_NO_LOOP_ID 0x1000 #define FC_NO_LOOP_ID 0x1000
/*
* Fibre channel LUN structure.
*/
typedef struct fc_lun {
struct list_head list;
fc_port_t *fcport;
fc_port_t *o_fcport;
uint16_t lun;
atomic_t state;
uint8_t device_type;
uint8_t max_path_retries;
uint32_t flags;
} fc_lun_t;
#define FLF_VISIBLE_LUN BIT_0
#define FLF_ACTIVE_LUN BIT_1
/* /*
* FC-CT interface * FC-CT interface
* *
...@@ -2253,9 +2159,6 @@ typedef struct scsi_qla_host { ...@@ -2253,9 +2159,6 @@ typedef struct scsi_qla_host {
struct io_descriptor io_descriptors[MAX_IO_DESCRIPTORS]; struct io_descriptor io_descriptors[MAX_IO_DESCRIPTORS];
uint16_t iodesc_signature; uint16_t iodesc_signature;
/* OS target queue pointers. */
os_tgt_t *otgt[MAX_FIBRE_DEVICES];
/* RSCN queue. */ /* RSCN queue. */
uint32_t rscn_queue[MAX_RSCN_COUNT]; uint32_t rscn_queue[MAX_RSCN_COUNT];
uint8_t rscn_in_ptr; uint8_t rscn_in_ptr;
...@@ -2400,8 +2303,6 @@ typedef struct scsi_qla_host { ...@@ -2400,8 +2303,6 @@ typedef struct scsi_qla_host {
#define LOOP_RDY(ha) (!LOOP_NOT_READY(ha)) #define LOOP_RDY(ha) (!LOOP_NOT_READY(ha))
#define TGT_Q(ha, t) (ha->otgt[t]) #define TGT_Q(ha, t) (ha->otgt[t])
#define LUN_Q(ha, t, l) (TGT_Q(ha, t)->olun[l])
#define GET_LU_Q(ha, t, l) ((TGT_Q(ha,t) != NULL)? TGT_Q(ha, t)->olun[l] : NULL)
#define to_qla_host(x) ((scsi_qla_host_t *) (x)->hostdata) #define to_qla_host(x) ((scsi_qla_host_t *) (x)->hostdata)
......
...@@ -45,8 +45,6 @@ extern void qla2x00_restart_queues(scsi_qla_host_t *, uint8_t); ...@@ -45,8 +45,6 @@ extern void qla2x00_restart_queues(scsi_qla_host_t *, uint8_t);
extern void qla2x00_rescan_fcports(scsi_qla_host_t *); extern void qla2x00_rescan_fcports(scsi_qla_host_t *);
extern void qla2x00_tgt_free(scsi_qla_host_t *ha, uint16_t t);
extern int qla2x00_abort_isp(scsi_qla_host_t *); extern int qla2x00_abort_isp(scsi_qla_host_t *);
extern void qla2x00_reg_remote_port(scsi_qla_host_t *, fc_port_t *); extern void qla2x00_reg_remote_port(scsi_qla_host_t *, fc_port_t *);
...@@ -83,12 +81,6 @@ extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *); ...@@ -83,12 +81,6 @@ extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *);
extern void qla2x00_cmd_timeout(srb_t *); extern void qla2x00_cmd_timeout(srb_t *);
extern int __qla2x00_suspend_lun(scsi_qla_host_t *, os_lun_t *, int, int, int);
extern void qla2x00_done(scsi_qla_host_t *);
extern void qla2x00_flush_failover_q(scsi_qla_host_t *, os_lun_t *);
extern void qla2x00_reset_lun_fo_counts(scsi_qla_host_t *, os_lun_t *);
extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int); extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int);
extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *); extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *);
...@@ -149,7 +141,7 @@ qla2x00_abort_target(fc_port_t *fcport); ...@@ -149,7 +141,7 @@ qla2x00_abort_target(fc_port_t *fcport);
#endif #endif
extern int extern int
qla2x00_target_reset(scsi_qla_host_t *, uint16_t, uint16_t); qla2x00_target_reset(scsi_qla_host_t *, struct fc_port *);
extern int extern int
qla2x00_get_adapter_id(scsi_qla_host_t *, uint16_t *, uint8_t *, uint8_t *, qla2x00_get_adapter_id(scsi_qla_host_t *, uint16_t *, uint8_t *, uint8_t *,
......
This diff is collapsed.
...@@ -187,23 +187,6 @@ qla2x00_is_wwn_zero(uint8_t *wwn) ...@@ -187,23 +187,6 @@ qla2x00_is_wwn_zero(uint8_t *wwn)
return (0); return (0);
} }
static __inline__ uint8_t
qla2x00_suspend_lun(scsi_qla_host_t *, os_lun_t *, int, int);
static __inline__ uint8_t
qla2x00_delay_lun(scsi_qla_host_t *, os_lun_t *, int);
static __inline__ uint8_t
qla2x00_suspend_lun(scsi_qla_host_t *ha, os_lun_t *lq, int time, int count)
{
return (__qla2x00_suspend_lun(ha, lq, time, count, 0));
}
static __inline__ uint8_t
qla2x00_delay_lun(scsi_qla_host_t *ha, os_lun_t *lq, int time)
{
return (__qla2x00_suspend_lun(ha, lq, time, 1, 1));
}
static __inline__ void qla2x00_check_fabric_devices(scsi_qla_host_t *); static __inline__ void qla2x00_check_fabric_devices(scsi_qla_host_t *);
/* /*
* This routine will wait for fabric devices for * This routine will wait for fabric devices for
......
...@@ -328,7 +328,6 @@ qla2x00_start_scsi(srb_t *sp) ...@@ -328,7 +328,6 @@ qla2x00_start_scsi(srb_t *sp)
int ret; int ret;
unsigned long flags; unsigned long flags;
scsi_qla_host_t *ha; scsi_qla_host_t *ha;
fc_lun_t *fclun;
struct scsi_cmnd *cmd; struct scsi_cmnd *cmd;
uint32_t *clr_ptr; uint32_t *clr_ptr;
uint32_t index; uint32_t index;
...@@ -343,8 +342,7 @@ qla2x00_start_scsi(srb_t *sp) ...@@ -343,8 +342,7 @@ qla2x00_start_scsi(srb_t *sp)
/* Setup device pointers. */ /* Setup device pointers. */
ret = 0; ret = 0;
fclun = sp->lun_queue->fclun; ha = sp->ha;
ha = fclun->fcport->ha;
reg = ha->iobase; reg = ha->iobase;
cmd = sp->cmd; cmd = sp->cmd;
...@@ -411,11 +409,9 @@ qla2x00_start_scsi(srb_t *sp) ...@@ -411,11 +409,9 @@ qla2x00_start_scsi(srb_t *sp)
memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8); memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
cmd_pkt->dseg_count = cpu_to_le16(tot_dsds); cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
/* Set target ID */ /* Set target ID and LUN number*/
SET_TARGET_ID(ha, cmd_pkt->target, fclun->fcport->loop_id); SET_TARGET_ID(ha, cmd_pkt->target, sp->fcport->loop_id);
cmd_pkt->lun = cpu_to_le16(sp->cmd->device->lun);
/* Set LUN number*/
cmd_pkt->lun = cpu_to_le16(fclun->lun);
/* Update tagged queuing modifier */ /* Update tagged queuing modifier */
cmd_pkt->control_flags = __constant_cpu_to_le16(CF_SIMPLE_TAG); cmd_pkt->control_flags = __constant_cpu_to_le16(CF_SIMPLE_TAG);
...@@ -453,7 +449,6 @@ qla2x00_start_scsi(srb_t *sp) ...@@ -453,7 +449,6 @@ qla2x00_start_scsi(srb_t *sp)
ha->actthreads++; ha->actthreads++;
ha->total_ios++; ha->total_ios++;
sp->lun_queue->out_cnt++;
sp->flags |= SRB_DMA_VALID; sp->flags |= SRB_DMA_VALID;
sp->state = SRB_ACTIVE_STATE; sp->state = SRB_ACTIVE_STATE;
sp->u_start = jiffies; sp->u_start = jiffies;
......
...@@ -697,7 +697,6 @@ qla2x00_process_completed_request(struct scsi_qla_host *ha, uint32_t index) ...@@ -697,7 +697,6 @@ qla2x00_process_completed_request(struct scsi_qla_host *ha, uint32_t index)
if (ha->actthreads) if (ha->actthreads)
ha->actthreads--; ha->actthreads--;
sp->lun_queue->out_cnt--;
CMD_COMPL_STATUS(sp->cmd) = 0L; CMD_COMPL_STATUS(sp->cmd) = 0L;
CMD_SCSI_STATUS(sp->cmd) = 0L; CMD_SCSI_STATUS(sp->cmd) = 0L;
...@@ -818,11 +817,8 @@ qla2x00_process_response_queue(struct scsi_qla_host *ha) ...@@ -818,11 +817,8 @@ qla2x00_process_response_queue(struct scsi_qla_host *ha)
static void static void
qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt) qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt)
{ {
int ret;
unsigned b, t, l; unsigned b, t, l;
srb_t *sp; srb_t *sp;
os_lun_t *lq;
os_tgt_t *tq;
fc_port_t *fcport; fc_port_t *fcport;
struct scsi_cmnd *cp; struct scsi_cmnd *cp;
uint16_t comp_status; uint16_t comp_status;
...@@ -872,21 +868,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt) ...@@ -872,21 +868,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt)
if (ha->actthreads) if (ha->actthreads)
ha->actthreads--; ha->actthreads--;
if (sp->lun_queue == NULL) {
DEBUG2(printk("scsi(%ld): Status Entry invalid lun pointer.\n",
ha->host_no));
qla_printk(KERN_WARNING, ha,
"Status Entry invalid lun pointer.\n");
set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
if (ha->dpc_wait && !ha->dpc_active)
up(ha->dpc_wait);
return;
}
sp->lun_queue->out_cnt--;
comp_status = le16_to_cpu(pkt->comp_status); comp_status = le16_to_cpu(pkt->comp_status);
/* Mask of reserved bits 12-15, before we examine the scsi status */ /* Mask of reserved bits 12-15, before we examine the scsi status */
scsi_status = le16_to_cpu(pkt->scsi_status) & SS_MASK; scsi_status = le16_to_cpu(pkt->scsi_status) & SS_MASK;
...@@ -901,8 +882,7 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt) ...@@ -901,8 +882,7 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt)
t = cp->device->id; t = cp->device->id;
l = cp->device->lun, l = cp->device->lun,
tq = sp->tgt_queue; fcport = sp->fcport;
lq = sp->lun_queue;
/* Check for any FCP transport errors. */ /* Check for any FCP transport errors. */
if (scsi_status & SS_RESPONSE_INFO_LEN_VALID) { if (scsi_status & SS_RESPONSE_INFO_LEN_VALID) {
...@@ -1096,7 +1076,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt) ...@@ -1096,7 +1076,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt)
* Target with DID_NO_CONNECT ELSE Queue the IOs in the * Target with DID_NO_CONNECT ELSE Queue the IOs in the
* retry_queue. * retry_queue.
*/ */
fcport = sp->fclun->fcport;
DEBUG2(printk("scsi(%ld:%d:%d): status_entry: Port Down " DEBUG2(printk("scsi(%ld:%d:%d): status_entry: Port Down "
"pid=%ld, compl status=0x%x, port state=0x%x\n", "pid=%ld, compl status=0x%x, port state=0x%x\n",
ha->host_no, t, l, cp->serial_number, comp_status, ha->host_no, t, l, cp->serial_number, comp_status,
...@@ -1137,8 +1116,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt) ...@@ -1137,8 +1116,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt)
cp->result = DID_BUS_BUSY << 16; cp->result = DID_BUS_BUSY << 16;
fcport = lq->fclun->fcport;
/* Check to see if logout occurred */ /* Check to see if logout occurred */
if ((le16_to_cpu(pkt->status_flags) & SF_LOGOUT_SENT)) { if ((le16_to_cpu(pkt->status_flags) & SF_LOGOUT_SENT)) {
qla2x00_mark_device_lost(ha, fcport, 1); qla2x00_mark_device_lost(ha, fcport, 1);
...@@ -1154,16 +1131,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt) ...@@ -1154,16 +1131,6 @@ qla2x00_status_entry(scsi_qla_host_t *ha, sts_entry_t *pkt)
cp->result = DID_OK << 16 | lscsi_status; cp->result = DID_OK << 16 | lscsi_status;
/* TODO: ??? */
/* Adjust queue depth */
ret = scsi_track_queue_full(cp->device,
sp->lun_queue->out_cnt - 1);
if (ret) {
qla_printk(KERN_INFO, ha,
"scsi(%ld:%d:%d:%d): Queue depth adjusted to %d.\n",
ha->host_no, cp->device->channel, cp->device->id,
cp->device->lun, ret);
}
break; break;
default: default:
...@@ -1268,8 +1235,6 @@ qla2x00_error_entry(scsi_qla_host_t *ha, sts_entry_t *pkt) ...@@ -1268,8 +1235,6 @@ qla2x00_error_entry(scsi_qla_host_t *ha, sts_entry_t *pkt)
ha->outstanding_cmds[pkt->handle] = NULL; ha->outstanding_cmds[pkt->handle] = NULL;
if (ha->actthreads) if (ha->actthreads)
ha->actthreads--; ha->actthreads--;
sp->lun_queue->out_cnt--;
/* Bad payload or header */ /* Bad payload or header */
if (pkt->entry_status & if (pkt->entry_status &
(RF_INV_E_ORDER | RF_INV_E_COUNT | (RF_INV_E_ORDER | RF_INV_E_COUNT |
......
...@@ -858,8 +858,7 @@ qla2x00_abort_command(scsi_qla_host_t *ha, srb_t *sp) ...@@ -858,8 +858,7 @@ qla2x00_abort_command(scsi_qla_host_t *ha, srb_t *sp)
DEBUG11(printk("qla2x00_abort_command(%ld): entered.\n", ha->host_no);) DEBUG11(printk("qla2x00_abort_command(%ld): entered.\n", ha->host_no);)
fcport = sp->fclun->fcport; fcport = sp->fcport;
if (atomic_read(&ha->loop_state) == LOOP_DOWN || if (atomic_read(&ha->loop_state) == LOOP_DOWN ||
atomic_read(&fcport->state) == FCS_DEVICE_LOST) { atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
return 1; return 1;
...@@ -884,7 +883,7 @@ qla2x00_abort_command(scsi_qla_host_t *ha, srb_t *sp) ...@@ -884,7 +883,7 @@ qla2x00_abort_command(scsi_qla_host_t *ha, srb_t *sp)
mcp->mb[1] = fcport->loop_id << 8; mcp->mb[1] = fcport->loop_id << 8;
mcp->mb[2] = (uint16_t)handle; mcp->mb[2] = (uint16_t)handle;
mcp->mb[3] = (uint16_t)(handle >> 16); mcp->mb[3] = (uint16_t)(handle >> 16);
mcp->mb[6] = (uint16_t)sp->fclun->lun; mcp->mb[6] = (uint16_t)sp->cmd->device->lun;
mcp->out_mb = MBX_6|MBX_3|MBX_2|MBX_1|MBX_0; mcp->out_mb = MBX_6|MBX_3|MBX_2|MBX_1|MBX_0;
mcp->in_mb = MBX_0; mcp->in_mb = MBX_0;
mcp->tov = 30; mcp->tov = 30;
...@@ -980,30 +979,22 @@ qla2x00_abort_target(fc_port_t *fcport) ...@@ -980,30 +979,22 @@ qla2x00_abort_target(fc_port_t *fcport)
* Kernel context. * Kernel context.
*/ */
int int
qla2x00_target_reset(scsi_qla_host_t *ha, uint16_t b, uint16_t t) qla2x00_target_reset(scsi_qla_host_t *ha, struct fc_port *fcport)
{ {
int rval; int rval;
mbx_cmd_t mc; mbx_cmd_t mc;
mbx_cmd_t *mcp = &mc; mbx_cmd_t *mcp = &mc;
os_tgt_t *tgt;
DEBUG11(printk("qla2x00_target_reset(%ld): entered.\n", ha->host_no);) DEBUG11(printk("qla2x00_target_reset(%ld): entered.\n", ha->host_no);)
tgt = TGT_Q(ha, t); if (atomic_read(&fcport->state) != FCS_ONLINE)
if (tgt->fcport == NULL) {
/* no target to abort */
return 0;
}
if (atomic_read(&tgt->fcport->state) != FCS_ONLINE) {
/* target not online */
return 0; return 0;
}
mcp->mb[0] = MBC_TARGET_RESET; mcp->mb[0] = MBC_TARGET_RESET;
if (HAS_EXTENDED_IDS(ha)) if (HAS_EXTENDED_IDS(ha))
mcp->mb[1] = tgt->fcport->loop_id; mcp->mb[1] = fcport->loop_id;
else else
mcp->mb[1] = tgt->fcport->loop_id << 8; mcp->mb[1] = fcport->loop_id << 8;
mcp->mb[2] = ha->loop_reset_delay; mcp->mb[2] = ha->loop_reset_delay;
mcp->out_mb = MBX_2|MBX_1|MBX_0; mcp->out_mb = MBX_2|MBX_1|MBX_0;
mcp->in_mb = MBX_0; mcp->in_mb = MBX_0;
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment