2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2008-06-10 20:20:58 +04:00
|
|
|
* zfcp device driver
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2008-06-10 20:20:58 +04:00
|
|
|
* Implementation of FSF commands.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2008-06-10 20:20:58 +04:00
|
|
|
* Copyright IBM Corporation 2002, 2008
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "zfcp_ext.h"
|
|
|
|
|
|
|
|
static int zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *);
|
|
|
|
static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_open_port_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_close_port_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_open_unit_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_close_unit_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_send_fcp_command_task_management_handler(
|
|
|
|
struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_status_read_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_send_els_handler(struct zfcp_fsf_req *);
|
2008-06-10 20:20:55 +04:00
|
|
|
static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *);
|
2005-04-17 02:20:36 +04:00
|
|
|
static inline int zfcp_fsf_req_sbal_check(
|
|
|
|
unsigned long *, struct zfcp_qdio_queue *, int);
|
|
|
|
static inline int zfcp_use_one_sbal(
|
|
|
|
struct scatterlist *, int, struct scatterlist *, int);
|
|
|
|
static struct zfcp_fsf_req *zfcp_fsf_req_alloc(mempool_t *, int);
|
2006-09-19 00:29:56 +04:00
|
|
|
static int zfcp_fsf_req_send(struct zfcp_fsf_req *);
|
2005-04-17 02:20:36 +04:00
|
|
|
static int zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *);
|
|
|
|
static int zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *);
|
2008-03-27 16:22:02 +03:00
|
|
|
static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *, u8,
|
2005-09-13 23:51:16 +04:00
|
|
|
struct fsf_link_down_info *);
|
2005-04-17 02:20:36 +04:00
|
|
|
static int zfcp_fsf_req_dispatch(struct zfcp_fsf_req *);
|
|
|
|
|
|
|
|
/* association between FSF command and FSF QTCB type */
|
|
|
|
static u32 fsf_qtcb_type[] = {
|
|
|
|
[FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND,
|
|
|
|
[FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
|
|
|
|
[FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND,
|
|
|
|
[FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
|
|
|
|
[FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char zfcp_act_subtable_type[5][8] = {
|
|
|
|
"unknown", "OS", "WWPN", "DID", "LUN"
|
|
|
|
};
|
|
|
|
|
2008-06-10 20:20:58 +04:00
|
|
|
static void zfcp_act_eval_err(struct zfcp_adapter *adapter, u32 table)
|
|
|
|
{
|
|
|
|
u16 subtable = (table & 0xffff0000) >> 16;
|
|
|
|
u16 rule = table & 0xffff;
|
|
|
|
|
|
|
|
if (subtable > 0 &&
|
|
|
|
subtable < ARRAY_SIZE(zfcp_act_subtable_type)) {
|
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"Access denied in subtable %s, rule %d.\n",
|
|
|
|
zfcp_act_subtable_type[subtable], rule);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zfcp_fsf_access_denied_port(struct zfcp_fsf_req *req,
|
|
|
|
struct zfcp_port *port)
|
|
|
|
{
|
|
|
|
struct fsf_qtcb_header *header = &req->qtcb->header;
|
|
|
|
dev_warn(&req->adapter->ccw_device->dev,
|
|
|
|
"Access denied, cannot send command to port 0x%016Lx.\n",
|
|
|
|
port->wwpn);
|
|
|
|
zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[0]);
|
|
|
|
zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[1]);
|
|
|
|
zfcp_erp_port_access_denied(port, 55, req);
|
|
|
|
req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zfcp_fsf_access_denied_unit(struct zfcp_fsf_req *req,
|
|
|
|
struct zfcp_unit *unit)
|
|
|
|
{
|
|
|
|
struct fsf_qtcb_header *header = &req->qtcb->header;
|
|
|
|
dev_warn(&req->adapter->ccw_device->dev,
|
|
|
|
"Access denied for unit 0x%016Lx on port 0x%016Lx.\n",
|
|
|
|
unit->fcp_lun, unit->port->wwpn);
|
|
|
|
zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[0]);
|
|
|
|
zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[1]);
|
|
|
|
zfcp_erp_unit_access_denied(unit, 59, req);
|
|
|
|
req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req)
|
|
|
|
{
|
|
|
|
dev_err(&req->adapter->ccw_device->dev,
|
|
|
|
"Required FC class not supported by adapter, "
|
|
|
|
"shutting down adapter.\n");
|
|
|
|
zfcp_erp_adapter_shutdown(req->adapter, 0, 123, req);
|
|
|
|
req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/****************************************************************/
|
|
|
|
/*************** FSF related Functions *************************/
|
|
|
|
/****************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_req_alloc
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* purpose: Obtains an fsf_req and potentially a qtcb (for all but
|
2005-04-17 02:20:36 +04:00
|
|
|
* unsolicited requests) via helper functions
|
|
|
|
* Does some initial fsf request set-up.
|
2007-09-07 11:15:31 +04:00
|
|
|
*
|
2005-04-17 02:20:36 +04:00
|
|
|
* returns: pointer to allocated fsf_req if successfull
|
|
|
|
* NULL otherwise
|
|
|
|
*
|
|
|
|
* locks: none
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static struct zfcp_fsf_req *
|
|
|
|
zfcp_fsf_req_alloc(mempool_t *pool, int req_flags)
|
|
|
|
{
|
|
|
|
size_t size;
|
|
|
|
void *ptr;
|
|
|
|
struct zfcp_fsf_req *fsf_req = NULL;
|
|
|
|
|
|
|
|
if (req_flags & ZFCP_REQ_NO_QTCB)
|
|
|
|
size = sizeof(struct zfcp_fsf_req);
|
|
|
|
else
|
2006-09-19 00:28:49 +04:00
|
|
|
size = sizeof(struct zfcp_fsf_req_qtcb);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:28:49 +04:00
|
|
|
if (likely(pool))
|
2005-04-17 02:20:36 +04:00
|
|
|
ptr = mempool_alloc(pool, GFP_ATOMIC);
|
2006-09-19 00:28:49 +04:00
|
|
|
else {
|
|
|
|
if (req_flags & ZFCP_REQ_NO_QTCB)
|
|
|
|
ptr = kmalloc(size, GFP_ATOMIC);
|
|
|
|
else
|
|
|
|
ptr = kmem_cache_alloc(zfcp_data.fsf_req_qtcb_cache,
|
2006-12-07 07:33:16 +03:00
|
|
|
GFP_ATOMIC);
|
2006-09-19 00:28:49 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:28:49 +04:00
|
|
|
if (unlikely(!ptr))
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
memset(ptr, 0, size);
|
|
|
|
|
|
|
|
if (req_flags & ZFCP_REQ_NO_QTCB) {
|
|
|
|
fsf_req = (struct zfcp_fsf_req *) ptr;
|
|
|
|
} else {
|
2006-09-19 00:28:49 +04:00
|
|
|
fsf_req = &((struct zfcp_fsf_req_qtcb *) ptr)->fsf_req;
|
|
|
|
fsf_req->qtcb = &((struct zfcp_fsf_req_qtcb *) ptr)->qtcb;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
fsf_req->pool = pool;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return fsf_req;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_req_free
|
|
|
|
*
|
|
|
|
* purpose: Frees the memory of an fsf_req (and potentially a qtcb) or
|
|
|
|
* returns it into the pool via helper functions.
|
|
|
|
*
|
|
|
|
* returns: sod all
|
|
|
|
*
|
|
|
|
* locks: none
|
|
|
|
*/
|
2005-06-13 15:20:35 +04:00
|
|
|
void
|
2005-04-17 02:20:36 +04:00
|
|
|
zfcp_fsf_req_free(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
2006-09-19 00:28:49 +04:00
|
|
|
if (likely(fsf_req->pool)) {
|
2005-04-17 02:20:36 +04:00
|
|
|
mempool_free(fsf_req, fsf_req->pool);
|
2006-09-19 00:28:49 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fsf_req->qtcb) {
|
|
|
|
kmem_cache_free(zfcp_data.fsf_req_qtcb_cache, fsf_req);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kfree(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2007-05-09 13:01:20 +04:00
|
|
|
/*
|
|
|
|
* Never ever call this without shutting down the adapter first.
|
|
|
|
* Otherwise the adapter would continue using and corrupting s390 storage.
|
|
|
|
* Included BUG_ON() call to ensure this is done.
|
|
|
|
* ERP is supposed to be the only user of this function.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2007-02-07 15:17:57 +03:00
|
|
|
void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2007-05-09 13:01:20 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req, *tmp;
|
2006-08-02 13:05:16 +04:00
|
|
|
unsigned long flags;
|
2007-02-07 15:17:57 +03:00
|
|
|
LIST_HEAD(remove_queue);
|
2007-05-09 13:01:20 +04:00
|
|
|
unsigned int i;
|
2006-08-02 13:05:16 +04:00
|
|
|
|
2007-05-09 13:01:20 +04:00
|
|
|
BUG_ON(atomic_test_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &adapter->status));
|
2006-08-02 13:05:16 +04:00
|
|
|
spin_lock_irqsave(&adapter->req_list_lock, flags);
|
2007-05-09 13:01:20 +04:00
|
|
|
for (i = 0; i < REQUEST_LIST_SIZE; i++)
|
2007-02-07 15:17:57 +03:00
|
|
|
list_splice_init(&adapter->req_list[i], &remove_queue);
|
2006-08-02 13:05:16 +04:00
|
|
|
spin_unlock_irqrestore(&adapter->req_list_lock, flags);
|
|
|
|
|
2007-05-09 13:01:20 +04:00
|
|
|
list_for_each_entry_safe(fsf_req, tmp, &remove_queue, list) {
|
|
|
|
list_del(&fsf_req->list);
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
|
|
|
|
zfcp_fsf_req_complete(fsf_req);
|
2007-02-07 15:17:57 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_req_complete
|
|
|
|
*
|
|
|
|
* purpose: Updates active counts and timers for openfcp-reqs
|
|
|
|
* May cleanup request after req_eval returns
|
|
|
|
*
|
|
|
|
* returns: 0 - success
|
|
|
|
* !0 - failure
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* context:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_req_complete(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
int cleanup;
|
|
|
|
|
|
|
|
if (unlikely(fsf_req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
|
|
|
|
/*
|
|
|
|
* Note: all cleanup handling is done in the callchain of
|
|
|
|
* the function call-chain below.
|
|
|
|
*/
|
|
|
|
zfcp_fsf_status_read_handler(fsf_req);
|
|
|
|
goto out;
|
2006-09-19 00:29:56 +04:00
|
|
|
} else {
|
|
|
|
del_timer(&fsf_req->timer);
|
2005-04-17 02:20:36 +04:00
|
|
|
zfcp_fsf_protstatus_eval(fsf_req);
|
2006-09-19 00:29:56 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2007-09-07 11:15:31 +04:00
|
|
|
* fsf_req may be deleted due to waking up functions, so
|
|
|
|
* cleanup is saved here and used later
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
if (likely(fsf_req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
|
|
|
|
cleanup = 1;
|
|
|
|
else
|
|
|
|
cleanup = 0;
|
|
|
|
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_COMPLETED;
|
|
|
|
|
|
|
|
/* cleanup request if requested by initiator */
|
|
|
|
if (likely(cleanup)) {
|
|
|
|
/*
|
|
|
|
* lock must not be held here since it will be
|
|
|
|
* grabed by the called routine, too
|
|
|
|
*/
|
2005-06-13 15:20:35 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
|
|
|
/* notify initiator waiting for the requests completion */
|
|
|
|
/*
|
|
|
|
* FIXME: Race! We must not access fsf_req here as it might have been
|
|
|
|
* cleaned up already due to the set ZFCP_STATUS_FSFREQ_COMPLETED
|
|
|
|
* flag. It's an improbable case. But, we have the same paranoia for
|
|
|
|
* the cleanup flag already.
|
|
|
|
* Might better be handled using complete()?
|
|
|
|
* (setting the flag and doing wakeup ought to be atomic
|
|
|
|
* with regard to checking the flag as long as waitqueue is
|
|
|
|
* part of the to be released structure)
|
|
|
|
*/
|
|
|
|
wake_up(&fsf_req->completion_wq);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_protstatus_eval
|
|
|
|
*
|
|
|
|
* purpose: evaluates the QTCB of the finished FSF request
|
|
|
|
* and initiates appropriate actions
|
|
|
|
* (usually calling FSF command specific handlers)
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* context:
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* locks:
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
struct zfcp_adapter *adapter = fsf_req->adapter;
|
2005-09-13 23:50:38 +04:00
|
|
|
struct fsf_qtcb *qtcb = fsf_req->qtcb;
|
|
|
|
union fsf_prot_status_qual *prot_status_qual =
|
|
|
|
&qtcb->prefix.prot_status_qual;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_hba_dbf_event_fsf_response(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
|
|
|
|
ZFCP_STATUS_FSFREQ_RETRY; /* only for SCSI cmnds. */
|
|
|
|
goto skip_protstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evaluate FSF Protocol Status */
|
2005-09-13 23:50:38 +04:00
|
|
|
switch (qtcb->prefix.prot_status) {
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
case FSF_PROT_GOOD:
|
|
|
|
case FSF_PROT_FSF_STATUS_PRESENTED:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_QTCB_VERSION_ERROR:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"The QTCB version requested by zfcp (0x%x) is not "
|
|
|
|
"supported by the FCP adapter (lowest supported 0x%x, "
|
|
|
|
"highest supported 0x%x).\n",
|
|
|
|
ZFCP_QTCB_VERSION, prot_status_qual->word[0],
|
|
|
|
prot_status_qual->word[1]);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 117, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_SEQ_NUMB_ERROR:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(adapter, 0, 98, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_UNSUPP_QTCB_TYPE:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"Packet header type used by the device driver is "
|
|
|
|
"incompatible with that used on the adapter.\n");
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 118, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_HOST_CONNECTION_INITIALIZING:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
|
|
|
|
&(adapter->status));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_DUPLICATE_REQUEST_ID:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"The request identifier 0x%Lx is ambiguous.\n",
|
|
|
|
(unsigned long long)qtcb->bottom.support.req_handle);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 78, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_LINK_DOWN:
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(fsf_req, 37,
|
2005-09-13 23:51:16 +04:00
|
|
|
&prot_status_qual->link_down_info);
|
2008-03-27 16:22:03 +03:00
|
|
|
/* FIXME: reopening adapter now? better wait for link up */
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(adapter, 0, 79, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_REEST_QUEUE:
|
|
|
|
/* All ports should be marked as ready to run again */
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_modify_adapter_status(adapter, 28, NULL,
|
|
|
|
ZFCP_STATUS_COMMON_RUNNING,
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_SET);
|
|
|
|
zfcp_erp_adapter_reopen(adapter,
|
|
|
|
ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
|
2008-03-27 16:22:03 +03:00
|
|
|
| ZFCP_STATUS_COMMON_ERP_FAILED,
|
2008-04-18 14:51:55 +04:00
|
|
|
99, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PROT_ERROR_STATE:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(adapter, 0, 100, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"Transfer protocol status information"
|
|
|
|
"provided by the adapter (0x%x) "
|
|
|
|
"is not compatible with the device driver.\n",
|
|
|
|
qtcb->prefix.prot_status);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 119, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_protstatus:
|
|
|
|
/*
|
|
|
|
* always call specific handlers to give them a chance to do
|
|
|
|
* something meaningful even in error cases
|
|
|
|
*/
|
|
|
|
zfcp_fsf_fsfstatus_eval(fsf_req);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_fsfstatus_eval
|
|
|
|
*
|
|
|
|
* purpose: evaluates FSF status of completed FSF request
|
|
|
|
* and acts accordingly
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evaluate FSF Status */
|
|
|
|
switch (fsf_req->qtcb->header.fsf_status) {
|
|
|
|
case FSF_UNKNOWN_COMMAND:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"Command issued by the device driver (0x%x) is "
|
|
|
|
"not known by the adapter.\n",
|
|
|
|
fsf_req->qtcb->header.fsf_command);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(fsf_req->adapter, 0, 120, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
zfcp_fsf_fsfstatus_qual_eval(fsf_req);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
/*
|
|
|
|
* always call specific handlers to give them a chance to do
|
|
|
|
* something meaningful even in error cases
|
|
|
|
*/
|
|
|
|
zfcp_fsf_req_dispatch(fsf_req);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_fsfstatus_qual_eval
|
|
|
|
*
|
|
|
|
* purpose: evaluates FSF status-qualifier of completed FSF request
|
|
|
|
* and acts accordingly
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
switch (fsf_req->qtcb->header.fsf_status_qual.word[0]) {
|
|
|
|
case FSF_SQ_FCP_RSP_AVAILABLE:
|
|
|
|
break;
|
|
|
|
case FSF_SQ_RETRY_IF_POSSIBLE:
|
|
|
|
/* The SCSI-stack may now issue retries or escalate */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_COMMAND_ABORTED:
|
|
|
|
/* Carry the aborted state on to upper layer */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ABORTED;
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_NO_RECOM:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"No recommendation could be given for a "
|
|
|
|
"problem on the adapter.\n");
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(fsf_req->adapter, 0, 121, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_PROGRAMMING_ERROR:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
|
|
|
case FSF_SQ_NO_RETRY_POSSIBLE:
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* dealt with in the respective functions */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:51:16 +04:00
|
|
|
/**
|
|
|
|
* zfcp_fsf_link_down_info_eval - evaluate link down information block
|
|
|
|
*/
|
|
|
|
static void
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *fsf_req, u8 id,
|
2005-09-13 23:51:16 +04:00
|
|
|
struct fsf_link_down_info *link_down)
|
|
|
|
{
|
2008-03-27 16:22:02 +03:00
|
|
|
struct zfcp_adapter *adapter = fsf_req->adapter;
|
|
|
|
|
2005-12-01 04:48:41 +03:00
|
|
|
if (atomic_test_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED,
|
|
|
|
&adapter->status))
|
|
|
|
return;
|
|
|
|
|
|
|
|
atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
|
|
|
|
|
2006-02-11 03:41:50 +03:00
|
|
|
if (link_down == NULL)
|
|
|
|
goto out;
|
2005-12-01 04:48:41 +03:00
|
|
|
|
2005-09-13 23:51:16 +04:00
|
|
|
switch (link_down->error_code) {
|
|
|
|
case FSF_PSQ_LINK_NO_LIGHT:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"no light detected.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_WRAP_PLUG:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"wrap plug detected.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_NO_FCP:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"adjacent node on link does not support FCP.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_FIRMWARE_UPDATE:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"firmware update in progress.\n");
|
|
|
|
break;
|
2005-09-13 23:51:16 +04:00
|
|
|
case FSF_PSQ_LINK_INVALID_WWPN:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"duplicate or invalid WWPN detected.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"no support for NPIV by Fabric.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_NO_FCP_RESOURCES:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"out of resource in FCP daughtercard.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"out of resource in Fabric.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link is down: "
|
|
|
|
"unable to login to Fabric.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"WWPN assignment file corrupted on adapter.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"Mode table corrupted on adapter.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"No WWPN for assignment table on adapter.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
default:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The local link to adapter is down.\n");
|
2005-09-13 23:51:16 +04:00
|
|
|
}
|
|
|
|
|
2006-02-11 03:41:50 +03:00
|
|
|
out:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_failed(adapter, id, fsf_req);
|
2005-09-13 23:51:16 +04:00
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_req_dispatch
|
|
|
|
*
|
|
|
|
* purpose: calls the appropriate command specific handler
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_req_dispatch(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
struct zfcp_erp_action *erp_action = fsf_req->erp_action;
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
|
|
|
|
switch (fsf_req->fsf_command) {
|
|
|
|
|
|
|
|
case FSF_QTCB_FCP_CMND:
|
|
|
|
zfcp_fsf_send_fcp_command_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_ABORT_FCP_CMND:
|
|
|
|
zfcp_fsf_abort_fcp_command_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_SEND_GENERIC:
|
|
|
|
zfcp_fsf_send_ct_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_OPEN_PORT_WITH_DID:
|
|
|
|
zfcp_fsf_open_port_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_OPEN_LUN:
|
|
|
|
zfcp_fsf_open_unit_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_CLOSE_LUN:
|
|
|
|
zfcp_fsf_close_unit_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_CLOSE_PORT:
|
|
|
|
zfcp_fsf_close_port_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_CLOSE_PHYSICAL_PORT:
|
|
|
|
zfcp_fsf_close_physical_port_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_EXCHANGE_CONFIG_DATA:
|
|
|
|
zfcp_fsf_exchange_config_data_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_EXCHANGE_PORT_DATA:
|
|
|
|
zfcp_fsf_exchange_port_data_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_SEND_ELS:
|
|
|
|
zfcp_fsf_send_els_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
|
|
|
|
zfcp_fsf_control_file_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_QTCB_UPLOAD_CONTROL_FILE:
|
|
|
|
zfcp_fsf_control_file_handler(fsf_req);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!erp_action)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
zfcp_erp_async_handler(erp_action, 0);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_status_read
|
|
|
|
*
|
|
|
|
* purpose: initiates a Status Read command at the specified adapter
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_status_read(struct zfcp_adapter *adapter, int req_flags)
|
|
|
|
{
|
|
|
|
struct zfcp_fsf_req *fsf_req;
|
|
|
|
struct fsf_status_read_buffer *status_buffer;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2008-05-19 14:17:39 +04:00
|
|
|
int retval;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(adapter, FSF_QTCB_UNSOLICITED_STATUS,
|
|
|
|
req_flags | ZFCP_REQ_NO_QTCB,
|
|
|
|
adapter->pool.fsf_req_status_read,
|
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_req_create;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_STATUS;
|
|
|
|
sbale[2].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
fsf_req->sbale_curr = 2;
|
|
|
|
|
2008-05-19 14:17:39 +04:00
|
|
|
retval = -ENOMEM;
|
2005-04-17 02:20:36 +04:00
|
|
|
status_buffer =
|
|
|
|
mempool_alloc(adapter->pool.data_status_read, GFP_ATOMIC);
|
2008-05-19 14:17:39 +04:00
|
|
|
if (!status_buffer)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_buf;
|
|
|
|
memset(status_buffer, 0, sizeof (struct fsf_status_read_buffer));
|
2005-09-13 23:47:52 +04:00
|
|
|
fsf_req->data = (unsigned long) status_buffer;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* insert pointer to respective buffer */
|
|
|
|
sbale = zfcp_qdio_sbale_curr(fsf_req);
|
|
|
|
sbale->addr = (void *) status_buffer;
|
|
|
|
sbale->length = sizeof(struct fsf_status_read_buffer);
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_req_send;
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
failed_req_send:
|
|
|
|
mempool_free(status_buffer, adapter->pool.data_status_read);
|
|
|
|
|
|
|
|
failed_buf:
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
failed_req_create:
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_hba_dbf_event_fsf_unsol("fail", adapter, NULL);
|
2005-04-17 02:20:36 +04:00
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
struct fsf_status_read_buffer *status_buffer;
|
|
|
|
struct zfcp_adapter *adapter;
|
|
|
|
struct zfcp_port *port;
|
|
|
|
unsigned long flags;
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
status_buffer = (struct fsf_status_read_buffer *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
adapter = fsf_req->adapter;
|
|
|
|
|
|
|
|
read_lock_irqsave(&zfcp_data.config_lock, flags);
|
|
|
|
list_for_each_entry(port, &adapter->port_list_head, list)
|
|
|
|
if (port->d_id == (status_buffer->d_id & ZFCP_DID_MASK))
|
|
|
|
break;
|
|
|
|
read_unlock_irqrestore(&zfcp_data.config_lock, flags);
|
|
|
|
|
2008-06-10 20:20:58 +04:00
|
|
|
if (!port || (port->d_id != (status_buffer->d_id & ZFCP_DID_MASK)))
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
switch (status_buffer->status_subtype) {
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_SUB_CLOSE_PHYS_PORT:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_reopen(port, 0, 101, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_SUB_ERROR_PORT:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_shutdown(port, 0, 122, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:58 +04:00
|
|
|
static void zfcp_fsf_bit_error_threshold(struct zfcp_fsf_req *req)
|
|
|
|
{
|
|
|
|
struct zfcp_adapter *adapter = req->adapter;
|
|
|
|
struct fsf_status_read_buffer *buf =
|
|
|
|
(struct fsf_status_read_buffer *) req->data;
|
|
|
|
struct fsf_bit_error_payload *err =
|
|
|
|
(struct fsf_bit_error_payload *) buf->payload;
|
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"Warning: bit error threshold data "
|
|
|
|
"received for the adapter: "
|
|
|
|
"link failures = %i, loss of sync errors = %i, "
|
|
|
|
"loss of signal errors = %i, "
|
|
|
|
"primitive sequence errors = %i, "
|
|
|
|
"invalid transmission word errors = %i, "
|
|
|
|
"CRC errors = %i).\n",
|
|
|
|
err->link_failure_error_count,
|
|
|
|
err->loss_of_sync_error_count,
|
|
|
|
err->loss_of_signal_error_count,
|
|
|
|
err->primitive_sequence_error_count,
|
|
|
|
err->invalid_transmission_word_error_count,
|
|
|
|
err->crc_error_count);
|
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"Additional bit error threshold data of the adapter: "
|
|
|
|
"primitive sequence event time-outs = %i, "
|
|
|
|
"elastic buffer overrun errors = %i, "
|
|
|
|
"advertised receive buffer-to-buffer credit = %i, "
|
|
|
|
"current receice buffer-to-buffer credit = %i, "
|
|
|
|
"advertised transmit buffer-to-buffer credit = %i, "
|
|
|
|
"current transmit buffer-to-buffer credit = %i).\n",
|
|
|
|
err->primitive_sequence_event_timeout_count,
|
|
|
|
err->elastic_buffer_overrun_error_count,
|
|
|
|
err->advertised_receive_b2b_credit,
|
|
|
|
err->current_receive_b2b_credit,
|
|
|
|
err->advertised_transmit_b2b_credit,
|
|
|
|
err->current_transmit_b2b_credit);
|
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_status_read_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Open Port command
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_status_read_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
struct zfcp_adapter *adapter = fsf_req->adapter;
|
|
|
|
struct fsf_status_read_buffer *status_buffer =
|
2005-09-13 23:47:52 +04:00
|
|
|
(struct fsf_status_read_buffer *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_hba_dbf_event_fsf_unsol("dism", adapter, status_buffer);
|
2005-04-17 02:20:36 +04:00
|
|
|
mempool_free(status_buffer, adapter->pool.data_status_read);
|
2005-06-13 15:20:35 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_hba_dbf_event_fsf_unsol("read", adapter, status_buffer);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
switch (status_buffer->status_type) {
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_PORT_CLOSED:
|
|
|
|
zfcp_fsf_status_read_port_closed(fsf_req);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_INCOMING_ELS:
|
2008-06-10 20:20:54 +04:00
|
|
|
zfcp_fc_incoming_els(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_SENSE_DATA_AVAIL:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_bit_error_threshold(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_LINK_DOWN:
|
2005-09-13 23:51:16 +04:00
|
|
|
switch (status_buffer->status_subtype) {
|
|
|
|
case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"Physical link is down.\n");
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(fsf_req, 38,
|
2005-12-01 04:48:41 +03:00
|
|
|
(struct fsf_link_down_info *)
|
|
|
|
&status_buffer->payload);
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_STATUS_READ_SUB_FDISC_FAILED:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"Local link is down "
|
|
|
|
"due to failed FDISC login.\n");
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(fsf_req, 39,
|
2005-12-01 04:48:41 +03:00
|
|
|
(struct fsf_link_down_info *)
|
|
|
|
&status_buffer->payload);
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"Local link is down "
|
|
|
|
"due to firmware update on adapter.\n");
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(fsf_req, 40, NULL);
|
2005-09-13 23:51:16 +04:00
|
|
|
break;
|
|
|
|
default:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"Local link is down.\n");
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(fsf_req, 41, NULL);
|
2005-09-13 23:51:16 +04:00
|
|
|
};
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_STATUS_READ_LINK_UP:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_info(&adapter->ccw_device->dev,
|
|
|
|
"Local link was replugged.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
/* All ports should be marked as ready to run again */
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_modify_adapter_status(adapter, 30, NULL,
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_STATUS_COMMON_RUNNING,
|
|
|
|
ZFCP_SET);
|
|
|
|
zfcp_erp_adapter_reopen(adapter,
|
|
|
|
ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
|
2008-03-27 16:22:03 +03:00
|
|
|
| ZFCP_STATUS_COMMON_ERP_FAILED,
|
2008-04-18 14:51:55 +04:00
|
|
|
102, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
2006-01-05 11:56:47 +03:00
|
|
|
case FSF_STATUS_READ_NOTIFICATION_LOST:
|
|
|
|
if (status_buffer->status_subtype &
|
|
|
|
FSF_STATUS_READ_SUB_ACT_UPDATED)
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_access_changed(adapter, 135, fsf_req);
|
2008-06-10 20:21:00 +04:00
|
|
|
if (status_buffer->status_subtype &
|
|
|
|
FSF_STATUS_READ_SUB_INCOMING_ELS)
|
|
|
|
schedule_work(&adapter->scan_work);
|
2006-01-05 11:56:47 +03:00
|
|
|
break;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
case FSF_STATUS_READ_CFDC_UPDATED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_access_changed(adapter, 136, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
2005-09-13 23:51:16 +04:00
|
|
|
case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
|
|
|
|
adapter->adapter_features = *(u32*) status_buffer->payload;
|
|
|
|
break;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
mempool_free(status_buffer, adapter->pool.data_status_read);
|
2005-06-13 15:20:35 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* recycle buffer and start new request repeat until outbound
|
|
|
|
* queue is empty or adapter shutdown is requested
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* FIXME(qdio):
|
|
|
|
* we may wait in the req_create for 5s during shutdown, so
|
|
|
|
* qdio_cleanup will have to wait at least that long before returning
|
|
|
|
* with failure to allow us a proper cleanup under all circumstances
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* FIXME:
|
|
|
|
* allocation failure possible? (Is this code needed?)
|
|
|
|
*/
|
2008-05-19 14:17:37 +04:00
|
|
|
|
|
|
|
atomic_inc(&adapter->stat_miss);
|
|
|
|
schedule_work(&adapter->stat_work);
|
2005-04-17 02:20:36 +04:00
|
|
|
out:
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_abort_fcp_command
|
|
|
|
*
|
|
|
|
* purpose: tells FSF to abort a running SCSI command
|
|
|
|
*
|
|
|
|
* returns: address of initiated FSF request
|
|
|
|
* NULL - request could not be initiated
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* FIXME(design): should be watched by a timeout !!!
|
2005-04-17 02:20:36 +04:00
|
|
|
* FIXME(design) shouldn't this be modified to return an int
|
|
|
|
* also...don't know how though
|
|
|
|
*/
|
|
|
|
struct zfcp_fsf_req *
|
|
|
|
zfcp_fsf_abort_fcp_command(unsigned long old_req_id,
|
|
|
|
struct zfcp_adapter *adapter,
|
|
|
|
struct zfcp_unit *unit, int req_flags)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
struct zfcp_fsf_req *fsf_req = NULL;
|
2006-09-19 00:29:56 +04:00
|
|
|
unsigned long lock_flags;
|
2005-04-17 02:20:36 +04:00
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(adapter, FSF_QTCB_ABORT_FCP_CMND,
|
|
|
|
req_flags, adapter->pool.fsf_req_abort,
|
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2007-12-20 14:30:24 +03:00
|
|
|
if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
|
|
|
|
&unit->status)))
|
|
|
|
goto unit_blocked;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
fsf_req->data = (unsigned long) unit;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* set handles of unit and its parent port in QTCB */
|
|
|
|
fsf_req->qtcb->header.lun_handle = unit->handle;
|
|
|
|
fsf_req->qtcb->header.port_handle = unit->port->handle;
|
|
|
|
|
|
|
|
/* set handle of request which should be aborted */
|
|
|
|
fsf_req->qtcb->bottom.support.req_handle = (u64) old_req_id;
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_SCSI_ER_TIMEOUT);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2007-12-20 14:30:24 +03:00
|
|
|
if (!retval)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
unit_blocked:
|
2005-04-17 02:20:36 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
fsf_req = NULL;
|
|
|
|
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return fsf_req;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_abort_fcp_command_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Abort FCP Command request
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *new_fsf_req)
|
|
|
|
{
|
|
|
|
int retval = -EINVAL;
|
2005-09-13 23:47:52 +04:00
|
|
|
struct zfcp_unit *unit;
|
2007-12-20 14:30:23 +03:00
|
|
|
union fsf_status_qual *fsf_stat_qual =
|
|
|
|
&new_fsf_req->qtcb->header.fsf_status_qual;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (new_fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
|
|
|
|
/* do not set ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED */
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
unit = (struct zfcp_unit *) new_fsf_req->data;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (new_fsf_req->qtcb->header.fsf_status) {
|
|
|
|
|
|
|
|
case FSF_PORT_HANDLE_NOT_VALID:
|
2007-12-20 14:30:23 +03:00
|
|
|
if (fsf_stat_qual->word[0] != fsf_stat_qual->word[1]) {
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* In this case a command that was sent prior to a port
|
|
|
|
* reopen was aborted (handles are different). This is
|
|
|
|
* fine.
|
|
|
|
*/
|
|
|
|
} else {
|
|
|
|
/* Let's hope this sorts out the mess */
|
2008-03-27 16:22:03 +03:00
|
|
|
zfcp_erp_adapter_reopen(unit->port->adapter, 0, 104,
|
2008-04-18 14:51:55 +04:00
|
|
|
new_fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_LUN_HANDLE_NOT_VALID:
|
2007-12-20 14:30:23 +03:00
|
|
|
if (fsf_stat_qual->word[0] != fsf_stat_qual->word[1]) {
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* In this case a command that was sent prior to a unit
|
|
|
|
* reopen was aborted (handles are different).
|
|
|
|
* This is fine.
|
|
|
|
*/
|
|
|
|
} else {
|
|
|
|
/* Let's hope this sorts out the mess */
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_reopen(unit->port, 0, 105, new_fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_FCP_COMMAND_DOES_NOT_EXIST:
|
|
|
|
retval = 0;
|
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PORT_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_boxed(unit->port, 47, new_fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
|
|
|
|
| ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_LUN_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_boxed(unit, 48, new_fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
|
|
|
|
| ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (new_fsf_req->qtcb->header.fsf_status_qual.word[0]) {
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
2005-06-13 15:16:27 +04:00
|
|
|
zfcp_test_link(unit->port);
|
2005-04-17 02:20:36 +04:00
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* SCSI stack will escalate */
|
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
|
|
|
retval = 0;
|
|
|
|
new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
skip_fsfstatus:
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_use_one_sbal - checks whether req buffer and resp bother each fit into
|
|
|
|
* one SBALE
|
|
|
|
* Two scatter-gather lists are passed, one for the reqeust and one for the
|
|
|
|
* response.
|
|
|
|
*/
|
|
|
|
static inline int
|
|
|
|
zfcp_use_one_sbal(struct scatterlist *req, int req_count,
|
|
|
|
struct scatterlist *resp, int resp_count)
|
|
|
|
{
|
|
|
|
return ((req_count == 1) &&
|
|
|
|
(resp_count == 1) &&
|
|
|
|
(((unsigned long) zfcp_sg_to_address(&req[0]) &
|
|
|
|
PAGE_MASK) ==
|
|
|
|
((unsigned long) (zfcp_sg_to_address(&req[0]) +
|
|
|
|
req[0].length - 1) & PAGE_MASK)) &&
|
|
|
|
(((unsigned long) zfcp_sg_to_address(&resp[0]) &
|
|
|
|
PAGE_MASK) ==
|
|
|
|
((unsigned long) (zfcp_sg_to_address(&resp[0]) +
|
|
|
|
resp[0].length - 1) & PAGE_MASK)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
|
|
|
|
* @ct: pointer to struct zfcp_send_ct which conatins all needed data for
|
|
|
|
* the request
|
|
|
|
* @pool: pointer to memory pool, if non-null this pool is used to allocate
|
|
|
|
* a struct zfcp_fsf_req
|
|
|
|
* @erp_action: pointer to erp_action, if non-null the Generic Service request
|
|
|
|
* is sent within error recovery
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_send_ct(struct zfcp_send_ct *ct, mempool_t *pool,
|
|
|
|
struct zfcp_erp_action *erp_action)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
struct zfcp_port *port;
|
|
|
|
struct zfcp_adapter *adapter;
|
|
|
|
struct zfcp_fsf_req *fsf_req;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
int bytes;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
port = ct->port;
|
|
|
|
adapter = port->adapter;
|
|
|
|
|
|
|
|
ret = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_GENERIC,
|
|
|
|
ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
pool, &lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (ret < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_req;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (zfcp_use_one_sbal(ct->req, ct->req_count,
|
|
|
|
ct->resp, ct->resp_count)){
|
|
|
|
/* both request buffer and response buffer
|
|
|
|
fit into one sbale each */
|
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE_READ;
|
|
|
|
sbale[2].addr = zfcp_sg_to_address(&ct->req[0]);
|
|
|
|
sbale[2].length = ct->req[0].length;
|
|
|
|
sbale[3].addr = zfcp_sg_to_address(&ct->resp[0]);
|
|
|
|
sbale[3].length = ct->resp[0].length;
|
|
|
|
sbale[3].flags |= SBAL_FLAGS_LAST_ENTRY;
|
2005-09-13 23:51:16 +04:00
|
|
|
} else if (adapter->adapter_features &
|
2005-04-17 02:20:36 +04:00
|
|
|
FSF_FEATURE_ELS_CT_CHAINED_SBALS) {
|
|
|
|
/* try to use chained SBALs */
|
|
|
|
bytes = zfcp_qdio_sbals_from_sg(fsf_req,
|
|
|
|
SBAL_FLAGS0_TYPE_WRITE_READ,
|
2008-06-10 20:20:57 +04:00
|
|
|
ct->req,
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_MAX_SBALS_PER_CT_REQ);
|
|
|
|
if (bytes <= 0) {
|
|
|
|
if (bytes == 0)
|
|
|
|
ret = -ENOMEM;
|
|
|
|
else
|
|
|
|
ret = bytes;
|
|
|
|
|
|
|
|
goto failed_send;
|
|
|
|
}
|
|
|
|
fsf_req->qtcb->bottom.support.req_buf_length = bytes;
|
|
|
|
fsf_req->sbale_curr = ZFCP_LAST_SBALE_PER_SBAL;
|
|
|
|
bytes = zfcp_qdio_sbals_from_sg(fsf_req,
|
|
|
|
SBAL_FLAGS0_TYPE_WRITE_READ,
|
2008-06-10 20:20:57 +04:00
|
|
|
ct->resp,
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_MAX_SBALS_PER_CT_REQ);
|
|
|
|
if (bytes <= 0) {
|
|
|
|
if (bytes == 0)
|
|
|
|
ret = -ENOMEM;
|
|
|
|
else
|
|
|
|
ret = bytes;
|
|
|
|
|
|
|
|
goto failed_send;
|
|
|
|
}
|
|
|
|
fsf_req->qtcb->bottom.support.resp_buf_length = bytes;
|
|
|
|
} else {
|
|
|
|
/* reject send generic request */
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
goto failed_send;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* settings in QTCB */
|
|
|
|
fsf_req->qtcb->header.port_handle = port->handle;
|
2006-05-22 20:18:19 +04:00
|
|
|
fsf_req->qtcb->bottom.support.service_class =
|
|
|
|
ZFCP_FC_SERVICE_CLASS_DEFAULT;
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->qtcb->bottom.support.timeout = ct->timeout;
|
2005-09-13 23:47:52 +04:00
|
|
|
fsf_req->data = (unsigned long) ct;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_san_dbf_event_ct_request(fsf_req);
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
if (erp_action) {
|
|
|
|
erp_action->fsf_req = fsf_req;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
zfcp_erp_start_timer(fsf_req);
|
|
|
|
} else
|
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
|
|
|
|
|
|
|
|
ret = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (ret)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_send;
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
failed_send:
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
if (erp_action != NULL) {
|
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
}
|
|
|
|
failed_req:
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_send_ct_handler - handler for Generic Service requests
|
|
|
|
* @fsf_req: pointer to struct zfcp_fsf_req
|
|
|
|
*
|
2005-09-13 23:47:52 +04:00
|
|
|
* Data specific for the Generic Service request is passed using
|
|
|
|
* fsf_req->data. There we find the pointer to struct zfcp_send_ct.
|
|
|
|
* Usually a specific handler for the CT request is called which is
|
|
|
|
* found in this structure.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
struct zfcp_port *port;
|
|
|
|
struct zfcp_adapter *adapter;
|
|
|
|
struct zfcp_send_ct *send_ct;
|
|
|
|
struct fsf_qtcb_header *header;
|
|
|
|
struct fsf_qtcb_bottom_support *bottom;
|
|
|
|
int retval = -EINVAL;
|
|
|
|
|
|
|
|
adapter = fsf_req->adapter;
|
2005-09-13 23:47:52 +04:00
|
|
|
send_ct = (struct zfcp_send_ct *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
port = send_ct->port;
|
|
|
|
header = &fsf_req->qtcb->header;
|
|
|
|
bottom = &fsf_req->qtcb->bottom.support;
|
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
|
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (header->fsf_status) {
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_san_dbf_event_ct_response(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_SERVICE_CLASS_NOT_SUPPORTED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_class_not_supp(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (header->fsf_status_qual.word[0]){
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
|
|
|
/* reopening link to port */
|
|
|
|
zfcp_test_link(port);
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* ERP strategy will escalate */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ACCESS_DENIED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_access_denied_port(fsf_req, port);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GENERIC_COMMAND_REJECTED:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PORT_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(adapter, 0, 106, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PORT_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_boxed(port, 49, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
|
|
|
|
| ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* following states should never occure, all cases avoided
|
|
|
|
in zfcp_fsf_send_ct - but who knows ... */
|
|
|
|
case FSF_PAYLOAD_SIZE_MISMATCH:
|
|
|
|
case FSF_REQUEST_SIZE_TOO_LARGE:
|
|
|
|
case FSF_RESPONSE_SIZE_TOO_LARGE:
|
|
|
|
case FSF_SBAL_MISMATCH:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
send_ct->status = retval;
|
|
|
|
|
|
|
|
if (send_ct->handler != NULL)
|
|
|
|
send_ct->handler(send_ct->handler_data);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_send_els - initiate an ELS command (FC-FS)
|
|
|
|
* @els: pointer to struct zfcp_send_els which contains all needed data for
|
|
|
|
* the command.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_send_els(struct zfcp_send_els *els)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
struct zfcp_fsf_req *fsf_req;
|
2005-09-19 18:56:17 +04:00
|
|
|
u32 d_id;
|
2005-04-17 02:20:36 +04:00
|
|
|
struct zfcp_adapter *adapter;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
int bytes;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
d_id = els->d_id;
|
|
|
|
adapter = els->adapter;
|
|
|
|
|
|
|
|
ret = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_ELS,
|
|
|
|
ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
NULL, &lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (ret < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_req;
|
|
|
|
|
2007-12-20 14:30:25 +03:00
|
|
|
if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
|
|
|
|
&els->port->status))) {
|
|
|
|
ret = -EBUSY;
|
|
|
|
goto port_blocked;
|
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (zfcp_use_one_sbal(els->req, els->req_count,
|
|
|
|
els->resp, els->resp_count)){
|
|
|
|
/* both request buffer and response buffer
|
|
|
|
fit into one sbale each */
|
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE_READ;
|
|
|
|
sbale[2].addr = zfcp_sg_to_address(&els->req[0]);
|
|
|
|
sbale[2].length = els->req[0].length;
|
|
|
|
sbale[3].addr = zfcp_sg_to_address(&els->resp[0]);
|
|
|
|
sbale[3].length = els->resp[0].length;
|
|
|
|
sbale[3].flags |= SBAL_FLAGS_LAST_ENTRY;
|
2005-09-13 23:51:16 +04:00
|
|
|
} else if (adapter->adapter_features &
|
2005-04-17 02:20:36 +04:00
|
|
|
FSF_FEATURE_ELS_CT_CHAINED_SBALS) {
|
|
|
|
/* try to use chained SBALs */
|
|
|
|
bytes = zfcp_qdio_sbals_from_sg(fsf_req,
|
|
|
|
SBAL_FLAGS0_TYPE_WRITE_READ,
|
2008-06-10 20:20:57 +04:00
|
|
|
els->req,
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_MAX_SBALS_PER_ELS_REQ);
|
|
|
|
if (bytes <= 0) {
|
|
|
|
if (bytes == 0) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
} else {
|
|
|
|
ret = bytes;
|
|
|
|
}
|
|
|
|
goto failed_send;
|
|
|
|
}
|
|
|
|
fsf_req->qtcb->bottom.support.req_buf_length = bytes;
|
|
|
|
fsf_req->sbale_curr = ZFCP_LAST_SBALE_PER_SBAL;
|
|
|
|
bytes = zfcp_qdio_sbals_from_sg(fsf_req,
|
|
|
|
SBAL_FLAGS0_TYPE_WRITE_READ,
|
2008-06-10 20:20:57 +04:00
|
|
|
els->resp,
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_MAX_SBALS_PER_ELS_REQ);
|
|
|
|
if (bytes <= 0) {
|
|
|
|
if (bytes == 0) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
} else {
|
|
|
|
ret = bytes;
|
|
|
|
}
|
|
|
|
goto failed_send;
|
|
|
|
}
|
|
|
|
fsf_req->qtcb->bottom.support.resp_buf_length = bytes;
|
|
|
|
} else {
|
|
|
|
/* reject request */
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
goto failed_send;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* settings in QTCB */
|
|
|
|
fsf_req->qtcb->bottom.support.d_id = d_id;
|
2006-05-22 20:18:19 +04:00
|
|
|
fsf_req->qtcb->bottom.support.service_class =
|
|
|
|
ZFCP_FC_SERVICE_CLASS_DEFAULT;
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->qtcb->bottom.support.timeout = ZFCP_ELS_TIMEOUT;
|
2005-09-13 23:47:52 +04:00
|
|
|
fsf_req->data = (unsigned long) els;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_san_dbf_event_els_request(fsf_req);
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
|
|
|
|
ret = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (ret)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_send;
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
|
2007-12-20 14:30:25 +03:00
|
|
|
port_blocked:
|
2005-04-17 02:20:36 +04:00
|
|
|
failed_send:
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
|
|
|
|
failed_req:
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_send_els_handler - handler for ELS commands
|
|
|
|
* @fsf_req: pointer to struct zfcp_fsf_req
|
|
|
|
*
|
2005-09-13 23:47:52 +04:00
|
|
|
* Data specific for the ELS command is passed using
|
|
|
|
* fsf_req->data. There we find the pointer to struct zfcp_send_els.
|
|
|
|
* Usually a specific handler for the ELS command is called which is
|
|
|
|
* found in this structure.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int zfcp_fsf_send_els_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
struct zfcp_adapter *adapter;
|
|
|
|
struct zfcp_port *port;
|
2005-09-19 18:56:17 +04:00
|
|
|
u32 d_id;
|
2005-04-17 02:20:36 +04:00
|
|
|
struct fsf_qtcb_header *header;
|
|
|
|
struct fsf_qtcb_bottom_support *bottom;
|
|
|
|
struct zfcp_send_els *send_els;
|
|
|
|
int retval = -EINVAL;
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
send_els = (struct zfcp_send_els *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
adapter = send_els->adapter;
|
2005-06-13 15:18:56 +04:00
|
|
|
port = send_els->port;
|
2005-04-17 02:20:36 +04:00
|
|
|
d_id = send_els->d_id;
|
|
|
|
header = &fsf_req->qtcb->header;
|
|
|
|
bottom = &fsf_req->qtcb->bottom.support;
|
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
|
|
|
|
switch (header->fsf_status) {
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_san_dbf_event_els_response(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_SERVICE_CLASS_NOT_SUPPORTED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_class_not_supp(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (header->fsf_status_qual.word[0]){
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
2005-06-13 15:18:56 +04:00
|
|
|
if (port && (send_els->ls_code != ZFCP_LS_ADISC))
|
|
|
|
zfcp_test_link(port);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_RETRY_IF_POSSIBLE:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ELS_COMMAND_REJECTED:
|
|
|
|
case FSF_PAYLOAD_SIZE_MISMATCH:
|
|
|
|
case FSF_REQUEST_SIZE_TOO_LARGE:
|
|
|
|
case FSF_RESPONSE_SIZE_TOO_LARGE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_SBAL_MISMATCH:
|
|
|
|
/* should never occure, avoided in zfcp_fsf_send_els */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ACCESS_DENIED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_access_denied_port(fsf_req, port);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
send_els->status = retval;
|
|
|
|
|
2007-07-18 12:55:10 +04:00
|
|
|
if (send_els->handler)
|
2005-04-17 02:20:36 +04:00
|
|
|
send_els->handler(send_els->handler_data);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2006-09-19 00:29:56 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req;
|
2007-08-28 11:31:09 +04:00
|
|
|
struct zfcp_adapter *adapter = erp_action->adapter;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long lock_flags;
|
2007-08-28 11:31:09 +04:00
|
|
|
int retval;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* setup new FSF request */
|
2007-08-28 11:31:09 +04:00
|
|
|
retval = zfcp_fsf_req_create(adapter,
|
2005-04-17 02:20:36 +04:00
|
|
|
FSF_QTCB_EXCHANGE_CONFIG_DATA,
|
|
|
|
ZFCP_REQ_AUTO_CLEANUP,
|
2007-08-28 11:31:09 +04:00
|
|
|
adapter->pool.fsf_req_erp,
|
2006-09-19 00:29:56 +04:00
|
|
|
&lock_flags, &fsf_req);
|
2007-08-28 11:31:09 +04:00
|
|
|
if (retval) {
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2007-08-28 11:31:09 +04:00
|
|
|
return retval;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2007-08-28 11:31:09 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->qtcb->bottom.config.feature_selection =
|
2005-09-13 23:51:16 +04:00
|
|
|
FSF_FEATURE_CFDC |
|
|
|
|
FSF_FEATURE_LUN_SHARING |
|
2006-01-05 11:56:47 +03:00
|
|
|
FSF_FEATURE_NOTIFICATION_LOST |
|
2005-09-13 23:51:16 +04:00
|
|
|
FSF_FEATURE_UPDATE_ALERT;
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
erp_action->fsf_req = fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_erp_start_timer(fsf_req);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval) {
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
}
|
|
|
|
|
2007-08-28 11:31:09 +04:00
|
|
|
return retval;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-08-28 11:31:09 +04:00
|
|
|
int
|
|
|
|
zfcp_fsf_exchange_config_data_sync(struct zfcp_adapter *adapter,
|
|
|
|
struct fsf_qtcb_bottom_config *data)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
struct zfcp_fsf_req *fsf_req;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_CONFIG_DATA,
|
2008-04-24 21:35:52 +04:00
|
|
|
ZFCP_WAIT_FOR_SBAL, NULL, &lock_flags,
|
|
|
|
&fsf_req);
|
2007-08-28 11:31:09 +04:00
|
|
|
if (retval) {
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2007-08-28 11:31:09 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2007-08-28 11:31:09 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
|
|
|
fsf_req->qtcb->bottom.config.feature_selection =
|
|
|
|
FSF_FEATURE_CFDC |
|
|
|
|
FSF_FEATURE_LUN_SHARING |
|
|
|
|
FSF_FEATURE_NOTIFICATION_LOST |
|
|
|
|
FSF_FEATURE_UPDATE_ALERT;
|
|
|
|
|
|
|
|
if (data)
|
|
|
|
fsf_req->data = (unsigned long) data;
|
|
|
|
|
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (!retval)
|
2007-08-28 11:31:09 +04:00
|
|
|
wait_event(fsf_req->completion_wq,
|
|
|
|
fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
|
|
|
|
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_exchange_config_evaluate
|
|
|
|
* @fsf_req: fsf_req which belongs to xchg config data request
|
|
|
|
* @xchg_ok: specifies if xchg config data was incomplete or complete (0/1)
|
|
|
|
*
|
|
|
|
* returns: -EIO on error, 0 otherwise
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *fsf_req, int xchg_ok)
|
|
|
|
{
|
|
|
|
struct fsf_qtcb_bottom_config *bottom;
|
|
|
|
struct zfcp_adapter *adapter = fsf_req->adapter;
|
2005-09-19 18:56:17 +04:00
|
|
|
struct Scsi_Host *shost = adapter->scsi_host;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
bottom = &fsf_req->qtcb->bottom.config;
|
|
|
|
adapter->fsf_lic_version = bottom->lic_version;
|
2005-09-13 23:51:16 +04:00
|
|
|
adapter->adapter_features = bottom->adapter_features;
|
|
|
|
adapter->connection_features = bottom->connection_features;
|
2005-04-11 08:04:28 +04:00
|
|
|
adapter->peer_wwpn = 0;
|
|
|
|
adapter->peer_wwnn = 0;
|
|
|
|
adapter->peer_d_id = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (xchg_ok) {
|
2007-08-28 11:31:09 +04:00
|
|
|
|
|
|
|
if (fsf_req->data)
|
|
|
|
memcpy((struct fsf_qtcb_bottom_config *) fsf_req->data,
|
|
|
|
bottom, sizeof (struct fsf_qtcb_bottom_config));
|
|
|
|
|
2005-09-19 18:56:17 +04:00
|
|
|
fc_host_node_name(shost) = bottom->nport_serv_param.wwnn;
|
|
|
|
fc_host_port_name(shost) = bottom->nport_serv_param.wwpn;
|
|
|
|
fc_host_port_id(shost) = bottom->s_id & ZFCP_DID_MASK;
|
|
|
|
fc_host_speed(shost) = bottom->fc_link_speed;
|
2007-08-28 11:31:09 +04:00
|
|
|
fc_host_supported_classes(shost) =
|
|
|
|
FC_COS_CLASS2 | FC_COS_CLASS3;
|
2005-04-17 02:20:36 +04:00
|
|
|
adapter->hydra_version = bottom->adapter_type;
|
2008-05-06 13:00:05 +04:00
|
|
|
adapter->timer_ticks = bottom->timer_interval;
|
2006-01-13 04:26:11 +03:00
|
|
|
if (fc_host_permanent_port_name(shost) == -1)
|
|
|
|
fc_host_permanent_port_name(shost) =
|
|
|
|
fc_host_port_name(shost);
|
|
|
|
if (bottom->fc_topology == FSF_TOPO_P2P) {
|
|
|
|
adapter->peer_d_id = bottom->peer_d_id & ZFCP_DID_MASK;
|
|
|
|
adapter->peer_wwpn = bottom->plogi_payload.wwpn;
|
|
|
|
adapter->peer_wwnn = bottom->plogi_payload.wwnn;
|
|
|
|
fc_host_port_type(shost) = FC_PORTTYPE_PTP;
|
|
|
|
} else if (bottom->fc_topology == FSF_TOPO_FABRIC)
|
|
|
|
fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
|
|
|
|
else if (bottom->fc_topology == FSF_TOPO_AL)
|
|
|
|
fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
|
|
|
|
else
|
|
|
|
fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
2005-09-19 18:56:17 +04:00
|
|
|
fc_host_node_name(shost) = 0;
|
|
|
|
fc_host_port_name(shost) = 0;
|
|
|
|
fc_host_port_id(shost) = 0;
|
|
|
|
fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
|
2006-01-13 04:26:11 +03:00
|
|
|
fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
|
2005-04-17 02:20:36 +04:00
|
|
|
adapter->hydra_version = 0;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:51:16 +04:00
|
|
|
if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
|
2005-04-17 02:20:36 +04:00
|
|
|
adapter->hardware_version = bottom->hardware_version;
|
2005-09-19 18:56:17 +04:00
|
|
|
memcpy(fc_host_serial_number(shost), bottom->serial_number,
|
|
|
|
min(FC_SERIAL_NUMBER_SIZE, 17));
|
|
|
|
EBCASC(fc_host_serial_number(shost),
|
|
|
|
min(FC_SERIAL_NUMBER_SIZE, 17));
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ZFCP_QTCB_VERSION < bottom->low_qtcb_version) {
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"The adapter only supports newer control block "
|
|
|
|
"versions, try updated device driver.\n");
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 125, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
if (ZFCP_QTCB_VERSION > bottom->high_qtcb_version) {
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"The adapter only supports older control block "
|
|
|
|
"versions, consider a microcode upgrade.\n");
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 126, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-28 11:31:09 +04:00
|
|
|
/**
|
2005-04-17 02:20:36 +04:00
|
|
|
* function: zfcp_fsf_exchange_config_data_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Exchange Configuration Data command
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
struct fsf_qtcb_bottom_config *bottom;
|
|
|
|
struct zfcp_adapter *adapter = fsf_req->adapter;
|
2005-09-13 23:51:16 +04:00
|
|
|
struct fsf_qtcb *qtcb = fsf_req->qtcb;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
|
|
|
|
return -EIO;
|
|
|
|
|
2005-09-13 23:51:16 +04:00
|
|
|
switch (qtcb->header.fsf_status) {
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
case FSF_GOOD:
|
|
|
|
if (zfcp_fsf_exchange_config_evaluate(fsf_req, 1))
|
|
|
|
return -EIO;
|
|
|
|
|
2006-01-13 04:26:11 +03:00
|
|
|
switch (fc_host_port_type(adapter->scsi_host)) {
|
|
|
|
case FC_PORTTYPE_PTP:
|
2008-06-10 20:20:58 +04:00
|
|
|
if (fsf_req->erp_action)
|
|
|
|
dev_info(&adapter->ccw_device->dev,
|
|
|
|
"Point-to-Point fibrechannel "
|
|
|
|
"configuration detected.\n");
|
2005-04-11 08:04:28 +04:00
|
|
|
break;
|
2006-01-13 04:26:11 +03:00
|
|
|
case FC_PORTTYPE_NLPORT:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"Unsupported arbitrated loop fibrechannel "
|
|
|
|
"topology detected, shutting down adapter\n");
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 127, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
2006-01-13 04:26:11 +03:00
|
|
|
case FC_PORTTYPE_NPORT:
|
2008-04-24 21:35:53 +04:00
|
|
|
if (fsf_req->erp_action)
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_info(&adapter->ccw_device->dev,
|
|
|
|
"Switched fabric fibrechannel "
|
|
|
|
"network detected.\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
default:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"The fibrechannel topology reported by the "
|
|
|
|
"adapter is not known by the zfcp driver, "
|
|
|
|
"shutting down adapter.\n");
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 128, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
2005-09-13 23:51:16 +04:00
|
|
|
bottom = &qtcb->bottom.config;
|
2005-04-17 02:20:36 +04:00
|
|
|
if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"Maximum QTCB size (%d bytes) allowed by "
|
|
|
|
"the adapter is lower than the minimum "
|
|
|
|
"required by the driver (%ld bytes).\n",
|
|
|
|
bottom->max_qtcb_size, sizeof(struct fsf_qtcb));
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 129, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
|
|
|
|
&adapter->status);
|
|
|
|
break;
|
|
|
|
case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
|
|
|
|
if (zfcp_fsf_exchange_config_evaluate(fsf_req, 0))
|
|
|
|
return -EIO;
|
|
|
|
|
2007-08-28 11:31:09 +04:00
|
|
|
atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
|
|
|
|
&adapter->status);
|
2005-09-13 23:51:16 +04:00
|
|
|
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(fsf_req, 42,
|
2005-09-13 23:51:16 +04:00
|
|
|
&qtcb->header.fsf_status_qual.link_down_info);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
default:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(adapter, 0, 130, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_exchange_port_data - request information about local port
|
2005-09-13 23:51:16 +04:00
|
|
|
* @erp_action: ERP action for the adapter for which port data is requested
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
int
|
2007-08-28 11:31:09 +04:00
|
|
|
zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2007-08-28 11:31:09 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req;
|
|
|
|
struct zfcp_adapter *adapter = erp_action->adapter;
|
2006-09-19 00:29:56 +04:00
|
|
|
unsigned long lock_flags;
|
2007-08-28 11:31:09 +04:00
|
|
|
int retval;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-06-10 20:20:58 +04:00
|
|
|
if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
|
2007-08-28 11:31:09 +04:00
|
|
|
return -EOPNOTSUPP;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA,
|
2007-08-28 11:31:09 +04:00
|
|
|
ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
adapter->pool.fsf_req_erp,
|
|
|
|
&lock_flags, &fsf_req);
|
|
|
|
if (retval) {
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-12-01 04:50:36 +03:00
|
|
|
return retval;
|
2005-09-13 23:51:16 +04:00
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2007-08-28 11:31:09 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-08-28 11:31:09 +04:00
|
|
|
erp_action->fsf_req = fsf_req;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
zfcp_erp_start_timer(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2007-08-28 11:31:09 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval) {
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2007-08-28 11:31:09 +04:00
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_exchange_port_data_sync - request information about local port
|
|
|
|
* and wait until information is ready
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_exchange_port_data_sync(struct zfcp_adapter *adapter,
|
|
|
|
struct fsf_qtcb_bottom_port *data)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
struct zfcp_fsf_req *fsf_req;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
int retval;
|
|
|
|
|
2008-06-10 20:20:58 +04:00
|
|
|
if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
|
2007-08-28 11:31:09 +04:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA,
|
|
|
|
0, NULL, &lock_flags, &fsf_req);
|
|
|
|
if (retval) {
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-12-01 04:50:36 +03:00
|
|
|
return retval;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2007-08-28 11:31:09 +04:00
|
|
|
if (data)
|
|
|
|
fsf_req->data = (unsigned long) data;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2007-08-28 11:31:09 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-06-10 20:20:58 +04:00
|
|
|
if (!retval)
|
2005-12-01 04:50:36 +03:00
|
|
|
wait_event(fsf_req->completion_wq,
|
|
|
|
fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
|
2007-08-28 11:31:09 +04:00
|
|
|
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2006-02-11 03:41:50 +03:00
|
|
|
/**
|
|
|
|
* zfcp_fsf_exchange_port_evaluate
|
|
|
|
* @fsf_req: fsf_req which belongs to xchg port data request
|
|
|
|
* @xchg_ok: specifies if xchg port data was incomplete or complete (0/1)
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *fsf_req, int xchg_ok)
|
|
|
|
{
|
|
|
|
struct zfcp_adapter *adapter;
|
2007-08-28 11:31:09 +04:00
|
|
|
struct fsf_qtcb_bottom_port *bottom;
|
2006-02-11 03:41:50 +03:00
|
|
|
struct Scsi_Host *shost;
|
|
|
|
|
|
|
|
adapter = fsf_req->adapter;
|
2007-08-28 11:31:09 +04:00
|
|
|
bottom = &fsf_req->qtcb->bottom.port;
|
2006-02-11 03:41:50 +03:00
|
|
|
shost = adapter->scsi_host;
|
|
|
|
|
2007-08-28 11:31:09 +04:00
|
|
|
if (fsf_req->data)
|
|
|
|
memcpy((struct fsf_qtcb_bottom_port*) fsf_req->data, bottom,
|
|
|
|
sizeof(struct fsf_qtcb_bottom_port));
|
2006-02-11 03:41:50 +03:00
|
|
|
|
|
|
|
if (adapter->connection_features & FSF_FEATURE_NPIV_MODE)
|
|
|
|
fc_host_permanent_port_name(shost) = bottom->wwpn;
|
|
|
|
else
|
|
|
|
fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
|
|
|
|
fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
|
|
|
|
fc_host_supported_speeds(shost) = bottom->supported_speed;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_exchange_port_data_handler - handler for exchange_port_data request
|
|
|
|
* @fsf_req: pointer to struct zfcp_fsf_req
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
2006-02-11 03:41:50 +03:00
|
|
|
struct zfcp_adapter *adapter;
|
|
|
|
struct fsf_qtcb *qtcb;
|
|
|
|
|
|
|
|
adapter = fsf_req->adapter;
|
|
|
|
qtcb = fsf_req->qtcb;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
|
|
|
|
return;
|
|
|
|
|
2005-09-13 23:51:16 +04:00
|
|
|
switch (qtcb->header.fsf_status) {
|
2005-04-17 02:20:36 +04:00
|
|
|
case FSF_GOOD:
|
2006-02-11 03:41:50 +03:00
|
|
|
zfcp_fsf_exchange_port_evaluate(fsf_req, 1);
|
2005-09-13 23:51:16 +04:00
|
|
|
atomic_set_mask(ZFCP_STATUS_ADAPTER_XPORT_OK, &adapter->status);
|
|
|
|
break;
|
|
|
|
case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
|
2006-02-11 03:41:50 +03:00
|
|
|
zfcp_fsf_exchange_port_evaluate(fsf_req, 0);
|
2005-09-13 23:51:16 +04:00
|
|
|
atomic_set_mask(ZFCP_STATUS_ADAPTER_XPORT_OK, &adapter->status);
|
2008-03-27 16:22:02 +03:00
|
|
|
zfcp_fsf_link_down_info_eval(fsf_req, 43,
|
2005-09-13 23:51:16 +04:00
|
|
|
&qtcb->header.fsf_status_qual.link_down_info);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_open_port
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* purpose:
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* returns: address of initiated FSF request
|
2007-09-07 11:15:31 +04:00
|
|
|
* NULL - request could not be initiated
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2006-09-19 00:29:56 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long lock_flags;
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(erp_action->adapter,
|
|
|
|
FSF_QTCB_OPEN_PORT_WITH_DID,
|
|
|
|
ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
erp_action->adapter->pool.fsf_req_erp,
|
2006-09-19 00:29:56 +04:00
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->qtcb->bottom.support.d_id = erp_action->port->d_id;
|
2005-04-17 02:20:36 +04:00
|
|
|
atomic_set_mask(ZFCP_STATUS_COMMON_OPENING, &erp_action->port->status);
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->data = (unsigned long) erp_action->port;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
erp_action->fsf_req = fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_erp_start_timer(fsf_req);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval) {
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&erp_action->adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_open_port_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Open Port command
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_open_port_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = -EINVAL;
|
|
|
|
struct zfcp_port *port;
|
|
|
|
struct fsf_plogi *plogi;
|
|
|
|
struct fsf_qtcb_header *header;
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
port = (struct zfcp_port *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
header = &fsf_req->qtcb->header;
|
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
|
|
|
|
/* don't change port status in our bookkeeping */
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (header->fsf_status) {
|
|
|
|
|
|
|
|
case FSF_PORT_ALREADY_OPEN:
|
|
|
|
/*
|
|
|
|
* This is a bug, however operation should continue normally
|
|
|
|
* if it is simply ignored
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ACCESS_DENIED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_access_denied_port(fsf_req, port);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The adapter is out of resources. The remote port "
|
|
|
|
"0x%016Lx could not be opened, disabling it.\n",
|
|
|
|
port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_failed(port, 31, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (header->fsf_status_qual.word[0]) {
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
|
|
|
/* ERP strategy will escalate */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* ERP strategy will escalate */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_NO_RETRY_POSSIBLE:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The remote port 0x%016Lx could not be "
|
|
|
|
"opened. Disabling it.\n", port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_failed(port, 32, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
|
|
|
/* save port handle assigned by FSF */
|
|
|
|
port->handle = header->port_handle;
|
|
|
|
/* mark port as open */
|
|
|
|
atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
|
|
|
|
ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
|
2005-06-13 15:23:57 +04:00
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
|
|
|
|
ZFCP_STATUS_COMMON_ACCESS_BOXED,
|
|
|
|
&port->status);
|
2005-04-17 02:20:36 +04:00
|
|
|
retval = 0;
|
|
|
|
/* check whether D_ID has changed during open */
|
|
|
|
/*
|
|
|
|
* FIXME: This check is not airtight, as the FCP channel does
|
|
|
|
* not monitor closures of target port connections caused on
|
|
|
|
* the remote side. Thus, they might miss out on invalidating
|
|
|
|
* locally cached WWPNs (and other N_Port parameters) of gone
|
|
|
|
* target ports. So, our heroic attempt to make things safe
|
|
|
|
* could be undermined by 'open port' response data tagged with
|
|
|
|
* obsolete WWPNs. Another reason to monitor potential
|
|
|
|
* connection closures ourself at least (by interpreting
|
|
|
|
* incoming ELS' and unsolicited status). It just crosses my
|
|
|
|
* mind that one should be able to cross-check by means of
|
|
|
|
* another GID_PN straight after a port has been opened.
|
|
|
|
* Alternately, an ADISC/PDISC ELS should suffice, as well.
|
|
|
|
*/
|
|
|
|
plogi = (struct fsf_plogi *) fsf_req->qtcb->bottom.support.els;
|
|
|
|
if (!atomic_test_mask(ZFCP_STATUS_PORT_NO_WWPN, &port->status))
|
|
|
|
{
|
|
|
|
if (fsf_req->qtcb->bottom.support.els1_length <
|
2006-05-22 20:24:33 +04:00
|
|
|
sizeof (struct fsf_plogi)) {
|
2005-04-17 02:20:36 +04:00
|
|
|
/* skip sanity check and assume wwpn is ok */
|
|
|
|
} else {
|
|
|
|
if (plogi->serv_param.wwpn != port->wwpn) {
|
|
|
|
atomic_clear_mask(
|
|
|
|
ZFCP_STATUS_PORT_DID_DID,
|
|
|
|
&port->status);
|
2006-05-22 20:24:33 +04:00
|
|
|
} else {
|
2005-04-17 02:20:36 +04:00
|
|
|
port->wwnn = plogi->serv_param.wwnn;
|
2008-06-10 20:20:54 +04:00
|
|
|
zfcp_fc_plogi_evaluate(port, plogi);
|
2006-05-22 20:24:33 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_UNKNOWN_OP_SUBTYPE:
|
|
|
|
/* should never occure, subtype not set in zfcp_fsf_open_port */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING, &port->status);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_close_port
|
|
|
|
*
|
|
|
|
* purpose: submit FSF command "close port"
|
|
|
|
*
|
|
|
|
* returns: address of initiated FSF request
|
|
|
|
* NULL - request could not be initiated
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2006-09-19 00:29:56 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long lock_flags;
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(erp_action->adapter,
|
|
|
|
FSF_QTCB_CLOSE_PORT,
|
|
|
|
ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
erp_action->adapter->pool.fsf_req_erp,
|
2006-09-19 00:29:56 +04:00
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
|
|
|
atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING, &erp_action->port->status);
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->data = (unsigned long) erp_action->port;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
fsf_req->qtcb->header.port_handle = erp_action->port->handle;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
erp_action->fsf_req = fsf_req;
|
|
|
|
|
|
|
|
zfcp_erp_start_timer(fsf_req);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval) {
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&erp_action->adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_close_port_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Close Port FSF command
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_close_port_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = -EINVAL;
|
|
|
|
struct zfcp_port *port;
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
port = (struct zfcp_port *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
|
|
|
|
/* don't change port status in our bookkeeping */
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (fsf_req->qtcb->header.fsf_status) {
|
|
|
|
|
|
|
|
case FSF_PORT_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(port->adapter, 0, 107, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
/* Note: FSF has actually closed the port in this case.
|
|
|
|
* The status code is just daft. Fingers crossed for a change
|
|
|
|
*/
|
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_modify_port_status(port, 33, fsf_req,
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_STATUS_COMMON_OPEN,
|
|
|
|
ZFCP_CLEAR);
|
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING, &port->status);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_close_physical_port
|
|
|
|
*
|
|
|
|
* purpose: submit FSF command "close physical port"
|
|
|
|
*
|
|
|
|
* returns: address of initiated FSF request
|
|
|
|
* NULL - request could not be initiated
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2006-09-19 00:29:56 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
int retval = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(erp_action->adapter,
|
|
|
|
FSF_QTCB_CLOSE_PHYSICAL_PORT,
|
|
|
|
ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
erp_action->adapter->pool.fsf_req_erp,
|
2006-09-19 00:29:56 +04:00
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
|
|
|
/* mark port as being closed */
|
|
|
|
atomic_set_mask(ZFCP_STATUS_PORT_PHYS_CLOSING,
|
|
|
|
&erp_action->port->status);
|
|
|
|
/* save a pointer to this port */
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->data = (unsigned long) erp_action->port;
|
|
|
|
fsf_req->qtcb->header.port_handle = erp_action->port->handle;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
erp_action->fsf_req = fsf_req;
|
|
|
|
|
|
|
|
zfcp_erp_start_timer(fsf_req);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval) {
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&erp_action->adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_close_physical_port_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Close Physical Port FSF command
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = -EINVAL;
|
|
|
|
struct zfcp_port *port;
|
|
|
|
struct zfcp_unit *unit;
|
|
|
|
struct fsf_qtcb_header *header;
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
port = (struct zfcp_port *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
header = &fsf_req->qtcb->header;
|
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
|
|
|
|
/* don't change port status in our bookkeeping */
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (header->fsf_status) {
|
|
|
|
|
|
|
|
case FSF_PORT_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(port->adapter, 0, 108, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ACCESS_DENIED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_access_denied_port(fsf_req, port);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PORT_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_boxed(port, 50, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
|
|
|
|
ZFCP_STATUS_FSFREQ_RETRY;
|
2008-03-10 18:18:54 +03:00
|
|
|
|
|
|
|
/* can't use generic zfcp_erp_modify_port_status because
|
|
|
|
* ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
|
|
|
|
list_for_each_entry(unit, &port->unit_list_head, list)
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
|
|
|
|
&unit->status);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (header->fsf_status_qual.word[0]) {
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
|
|
|
/* This will now be escalated by ERP */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* ERP strategy will escalate */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
|
|
|
/* can't use generic zfcp_erp_modify_port_status because
|
|
|
|
* ZFCP_STATUS_COMMON_OPEN must not be reset for the port
|
|
|
|
*/
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
|
|
|
|
list_for_each_entry(unit, &port->unit_list_head, list)
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
|
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_CLOSING, &port->status);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_open_unit
|
|
|
|
*
|
|
|
|
* purpose:
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*
|
|
|
|
* assumptions: This routine does not check whether the associated
|
|
|
|
* remote port has already been opened. This should be
|
|
|
|
* done by calling routines. Otherwise some status
|
|
|
|
* may be presented by FSF
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_open_unit(struct zfcp_erp_action *erp_action)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2006-09-19 00:29:56 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long lock_flags;
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(erp_action->adapter,
|
|
|
|
FSF_QTCB_OPEN_LUN,
|
|
|
|
ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
erp_action->adapter->pool.fsf_req_erp,
|
2006-09-19 00:29:56 +04:00
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->qtcb->header.port_handle = erp_action->port->handle;
|
|
|
|
fsf_req->qtcb->bottom.support.fcp_lun = erp_action->unit->fcp_lun;
|
2005-09-13 23:51:16 +04:00
|
|
|
if (!(erp_action->adapter->connection_features & FSF_FEATURE_NPIV_MODE))
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->qtcb->bottom.support.option =
|
2006-05-22 20:18:19 +04:00
|
|
|
FSF_OPEN_LUN_SUPPRESS_BOXING;
|
2005-04-17 02:20:36 +04:00
|
|
|
atomic_set_mask(ZFCP_STATUS_COMMON_OPENING, &erp_action->unit->status);
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->data = (unsigned long) erp_action->unit;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
erp_action->fsf_req = fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_erp_start_timer(fsf_req);
|
|
|
|
retval = zfcp_fsf_req_send(erp_action->fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval) {
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&erp_action->adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_open_unit_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Open LUN command
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_open_unit_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = -EINVAL;
|
|
|
|
struct zfcp_adapter *adapter;
|
|
|
|
struct zfcp_unit *unit;
|
|
|
|
struct fsf_qtcb_header *header;
|
|
|
|
struct fsf_qtcb_bottom_support *bottom;
|
|
|
|
struct fsf_queue_designator *queue_designator;
|
2005-09-13 23:51:16 +04:00
|
|
|
int exclusive, readwrite;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
unit = (struct zfcp_unit *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
|
|
|
|
/* don't change unit status in our bookkeeping */
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
adapter = fsf_req->adapter;
|
|
|
|
header = &fsf_req->qtcb->header;
|
|
|
|
bottom = &fsf_req->qtcb->bottom.support;
|
|
|
|
queue_designator = &header->fsf_status_qual.fsf_queue_designator;
|
|
|
|
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
|
2007-05-08 13:19:57 +04:00
|
|
|
ZFCP_STATUS_COMMON_ACCESS_BOXED |
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_STATUS_UNIT_SHARED |
|
|
|
|
ZFCP_STATUS_UNIT_READONLY,
|
|
|
|
&unit->status);
|
|
|
|
|
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (header->fsf_status) {
|
|
|
|
|
|
|
|
case FSF_PORT_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(unit->port->adapter, 0, 109, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_LUN_ALREADY_OPEN:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ACCESS_DENIED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_access_denied_unit(fsf_req, unit);
|
2005-04-17 02:20:36 +04:00
|
|
|
atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status);
|
2008-06-10 20:20:58 +04:00
|
|
|
atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PORT_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_boxed(unit->port, 51, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
|
|
|
|
ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_LUN_SHARING_VIOLATION:
|
|
|
|
if (header->fsf_status_qual.word[0] != 0) {
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&adapter->ccw_device->dev,
|
|
|
|
"FCP-LUN 0x%Lx at the remote port "
|
|
|
|
"with WWPN 0x%Lx "
|
|
|
|
"connected to the adapter "
|
|
|
|
"is already in use in LPAR%d, CSS%d.\n",
|
|
|
|
unit->fcp_lun,
|
|
|
|
unit->port->wwpn,
|
|
|
|
queue_designator->hla,
|
|
|
|
queue_designator->cssid);
|
|
|
|
} else
|
|
|
|
zfcp_act_eval_err(adapter,
|
|
|
|
header->fsf_status_qual.word[2]);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_access_denied(unit, 60, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status);
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status);
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_warn(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"The adapter ran out of resources. There is no "
|
|
|
|
"handle available for unit 0x%016Lx on port 0x%016Lx.",
|
|
|
|
unit->fcp_lun, unit->port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_failed(unit, 34, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (header->fsf_status_qual.word[0]) {
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
|
|
|
/* Re-establish link to port */
|
2005-06-13 15:16:27 +04:00
|
|
|
zfcp_test_link(unit->port);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* ERP strategy will escalate */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_INVALID_COMMAND_OPTION:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
retval = -EINVAL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
|
|
|
/* save LUN handle assigned by FSF */
|
|
|
|
unit->handle = header->lun_handle;
|
|
|
|
/* mark unit as open */
|
|
|
|
atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
|
2005-09-13 23:51:16 +04:00
|
|
|
|
|
|
|
if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE) &&
|
|
|
|
(adapter->adapter_features & FSF_FEATURE_LUN_SHARING) &&
|
|
|
|
(adapter->ccw_device->id.dev_model != ZFCP_DEVICE_MODEL_PRIV)) {
|
|
|
|
exclusive = (bottom->lun_access_info &
|
|
|
|
FSF_UNIT_ACCESS_EXCLUSIVE);
|
|
|
|
readwrite = (bottom->lun_access_info &
|
|
|
|
FSF_UNIT_ACCESS_OUTBOUND_TRANSFER);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!exclusive)
|
|
|
|
atomic_set_mask(ZFCP_STATUS_UNIT_SHARED,
|
|
|
|
&unit->status);
|
|
|
|
|
|
|
|
if (!readwrite) {
|
|
|
|
atomic_set_mask(ZFCP_STATUS_UNIT_READONLY,
|
|
|
|
&unit->status);
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_info(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"Read-only access for unit 0x%016Lx "
|
|
|
|
"on port 0x%016Lx.\n",
|
|
|
|
unit->fcp_lun, unit->port->wwpn);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (exclusive && !readwrite) {
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"Exclusive access of read-only unit "
|
|
|
|
"0x%016Lx on port 0x%016Lx not "
|
|
|
|
"supported, disabling unit.\n",
|
|
|
|
unit->fcp_lun, unit->port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_failed(unit, 35, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_shutdown(unit, 0, 80, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
} else if (!exclusive && readwrite) {
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"Shared access of read-write unit "
|
|
|
|
"0x%016Lx on port 0x%016Lx not "
|
|
|
|
"supported, disabling unit.\n",
|
|
|
|
unit->fcp_lun, unit->port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_failed(unit, 36, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_shutdown(unit, 0, 81, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING, &unit->status);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_close_unit
|
|
|
|
*
|
|
|
|
* purpose:
|
|
|
|
*
|
|
|
|
* returns: address of fsf_req - request successfully initiated
|
2007-09-07 11:15:31 +04:00
|
|
|
* NULL -
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* assumptions: This routine does not check whether the associated
|
|
|
|
* remote port/lun has already been opened. This should be
|
|
|
|
* done by calling routines. Otherwise some status
|
|
|
|
* may be presented by FSF
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_close_unit(struct zfcp_erp_action *erp_action)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2006-09-19 00:29:56 +04:00
|
|
|
struct zfcp_fsf_req *fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long lock_flags;
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(erp_action->adapter,
|
|
|
|
FSF_QTCB_CLOSE_LUN,
|
|
|
|
ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
|
|
|
|
erp_action->adapter->pool.fsf_req_erp,
|
2006-09-19 00:29:56 +04:00
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->qtcb->header.port_handle = erp_action->port->handle;
|
|
|
|
fsf_req->qtcb->header.lun_handle = erp_action->unit->handle;
|
2005-04-17 02:20:36 +04:00
|
|
|
atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING, &erp_action->unit->status);
|
2006-09-19 00:29:56 +04:00
|
|
|
fsf_req->data = (unsigned long) erp_action->unit;
|
|
|
|
fsf_req->erp_action = erp_action;
|
|
|
|
erp_action->fsf_req = fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_erp_start_timer(fsf_req);
|
|
|
|
retval = zfcp_fsf_req_send(erp_action->fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval) {
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
erp_action->fsf_req = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&erp_action->adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_close_unit_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Close LUN FSF command
|
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_close_unit_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = -EINVAL;
|
|
|
|
struct zfcp_unit *unit;
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
unit = (struct zfcp_unit *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
|
|
|
|
/* don't change unit status in our bookkeeping */
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (fsf_req->qtcb->header.fsf_status) {
|
|
|
|
|
|
|
|
case FSF_PORT_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(unit->port->adapter, 0, 110, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_LUN_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_reopen(unit->port, 0, 111, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PORT_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_boxed(unit->port, 52, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
|
|
|
|
ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (fsf_req->qtcb->header.fsf_status_qual.word[0]) {
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
|
|
|
/* re-establish link to port */
|
2005-06-13 15:16:27 +04:00
|
|
|
zfcp_test_link(unit->port);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* ERP strategy will escalate */
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
|
|
|
/* mark unit as closed */
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
|
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING, &unit->status);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_send_fcp_command_task - initiate an FCP command (for a SCSI command)
|
|
|
|
* @adapter: adapter where scsi command is issued
|
|
|
|
* @unit: unit where command is sent to
|
|
|
|
* @scsi_cmnd: scsi command to be sent
|
|
|
|
* @timer: timer to be started when request is initiated
|
|
|
|
* @req_flags: flags for fsf_request
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_send_fcp_command_task(struct zfcp_adapter *adapter,
|
|
|
|
struct zfcp_unit *unit,
|
|
|
|
struct scsi_cmnd * scsi_cmnd,
|
2006-09-19 00:29:56 +04:00
|
|
|
int use_timer, int req_flags)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct zfcp_fsf_req *fsf_req = NULL;
|
|
|
|
struct fcp_cmnd_iu *fcp_cmnd_iu;
|
|
|
|
unsigned int sbtype;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
int real_bytes = 0;
|
|
|
|
int retval = 0;
|
|
|
|
int mask;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND, req_flags,
|
|
|
|
adapter->pool.fsf_req_scsi,
|
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (unlikely(retval < 0))
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_req_create;
|
|
|
|
|
2007-12-20 14:30:26 +03:00
|
|
|
if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
|
|
|
|
&unit->status))) {
|
|
|
|
retval = -EBUSY;
|
|
|
|
goto unit_blocked;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
zfcp_unit_get(unit);
|
|
|
|
fsf_req->unit = unit;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-13 23:47:52 +04:00
|
|
|
/* associate FSF request with SCSI request (for look up on abort) */
|
2006-09-19 00:29:20 +04:00
|
|
|
scsi_cmnd->host_scribble = (unsigned char *) fsf_req->req_id;
|
2005-09-13 23:47:52 +04:00
|
|
|
|
|
|
|
/* associate SCSI command with FSF request */
|
|
|
|
fsf_req->data = (unsigned long) scsi_cmnd;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* set handles of unit and its parent port in QTCB */
|
|
|
|
fsf_req->qtcb->header.lun_handle = unit->handle;
|
|
|
|
fsf_req->qtcb->header.port_handle = unit->port->handle;
|
|
|
|
|
|
|
|
/* FSF does not define the structure of the FCP_CMND IU */
|
|
|
|
fcp_cmnd_iu = (struct fcp_cmnd_iu *)
|
|
|
|
&(fsf_req->qtcb->bottom.io.fcp_cmnd);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set depending on data direction:
|
|
|
|
* data direction bits in SBALE (SB Type)
|
|
|
|
* data direction bits in QTCB
|
|
|
|
* data direction bits in FCP_CMND IU
|
|
|
|
*/
|
|
|
|
switch (scsi_cmnd->sc_data_direction) {
|
|
|
|
case DMA_NONE:
|
|
|
|
fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
|
|
|
|
/*
|
|
|
|
* FIXME(qdio):
|
|
|
|
* what is the correct type for commands
|
|
|
|
* without 'real' data buffers?
|
|
|
|
*/
|
|
|
|
sbtype = SBAL_FLAGS0_TYPE_READ;
|
|
|
|
break;
|
|
|
|
case DMA_FROM_DEVICE:
|
|
|
|
fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_READ;
|
|
|
|
sbtype = SBAL_FLAGS0_TYPE_READ;
|
|
|
|
fcp_cmnd_iu->rddata = 1;
|
|
|
|
break;
|
|
|
|
case DMA_TO_DEVICE:
|
|
|
|
fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_WRITE;
|
|
|
|
sbtype = SBAL_FLAGS0_TYPE_WRITE;
|
|
|
|
fcp_cmnd_iu->wddata = 1;
|
|
|
|
break;
|
|
|
|
case DMA_BIDIRECTIONAL:
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* dummy, catch this condition earlier
|
|
|
|
* in zfcp_scsi_queuecommand
|
|
|
|
*/
|
|
|
|
goto failed_scsi_cmnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set FC service class in QTCB (3 per default) */
|
2006-05-22 20:18:19 +04:00
|
|
|
fsf_req->qtcb->bottom.io.service_class = ZFCP_FC_SERVICE_CLASS_DEFAULT;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* set FCP_LUN in FCP_CMND IU in QTCB */
|
|
|
|
fcp_cmnd_iu->fcp_lun = unit->fcp_lun;
|
|
|
|
|
|
|
|
mask = ZFCP_STATUS_UNIT_READONLY | ZFCP_STATUS_UNIT_SHARED;
|
|
|
|
|
|
|
|
/* set task attributes in FCP_CMND IU in QTCB */
|
|
|
|
if (likely((scsi_cmnd->device->simple_tags) ||
|
|
|
|
(atomic_test_mask(mask, &unit->status))))
|
|
|
|
fcp_cmnd_iu->task_attribute = SIMPLE_Q;
|
|
|
|
else
|
|
|
|
fcp_cmnd_iu->task_attribute = UNTAGGED;
|
|
|
|
|
|
|
|
/* set additional length of FCP_CDB in FCP_CMND IU in QTCB, if needed */
|
2008-06-10 20:20:58 +04:00
|
|
|
if (unlikely(scsi_cmnd->cmd_len > FCP_CDB_LENGTH))
|
2005-04-17 02:20:36 +04:00
|
|
|
fcp_cmnd_iu->add_fcp_cdb_length
|
|
|
|
= (scsi_cmnd->cmd_len - FCP_CDB_LENGTH) >> 2;
|
|
|
|
/*
|
|
|
|
* copy SCSI CDB (including additional length, if any) to
|
|
|
|
* FCP_CDB in FCP_CMND IU in QTCB
|
|
|
|
*/
|
|
|
|
memcpy(fcp_cmnd_iu->fcp_cdb, scsi_cmnd->cmnd, scsi_cmnd->cmd_len);
|
|
|
|
|
|
|
|
/* FCP CMND IU length in QTCB */
|
|
|
|
fsf_req->qtcb->bottom.io.fcp_cmnd_length =
|
|
|
|
sizeof (struct fcp_cmnd_iu) +
|
|
|
|
fcp_cmnd_iu->add_fcp_cdb_length + sizeof (fcp_dl_t);
|
|
|
|
|
|
|
|
/* generate SBALEs from data buffer */
|
2008-06-10 20:20:57 +04:00
|
|
|
real_bytes = zfcp_qdio_sbals_from_sg(fsf_req, sbtype,
|
|
|
|
scsi_sglist(scsi_cmnd),
|
|
|
|
ZFCP_MAX_SBALS_PER_REQ);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (unlikely(real_bytes < 0)) {
|
2008-06-10 20:20:58 +04:00
|
|
|
if (fsf_req->sbal_number < ZFCP_MAX_SBALS_PER_REQ)
|
2007-08-28 11:30:22 +04:00
|
|
|
retval = -EIO;
|
2008-06-10 20:20:58 +04:00
|
|
|
else {
|
|
|
|
dev_err(&adapter->ccw_device->dev,
|
|
|
|
"SCSI request too large. "
|
|
|
|
"Shutting down unit 0x%016Lx on port "
|
|
|
|
"0x%016Lx.\n", unit->fcp_lun,
|
|
|
|
unit->port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_shutdown(unit, 0, 131, fsf_req);
|
2007-08-28 11:30:22 +04:00
|
|
|
retval = -EINVAL;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
goto no_fit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set length of FCP data length in FCP_CMND IU in QTCB */
|
|
|
|
zfcp_set_fcp_dl(fcp_cmnd_iu, real_bytes);
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
if (use_timer)
|
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
|
|
|
|
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (unlikely(retval < 0))
|
2005-04-17 02:20:36 +04:00
|
|
|
goto send_failed;
|
|
|
|
|
|
|
|
goto success;
|
|
|
|
|
|
|
|
send_failed:
|
|
|
|
no_fit:
|
|
|
|
failed_scsi_cmnd:
|
2005-09-13 23:47:52 +04:00
|
|
|
zfcp_unit_put(unit);
|
2008-04-18 14:51:57 +04:00
|
|
|
unit_blocked:
|
2005-04-17 02:20:36 +04:00
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
fsf_req = NULL;
|
|
|
|
scsi_cmnd->host_scribble = NULL;
|
|
|
|
success:
|
|
|
|
failed_req_create:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct zfcp_fsf_req *
|
|
|
|
zfcp_fsf_send_fcp_command_task_management(struct zfcp_adapter *adapter,
|
|
|
|
struct zfcp_unit *unit,
|
|
|
|
u8 tm_flags, int req_flags)
|
|
|
|
{
|
|
|
|
struct zfcp_fsf_req *fsf_req = NULL;
|
|
|
|
int retval = 0;
|
|
|
|
struct fcp_cmnd_iu *fcp_cmnd_iu;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
|
|
|
|
/* setup new FSF request */
|
|
|
|
retval = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND, req_flags,
|
|
|
|
adapter->pool.fsf_req_scsi,
|
|
|
|
&lock_flags, &fsf_req);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (retval < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2007-12-20 14:30:27 +03:00
|
|
|
if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
|
|
|
|
&unit->status)))
|
|
|
|
goto unit_blocked;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* Used to decide on proper handler in the return path,
|
|
|
|
* could be either zfcp_fsf_send_fcp_command_task_handler or
|
|
|
|
* zfcp_fsf_send_fcp_command_task_management_handler */
|
|
|
|
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hold a pointer to the unit being target of this
|
|
|
|
* task management request
|
|
|
|
*/
|
2005-09-13 23:47:52 +04:00
|
|
|
fsf_req->data = (unsigned long) unit;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* set FSF related fields in QTCB */
|
|
|
|
fsf_req->qtcb->header.lun_handle = unit->handle;
|
|
|
|
fsf_req->qtcb->header.port_handle = unit->port->handle;
|
|
|
|
fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
|
2006-05-22 20:18:19 +04:00
|
|
|
fsf_req->qtcb->bottom.io.service_class = ZFCP_FC_SERVICE_CLASS_DEFAULT;
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->qtcb->bottom.io.fcp_cmnd_length =
|
|
|
|
sizeof (struct fcp_cmnd_iu) + sizeof (fcp_dl_t);
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE;
|
|
|
|
sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
|
|
|
|
|
|
|
|
/* set FCP related fields in FCP_CMND IU in QTCB */
|
|
|
|
fcp_cmnd_iu = (struct fcp_cmnd_iu *)
|
|
|
|
&(fsf_req->qtcb->bottom.io.fcp_cmnd);
|
|
|
|
fcp_cmnd_iu->fcp_lun = unit->fcp_lun;
|
|
|
|
fcp_cmnd_iu->task_management_flags = tm_flags;
|
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_SCSI_ER_TIMEOUT);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2007-12-20 14:30:27 +03:00
|
|
|
if (!retval)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
|
2007-12-20 14:30:27 +03:00
|
|
|
unit_blocked:
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
fsf_req = NULL;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
out:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return fsf_req;
|
|
|
|
}
|
|
|
|
|
2008-05-06 13:00:05 +04:00
|
|
|
static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
|
|
|
|
{
|
|
|
|
lat_rec->sum += lat;
|
|
|
|
if (lat_rec->min > lat)
|
|
|
|
lat_rec->min = lat;
|
|
|
|
if (lat_rec->max < lat)
|
|
|
|
lat_rec->max = lat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zfcp_fsf_req_latency(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
struct fsf_qual_latency_info *lat_inf;
|
|
|
|
struct latency_cont *lat;
|
|
|
|
struct zfcp_unit *unit;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
lat_inf = &fsf_req->qtcb->prefix.prot_status_qual.latency_info;
|
|
|
|
unit = fsf_req->unit;
|
|
|
|
|
|
|
|
switch (fsf_req->qtcb->bottom.io.data_direction) {
|
|
|
|
case FSF_DATADIR_READ:
|
|
|
|
lat = &unit->latencies.read;
|
|
|
|
break;
|
|
|
|
case FSF_DATADIR_WRITE:
|
|
|
|
lat = &unit->latencies.write;
|
|
|
|
break;
|
|
|
|
case FSF_DATADIR_CMND:
|
|
|
|
lat = &unit->latencies.cmd;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_lock_irqsave(&unit->latencies.lock, flags);
|
|
|
|
zfcp_fsf_update_lat(&lat->channel, lat_inf->channel_lat);
|
|
|
|
zfcp_fsf_update_lat(&lat->fabric, lat_inf->fabric_lat);
|
|
|
|
lat->counter++;
|
|
|
|
spin_unlock_irqrestore(&unit->latencies.lock, flags);
|
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_send_fcp_command_handler
|
|
|
|
*
|
|
|
|
* purpose: is called for finished Send FCP Command
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = -EINVAL;
|
|
|
|
struct zfcp_unit *unit;
|
|
|
|
struct fsf_qtcb_header *header;
|
|
|
|
|
|
|
|
header = &fsf_req->qtcb->header;
|
|
|
|
|
|
|
|
if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT))
|
2005-09-13 23:47:52 +04:00
|
|
|
unit = (struct zfcp_unit *) fsf_req->data;
|
2005-04-17 02:20:36 +04:00
|
|
|
else
|
2005-09-13 23:47:52 +04:00
|
|
|
unit = fsf_req->unit;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
|
|
|
|
/* go directly to calls of special handlers */
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* evaluate FSF status in QTCB */
|
|
|
|
switch (header->fsf_status) {
|
|
|
|
|
|
|
|
case FSF_PORT_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(unit->port->adapter, 0, 112, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_LUN_HANDLE_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_reopen(unit->port, 0, 113, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_HANDLE_MISMATCH:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(unit->port->adapter, 0, 114, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_SERVICE_CLASS_NOT_SUPPORTED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_class_not_supp(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_FCPLUN_NOT_VALID:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_reopen(unit->port, 0, 115, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ACCESS_DENIED:
|
2008-06-10 20:20:58 +04:00
|
|
|
zfcp_fsf_access_denied_unit(fsf_req, unit);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_DIRECTION_INDICATOR_NOT_VALID:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"Invalid data direction (%d) given for unit 0x%016Lx "
|
|
|
|
"on port 0x%016Lx, shutting down adapter.\n",
|
|
|
|
fsf_req->qtcb->bottom.io.data_direction,
|
|
|
|
unit->fcp_lun, unit->port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(unit->port->adapter, 0, 133, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_CMND_LENGTH_NOT_VALID:
|
2008-06-10 20:20:58 +04:00
|
|
|
dev_err(&fsf_req->adapter->ccw_device->dev,
|
|
|
|
"An invalid control-data-block length field (%d) "
|
|
|
|
"was found in a command for unit 0x%016Lx on port "
|
|
|
|
"0x%016Lx. Shutting down adapter.\n",
|
|
|
|
fsf_req->qtcb->bottom.io.fcp_cmnd_length,
|
|
|
|
unit->fcp_lun, unit->port->wwpn);
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_shutdown(unit->port->adapter, 0, 134, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_PORT_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_port_boxed(unit->port, 53, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
|
|
|
|
ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_LUN_BOXED:
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_unit_boxed(unit, 54, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
|
|
|
|
| ZFCP_STATUS_FSFREQ_RETRY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_ADAPTER_STATUS_AVAILABLE:
|
|
|
|
switch (header->fsf_status_qual.word[0]) {
|
|
|
|
case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
|
|
|
|
/* re-establish link to port */
|
2005-06-13 15:16:27 +04:00
|
|
|
zfcp_test_link(unit->port);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
|
|
|
|
/* FIXME(hw) need proper specs for proper action */
|
|
|
|
/* let scsi stack deal with retries and escalation */
|
|
|
|
break;
|
|
|
|
}
|
2005-06-13 15:17:44 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_GOOD:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FSF_FCP_RSP_AVAILABLE:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT) {
|
|
|
|
retval =
|
|
|
|
zfcp_fsf_send_fcp_command_task_management_handler(fsf_req);
|
|
|
|
} else {
|
|
|
|
retval = zfcp_fsf_send_fcp_command_task_handler(fsf_req);
|
2005-09-13 23:47:52 +04:00
|
|
|
fsf_req->unit = NULL;
|
|
|
|
zfcp_unit_put(unit);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_send_fcp_command_task_handler
|
|
|
|
*
|
|
|
|
* purpose: evaluates FCP_RSP IU
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
struct scsi_cmnd *scpnt;
|
|
|
|
struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *)
|
|
|
|
&(fsf_req->qtcb->bottom.io.fcp_rsp);
|
|
|
|
u32 sns_len;
|
|
|
|
char *fcp_rsp_info = zfcp_get_fcp_rsp_info_ptr(fcp_rsp_iu);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
read_lock_irqsave(&fsf_req->adapter->abort_lock, flags);
|
2005-09-13 23:47:52 +04:00
|
|
|
scpnt = (struct scsi_cmnd *) fsf_req->data;
|
2008-06-10 20:20:58 +04:00
|
|
|
if (unlikely(!scpnt))
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
2008-06-10 20:20:58 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ABORTED)) {
|
|
|
|
/* FIXME: (design) mid-layer should handle DID_ABORT like
|
|
|
|
* DID_SOFT_ERROR by retrying the request for devices
|
|
|
|
* that allow retries.
|
|
|
|
*/
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_SOFT_ERROR);
|
|
|
|
set_driver_byte(scpnt, SUGGEST_RETRY);
|
2005-04-17 02:20:36 +04:00
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_ERROR);
|
2005-04-17 02:20:36 +04:00
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set message byte of result in SCSI command */
|
2008-07-02 12:56:35 +04:00
|
|
|
set_msg_byte(scpnt, COMMAND_COMPLETE);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* copy SCSI status code of FCP_STATUS of FCP_RSP IU to status byte
|
|
|
|
* of result in SCSI command
|
|
|
|
*/
|
|
|
|
scpnt->result |= fcp_rsp_iu->scsi_status;
|
|
|
|
|
2008-05-06 13:00:05 +04:00
|
|
|
if (fsf_req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA)
|
|
|
|
zfcp_fsf_req_latency(fsf_req);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* check FCP_RSP_INFO */
|
|
|
|
if (unlikely(fcp_rsp_iu->validity.bits.fcp_rsp_len_valid)) {
|
|
|
|
switch (fcp_rsp_info[3]) {
|
|
|
|
case RSP_CODE_GOOD:
|
|
|
|
/* ok, continue */
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_OK);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
case RSP_CODE_LENGTH_MISMATCH:
|
|
|
|
/* hardware bug */
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_ERROR);
|
2005-04-17 02:20:36 +04:00
|
|
|
goto skip_fsfstatus;
|
|
|
|
case RSP_CODE_FIELD_INVALID:
|
|
|
|
/* driver or hardware bug */
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_ERROR);
|
2005-04-17 02:20:36 +04:00
|
|
|
goto skip_fsfstatus;
|
|
|
|
case RSP_CODE_RO_MISMATCH:
|
|
|
|
/* hardware bug */
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_ERROR);
|
2005-04-17 02:20:36 +04:00
|
|
|
goto skip_fsfstatus;
|
|
|
|
default:
|
2008-06-10 20:20:58 +04:00
|
|
|
/* invalid FCP response code */
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_ERROR);
|
2005-04-11 08:04:28 +04:00
|
|
|
goto skip_fsfstatus;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for sense data */
|
|
|
|
if (unlikely(fcp_rsp_iu->validity.bits.fcp_sns_len_valid)) {
|
|
|
|
sns_len = FSF_FCP_RSP_SIZE -
|
|
|
|
sizeof (struct fcp_rsp_iu) + fcp_rsp_iu->fcp_rsp_len;
|
|
|
|
sns_len = min(sns_len, (u32) SCSI_SENSE_BUFFERSIZE);
|
|
|
|
sns_len = min(sns_len, fcp_rsp_iu->fcp_sns_len);
|
|
|
|
|
2008-01-27 06:41:50 +03:00
|
|
|
memcpy(scpnt->sense_buffer,
|
2005-04-17 02:20:36 +04:00
|
|
|
zfcp_get_fcp_sns_info_ptr(fcp_rsp_iu), sns_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for underrun */
|
|
|
|
if (unlikely(fcp_rsp_iu->validity.bits.fcp_resid_under)) {
|
2007-07-29 11:46:28 +04:00
|
|
|
scsi_set_resid(scpnt, fcp_rsp_iu->fcp_resid);
|
|
|
|
if (scsi_bufflen(scpnt) - scsi_get_resid(scpnt) <
|
|
|
|
scpnt->underflow)
|
2008-07-02 12:56:35 +04:00
|
|
|
set_host_byte(scpnt, DID_ERROR);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
2005-09-13 23:50:38 +04:00
|
|
|
if (scpnt->result != 0)
|
2006-02-11 03:42:58 +03:00
|
|
|
zfcp_scsi_dbf_event_result("erro", 3, fsf_req->adapter, scpnt, fsf_req);
|
2005-09-13 23:50:38 +04:00
|
|
|
else if (scpnt->retries > 0)
|
2006-02-11 03:42:58 +03:00
|
|
|
zfcp_scsi_dbf_event_result("retr", 4, fsf_req->adapter, scpnt, fsf_req);
|
2005-09-13 23:50:38 +04:00
|
|
|
else
|
2006-02-11 03:42:58 +03:00
|
|
|
zfcp_scsi_dbf_event_result("norm", 6, fsf_req->adapter, scpnt, fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* cleanup pointer (need this especially for abort) */
|
|
|
|
scpnt->host_scribble = NULL;
|
|
|
|
|
|
|
|
/* always call back */
|
|
|
|
(scpnt->scsi_done) (scpnt);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We must hold this lock until scsi_done has been called.
|
|
|
|
* Otherwise we may call scsi_done after abort regarding this
|
|
|
|
* command has completed.
|
|
|
|
* Note: scsi_done must not block!
|
|
|
|
*/
|
|
|
|
out:
|
|
|
|
read_unlock_irqrestore(&fsf_req->adapter->abort_lock, flags);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_send_fcp_command_task_management_handler
|
|
|
|
*
|
|
|
|
* purpose: evaluates FCP_RSP IU
|
|
|
|
*
|
2007-09-07 11:15:31 +04:00
|
|
|
* returns:
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_send_fcp_command_task_management_handler(struct zfcp_fsf_req *fsf_req)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *)
|
|
|
|
&(fsf_req->qtcb->bottom.io.fcp_rsp);
|
|
|
|
char *fcp_rsp_info = zfcp_get_fcp_rsp_info_ptr(fcp_rsp_iu);
|
|
|
|
|
|
|
|
if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
|
|
|
|
goto skip_fsfstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check FCP_RSP_INFO */
|
|
|
|
switch (fcp_rsp_info[3]) {
|
|
|
|
case RSP_CODE_GOOD:
|
|
|
|
/* ok, continue */
|
|
|
|
break;
|
|
|
|
case RSP_CODE_TASKMAN_UNSUPP:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP;
|
|
|
|
break;
|
|
|
|
case RSP_CODE_TASKMAN_FAILED:
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
|
|
|
|
break;
|
|
|
|
default:
|
2008-06-10 20:20:58 +04:00
|
|
|
/* invalid FCP response code */
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_fsfstatus:
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_control_file
|
|
|
|
*
|
|
|
|
* purpose: Initiator of the control file upload/download FSF requests
|
|
|
|
*
|
|
|
|
* returns: 0 - FSF request is successfuly created and queued
|
|
|
|
* -EOPNOTSUPP - The FCP adapter does not have Control File support
|
|
|
|
* -EINVAL - Invalid direction specified
|
|
|
|
* -ENOMEM - Insufficient memory
|
|
|
|
* -EPERM - Cannot create FSF request or place it in QDIO queue
|
|
|
|
*/
|
2008-06-10 20:20:55 +04:00
|
|
|
struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter,
|
|
|
|
struct zfcp_fsf_cfdc *fsf_cfdc)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct zfcp_fsf_req *fsf_req;
|
|
|
|
struct fsf_qtcb_bottom_support *bottom;
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
int direction;
|
2008-06-10 20:20:55 +04:00
|
|
|
int retval;
|
|
|
|
int bytes;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-06-10 20:20:55 +04:00
|
|
|
if (!(adapter->adapter_features & FSF_FEATURE_CFDC))
|
|
|
|
return ERR_PTR(-EOPNOTSUPP);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-06-10 20:20:55 +04:00
|
|
|
switch (fsf_cfdc->command) {
|
2005-04-17 02:20:36 +04:00
|
|
|
case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
|
|
|
|
direction = SBAL_FLAGS0_TYPE_WRITE;
|
|
|
|
break;
|
|
|
|
case FSF_QTCB_UPLOAD_CONTROL_FILE:
|
|
|
|
direction = SBAL_FLAGS0_TYPE_READ;
|
|
|
|
break;
|
|
|
|
default:
|
2008-06-10 20:20:55 +04:00
|
|
|
return ERR_PTR(-EINVAL);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:55 +04:00
|
|
|
retval = zfcp_fsf_req_create(adapter, fsf_cfdc->command,
|
|
|
|
ZFCP_WAIT_FOR_SBAL,
|
2005-04-17 02:20:36 +04:00
|
|
|
NULL, &lock_flags, &fsf_req);
|
|
|
|
if (retval < 0) {
|
|
|
|
retval = -EPERM;
|
|
|
|
goto unlock_queue_lock;
|
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= direction;
|
|
|
|
|
|
|
|
bottom = &fsf_req->qtcb->bottom.support;
|
|
|
|
bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
|
2008-06-10 20:20:55 +04:00
|
|
|
bottom->option = fsf_cfdc->option;
|
|
|
|
|
|
|
|
bytes = zfcp_qdio_sbals_from_sg(fsf_req, direction,
|
2008-06-10 20:20:57 +04:00
|
|
|
fsf_cfdc->sg,
|
2008-06-10 20:20:55 +04:00
|
|
|
ZFCP_MAX_SBALS_PER_REQ);
|
|
|
|
if (bytes != ZFCP_CFDC_MAX_SIZE) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto free_fsf_req;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-09-19 00:29:56 +04:00
|
|
|
zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
|
|
|
|
retval = zfcp_fsf_req_send(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval < 0) {
|
|
|
|
retval = -EPERM;
|
|
|
|
goto free_fsf_req;
|
|
|
|
}
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
wait_event(fsf_req->completion_wq,
|
|
|
|
fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
|
|
|
|
|
2008-06-10 20:20:55 +04:00
|
|
|
return fsf_req;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
free_fsf_req:
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
unlock_queue_lock:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&adapter->req_q.lock, lock_flags);
|
2008-06-10 20:20:55 +04:00
|
|
|
return ERR_PTR(retval);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:55 +04:00
|
|
|
static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *fsf_req)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2008-06-10 20:20:55 +04:00
|
|
|
if (fsf_req->qtcb->header.fsf_status != FSF_GOOD)
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
zfcp_fsf_req_sbal_check(unsigned long *flags,
|
|
|
|
struct zfcp_qdio_queue *queue, int needed)
|
|
|
|
{
|
2008-06-10 20:20:57 +04:00
|
|
|
write_lock_irqsave(&queue->lock, *flags);
|
|
|
|
if (likely(atomic_read(&queue->count) >= needed))
|
2005-04-17 02:20:36 +04:00
|
|
|
return 1;
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&queue->lock, *flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set qtcb pointer in fsf_req and initialize QTCB
|
|
|
|
*/
|
2007-02-05 23:18:53 +03:00
|
|
|
static void
|
2005-09-13 23:50:38 +04:00
|
|
|
zfcp_fsf_req_qtcb_init(struct zfcp_fsf_req *fsf_req)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
if (likely(fsf_req->qtcb != NULL)) {
|
2006-08-02 13:05:16 +04:00
|
|
|
fsf_req->qtcb->prefix.req_seq_no =
|
|
|
|
fsf_req->adapter->fsf_req_seq_no;
|
|
|
|
fsf_req->qtcb->prefix.req_id = fsf_req->req_id;
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->qtcb->prefix.ulp_info = ZFCP_ULP_INFO_VERSION;
|
2006-08-02 13:05:16 +04:00
|
|
|
fsf_req->qtcb->prefix.qtcb_type =
|
|
|
|
fsf_qtcb_type[fsf_req->fsf_command];
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->qtcb->prefix.qtcb_version = ZFCP_QTCB_VERSION;
|
2006-08-02 13:05:16 +04:00
|
|
|
fsf_req->qtcb->header.req_handle = fsf_req->req_id;
|
2005-09-13 23:50:38 +04:00
|
|
|
fsf_req->qtcb->header.fsf_command = fsf_req->fsf_command;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zfcp_fsf_req_sbal_get - try to get one SBAL in the request queue
|
|
|
|
* @adapter: adapter for which request queue is examined
|
|
|
|
* @req_flags: flags indicating whether to wait for needed SBAL or not
|
|
|
|
* @lock_flags: lock_flags if queue_lock is taken
|
|
|
|
* Return: 0 on success, otherwise -EIO, or -ERESTARTSYS
|
2008-06-10 20:20:57 +04:00
|
|
|
* Locks: lock adapter->req_q->lock on success
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfcp_fsf_req_sbal_get(struct zfcp_adapter *adapter, int req_flags,
|
|
|
|
unsigned long *lock_flags)
|
|
|
|
{
|
|
|
|
long ret;
|
2008-06-10 20:20:57 +04:00
|
|
|
struct zfcp_qdio_queue *req_q = &adapter->req_q;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (unlikely(req_flags & ZFCP_WAIT_FOR_SBAL)) {
|
|
|
|
ret = wait_event_interruptible_timeout(adapter->request_wq,
|
2008-06-10 20:20:57 +04:00
|
|
|
zfcp_fsf_req_sbal_check(lock_flags, req_q, 1),
|
2005-04-17 02:20:36 +04:00
|
|
|
ZFCP_SBAL_TIMEOUT);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (!ret)
|
|
|
|
return -EIO;
|
2008-06-10 20:20:57 +04:00
|
|
|
} else if (!zfcp_fsf_req_sbal_check(lock_flags, req_q, 1))
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_req_create
|
|
|
|
*
|
|
|
|
* purpose: create an FSF request at the specified adapter and
|
|
|
|
* setup common fields
|
|
|
|
*
|
|
|
|
* returns: -ENOMEM if there was insufficient memory for a request
|
|
|
|
* -EIO if no qdio buffers could be allocate to the request
|
|
|
|
* -EINVAL/-EPERM on bug conditions in req_dequeue
|
|
|
|
* 0 in success
|
|
|
|
*
|
|
|
|
* note: The created request is returned by reference.
|
|
|
|
*
|
|
|
|
* locks: lock of concerned request queue must not be held,
|
|
|
|
* but is held on completion (write, irqsave)
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfcp_fsf_req_create(struct zfcp_adapter *adapter, u32 fsf_cmd, int req_flags,
|
|
|
|
mempool_t *pool, unsigned long *lock_flags,
|
|
|
|
struct zfcp_fsf_req **fsf_req_p)
|
|
|
|
{
|
|
|
|
volatile struct qdio_buffer_element *sbale;
|
|
|
|
struct zfcp_fsf_req *fsf_req = NULL;
|
|
|
|
int ret = 0;
|
2008-06-10 20:20:57 +04:00
|
|
|
struct zfcp_qdio_queue *req_q = &adapter->req_q;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* allocate new FSF request */
|
|
|
|
fsf_req = zfcp_fsf_req_alloc(pool, req_flags);
|
2008-06-10 20:20:58 +04:00
|
|
|
if (unlikely(!fsf_req)) {
|
2005-04-17 02:20:36 +04:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto failed_fsf_req;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:50:38 +04:00
|
|
|
fsf_req->adapter = adapter;
|
|
|
|
fsf_req->fsf_command = fsf_cmd;
|
2006-08-02 13:05:16 +04:00
|
|
|
INIT_LIST_HEAD(&fsf_req->list);
|
2006-09-19 00:29:56 +04:00
|
|
|
init_timer(&fsf_req->timer);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-09-07 11:15:31 +04:00
|
|
|
/* initialize waitqueue which may be used to wait on
|
2005-04-17 02:20:36 +04:00
|
|
|
this request completion */
|
|
|
|
init_waitqueue_head(&fsf_req->completion_wq);
|
|
|
|
|
|
|
|
ret = zfcp_fsf_req_sbal_get(adapter, req_flags, lock_flags);
|
2007-05-08 13:15:48 +04:00
|
|
|
if (ret < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto failed_sbals;
|
2007-05-08 13:15:48 +04:00
|
|
|
|
|
|
|
/* this is serialized (we are holding req_queue-lock of adapter) */
|
|
|
|
if (adapter->req_no == 0)
|
|
|
|
adapter->req_no++;
|
|
|
|
fsf_req->req_id = adapter->req_no++;
|
|
|
|
|
|
|
|
zfcp_fsf_req_qtcb_init(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We hold queue_lock here. Check if QDIOUP is set and let request fail
|
|
|
|
* if it is not set (see also *_open_qdio and *_close_qdio).
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &adapter->status)) {
|
2008-06-10 20:20:57 +04:00
|
|
|
write_unlock_irqrestore(&req_q->lock, *lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
ret = -EIO;
|
|
|
|
goto failed_sbals;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:50:38 +04:00
|
|
|
if (fsf_req->qtcb) {
|
|
|
|
fsf_req->seq_no = adapter->fsf_req_seq_no;
|
|
|
|
fsf_req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->sbal_number = 1;
|
2008-06-10 20:20:57 +04:00
|
|
|
fsf_req->sbal_first = req_q->first;
|
|
|
|
fsf_req->sbal_last = req_q->first;
|
2005-04-17 02:20:36 +04:00
|
|
|
fsf_req->sbale_curr = 1;
|
|
|
|
|
|
|
|
if (likely(req_flags & ZFCP_REQ_AUTO_CLEANUP)) {
|
|
|
|
fsf_req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
|
|
|
|
}
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* setup common SBALE fields */
|
2006-08-02 13:05:16 +04:00
|
|
|
sbale[0].addr = (void *) fsf_req->req_id;
|
2005-04-17 02:20:36 +04:00
|
|
|
sbale[0].flags |= SBAL_FLAGS0_COMMAND;
|
|
|
|
if (likely(fsf_req->qtcb != NULL)) {
|
|
|
|
sbale[1].addr = (void *) fsf_req->qtcb;
|
|
|
|
sbale[1].length = sizeof(struct fsf_qtcb);
|
|
|
|
}
|
|
|
|
|
|
|
|
goto success;
|
|
|
|
|
|
|
|
failed_sbals:
|
|
|
|
/* dequeue new FSF request previously enqueued */
|
|
|
|
zfcp_fsf_req_free(fsf_req);
|
|
|
|
fsf_req = NULL;
|
|
|
|
|
|
|
|
failed_fsf_req:
|
2008-06-10 20:20:57 +04:00
|
|
|
write_lock_irqsave(&req_q->lock, *lock_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
success:
|
|
|
|
*fsf_req_p = fsf_req;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* function: zfcp_fsf_req_send
|
|
|
|
*
|
|
|
|
* purpose: start transfer of FSF request via QDIO
|
|
|
|
*
|
|
|
|
* returns: 0 - request transfer succesfully started
|
|
|
|
* !0 - start of request transfer failed
|
|
|
|
*/
|
2006-09-19 00:29:56 +04:00
|
|
|
static int zfcp_fsf_req_send(struct zfcp_fsf_req *fsf_req)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct zfcp_adapter *adapter;
|
2008-06-10 20:20:57 +04:00
|
|
|
struct zfcp_qdio_queue *req_q;
|
2005-04-17 02:20:36 +04:00
|
|
|
volatile struct qdio_buffer_element *sbale;
|
2005-09-13 23:50:38 +04:00
|
|
|
int inc_seq_no;
|
2005-04-17 02:20:36 +04:00
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
adapter = fsf_req->adapter;
|
2008-06-10 20:20:57 +04:00
|
|
|
req_q = &adapter->req_q;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
sbale = zfcp_qdio_sbale_req(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-08-02 13:05:16 +04:00
|
|
|
/* put allocated FSF request into hash table */
|
|
|
|
spin_lock(&adapter->req_list_lock);
|
|
|
|
zfcp_reqlist_add(adapter, fsf_req);
|
|
|
|
spin_unlock(&adapter->req_list_lock);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-13 23:50:38 +04:00
|
|
|
inc_seq_no = (fsf_req->qtcb != NULL);
|
|
|
|
|
|
|
|
fsf_req->issued = get_clock();
|
|
|
|
|
2008-06-10 20:20:57 +04:00
|
|
|
retval = zfcp_qdio_send(fsf_req);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (unlikely(retval)) {
|
|
|
|
/* Queues are down..... */
|
2006-09-19 00:29:56 +04:00
|
|
|
del_timer(&fsf_req->timer);
|
2006-08-02 13:05:16 +04:00
|
|
|
spin_lock(&adapter->req_list_lock);
|
2007-05-08 13:17:54 +04:00
|
|
|
zfcp_reqlist_remove(adapter, fsf_req);
|
2006-08-02 13:05:16 +04:00
|
|
|
spin_unlock(&adapter->req_list_lock);
|
|
|
|
/* undo changes in request queue made for this request */
|
2008-06-10 20:20:57 +04:00
|
|
|
atomic_add(fsf_req->sbal_number, &req_q->count);
|
|
|
|
req_q->first -= fsf_req->sbal_number;
|
|
|
|
req_q->first += QDIO_MAX_BUFFERS_PER_Q;
|
|
|
|
req_q->first %= QDIO_MAX_BUFFERS_PER_Q;
|
2008-04-18 14:51:55 +04:00
|
|
|
zfcp_erp_adapter_reopen(adapter, 0, 116, fsf_req);
|
2008-06-10 20:20:57 +04:00
|
|
|
retval = -EIO;
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* increase FSF sequence counter -
|
|
|
|
* this must only be done for request successfully enqueued to
|
|
|
|
* QDIO this rejected requests may be cleaned up by calling
|
|
|
|
* routines resulting in missing sequence counter values
|
|
|
|
* otherwise,
|
|
|
|
*/
|
2005-09-13 23:50:38 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* Don't increase for unsolicited status */
|
2005-09-13 23:50:38 +04:00
|
|
|
if (inc_seq_no)
|
2005-04-17 02:20:36 +04:00
|
|
|
adapter->fsf_req_seq_no++;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|