3 * linux/drivers/s390/scsi/zfcp_fsf.c
5 * FCP adapter driver for IBM eServer zSeries
7 * (C) Copyright IBM Corp. 2002, 2004
9 * Author(s): Martin Peschke <mpeschke@de.ibm.com>
10 * Raimund Schroeder <raimund.schroeder@de.ibm.com>
13 * Stefan Bader <stefan.bader@de.ibm.com>
14 * Heiko Carstens <heiko.carstens@de.ibm.com>
15 * Andreas Herrmann <aherrman@de.ibm.com>
16 * Volker Sameske <sameske@de.ibm.com>
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2, or (at your option)
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 #define ZFCP_FSF_C_REVISION "$Revision: 1.92 $"
37 static int zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req
*);
38 static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req
*);
39 static int zfcp_fsf_open_port_handler(struct zfcp_fsf_req
*);
40 static int zfcp_fsf_close_port_handler(struct zfcp_fsf_req
*);
41 static int zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req
*);
42 static int zfcp_fsf_open_unit_handler(struct zfcp_fsf_req
*);
43 static int zfcp_fsf_close_unit_handler(struct zfcp_fsf_req
*);
44 static int zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req
*);
45 static int zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req
*);
46 static int zfcp_fsf_send_fcp_command_task_management_handler(
47 struct zfcp_fsf_req
*);
48 static int zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req
*);
49 static int zfcp_fsf_status_read_handler(struct zfcp_fsf_req
*);
50 static int zfcp_fsf_send_ct_handler(struct zfcp_fsf_req
*);
51 static int zfcp_fsf_send_els_handler(struct zfcp_fsf_req
*);
52 static int zfcp_fsf_control_file_handler(struct zfcp_fsf_req
*);
53 static inline int zfcp_fsf_req_sbal_check(
54 unsigned long *, struct zfcp_qdio_queue
*, int);
55 static inline int zfcp_use_one_sbal(
56 struct scatterlist
*, int, struct scatterlist
*, int);
57 static struct zfcp_fsf_req
*zfcp_fsf_req_alloc(mempool_t
*, int);
58 static int zfcp_fsf_req_send(struct zfcp_fsf_req
*, struct timer_list
*);
59 static int zfcp_fsf_protstatus_eval(struct zfcp_fsf_req
*);
60 static int zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req
*);
61 static int zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req
*);
62 static int zfcp_fsf_req_dispatch(struct zfcp_fsf_req
*);
63 static void zfcp_fsf_req_dismiss(struct zfcp_fsf_req
*);
65 /* association between FSF command and FSF QTCB type */
66 static u32 fsf_qtcb_type
[] = {
67 [FSF_QTCB_FCP_CMND
] = FSF_IO_COMMAND
,
68 [FSF_QTCB_ABORT_FCP_CMND
] = FSF_SUPPORT_COMMAND
,
69 [FSF_QTCB_OPEN_PORT_WITH_DID
] = FSF_SUPPORT_COMMAND
,
70 [FSF_QTCB_OPEN_LUN
] = FSF_SUPPORT_COMMAND
,
71 [FSF_QTCB_CLOSE_LUN
] = FSF_SUPPORT_COMMAND
,
72 [FSF_QTCB_CLOSE_PORT
] = FSF_SUPPORT_COMMAND
,
73 [FSF_QTCB_CLOSE_PHYSICAL_PORT
] = FSF_SUPPORT_COMMAND
,
74 [FSF_QTCB_SEND_ELS
] = FSF_SUPPORT_COMMAND
,
75 [FSF_QTCB_SEND_GENERIC
] = FSF_SUPPORT_COMMAND
,
76 [FSF_QTCB_EXCHANGE_CONFIG_DATA
] = FSF_CONFIG_COMMAND
,
77 [FSF_QTCB_EXCHANGE_PORT_DATA
] = FSF_PORT_COMMAND
,
78 [FSF_QTCB_DOWNLOAD_CONTROL_FILE
] = FSF_SUPPORT_COMMAND
,
79 [FSF_QTCB_UPLOAD_CONTROL_FILE
] = FSF_SUPPORT_COMMAND
82 static const char zfcp_act_subtable_type
[5][8] = {
83 "unknown", "OS", "WWPN", "DID", "LUN"
86 /****************************************************************/
87 /*************** FSF related Functions *************************/
88 /****************************************************************/
90 #define ZFCP_LOG_AREA ZFCP_LOG_AREA_FSF
93 * function: zfcp_fsf_req_alloc
95 * purpose: Obtains an fsf_req and potentially a qtcb (for all but
96 * unsolicited requests) via helper functions
97 * Does some initial fsf request set-up.
99 * returns: pointer to allocated fsf_req if successfull
105 static struct zfcp_fsf_req
*
106 zfcp_fsf_req_alloc(mempool_t
*pool
, int req_flags
)
110 struct zfcp_fsf_req
*fsf_req
= NULL
;
112 if (req_flags
& ZFCP_REQ_NO_QTCB
)
113 size
= sizeof(struct zfcp_fsf_req
);
115 size
= sizeof(struct zfcp_fsf_req_pool_element
);
117 if (likely(pool
!= NULL
))
118 ptr
= mempool_alloc(pool
, GFP_ATOMIC
);
120 ptr
= kmalloc(size
, GFP_ATOMIC
);
122 if (unlikely(NULL
== ptr
))
125 memset(ptr
, 0, size
);
127 if (req_flags
& ZFCP_REQ_NO_QTCB
) {
128 fsf_req
= (struct zfcp_fsf_req
*) ptr
;
130 fsf_req
= &((struct zfcp_fsf_req_pool_element
*) ptr
)->fsf_req
;
132 &((struct zfcp_fsf_req_pool_element
*) ptr
)->qtcb
;
135 fsf_req
->pool
= pool
;
142 * function: zfcp_fsf_req_free
144 * purpose: Frees the memory of an fsf_req (and potentially a qtcb) or
145 * returns it into the pool via helper functions.
152 zfcp_fsf_req_free(struct zfcp_fsf_req
*fsf_req
)
154 if (likely(fsf_req
->pool
!= NULL
))
155 mempool_free(fsf_req
, fsf_req
->pool
);
167 * note: qdio queues shall be down (no ongoing inbound processing)
170 zfcp_fsf_req_dismiss_all(struct zfcp_adapter
*adapter
)
172 struct zfcp_fsf_req
*fsf_req
, *tmp
;
174 LIST_HEAD(remove_queue
);
176 spin_lock_irqsave(&adapter
->fsf_req_list_lock
, flags
);
177 list_splice_init(&adapter
->fsf_req_list_head
, &remove_queue
);
178 atomic_set(&adapter
->fsf_reqs_active
, 0);
179 spin_unlock_irqrestore(&adapter
->fsf_req_list_lock
, flags
);
181 list_for_each_entry_safe(fsf_req
, tmp
, &remove_queue
, list
) {
182 list_del(&fsf_req
->list
);
183 zfcp_fsf_req_dismiss(fsf_req
);
197 zfcp_fsf_req_dismiss(struct zfcp_fsf_req
*fsf_req
)
199 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_DISMISSED
;
200 zfcp_fsf_req_complete(fsf_req
);
204 * function: zfcp_fsf_req_complete
206 * purpose: Updates active counts and timers for openfcp-reqs
207 * May cleanup request after req_eval returns
209 * returns: 0 - success
215 zfcp_fsf_req_complete(struct zfcp_fsf_req
*fsf_req
)
220 if (unlikely(fsf_req
->fsf_command
== FSF_QTCB_UNSOLICITED_STATUS
)) {
221 ZFCP_LOG_DEBUG("Status read response received\n");
223 * Note: all cleanup handling is done in the callchain of
224 * the function call-chain below.
226 zfcp_fsf_status_read_handler(fsf_req
);
229 zfcp_fsf_protstatus_eval(fsf_req
);
232 * fsf_req may be deleted due to waking up functions, so
233 * cleanup is saved here and used later
235 if (likely(fsf_req
->status
& ZFCP_STATUS_FSFREQ_CLEANUP
))
240 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_COMPLETED
;
242 /* cleanup request if requested by initiator */
243 if (likely(cleanup
)) {
244 ZFCP_LOG_TRACE("removing FSF request %p\n", fsf_req
);
246 * lock must not be held here since it will be
247 * grabed by the called routine, too
249 zfcp_fsf_req_free(fsf_req
);
251 /* notify initiator waiting for the requests completion */
252 ZFCP_LOG_TRACE("waking initiator of FSF request %p\n",fsf_req
);
254 * FIXME: Race! We must not access fsf_req here as it might have been
255 * cleaned up already due to the set ZFCP_STATUS_FSFREQ_COMPLETED
256 * flag. It's an improbable case. But, we have the same paranoia for
257 * the cleanup flag already.
258 * Might better be handled using complete()?
259 * (setting the flag and doing wakeup ought to be atomic
260 * with regard to checking the flag as long as waitqueue is
261 * part of the to be released structure)
263 wake_up(&fsf_req
->completion_wq
);
271 * function: zfcp_fsf_protstatus_eval
273 * purpose: evaluates the QTCB of the finished FSF request
274 * and initiates appropriate actions
275 * (usually calling FSF command specific handlers)
284 zfcp_fsf_protstatus_eval(struct zfcp_fsf_req
*fsf_req
)
287 struct zfcp_adapter
*adapter
= fsf_req
->adapter
;
289 ZFCP_LOG_DEBUG("QTCB is at %p\n", fsf_req
->qtcb
);
291 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_DISMISSED
) {
292 ZFCP_LOG_DEBUG("fsf_req 0x%lx has been dismissed\n",
293 (unsigned long) fsf_req
);
294 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
|
295 ZFCP_STATUS_FSFREQ_RETRY
; /* only for SCSI cmnds. */
296 zfcp_cmd_dbf_event_fsf("dismiss", fsf_req
, NULL
, 0);
297 goto skip_protstatus
;
300 /* log additional information provided by FSF (if any) */
301 if (unlikely(fsf_req
->qtcb
->header
.log_length
)) {
302 /* do not trust them ;-) */
303 if (fsf_req
->qtcb
->header
.log_start
> sizeof(struct fsf_qtcb
)) {
305 ("bug: ULP (FSF logging) log data starts "
306 "beyond end of packet header. Ignored. "
307 "(start=%i, size=%li)\n",
308 fsf_req
->qtcb
->header
.log_start
,
309 sizeof(struct fsf_qtcb
));
312 if ((size_t) (fsf_req
->qtcb
->header
.log_start
+
313 fsf_req
->qtcb
->header
.log_length
)
314 > sizeof(struct fsf_qtcb
)) {
315 ZFCP_LOG_NORMAL("bug: ULP (FSF logging) log data ends "
316 "beyond end of packet header. Ignored. "
317 "(start=%i, length=%i, size=%li)\n",
318 fsf_req
->qtcb
->header
.log_start
,
319 fsf_req
->qtcb
->header
.log_length
,
320 sizeof(struct fsf_qtcb
));
323 ZFCP_LOG_TRACE("ULP log data: \n");
324 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE
,
325 (char *) fsf_req
->qtcb
+
326 fsf_req
->qtcb
->header
.log_start
,
327 fsf_req
->qtcb
->header
.log_length
);
331 /* evaluate FSF Protocol Status */
332 switch (fsf_req
->qtcb
->prefix
.prot_status
) {
335 case FSF_PROT_FSF_STATUS_PRESENTED
:
338 case FSF_PROT_QTCB_VERSION_ERROR
:
339 ZFCP_LOG_NORMAL("error: The adapter %s contains "
340 "microcode of version 0x%x, the device driver "
341 "only supports 0x%x. Aborting.\n",
342 zfcp_get_busid_by_adapter(adapter
),
343 fsf_req
->qtcb
->prefix
.prot_status_qual
.
344 version_error
.fsf_version
, ZFCP_QTCB_VERSION
);
345 /* stop operation for this adapter */
346 debug_text_exception(adapter
->erp_dbf
, 0, "prot_ver_err");
347 zfcp_erp_adapter_shutdown(adapter
, 0);
348 zfcp_cmd_dbf_event_fsf("qverserr", fsf_req
,
349 &fsf_req
->qtcb
->prefix
.prot_status_qual
,
350 sizeof (union fsf_prot_status_qual
));
351 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
354 case FSF_PROT_SEQ_NUMB_ERROR
:
355 ZFCP_LOG_NORMAL("bug: Sequence number mismatch between "
356 "driver (0x%x) and adapter %s (0x%x). "
357 "Restarting all operations on this adapter.\n",
358 fsf_req
->qtcb
->prefix
.req_seq_no
,
359 zfcp_get_busid_by_adapter(adapter
),
360 fsf_req
->qtcb
->prefix
.prot_status_qual
.
361 sequence_error
.exp_req_seq_no
);
362 debug_text_exception(adapter
->erp_dbf
, 0, "prot_seq_err");
363 /* restart operation on this adapter */
364 zfcp_erp_adapter_reopen(adapter
, 0);
365 zfcp_cmd_dbf_event_fsf("seqnoerr", fsf_req
,
366 &fsf_req
->qtcb
->prefix
.prot_status_qual
,
367 sizeof (union fsf_prot_status_qual
));
368 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_RETRY
;
369 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
372 case FSF_PROT_UNSUPP_QTCB_TYPE
:
373 ZFCP_LOG_NORMAL("error: Packet header type used by the "
374 "device driver is incompatible with "
375 "that used on adapter %s. "
376 "Stopping all operations on this adapter.\n",
377 zfcp_get_busid_by_adapter(adapter
));
378 debug_text_exception(adapter
->erp_dbf
, 0, "prot_unsup_qtcb");
379 zfcp_erp_adapter_shutdown(adapter
, 0);
380 zfcp_cmd_dbf_event_fsf("unsqtcbt", fsf_req
,
381 &fsf_req
->qtcb
->prefix
.prot_status_qual
,
382 sizeof (union fsf_prot_status_qual
));
383 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
386 case FSF_PROT_HOST_CONNECTION_INITIALIZING
:
387 zfcp_cmd_dbf_event_fsf("hconinit", fsf_req
,
388 &fsf_req
->qtcb
->prefix
.prot_status_qual
,
389 sizeof (union fsf_prot_status_qual
));
390 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
391 atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT
,
393 debug_text_event(adapter
->erp_dbf
, 3, "prot_con_init");
396 case FSF_PROT_DUPLICATE_REQUEST_ID
:
398 ZFCP_LOG_NORMAL("bug: The request identifier 0x%Lx "
399 "to the adapter %s is ambiguous. "
400 "Stopping all operations on this "
402 *(unsigned long long *)
403 (&fsf_req
->qtcb
->bottom
.support
.
405 zfcp_get_busid_by_adapter(adapter
));
407 ZFCP_LOG_NORMAL("bug: The request identifier %p "
408 "to the adapter %s is ambiguous. "
409 "Stopping all operations on this "
411 "(bug: got this for an unsolicited "
412 "status read request)\n",
414 zfcp_get_busid_by_adapter(adapter
));
416 debug_text_exception(adapter
->erp_dbf
, 0, "prot_dup_id");
417 zfcp_erp_adapter_shutdown(adapter
, 0);
418 zfcp_cmd_dbf_event_fsf("dupreqid", fsf_req
,
419 &fsf_req
->qtcb
->prefix
.prot_status_qual
,
420 sizeof (union fsf_prot_status_qual
));
421 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
424 case FSF_PROT_LINK_DOWN
:
426 * 'test and set' is not atomic here -
427 * it's ok as long as calls to our response queue handler
428 * (and thus execution of this code here) are serialized
431 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
,
433 switch (fsf_req
->qtcb
->prefix
.prot_status_qual
.
434 locallink_error
.code
) {
435 case FSF_PSQ_LINK_NOLIGHT
:
436 ZFCP_LOG_INFO("The local link to adapter %s "
437 "is down (no light detected).\n",
438 zfcp_get_busid_by_adapter(
441 case FSF_PSQ_LINK_WRAPPLUG
:
442 ZFCP_LOG_INFO("The local link to adapter %s "
443 "is down (wrap plug detected).\n",
444 zfcp_get_busid_by_adapter(
447 case FSF_PSQ_LINK_NOFCP
:
448 ZFCP_LOG_INFO("The local link to adapter %s "
449 "is down (adjacent node on "
450 "link does not support FCP).\n",
451 zfcp_get_busid_by_adapter(
455 ZFCP_LOG_INFO("The local link to adapter %s "
457 "(warning: unknown reason "
459 zfcp_get_busid_by_adapter(
465 * Due to the 'erp failed' flag the adapter won't
466 * be recovered but will be just set to 'blocked'
467 * state. All subordinary devices will have state
468 * 'blocked' and 'erp failed', too.
469 * Thus the adapter is still able to provide
470 * 'link up' status without being flooded with
472 * (note: even 'close port' is not permitted)
474 ZFCP_LOG_INFO("Stopping all operations for adapter "
476 zfcp_get_busid_by_adapter(adapter
));
477 atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
|
478 ZFCP_STATUS_COMMON_ERP_FAILED
,
480 zfcp_erp_adapter_reopen(adapter
, 0);
482 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
485 case FSF_PROT_REEST_QUEUE
:
486 debug_text_event(adapter
->erp_dbf
, 1, "prot_reest_queue");
487 ZFCP_LOG_INFO("The local link to adapter with "
488 "%s was re-plugged. "
489 "Re-starting operations on this adapter.\n",
490 zfcp_get_busid_by_adapter(adapter
));
491 /* All ports should be marked as ready to run again */
492 zfcp_erp_modify_adapter_status(adapter
,
493 ZFCP_STATUS_COMMON_RUNNING
,
495 zfcp_erp_adapter_reopen(adapter
,
496 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
497 | ZFCP_STATUS_COMMON_ERP_FAILED
);
498 zfcp_cmd_dbf_event_fsf("reestque", fsf_req
,
499 &fsf_req
->qtcb
->prefix
.prot_status_qual
,
500 sizeof (union fsf_prot_status_qual
));
501 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
504 case FSF_PROT_ERROR_STATE
:
505 ZFCP_LOG_NORMAL("error: The adapter %s "
506 "has entered the error state. "
507 "Restarting all operations on this "
509 zfcp_get_busid_by_adapter(adapter
));
510 debug_text_event(adapter
->erp_dbf
, 0, "prot_err_sta");
511 /* restart operation on this adapter */
512 zfcp_erp_adapter_reopen(adapter
, 0);
513 zfcp_cmd_dbf_event_fsf("proterrs", fsf_req
,
514 &fsf_req
->qtcb
->prefix
.prot_status_qual
,
515 sizeof (union fsf_prot_status_qual
));
516 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_RETRY
;
517 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
521 ZFCP_LOG_NORMAL("bug: Transfer protocol status information "
522 "provided by the adapter %s "
523 "is not compatible with the device driver. "
524 "Stopping all operations on this adapter. "
525 "(debug info 0x%x).\n",
526 zfcp_get_busid_by_adapter(adapter
),
527 fsf_req
->qtcb
->prefix
.prot_status
);
528 debug_text_event(adapter
->erp_dbf
, 0, "prot_inval:");
529 debug_exception(adapter
->erp_dbf
, 0,
530 &fsf_req
->qtcb
->prefix
.prot_status
,
532 zfcp_erp_adapter_shutdown(adapter
, 0);
533 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
538 * always call specific handlers to give them a chance to do
539 * something meaningful even in error cases
541 zfcp_fsf_fsfstatus_eval(fsf_req
);
546 * function: zfcp_fsf_fsfstatus_eval
548 * purpose: evaluates FSF status of completed FSF request
549 * and acts accordingly
554 zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req
*fsf_req
)
558 if (unlikely(fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)) {
562 /* evaluate FSF Status */
563 switch (fsf_req
->qtcb
->header
.fsf_status
) {
564 case FSF_UNKNOWN_COMMAND
:
565 ZFCP_LOG_NORMAL("bug: Command issued by the device driver is "
566 "not known by the adapter %s "
567 "Stopping all operations on this adapter. "
568 "(debug info 0x%x).\n",
569 zfcp_get_busid_by_adapter(fsf_req
->adapter
),
570 fsf_req
->qtcb
->header
.fsf_command
);
571 debug_text_exception(fsf_req
->adapter
->erp_dbf
, 0,
573 zfcp_erp_adapter_shutdown(fsf_req
->adapter
, 0);
574 zfcp_cmd_dbf_event_fsf("unknownc", fsf_req
,
575 &fsf_req
->qtcb
->header
.fsf_status_qual
,
576 sizeof (union fsf_status_qual
));
577 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
580 case FSF_FCP_RSP_AVAILABLE
:
581 ZFCP_LOG_DEBUG("FCP Sense data will be presented to the "
583 debug_text_event(fsf_req
->adapter
->erp_dbf
, 3, "fsf_s_rsp");
586 case FSF_ADAPTER_STATUS_AVAILABLE
:
587 debug_text_event(fsf_req
->adapter
->erp_dbf
, 2, "fsf_s_astatus");
588 zfcp_fsf_fsfstatus_qual_eval(fsf_req
);
597 * always call specific handlers to give them a chance to do
598 * something meaningful even in error cases
600 zfcp_fsf_req_dispatch(fsf_req
);
606 * function: zfcp_fsf_fsfstatus_qual_eval
608 * purpose: evaluates FSF status-qualifier of completed FSF request
609 * and acts accordingly
614 zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req
*fsf_req
)
618 switch (fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0]) {
619 case FSF_SQ_FCP_RSP_AVAILABLE
:
620 debug_text_event(fsf_req
->adapter
->erp_dbf
, 4, "fsf_sq_rsp");
622 case FSF_SQ_RETRY_IF_POSSIBLE
:
623 /* The SCSI-stack may now issue retries or escalate */
624 debug_text_event(fsf_req
->adapter
->erp_dbf
, 2, "fsf_sq_retry");
625 zfcp_cmd_dbf_event_fsf("sqretry", fsf_req
,
626 &fsf_req
->qtcb
->header
.fsf_status_qual
,
627 sizeof (union fsf_status_qual
));
628 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
630 case FSF_SQ_COMMAND_ABORTED
:
631 /* Carry the aborted state on to upper layer */
632 debug_text_event(fsf_req
->adapter
->erp_dbf
, 2, "fsf_sq_abort");
633 zfcp_cmd_dbf_event_fsf("sqabort", fsf_req
,
634 &fsf_req
->qtcb
->header
.fsf_status_qual
,
635 sizeof (union fsf_status_qual
));
636 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ABORTED
;
637 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
639 case FSF_SQ_NO_RECOM
:
640 debug_text_exception(fsf_req
->adapter
->erp_dbf
, 0,
642 ZFCP_LOG_NORMAL("bug: No recommendation could be given for a"
643 "problem on the adapter %s "
644 "Stopping all operations on this adapter. ",
645 zfcp_get_busid_by_adapter(fsf_req
->adapter
));
646 zfcp_erp_adapter_shutdown(fsf_req
->adapter
, 0);
647 zfcp_cmd_dbf_event_fsf("sqnrecom", fsf_req
,
648 &fsf_req
->qtcb
->header
.fsf_status_qual
,
649 sizeof (union fsf_status_qual
));
650 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
652 case FSF_SQ_ULP_PROGRAMMING_ERROR
:
653 ZFCP_LOG_NORMAL("error: not enough SBALs for data transfer "
655 zfcp_get_busid_by_adapter(fsf_req
->adapter
));
656 debug_text_exception(fsf_req
->adapter
->erp_dbf
, 0,
658 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
660 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
661 case FSF_SQ_NO_RETRY_POSSIBLE
:
662 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
663 /* dealt with in the respective functions */
666 ZFCP_LOG_NORMAL("bug: Additional status info could "
667 "not be interpreted properly.\n");
668 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL
,
669 (char *) &fsf_req
->qtcb
->header
.fsf_status_qual
,
670 sizeof (union fsf_status_qual
));
671 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf_sq_inval:");
672 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
673 &fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0],
675 zfcp_cmd_dbf_event_fsf("squndef", fsf_req
,
676 &fsf_req
->qtcb
->header
.fsf_status_qual
,
677 sizeof (union fsf_status_qual
));
678 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
686 * function: zfcp_fsf_req_dispatch
688 * purpose: calls the appropriate command specific handler
693 zfcp_fsf_req_dispatch(struct zfcp_fsf_req
*fsf_req
)
695 struct zfcp_erp_action
*erp_action
= fsf_req
->erp_action
;
696 struct zfcp_adapter
*adapter
= fsf_req
->adapter
;
699 if (unlikely(fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)) {
700 ZFCP_LOG_TRACE("fsf_req=%p, QTCB=%p\n", fsf_req
, fsf_req
->qtcb
);
701 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE
,
702 (char *) fsf_req
->qtcb
, sizeof(struct fsf_qtcb
));
705 switch (fsf_req
->fsf_command
) {
707 case FSF_QTCB_FCP_CMND
:
708 zfcp_fsf_send_fcp_command_handler(fsf_req
);
711 case FSF_QTCB_ABORT_FCP_CMND
:
712 zfcp_fsf_abort_fcp_command_handler(fsf_req
);
715 case FSF_QTCB_SEND_GENERIC
:
716 zfcp_fsf_send_ct_handler(fsf_req
);
719 case FSF_QTCB_OPEN_PORT_WITH_DID
:
720 zfcp_fsf_open_port_handler(fsf_req
);
723 case FSF_QTCB_OPEN_LUN
:
724 zfcp_fsf_open_unit_handler(fsf_req
);
727 case FSF_QTCB_CLOSE_LUN
:
728 zfcp_fsf_close_unit_handler(fsf_req
);
731 case FSF_QTCB_CLOSE_PORT
:
732 zfcp_fsf_close_port_handler(fsf_req
);
735 case FSF_QTCB_CLOSE_PHYSICAL_PORT
:
736 zfcp_fsf_close_physical_port_handler(fsf_req
);
739 case FSF_QTCB_EXCHANGE_CONFIG_DATA
:
740 zfcp_fsf_exchange_config_data_handler(fsf_req
);
743 case FSF_QTCB_EXCHANGE_PORT_DATA
:
744 zfcp_fsf_exchange_port_data_handler(fsf_req
);
747 case FSF_QTCB_SEND_ELS
:
748 zfcp_fsf_send_els_handler(fsf_req
);
751 case FSF_QTCB_DOWNLOAD_CONTROL_FILE
:
752 zfcp_fsf_control_file_handler(fsf_req
);
755 case FSF_QTCB_UPLOAD_CONTROL_FILE
:
756 zfcp_fsf_control_file_handler(fsf_req
);
760 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
761 ZFCP_LOG_NORMAL("bug: Command issued by the device driver is "
762 "not supported by the adapter %s\n",
763 zfcp_get_busid_by_adapter(fsf_req
->adapter
));
764 if (fsf_req
->fsf_command
!= fsf_req
->qtcb
->header
.fsf_command
)
766 ("bug: Command issued by the device driver differs "
767 "from the command returned by the adapter %s "
768 "(debug info 0x%x, 0x%x).\n",
769 zfcp_get_busid_by_adapter(fsf_req
->adapter
),
770 fsf_req
->fsf_command
,
771 fsf_req
->qtcb
->header
.fsf_command
);
777 debug_text_event(adapter
->erp_dbf
, 3, "a_frh");
778 debug_event(adapter
->erp_dbf
, 3, &erp_action
->action
, sizeof (int));
779 zfcp_erp_async_handler(erp_action
, 0);
785 * function: zfcp_fsf_status_read
787 * purpose: initiates a Status Read command at the specified adapter
792 zfcp_fsf_status_read(struct zfcp_adapter
*adapter
, int req_flags
)
794 struct zfcp_fsf_req
*fsf_req
;
795 struct fsf_status_read_buffer
*status_buffer
;
796 unsigned long lock_flags
;
797 volatile struct qdio_buffer_element
*sbale
;
800 /* setup new FSF request */
801 retval
= zfcp_fsf_req_create(adapter
, FSF_QTCB_UNSOLICITED_STATUS
,
802 req_flags
| ZFCP_REQ_NO_QTCB
,
803 adapter
->pool
.fsf_req_status_read
,
804 &lock_flags
, &fsf_req
);
806 ZFCP_LOG_INFO("error: Could not create unsolicited status "
807 "buffer for adapter %s.\n",
808 zfcp_get_busid_by_adapter(adapter
));
809 goto failed_req_create
;
812 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
813 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_STATUS
;
814 sbale
[2].flags
|= SBAL_FLAGS_LAST_ENTRY
;
815 fsf_req
->sbale_curr
= 2;
818 mempool_alloc(adapter
->pool
.data_status_read
, GFP_ATOMIC
);
819 if (!status_buffer
) {
820 ZFCP_LOG_NORMAL("bug: could not get some buffer\n");
823 memset(status_buffer
, 0, sizeof (struct fsf_status_read_buffer
));
824 fsf_req
->data
.status_read
.buffer
= status_buffer
;
826 /* insert pointer to respective buffer */
827 sbale
= zfcp_qdio_sbale_curr(fsf_req
);
828 sbale
->addr
= (void *) status_buffer
;
829 sbale
->length
= sizeof(struct fsf_status_read_buffer
);
831 /* start QDIO request for this FSF request */
832 retval
= zfcp_fsf_req_send(fsf_req
, NULL
);
834 ZFCP_LOG_DEBUG("error: Could not set-up unsolicited status "
836 goto failed_req_send
;
839 ZFCP_LOG_TRACE("Status Read request initiated (adapter%s)\n",
840 zfcp_get_busid_by_adapter(adapter
));
844 mempool_free(status_buffer
, adapter
->pool
.data_status_read
);
847 zfcp_fsf_req_free(fsf_req
);
850 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
, lock_flags
);
855 zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req
*fsf_req
)
857 struct fsf_status_read_buffer
*status_buffer
;
858 struct zfcp_adapter
*adapter
;
859 struct zfcp_port
*port
;
862 status_buffer
= fsf_req
->data
.status_read
.buffer
;
863 adapter
= fsf_req
->adapter
;
865 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
866 list_for_each_entry(port
, &adapter
->port_list_head
, list
)
867 if (port
->d_id
== (status_buffer
->d_id
& ZFCP_DID_MASK
))
869 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
871 if (!port
|| (port
->d_id
!= (status_buffer
->d_id
& ZFCP_DID_MASK
))) {
872 ZFCP_LOG_NORMAL("bug: Reopen port indication received for"
873 "nonexisting port with d_id 0x%08x on "
874 "adapter %s. Ignored.\n",
875 status_buffer
->d_id
& ZFCP_DID_MASK
,
876 zfcp_get_busid_by_adapter(adapter
));
880 switch (status_buffer
->status_subtype
) {
882 case FSF_STATUS_READ_SUB_CLOSE_PHYS_PORT
:
883 debug_text_event(adapter
->erp_dbf
, 3, "unsol_pc_phys:");
884 zfcp_erp_port_reopen(port
, 0);
887 case FSF_STATUS_READ_SUB_ERROR_PORT
:
888 debug_text_event(adapter
->erp_dbf
, 1, "unsol_pc_err:");
889 zfcp_erp_port_shutdown(port
, 0);
893 debug_text_event(adapter
->erp_dbf
, 0, "unsol_unk_sub:");
894 debug_exception(adapter
->erp_dbf
, 0,
895 &status_buffer
->status_subtype
, sizeof (u32
));
896 ZFCP_LOG_NORMAL("bug: Undefined status subtype received "
897 "for a reopen indication on port with "
898 "d_id 0x%08x on the adapter %s. "
899 "Ignored. (debug info 0x%x)\n",
901 zfcp_get_busid_by_adapter(adapter
),
902 status_buffer
->status_subtype
);
909 * function: zfcp_fsf_status_read_handler
911 * purpose: is called for finished Open Port command
916 zfcp_fsf_status_read_handler(struct zfcp_fsf_req
*fsf_req
)
919 struct zfcp_adapter
*adapter
= fsf_req
->adapter
;
920 struct fsf_status_read_buffer
*status_buffer
=
921 fsf_req
->data
.status_read
.buffer
;
923 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_DISMISSED
) {
924 mempool_free(status_buffer
, adapter
->pool
.data_status_read
);
925 zfcp_fsf_req_free(fsf_req
);
929 switch (status_buffer
->status_type
) {
931 case FSF_STATUS_READ_PORT_CLOSED
:
932 debug_text_event(adapter
->erp_dbf
, 3, "unsol_pclosed:");
933 debug_event(adapter
->erp_dbf
, 3,
934 &status_buffer
->d_id
, sizeof (u32
));
935 zfcp_fsf_status_read_port_closed(fsf_req
);
938 case FSF_STATUS_READ_INCOMING_ELS
:
939 debug_text_event(adapter
->erp_dbf
, 3, "unsol_els:");
940 zfcp_fsf_incoming_els(fsf_req
);
943 case FSF_STATUS_READ_SENSE_DATA_AVAIL
:
944 debug_text_event(adapter
->erp_dbf
, 3, "unsol_sense:");
945 ZFCP_LOG_INFO("unsolicited sense data received (adapter %s)\n",
946 zfcp_get_busid_by_adapter(adapter
));
947 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL
, (char *) status_buffer
,
948 sizeof(struct fsf_status_read_buffer
));
951 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD
:
952 debug_text_event(adapter
->erp_dbf
, 3, "unsol_bit_err:");
953 ZFCP_LOG_NORMAL("Bit error threshold data received:\n");
954 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL
,
955 (char *) status_buffer
,
956 sizeof (struct fsf_status_read_buffer
));
959 case FSF_STATUS_READ_LINK_DOWN
:
960 debug_text_event(adapter
->erp_dbf
, 0, "unsol_link_down:");
961 ZFCP_LOG_INFO("Local link to adapter %s is down\n",
962 zfcp_get_busid_by_adapter(adapter
));
963 atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
,
965 zfcp_erp_adapter_failed(adapter
);
968 case FSF_STATUS_READ_LINK_UP
:
969 debug_text_event(adapter
->erp_dbf
, 2, "unsol_link_up:");
970 ZFCP_LOG_INFO("Local link to adapter %s was replugged. "
971 "Restarting operations on this adapter\n",
972 zfcp_get_busid_by_adapter(adapter
));
973 /* All ports should be marked as ready to run again */
974 zfcp_erp_modify_adapter_status(adapter
,
975 ZFCP_STATUS_COMMON_RUNNING
,
977 zfcp_erp_adapter_reopen(adapter
,
978 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
979 | ZFCP_STATUS_COMMON_ERP_FAILED
);
982 case FSF_STATUS_READ_CFDC_UPDATED
:
983 debug_text_event(adapter
->erp_dbf
, 2, "unsol_cfdc_update:");
984 ZFCP_LOG_INFO("CFDC has been updated on the adapter %s\n",
985 zfcp_get_busid_by_adapter(adapter
));
986 zfcp_erp_adapter_access_changed(adapter
);
989 case FSF_STATUS_READ_CFDC_HARDENED
:
990 debug_text_event(adapter
->erp_dbf
, 2, "unsol_cfdc_harden:");
991 switch (status_buffer
->status_subtype
) {
992 case FSF_STATUS_READ_SUB_CFDC_HARDENED_ON_SE
:
993 ZFCP_LOG_INFO("CFDC of adapter %s saved on SE\n",
994 zfcp_get_busid_by_adapter(adapter
));
996 case FSF_STATUS_READ_SUB_CFDC_HARDENED_ON_SE2
:
997 ZFCP_LOG_INFO("CFDC of adapter %s has been copied "
998 "to the secondary SE\n",
999 zfcp_get_busid_by_adapter(adapter
));
1002 ZFCP_LOG_INFO("CFDC of adapter %s has been hardened\n",
1003 zfcp_get_busid_by_adapter(adapter
));
1008 debug_text_event(adapter
->erp_dbf
, 0, "unsol_unknown:");
1009 debug_exception(adapter
->erp_dbf
, 0,
1010 &status_buffer
->status_type
, sizeof (u32
));
1011 ZFCP_LOG_NORMAL("bug: An unsolicited status packet of unknown "
1012 "type was received (debug info 0x%x)\n",
1013 status_buffer
->status_type
);
1014 ZFCP_LOG_DEBUG("Dump of status_read_buffer %p:\n",
1016 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
1017 (char *) status_buffer
,
1018 sizeof (struct fsf_status_read_buffer
));
1021 mempool_free(status_buffer
, adapter
->pool
.data_status_read
);
1022 zfcp_fsf_req_free(fsf_req
);
1024 * recycle buffer and start new request repeat until outbound
1025 * queue is empty or adapter shutdown is requested
1029 * we may wait in the req_create for 5s during shutdown, so
1030 * qdio_cleanup will have to wait at least that long before returning
1031 * with failure to allow us a proper cleanup under all circumstances
1035 * allocation failure possible? (Is this code needed?)
1037 retval
= zfcp_fsf_status_read(adapter
, 0);
1039 ZFCP_LOG_INFO("Failed to create unsolicited status read "
1040 "request for the adapter %s.\n",
1041 zfcp_get_busid_by_adapter(adapter
));
1042 /* temporary fix to avoid status read buffer shortage */
1043 adapter
->status_read_failed
++;
1044 if ((ZFCP_STATUS_READS_RECOM
- adapter
->status_read_failed
)
1045 < ZFCP_STATUS_READ_FAILED_THRESHOLD
) {
1046 ZFCP_LOG_INFO("restart adapter %s due to status read "
1047 "buffer shortage\n",
1048 zfcp_get_busid_by_adapter(adapter
));
1049 zfcp_erp_adapter_reopen(adapter
, 0);
1057 * function: zfcp_fsf_abort_fcp_command
1059 * purpose: tells FSF to abort a running SCSI command
1061 * returns: address of initiated FSF request
1062 * NULL - request could not be initiated
1064 * FIXME(design): should be watched by a timeout !!!
1065 * FIXME(design) shouldn't this be modified to return an int
1066 * also...don't know how though
1068 struct zfcp_fsf_req
*
1069 zfcp_fsf_abort_fcp_command(unsigned long old_req_id
,
1070 struct zfcp_adapter
*adapter
,
1071 struct zfcp_unit
*unit
, int req_flags
)
1073 volatile struct qdio_buffer_element
*sbale
;
1074 unsigned long lock_flags
;
1075 struct zfcp_fsf_req
*fsf_req
= NULL
;
1078 /* setup new FSF request */
1079 retval
= zfcp_fsf_req_create(adapter
, FSF_QTCB_ABORT_FCP_CMND
,
1080 req_flags
, adapter
->pool
.fsf_req_abort
,
1081 &lock_flags
, &fsf_req
);
1083 ZFCP_LOG_INFO("error: Failed to create an abort command "
1084 "request for lun 0x%016Lx on port 0x%016Lx "
1088 zfcp_get_busid_by_adapter(adapter
));
1092 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
1093 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
1094 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
1096 fsf_req
->data
.abort_fcp_command
.unit
= unit
;
1098 /* set handles of unit and its parent port in QTCB */
1099 fsf_req
->qtcb
->header
.lun_handle
= unit
->handle
;
1100 fsf_req
->qtcb
->header
.port_handle
= unit
->port
->handle
;
1102 /* set handle of request which should be aborted */
1103 fsf_req
->qtcb
->bottom
.support
.req_handle
= (u64
) old_req_id
;
1105 /* start QDIO request for this FSF request */
1107 zfcp_fsf_start_scsi_er_timer(adapter
);
1108 retval
= zfcp_fsf_req_send(fsf_req
, NULL
);
1110 del_timer(&adapter
->scsi_er_timer
);
1111 ZFCP_LOG_INFO("error: Failed to send abort command request "
1112 "on adapter %s, port 0x%016Lx, unit 0x%016Lx\n",
1113 zfcp_get_busid_by_adapter(adapter
),
1114 unit
->port
->wwpn
, unit
->fcp_lun
);
1115 zfcp_fsf_req_free(fsf_req
);
1120 ZFCP_LOG_DEBUG("Abort FCP Command request initiated "
1121 "(adapter%s, port d_id=0x%08x, "
1122 "unit x%016Lx, old_req_id=0x%lx)\n",
1123 zfcp_get_busid_by_adapter(adapter
),
1125 unit
->fcp_lun
, old_req_id
);
1127 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
, lock_flags
);
1132 * function: zfcp_fsf_abort_fcp_command_handler
1134 * purpose: is called for finished Abort FCP Command request
1139 zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req
*new_fsf_req
)
1141 int retval
= -EINVAL
;
1142 struct zfcp_unit
*unit
= new_fsf_req
->data
.abort_fcp_command
.unit
;
1143 unsigned char status_qual
=
1144 new_fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0];
1146 del_timer(&new_fsf_req
->adapter
->scsi_er_timer
);
1148 if (new_fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
1149 /* do not set ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED */
1150 goto skip_fsfstatus
;
1153 /* evaluate FSF status in QTCB */
1154 switch (new_fsf_req
->qtcb
->header
.fsf_status
) {
1156 case FSF_PORT_HANDLE_NOT_VALID
:
1157 if (status_qual
>> 4 != status_qual
% 0xf) {
1158 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 3,
1161 * In this case a command that was sent prior to a port
1162 * reopen was aborted (handles are different). This is
1166 ZFCP_LOG_INFO("Temporary port identifier 0x%x for "
1167 "port 0x%016Lx on adapter %s invalid. "
1168 "This may happen occasionally.\n",
1171 zfcp_get_busid_by_unit(unit
));
1172 ZFCP_LOG_INFO("status qualifier:\n");
1173 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO
,
1174 (char *) &new_fsf_req
->qtcb
->header
.
1176 sizeof (union fsf_status_qual
));
1177 /* Let's hope this sorts out the mess */
1178 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 1,
1180 zfcp_erp_adapter_reopen(unit
->port
->adapter
, 0);
1181 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1185 case FSF_LUN_HANDLE_NOT_VALID
:
1186 if (status_qual
>> 4 != status_qual
% 0xf) {
1188 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 3,
1191 * In this case a command that was sent prior to a unit
1192 * reopen was aborted (handles are different).
1197 ("Warning: Temporary LUN identifier 0x%x of LUN "
1198 "0x%016Lx on port 0x%016Lx on adapter %s is "
1199 "invalid. This may happen in rare cases. "
1200 "Trying to re-establish link.\n",
1204 zfcp_get_busid_by_unit(unit
));
1205 ZFCP_LOG_DEBUG("Status qualifier data:\n");
1206 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
1207 (char *) &new_fsf_req
->qtcb
->header
.
1209 sizeof (union fsf_status_qual
));
1210 /* Let's hope this sorts out the mess */
1211 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 1,
1213 zfcp_erp_port_reopen(unit
->port
, 0);
1214 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1218 case FSF_FCP_COMMAND_DOES_NOT_EXIST
:
1220 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 3,
1222 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED
;
1225 case FSF_PORT_BOXED
:
1226 ZFCP_LOG_INFO("Remote port 0x%016Lx on adapter %s needs to "
1227 "be reopened\n", unit
->port
->wwpn
,
1228 zfcp_get_busid_by_unit(unit
));
1229 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 2,
1231 zfcp_erp_port_boxed(unit
->port
);
1232 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
1233 | ZFCP_STATUS_FSFREQ_RETRY
;
1238 "unit 0x%016Lx on port 0x%016Lx on adapter %s needs "
1240 unit
->fcp_lun
, unit
->port
->wwpn
,
1241 zfcp_get_busid_by_unit(unit
));
1242 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 1, "fsf_s_lboxed");
1243 zfcp_erp_unit_boxed(unit
);
1244 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
1245 | ZFCP_STATUS_FSFREQ_RETRY
;
1248 case FSF_ADAPTER_STATUS_AVAILABLE
:
1249 switch (new_fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0]) {
1250 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
1251 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 1,
1253 zfcp_test_link(unit
->port
);
1254 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1256 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
1257 /* SCSI stack will escalate */
1258 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 1,
1260 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1264 ("bug: Wrong status qualifier 0x%x arrived.\n",
1265 new_fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0]);
1266 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 0,
1268 debug_exception(new_fsf_req
->adapter
->erp_dbf
, 0,
1269 &new_fsf_req
->qtcb
->header
.
1270 fsf_status_qual
.word
[0], sizeof (u32
));
1277 new_fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED
;
1281 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
1282 "(debug info 0x%x)\n",
1283 new_fsf_req
->qtcb
->header
.fsf_status
);
1284 debug_text_event(new_fsf_req
->adapter
->erp_dbf
, 0,
1286 debug_exception(new_fsf_req
->adapter
->erp_dbf
, 0,
1287 &new_fsf_req
->qtcb
->header
.fsf_status
,
1296 * zfcp_use_one_sbal - checks whether req buffer and resp bother each fit into
1298 * Two scatter-gather lists are passed, one for the reqeust and one for the
1302 zfcp_use_one_sbal(struct scatterlist
*req
, int req_count
,
1303 struct scatterlist
*resp
, int resp_count
)
1305 return ((req_count
== 1) &&
1306 (resp_count
== 1) &&
1307 (((unsigned long) zfcp_sg_to_address(&req
[0]) &
1309 ((unsigned long) (zfcp_sg_to_address(&req
[0]) +
1310 req
[0].length
- 1) & PAGE_MASK
)) &&
1311 (((unsigned long) zfcp_sg_to_address(&resp
[0]) &
1313 ((unsigned long) (zfcp_sg_to_address(&resp
[0]) +
1314 resp
[0].length
- 1) & PAGE_MASK
)));
1318 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
1319 * @ct: pointer to struct zfcp_send_ct which conatins all needed data for
1321 * @pool: pointer to memory pool, if non-null this pool is used to allocate
1322 * a struct zfcp_fsf_req
1323 * @erp_action: pointer to erp_action, if non-null the Generic Service request
1324 * is sent within error recovery
1327 zfcp_fsf_send_ct(struct zfcp_send_ct
*ct
, mempool_t
*pool
,
1328 struct zfcp_erp_action
*erp_action
)
1330 volatile struct qdio_buffer_element
*sbale
;
1331 struct zfcp_port
*port
;
1332 struct zfcp_adapter
*adapter
;
1333 struct zfcp_fsf_req
*fsf_req
;
1334 unsigned long lock_flags
;
1339 adapter
= port
->adapter
;
1341 ret
= zfcp_fsf_req_create(adapter
, FSF_QTCB_SEND_GENERIC
,
1342 ZFCP_WAIT_FOR_SBAL
| ZFCP_REQ_AUTO_CLEANUP
,
1343 pool
, &lock_flags
, &fsf_req
);
1345 ZFCP_LOG_INFO("error: Could not create CT request (FC-GS) for "
1347 zfcp_get_busid_by_adapter(adapter
));
1351 if (erp_action
!= NULL
) {
1352 erp_action
->fsf_req
= fsf_req
;
1353 fsf_req
->erp_action
= erp_action
;
1356 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
1357 if (zfcp_use_one_sbal(ct
->req
, ct
->req_count
,
1358 ct
->resp
, ct
->resp_count
)){
1359 /* both request buffer and response buffer
1360 fit into one sbale each */
1361 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_WRITE_READ
;
1362 sbale
[2].addr
= zfcp_sg_to_address(&ct
->req
[0]);
1363 sbale
[2].length
= ct
->req
[0].length
;
1364 sbale
[3].addr
= zfcp_sg_to_address(&ct
->resp
[0]);
1365 sbale
[3].length
= ct
->resp
[0].length
;
1366 sbale
[3].flags
|= SBAL_FLAGS_LAST_ENTRY
;
1367 } else if (adapter
->supported_features
&
1368 FSF_FEATURE_ELS_CT_CHAINED_SBALS
) {
1369 /* try to use chained SBALs */
1370 bytes
= zfcp_qdio_sbals_from_sg(fsf_req
,
1371 SBAL_FLAGS0_TYPE_WRITE_READ
,
1372 ct
->req
, ct
->req_count
,
1373 ZFCP_MAX_SBALS_PER_CT_REQ
);
1375 ZFCP_LOG_INFO("error: creation of CT request failed "
1377 zfcp_get_busid_by_adapter(adapter
));
1385 fsf_req
->qtcb
->bottom
.support
.req_buf_length
= bytes
;
1386 fsf_req
->sbale_curr
= ZFCP_LAST_SBALE_PER_SBAL
;
1387 bytes
= zfcp_qdio_sbals_from_sg(fsf_req
,
1388 SBAL_FLAGS0_TYPE_WRITE_READ
,
1389 ct
->resp
, ct
->resp_count
,
1390 ZFCP_MAX_SBALS_PER_CT_REQ
);
1392 ZFCP_LOG_INFO("error: creation of CT request failed "
1394 zfcp_get_busid_by_adapter(adapter
));
1402 fsf_req
->qtcb
->bottom
.support
.resp_buf_length
= bytes
;
1404 /* reject send generic request */
1406 "error: microcode does not support chained SBALs,"
1407 "CT request too big (adapter %s)\n",
1408 zfcp_get_busid_by_adapter(adapter
));
1413 /* settings in QTCB */
1414 fsf_req
->qtcb
->header
.port_handle
= port
->handle
;
1415 fsf_req
->qtcb
->bottom
.support
.service_class
= adapter
->fc_service_class
;
1416 fsf_req
->qtcb
->bottom
.support
.timeout
= ct
->timeout
;
1417 fsf_req
->data
.send_ct
= ct
;
1419 /* start QDIO request for this FSF request */
1420 ret
= zfcp_fsf_req_send(fsf_req
, ct
->timer
);
1422 ZFCP_LOG_DEBUG("error: initiation of CT request failed "
1423 "(adapter %s, port 0x%016Lx)\n",
1424 zfcp_get_busid_by_adapter(adapter
), port
->wwpn
);
1428 ZFCP_LOG_DEBUG("CT request initiated (adapter %s, port 0x%016Lx)\n",
1429 zfcp_get_busid_by_adapter(adapter
), port
->wwpn
);
1433 zfcp_fsf_req_free(fsf_req
);
1434 if (erp_action
!= NULL
) {
1435 erp_action
->fsf_req
= NULL
;
1439 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
,
1445 * zfcp_fsf_send_ct_handler - handler for Generic Service requests
1446 * @fsf_req: pointer to struct zfcp_fsf_req
1448 * Data specific for the Generic Service request is passed by
1449 * fsf_req->data.send_ct
1450 * Usually a specific handler for the request is called via
1451 * fsf_req->data.send_ct->handler at end of this function.
1454 zfcp_fsf_send_ct_handler(struct zfcp_fsf_req
*fsf_req
)
1456 struct zfcp_port
*port
;
1457 struct zfcp_adapter
*adapter
;
1458 struct zfcp_send_ct
*send_ct
;
1459 struct fsf_qtcb_header
*header
;
1460 struct fsf_qtcb_bottom_support
*bottom
;
1461 int retval
= -EINVAL
;
1462 u16 subtable
, rule
, counter
;
1464 adapter
= fsf_req
->adapter
;
1465 send_ct
= fsf_req
->data
.send_ct
;
1466 port
= send_ct
->port
;
1467 header
= &fsf_req
->qtcb
->header
;
1468 bottom
= &fsf_req
->qtcb
->bottom
.support
;
1470 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)
1471 goto skip_fsfstatus
;
1473 /* evaluate FSF status in QTCB */
1474 switch (header
->fsf_status
) {
1480 case FSF_SERVICE_CLASS_NOT_SUPPORTED
:
1481 if (adapter
->fc_service_class
<= 3) {
1482 ZFCP_LOG_INFO("error: adapter %s does not support fc "
1484 zfcp_get_busid_by_port(port
),
1485 adapter
->fc_service_class
);
1487 ZFCP_LOG_INFO("bug: The fibre channel class at the "
1488 "adapter %s is invalid. "
1489 "(debug info %d)\n",
1490 zfcp_get_busid_by_port(port
),
1491 adapter
->fc_service_class
);
1493 /* stop operation for this adapter */
1494 debug_text_exception(adapter
->erp_dbf
, 0, "fsf_s_class_nsup");
1495 zfcp_erp_adapter_shutdown(adapter
, 0);
1496 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1499 case FSF_ADAPTER_STATUS_AVAILABLE
:
1500 switch (header
->fsf_status_qual
.word
[0]){
1501 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
1502 /* reopening link to port */
1503 debug_text_event(adapter
->erp_dbf
, 1, "fsf_sq_ltest");
1504 zfcp_test_link(port
);
1505 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1507 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
1508 /* ERP strategy will escalate */
1509 debug_text_event(adapter
->erp_dbf
, 1, "fsf_sq_ulp");
1510 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1513 ZFCP_LOG_INFO("bug: Wrong status qualifier 0x%x "
1515 header
->fsf_status_qual
.word
[0]);
1520 case FSF_ACCESS_DENIED
:
1521 ZFCP_LOG_NORMAL("access denied, cannot send generic service "
1522 "command (adapter %s, port d_id=0x%08x)\n",
1523 zfcp_get_busid_by_port(port
), port
->d_id
);
1524 for (counter
= 0; counter
< 2; counter
++) {
1525 subtable
= header
->fsf_status_qual
.halfword
[counter
* 2];
1526 rule
= header
->fsf_status_qual
.halfword
[counter
* 2 + 1];
1528 case FSF_SQ_CFDC_SUBTABLE_OS
:
1529 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN
:
1530 case FSF_SQ_CFDC_SUBTABLE_PORT_DID
:
1531 case FSF_SQ_CFDC_SUBTABLE_LUN
:
1532 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
1533 zfcp_act_subtable_type
[subtable
], rule
);
1537 debug_text_event(adapter
->erp_dbf
, 1, "fsf_s_access");
1538 zfcp_erp_port_access_denied(port
);
1539 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1542 case FSF_GENERIC_COMMAND_REJECTED
:
1543 ZFCP_LOG_INFO("generic service command rejected "
1544 "(adapter %s, port d_id=0x%08x)\n",
1545 zfcp_get_busid_by_port(port
), port
->d_id
);
1546 ZFCP_LOG_INFO("status qualifier:\n");
1547 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO
,
1548 (char *) &header
->fsf_status_qual
,
1549 sizeof (union fsf_status_qual
));
1550 debug_text_event(adapter
->erp_dbf
, 1, "fsf_s_gcom_rej");
1551 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1554 case FSF_PORT_HANDLE_NOT_VALID
:
1555 ZFCP_LOG_DEBUG("Temporary port identifier 0x%x for port "
1556 "0x%016Lx on adapter %s invalid. This may "
1557 "happen occasionally.\n", port
->handle
,
1558 port
->wwpn
, zfcp_get_busid_by_port(port
));
1559 ZFCP_LOG_INFO("status qualifier:\n");
1560 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO
,
1561 (char *) &header
->fsf_status_qual
,
1562 sizeof (union fsf_status_qual
));
1563 debug_text_event(adapter
->erp_dbf
, 1, "fsf_s_phandle_nv");
1564 zfcp_erp_adapter_reopen(adapter
, 0);
1565 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1568 case FSF_PORT_BOXED
:
1569 ZFCP_LOG_INFO("port needs to be reopened "
1570 "(adapter %s, port d_id=0x%08x)\n",
1571 zfcp_get_busid_by_port(port
), port
->d_id
);
1572 debug_text_event(adapter
->erp_dbf
, 2, "fsf_s_pboxed");
1573 zfcp_erp_port_boxed(port
);
1574 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
1575 | ZFCP_STATUS_FSFREQ_RETRY
;
1578 /* following states should never occure, all cases avoided
1579 in zfcp_fsf_send_ct - but who knows ... */
1580 case FSF_PAYLOAD_SIZE_MISMATCH
:
1581 ZFCP_LOG_INFO("payload size mismatch (adapter: %s, "
1582 "req_buf_length=%d, resp_buf_length=%d)\n",
1583 zfcp_get_busid_by_adapter(adapter
),
1584 bottom
->req_buf_length
, bottom
->resp_buf_length
);
1585 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1587 case FSF_REQUEST_SIZE_TOO_LARGE
:
1588 ZFCP_LOG_INFO("request size too large (adapter: %s, "
1589 "req_buf_length=%d)\n",
1590 zfcp_get_busid_by_adapter(adapter
),
1591 bottom
->req_buf_length
);
1592 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1594 case FSF_RESPONSE_SIZE_TOO_LARGE
:
1595 ZFCP_LOG_INFO("response size too large (adapter: %s, "
1596 "resp_buf_length=%d)\n",
1597 zfcp_get_busid_by_adapter(adapter
),
1598 bottom
->resp_buf_length
);
1599 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1601 case FSF_SBAL_MISMATCH
:
1602 ZFCP_LOG_INFO("SBAL mismatch (adapter: %s, req_buf_length=%d, "
1603 "resp_buf_length=%d)\n",
1604 zfcp_get_busid_by_adapter(adapter
),
1605 bottom
->req_buf_length
, bottom
->resp_buf_length
);
1606 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1610 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
1611 "(debug info 0x%x)\n", header
->fsf_status
);
1612 debug_text_event(adapter
->erp_dbf
, 0, "fsf_sq_inval:");
1613 debug_exception(adapter
->erp_dbf
, 0,
1614 &header
->fsf_status_qual
.word
[0], sizeof (u32
));
1619 send_ct
->status
= retval
;
1621 if (send_ct
->handler
!= NULL
)
1622 send_ct
->handler(send_ct
->handler_data
);
1628 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
1629 * @els: pointer to struct zfcp_send_els which contains all needed data for
1633 zfcp_fsf_send_els(struct zfcp_send_els
*els
)
1635 volatile struct qdio_buffer_element
*sbale
;
1636 struct zfcp_fsf_req
*fsf_req
;
1638 struct zfcp_adapter
*adapter
;
1639 unsigned long lock_flags
;
1644 adapter
= els
->adapter
;
1646 ret
= zfcp_fsf_req_create(adapter
, FSF_QTCB_SEND_ELS
,
1647 ZFCP_REQ_AUTO_CLEANUP
,
1648 NULL
, &lock_flags
, &fsf_req
);
1650 ZFCP_LOG_INFO("error: creation of ELS request failed "
1651 "(adapter %s, port d_id: 0x%08x)\n",
1652 zfcp_get_busid_by_adapter(adapter
), d_id
);
1656 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
1657 if (zfcp_use_one_sbal(els
->req
, els
->req_count
,
1658 els
->resp
, els
->resp_count
)){
1659 /* both request buffer and response buffer
1660 fit into one sbale each */
1661 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_WRITE_READ
;
1662 sbale
[2].addr
= zfcp_sg_to_address(&els
->req
[0]);
1663 sbale
[2].length
= els
->req
[0].length
;
1664 sbale
[3].addr
= zfcp_sg_to_address(&els
->resp
[0]);
1665 sbale
[3].length
= els
->resp
[0].length
;
1666 sbale
[3].flags
|= SBAL_FLAGS_LAST_ENTRY
;
1667 } else if (adapter
->supported_features
&
1668 FSF_FEATURE_ELS_CT_CHAINED_SBALS
) {
1669 /* try to use chained SBALs */
1670 bytes
= zfcp_qdio_sbals_from_sg(fsf_req
,
1671 SBAL_FLAGS0_TYPE_WRITE_READ
,
1672 els
->req
, els
->req_count
,
1673 ZFCP_MAX_SBALS_PER_ELS_REQ
);
1675 ZFCP_LOG_INFO("error: creation of ELS request failed "
1676 "(adapter %s, port d_id: 0x%08x)\n",
1677 zfcp_get_busid_by_adapter(adapter
), d_id
);
1685 fsf_req
->qtcb
->bottom
.support
.req_buf_length
= bytes
;
1686 fsf_req
->sbale_curr
= ZFCP_LAST_SBALE_PER_SBAL
;
1687 bytes
= zfcp_qdio_sbals_from_sg(fsf_req
,
1688 SBAL_FLAGS0_TYPE_WRITE_READ
,
1689 els
->resp
, els
->resp_count
,
1690 ZFCP_MAX_SBALS_PER_ELS_REQ
);
1692 ZFCP_LOG_INFO("error: creation of ELS request failed "
1693 "(adapter %s, port d_id: 0x%08x)\n",
1694 zfcp_get_busid_by_adapter(adapter
), d_id
);
1702 fsf_req
->qtcb
->bottom
.support
.resp_buf_length
= bytes
;
1704 /* reject request */
1705 ZFCP_LOG_INFO("error: microcode does not support chained SBALs"
1706 ", ELS request too big (adapter %s, "
1707 "port d_id: 0x%08x)\n",
1708 zfcp_get_busid_by_adapter(adapter
), d_id
);
1713 /* settings in QTCB */
1714 fsf_req
->qtcb
->bottom
.support
.d_id
= d_id
;
1715 fsf_req
->qtcb
->bottom
.support
.service_class
= adapter
->fc_service_class
;
1716 fsf_req
->qtcb
->bottom
.support
.timeout
= ZFCP_ELS_TIMEOUT
;
1717 fsf_req
->data
.send_els
= els
;
1719 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
1721 /* start QDIO request for this FSF request */
1722 ret
= zfcp_fsf_req_send(fsf_req
, els
->timer
);
1724 ZFCP_LOG_DEBUG("error: initiation of ELS request failed "
1725 "(adapter %s, port d_id: 0x%08x)\n",
1726 zfcp_get_busid_by_adapter(adapter
), d_id
);
1730 ZFCP_LOG_DEBUG("ELS request initiated (adapter %s, port d_id: "
1731 "0x%08x)\n", zfcp_get_busid_by_adapter(adapter
), d_id
);
1735 zfcp_fsf_req_free(fsf_req
);
1739 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
,
1746 * zfcp_fsf_send_els_handler - handler for ELS commands
1747 * @fsf_req: pointer to struct zfcp_fsf_req
1749 * Data specific for the ELS command is passed by
1750 * fsf_req->data.send_els
1751 * Usually a specific handler for the command is called via
1752 * fsf_req->data.send_els->handler at end of this function.
1754 static int zfcp_fsf_send_els_handler(struct zfcp_fsf_req
*fsf_req
)
1756 struct zfcp_adapter
*adapter
;
1757 struct zfcp_port
*port
;
1759 struct fsf_qtcb_header
*header
;
1760 struct fsf_qtcb_bottom_support
*bottom
;
1761 struct zfcp_send_els
*send_els
;
1762 int retval
= -EINVAL
;
1763 u16 subtable
, rule
, counter
;
1765 send_els
= fsf_req
->data
.send_els
;
1766 adapter
= send_els
->adapter
;
1767 port
= send_els
->port
;
1768 d_id
= send_els
->d_id
;
1769 header
= &fsf_req
->qtcb
->header
;
1770 bottom
= &fsf_req
->qtcb
->bottom
.support
;
1772 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)
1773 goto skip_fsfstatus
;
1775 switch (header
->fsf_status
) {
1781 case FSF_SERVICE_CLASS_NOT_SUPPORTED
:
1782 if (adapter
->fc_service_class
<= 3) {
1783 ZFCP_LOG_INFO("error: adapter %s does "
1784 "not support fibrechannel class %d.\n",
1785 zfcp_get_busid_by_adapter(adapter
),
1786 adapter
->fc_service_class
);
1788 ZFCP_LOG_INFO("bug: The fibrechannel class at "
1789 "adapter %s is invalid. "
1790 "(debug info %d)\n",
1791 zfcp_get_busid_by_adapter(adapter
),
1792 adapter
->fc_service_class
);
1794 /* stop operation for this adapter */
1795 debug_text_exception(adapter
->erp_dbf
, 0, "fsf_s_class_nsup");
1796 zfcp_erp_adapter_shutdown(adapter
, 0);
1797 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1800 case FSF_ADAPTER_STATUS_AVAILABLE
:
1801 switch (header
->fsf_status_qual
.word
[0]){
1802 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
1803 debug_text_event(adapter
->erp_dbf
, 1, "fsf_sq_ltest");
1804 if (port
&& (send_els
->ls_code
!= ZFCP_LS_ADISC
))
1805 zfcp_test_link(port
);
1806 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1808 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
1809 debug_text_event(adapter
->erp_dbf
, 1, "fsf_sq_ulp");
1810 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1812 zfcp_handle_els_rjt(header
->fsf_status_qual
.word
[1],
1813 (struct zfcp_ls_rjt_par
*)
1814 &header
->fsf_status_qual
.word
[2]);
1816 case FSF_SQ_RETRY_IF_POSSIBLE
:
1817 debug_text_event(adapter
->erp_dbf
, 1, "fsf_sq_retry");
1818 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1821 ZFCP_LOG_INFO("bug: Wrong status qualifier 0x%x\n",
1822 header
->fsf_status_qual
.word
[0]);
1823 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO
,
1824 (char*)header
->fsf_status_qual
.word
, 16);
1828 case FSF_ELS_COMMAND_REJECTED
:
1829 ZFCP_LOG_INFO("ELS has been rejected because command filter "
1830 "prohibited sending "
1831 "(adapter: %s, port d_id: 0x%08x)\n",
1832 zfcp_get_busid_by_adapter(adapter
), d_id
);
1836 case FSF_PAYLOAD_SIZE_MISMATCH
:
1838 "ELS request size and ELS response size must be either "
1839 "both 0, or both greater than 0 "
1840 "(adapter: %s, req_buf_length=%d resp_buf_length=%d)\n",
1841 zfcp_get_busid_by_adapter(adapter
),
1842 bottom
->req_buf_length
,
1843 bottom
->resp_buf_length
);
1846 case FSF_REQUEST_SIZE_TOO_LARGE
:
1848 "Length of the ELS request buffer, "
1849 "specified in QTCB bottom, "
1850 "exceeds the size of the buffers "
1851 "that have been allocated for ELS request data "
1852 "(adapter: %s, req_buf_length=%d)\n",
1853 zfcp_get_busid_by_adapter(adapter
),
1854 bottom
->req_buf_length
);
1857 case FSF_RESPONSE_SIZE_TOO_LARGE
:
1859 "Length of the ELS response buffer, "
1860 "specified in QTCB bottom, "
1861 "exceeds the size of the buffers "
1862 "that have been allocated for ELS response data "
1863 "(adapter: %s, resp_buf_length=%d)\n",
1864 zfcp_get_busid_by_adapter(adapter
),
1865 bottom
->resp_buf_length
);
1868 case FSF_SBAL_MISMATCH
:
1869 /* should never occure, avoided in zfcp_fsf_send_els */
1870 ZFCP_LOG_INFO("SBAL mismatch (adapter: %s, req_buf_length=%d, "
1871 "resp_buf_length=%d)\n",
1872 zfcp_get_busid_by_adapter(adapter
),
1873 bottom
->req_buf_length
, bottom
->resp_buf_length
);
1874 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1877 case FSF_ACCESS_DENIED
:
1878 ZFCP_LOG_NORMAL("access denied, cannot send ELS command "
1879 "(adapter %s, port d_id=0x%08x)\n",
1880 zfcp_get_busid_by_adapter(adapter
), d_id
);
1881 for (counter
= 0; counter
< 2; counter
++) {
1882 subtable
= header
->fsf_status_qual
.halfword
[counter
* 2];
1883 rule
= header
->fsf_status_qual
.halfword
[counter
* 2 + 1];
1885 case FSF_SQ_CFDC_SUBTABLE_OS
:
1886 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN
:
1887 case FSF_SQ_CFDC_SUBTABLE_PORT_DID
:
1888 case FSF_SQ_CFDC_SUBTABLE_LUN
:
1889 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
1890 zfcp_act_subtable_type
[subtable
], rule
);
1894 debug_text_event(adapter
->erp_dbf
, 1, "fsf_s_access");
1896 zfcp_erp_port_access_denied(port
);
1897 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1902 "bug: An unknown FSF Status was presented "
1903 "(adapter: %s, fsf_status=0x%08x)\n",
1904 zfcp_get_busid_by_adapter(adapter
),
1905 header
->fsf_status
);
1906 debug_text_event(adapter
->erp_dbf
, 0, "fsf_sq_inval");
1907 debug_exception(adapter
->erp_dbf
, 0,
1908 &header
->fsf_status_qual
.word
[0], sizeof(u32
));
1909 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
1914 send_els
->status
= retval
;
1916 if (send_els
->handler
!= 0)
1917 send_els
->handler(send_els
->handler_data
);
1927 * returns: address of initiated FSF request
1928 * NULL - request could not be initiated
1931 zfcp_fsf_exchange_config_data(struct zfcp_erp_action
*erp_action
)
1933 volatile struct qdio_buffer_element
*sbale
;
1934 unsigned long lock_flags
;
1937 /* setup new FSF request */
1938 retval
= zfcp_fsf_req_create(erp_action
->adapter
,
1939 FSF_QTCB_EXCHANGE_CONFIG_DATA
,
1940 ZFCP_REQ_AUTO_CLEANUP
,
1941 erp_action
->adapter
->pool
.fsf_req_erp
,
1942 &lock_flags
, &(erp_action
->fsf_req
));
1944 ZFCP_LOG_INFO("error: Could not create exchange configuration "
1945 "data request for adapter %s.\n",
1946 zfcp_get_busid_by_adapter(erp_action
->adapter
));
1950 sbale
= zfcp_qdio_sbale_req(erp_action
->fsf_req
,
1951 erp_action
->fsf_req
->sbal_curr
, 0);
1952 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
1953 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
1955 erp_action
->fsf_req
->erp_action
= erp_action
;
1956 erp_action
->fsf_req
->qtcb
->bottom
.config
.feature_selection
=
1957 (FSF_FEATURE_CFDC
| FSF_FEATURE_LUN_SHARING
);
1959 /* start QDIO request for this FSF request */
1960 retval
= zfcp_fsf_req_send(erp_action
->fsf_req
, &erp_action
->timer
);
1963 ("error: Could not send exchange configuration data "
1964 "command on the adapter %s\n",
1965 zfcp_get_busid_by_adapter(erp_action
->adapter
));
1966 zfcp_fsf_req_free(erp_action
->fsf_req
);
1967 erp_action
->fsf_req
= NULL
;
1971 ZFCP_LOG_DEBUG("exchange configuration data request initiated "
1973 zfcp_get_busid_by_adapter(erp_action
->adapter
));
1976 write_unlock_irqrestore(&erp_action
->adapter
->request_queue
.queue_lock
,
1982 * zfcp_fsf_exchange_config_evaluate
1983 * @fsf_req: fsf_req which belongs to xchg config data request
1984 * @xchg_ok: specifies if xchg config data was incomplete or complete (0/1)
1986 * returns: -EIO on error, 0 otherwise
1989 zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req
*fsf_req
, int xchg_ok
)
1991 struct fsf_qtcb_bottom_config
*bottom
;
1992 struct zfcp_adapter
*adapter
= fsf_req
->adapter
;
1994 bottom
= &fsf_req
->qtcb
->bottom
.config
;
1995 ZFCP_LOG_DEBUG("low/high QTCB version 0x%x/0x%x of FSF\n",
1996 bottom
->low_qtcb_version
, bottom
->high_qtcb_version
);
1997 adapter
->fsf_lic_version
= bottom
->lic_version
;
1998 adapter
->supported_features
= bottom
->supported_features
;
1999 adapter
->peer_wwpn
= 0;
2000 adapter
->peer_wwnn
= 0;
2001 adapter
->peer_d_id
= 0;
2004 adapter
->wwnn
= bottom
->nport_serv_param
.wwnn
;
2005 adapter
->wwpn
= bottom
->nport_serv_param
.wwpn
;
2006 adapter
->s_id
= bottom
->s_id
& ZFCP_DID_MASK
;
2007 adapter
->fc_topology
= bottom
->fc_topology
;
2008 adapter
->fc_link_speed
= bottom
->fc_link_speed
;
2009 adapter
->hydra_version
= bottom
->adapter_type
;
2014 adapter
->fc_topology
= 0;
2015 adapter
->fc_link_speed
= 0;
2016 adapter
->hydra_version
= 0;
2019 if (adapter
->fc_topology
== FSF_TOPO_P2P
) {
2020 adapter
->peer_d_id
= bottom
->peer_d_id
& ZFCP_DID_MASK
;
2021 adapter
->peer_wwpn
= bottom
->plogi_payload
.wwpn
;
2022 adapter
->peer_wwnn
= bottom
->plogi_payload
.wwnn
;
2025 if(adapter
->supported_features
& FSF_FEATURE_HBAAPI_MANAGEMENT
){
2026 adapter
->hardware_version
= bottom
->hardware_version
;
2027 memcpy(adapter
->serial_number
, bottom
->serial_number
, 17);
2028 EBCASC(adapter
->serial_number
, sizeof(adapter
->serial_number
));
2031 ZFCP_LOG_NORMAL("The adapter %s reported the following characteristics:\n"
2035 "adapter version 0x%x, "
2036 "LIC version 0x%x, "
2037 "FC link speed %d Gb/s\n",
2038 zfcp_get_busid_by_adapter(adapter
),
2041 (unsigned int) adapter
->s_id
,
2042 adapter
->hydra_version
,
2043 adapter
->fsf_lic_version
,
2044 adapter
->fc_link_speed
);
2045 if (ZFCP_QTCB_VERSION
< bottom
->low_qtcb_version
) {
2046 ZFCP_LOG_NORMAL("error: the adapter %s "
2047 "only supports newer control block "
2048 "versions in comparison to this device "
2049 "driver (try updated device driver)\n",
2050 zfcp_get_busid_by_adapter(adapter
));
2051 debug_text_event(adapter
->erp_dbf
, 0, "low_qtcb_ver");
2052 zfcp_erp_adapter_shutdown(adapter
, 0);
2055 if (ZFCP_QTCB_VERSION
> bottom
->high_qtcb_version
) {
2056 ZFCP_LOG_NORMAL("error: the adapter %s "
2057 "only supports older control block "
2058 "versions than this device driver uses"
2059 "(consider a microcode upgrade)\n",
2060 zfcp_get_busid_by_adapter(adapter
));
2061 debug_text_event(adapter
->erp_dbf
, 0, "high_qtcb_ver");
2062 zfcp_erp_adapter_shutdown(adapter
, 0);
2065 zfcp_set_fc_host_attrs(adapter
);
2070 * function: zfcp_fsf_exchange_config_data_handler
2072 * purpose: is called for finished Exchange Configuration Data command
2077 zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req
*fsf_req
)
2079 struct fsf_qtcb_bottom_config
*bottom
;
2080 struct zfcp_adapter
*adapter
= fsf_req
->adapter
;
2082 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)
2085 switch (fsf_req
->qtcb
->header
.fsf_status
) {
2088 if (zfcp_fsf_exchange_config_evaluate(fsf_req
, 1))
2091 switch (adapter
->fc_topology
) {
2093 ZFCP_LOG_NORMAL("Point-to-Point fibrechannel "
2094 "configuration detected at adapter %s\n"
2095 "Peer WWNN 0x%016llx, "
2096 "peer WWPN 0x%016llx, "
2097 "peer d_id 0x%06x\n",
2098 zfcp_get_busid_by_adapter(adapter
),
2101 adapter
->peer_d_id
);
2102 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
2106 ZFCP_LOG_NORMAL("error: Arbitrated loop fibrechannel "
2107 "topology detected at adapter %s "
2108 "unsupported, shutting down adapter\n",
2109 zfcp_get_busid_by_adapter(adapter
));
2110 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
2112 zfcp_erp_adapter_shutdown(adapter
, 0);
2114 case FSF_TOPO_FABRIC
:
2115 ZFCP_LOG_INFO("Switched fabric fibrechannel "
2116 "network detected at adapter %s.\n",
2117 zfcp_get_busid_by_adapter(adapter
));
2120 ZFCP_LOG_NORMAL("bug: The fibrechannel topology "
2121 "reported by the exchange "
2122 "configuration command for "
2123 "the adapter %s is not "
2124 "of a type known to the zfcp "
2125 "driver, shutting down adapter\n",
2126 zfcp_get_busid_by_adapter(adapter
));
2127 adapter
->fc_topology
= FSF_TOPO_ERROR
;
2128 debug_text_exception(fsf_req
->adapter
->erp_dbf
, 0,
2130 zfcp_erp_adapter_shutdown(adapter
, 0);
2133 bottom
= &fsf_req
->qtcb
->bottom
.config
;
2134 if (bottom
->max_qtcb_size
< sizeof(struct fsf_qtcb
)) {
2135 ZFCP_LOG_NORMAL("bug: Maximum QTCB size (%d bytes) "
2136 "allowed by the adapter %s "
2137 "is lower than the minimum "
2138 "required by the driver (%ld bytes).\n",
2139 bottom
->max_qtcb_size
,
2140 zfcp_get_busid_by_adapter(adapter
),
2141 sizeof(struct fsf_qtcb
));
2142 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
2144 debug_event(fsf_req
->adapter
->erp_dbf
, 0,
2145 &bottom
->max_qtcb_size
, sizeof (u32
));
2146 zfcp_erp_adapter_shutdown(adapter
, 0);
2149 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK
,
2152 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE
:
2153 debug_text_event(adapter
->erp_dbf
, 0, "xchg-inco");
2155 if (zfcp_fsf_exchange_config_evaluate(fsf_req
, 0))
2158 ZFCP_LOG_INFO("Local link to adapter %s is down\n",
2159 zfcp_get_busid_by_adapter(adapter
));
2160 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK
|
2161 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
,
2163 zfcp_erp_adapter_failed(adapter
);
2166 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf-stat-ng");
2167 debug_event(fsf_req
->adapter
->erp_dbf
, 0,
2168 &fsf_req
->qtcb
->header
.fsf_status
, sizeof (u32
));
2169 zfcp_erp_adapter_shutdown(adapter
, 0);
2176 * zfcp_fsf_exchange_port_data - request information about local port
2177 * @adapter: for which port data is requested
2178 * @data: response to exchange port data request
2181 zfcp_fsf_exchange_port_data(struct zfcp_adapter
*adapter
,
2182 struct fsf_qtcb_bottom_port
*data
)
2184 volatile struct qdio_buffer_element
*sbale
;
2186 unsigned long lock_flags
;
2187 struct zfcp_fsf_req
*fsf_req
;
2188 struct timer_list
*timer
;
2190 if(!(adapter
->supported_features
& FSF_FEATURE_HBAAPI_MANAGEMENT
)){
2191 ZFCP_LOG_INFO("error: exchange port data "
2192 "command not supported by adapter %s\n",
2193 zfcp_get_busid_by_adapter(adapter
));
2197 timer
= kmalloc(sizeof(struct timer_list
), GFP_KERNEL
);
2201 /* setup new FSF request */
2202 retval
= zfcp_fsf_req_create(adapter
, FSF_QTCB_EXCHANGE_PORT_DATA
,
2203 0, 0, &lock_flags
, &fsf_req
);
2205 ZFCP_LOG_INFO("error: Out of resources. Could not create an "
2206 "exchange port data request for"
2207 "the adapter %s.\n",
2208 zfcp_get_busid_by_adapter(adapter
));
2209 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
,
2214 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
2215 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
2216 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
2218 fsf_req
->data
.port_data
= data
;
2221 timer
->function
= zfcp_fsf_request_timeout_handler
;
2222 timer
->data
= (unsigned long) adapter
;
2223 timer
->expires
= ZFCP_FSF_REQUEST_TIMEOUT
;
2225 retval
= zfcp_fsf_req_send(fsf_req
, timer
);
2227 ZFCP_LOG_INFO("error: Could not send an exchange port data "
2228 "command on the adapter %s\n",
2229 zfcp_get_busid_by_adapter(adapter
));
2230 zfcp_fsf_req_free(fsf_req
);
2231 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
,
2236 ZFCP_LOG_DEBUG("Exchange Port Data request initiated (adapter %s)\n",
2237 zfcp_get_busid_by_adapter(adapter
));
2239 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
,
2242 wait_event(fsf_req
->completion_wq
,
2243 fsf_req
->status
& ZFCP_STATUS_FSFREQ_COMPLETED
);
2244 del_timer_sync(timer
);
2245 zfcp_fsf_req_free(fsf_req
);
2253 * zfcp_fsf_exchange_port_data_handler - handler for exchange_port_data request
2254 * @fsf_req: pointer to struct zfcp_fsf_req
2257 zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req
*fsf_req
)
2259 struct fsf_qtcb_bottom_port
*bottom
;
2260 struct fsf_qtcb_bottom_port
*data
= fsf_req
->data
.port_data
;
2262 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)
2265 switch (fsf_req
->qtcb
->header
.fsf_status
) {
2267 bottom
= &fsf_req
->qtcb
->bottom
.port
;
2268 memcpy(data
, bottom
, sizeof(*data
));
2272 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "xchg-port-ng");
2273 debug_event(fsf_req
->adapter
->erp_dbf
, 0,
2274 &fsf_req
->qtcb
->header
.fsf_status
, sizeof(u32
));
2280 * function: zfcp_fsf_open_port
2284 * returns: address of initiated FSF request
2285 * NULL - request could not be initiated
2288 zfcp_fsf_open_port(struct zfcp_erp_action
*erp_action
)
2290 volatile struct qdio_buffer_element
*sbale
;
2291 unsigned long lock_flags
;
2294 /* setup new FSF request */
2295 retval
= zfcp_fsf_req_create(erp_action
->adapter
,
2296 FSF_QTCB_OPEN_PORT_WITH_DID
,
2297 ZFCP_WAIT_FOR_SBAL
| ZFCP_REQ_AUTO_CLEANUP
,
2298 erp_action
->adapter
->pool
.fsf_req_erp
,
2299 &lock_flags
, &(erp_action
->fsf_req
));
2301 ZFCP_LOG_INFO("error: Could not create open port request "
2302 "for port 0x%016Lx on adapter %s.\n",
2303 erp_action
->port
->wwpn
,
2304 zfcp_get_busid_by_adapter(erp_action
->adapter
));
2308 sbale
= zfcp_qdio_sbale_req(erp_action
->fsf_req
,
2309 erp_action
->fsf_req
->sbal_curr
, 0);
2310 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
2311 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
2313 erp_action
->fsf_req
->qtcb
->bottom
.support
.d_id
= erp_action
->port
->d_id
;
2314 atomic_set_mask(ZFCP_STATUS_COMMON_OPENING
, &erp_action
->port
->status
);
2315 erp_action
->fsf_req
->data
.open_port
.port
= erp_action
->port
;
2316 erp_action
->fsf_req
->erp_action
= erp_action
;
2318 /* start QDIO request for this FSF request */
2319 retval
= zfcp_fsf_req_send(erp_action
->fsf_req
, &erp_action
->timer
);
2321 ZFCP_LOG_INFO("error: Could not send open port request for "
2322 "port 0x%016Lx on adapter %s.\n",
2323 erp_action
->port
->wwpn
,
2324 zfcp_get_busid_by_adapter(erp_action
->adapter
));
2325 zfcp_fsf_req_free(erp_action
->fsf_req
);
2326 erp_action
->fsf_req
= NULL
;
2330 ZFCP_LOG_DEBUG("open port request initiated "
2331 "(adapter %s, port 0x%016Lx)\n",
2332 zfcp_get_busid_by_adapter(erp_action
->adapter
),
2333 erp_action
->port
->wwpn
);
2335 write_unlock_irqrestore(&erp_action
->adapter
->request_queue
.queue_lock
,
2341 * function: zfcp_fsf_open_port_handler
2343 * purpose: is called for finished Open Port command
2348 zfcp_fsf_open_port_handler(struct zfcp_fsf_req
*fsf_req
)
2350 int retval
= -EINVAL
;
2351 struct zfcp_port
*port
;
2352 struct fsf_plogi
*plogi
;
2353 struct fsf_qtcb_header
*header
;
2354 u16 subtable
, rule
, counter
;
2356 port
= fsf_req
->data
.open_port
.port
;
2357 header
= &fsf_req
->qtcb
->header
;
2359 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
2360 /* don't change port status in our bookkeeping */
2361 goto skip_fsfstatus
;
2364 /* evaluate FSF status in QTCB */
2365 switch (header
->fsf_status
) {
2367 case FSF_PORT_ALREADY_OPEN
:
2368 ZFCP_LOG_NORMAL("bug: remote port 0x%016Lx on adapter %s "
2369 "is already open.\n",
2370 port
->wwpn
, zfcp_get_busid_by_port(port
));
2371 debug_text_exception(fsf_req
->adapter
->erp_dbf
, 0,
2374 * This is a bug, however operation should continue normally
2375 * if it is simply ignored
2379 case FSF_ACCESS_DENIED
:
2380 ZFCP_LOG_NORMAL("Access denied, cannot open port 0x%016Lx "
2382 port
->wwpn
, zfcp_get_busid_by_port(port
));
2383 for (counter
= 0; counter
< 2; counter
++) {
2384 subtable
= header
->fsf_status_qual
.halfword
[counter
* 2];
2385 rule
= header
->fsf_status_qual
.halfword
[counter
* 2 + 1];
2387 case FSF_SQ_CFDC_SUBTABLE_OS
:
2388 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN
:
2389 case FSF_SQ_CFDC_SUBTABLE_PORT_DID
:
2390 case FSF_SQ_CFDC_SUBTABLE_LUN
:
2391 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
2392 zfcp_act_subtable_type
[subtable
], rule
);
2396 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1, "fsf_s_access");
2397 zfcp_erp_port_access_denied(port
);
2398 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2401 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED
:
2402 ZFCP_LOG_INFO("error: The FSF adapter is out of resources. "
2403 "The remote port 0x%016Lx on adapter %s "
2404 "could not be opened. Disabling it.\n",
2405 port
->wwpn
, zfcp_get_busid_by_port(port
));
2406 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
2408 zfcp_erp_port_failed(port
);
2409 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2412 case FSF_ADAPTER_STATUS_AVAILABLE
:
2413 switch (header
->fsf_status_qual
.word
[0]) {
2414 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
2415 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
2417 /* ERP strategy will escalate */
2418 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2420 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
2421 /* ERP strategy will escalate */
2422 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
2424 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2426 case FSF_SQ_NO_RETRY_POSSIBLE
:
2427 ZFCP_LOG_NORMAL("The remote port 0x%016Lx on "
2428 "adapter %s could not be opened. "
2431 zfcp_get_busid_by_port(port
));
2432 debug_text_exception(fsf_req
->adapter
->erp_dbf
, 0,
2434 zfcp_erp_port_failed(port
);
2435 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2439 ("bug: Wrong status qualifier 0x%x arrived.\n",
2440 header
->fsf_status_qual
.word
[0]);
2441 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
2444 fsf_req
->adapter
->erp_dbf
, 0,
2445 &header
->fsf_status_qual
.word
[0],
2452 /* save port handle assigned by FSF */
2453 port
->handle
= header
->port_handle
;
2454 ZFCP_LOG_INFO("The remote port 0x%016Lx via adapter %s "
2455 "was opened, it's port handle is 0x%x\n",
2456 port
->wwpn
, zfcp_get_busid_by_port(port
),
2458 /* mark port as open */
2459 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN
|
2460 ZFCP_STATUS_PORT_PHYS_OPEN
, &port
->status
);
2461 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED
|
2462 ZFCP_STATUS_COMMON_ACCESS_BOXED
,
2465 /* check whether D_ID has changed during open */
2467 * FIXME: This check is not airtight, as the FCP channel does
2468 * not monitor closures of target port connections caused on
2469 * the remote side. Thus, they might miss out on invalidating
2470 * locally cached WWPNs (and other N_Port parameters) of gone
2471 * target ports. So, our heroic attempt to make things safe
2472 * could be undermined by 'open port' response data tagged with
2473 * obsolete WWPNs. Another reason to monitor potential
2474 * connection closures ourself at least (by interpreting
2475 * incoming ELS' and unsolicited status). It just crosses my
2476 * mind that one should be able to cross-check by means of
2477 * another GID_PN straight after a port has been opened.
2478 * Alternately, an ADISC/PDISC ELS should suffice, as well.
2480 plogi
= (struct fsf_plogi
*) fsf_req
->qtcb
->bottom
.support
.els
;
2481 if (!atomic_test_mask(ZFCP_STATUS_PORT_NO_WWPN
, &port
->status
))
2483 if (fsf_req
->qtcb
->bottom
.support
.els1_length
<
2484 ((((unsigned long) &plogi
->serv_param
.wwpn
) -
2485 ((unsigned long) plogi
)) + sizeof (u64
))) {
2487 "warning: insufficient length of "
2488 "PLOGI payload (%i)\n",
2489 fsf_req
->qtcb
->bottom
.support
.els1_length
);
2490 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
2491 "fsf_s_short_plogi:");
2492 /* skip sanity check and assume wwpn is ok */
2494 if (plogi
->serv_param
.wwpn
!= port
->wwpn
) {
2495 ZFCP_LOG_INFO("warning: d_id of port "
2496 "0x%016Lx changed during "
2497 "open\n", port
->wwpn
);
2499 fsf_req
->adapter
->erp_dbf
, 0,
2500 "fsf_s_did_change:");
2502 ZFCP_STATUS_PORT_DID_DID
,
2505 port
->wwnn
= plogi
->serv_param
.wwnn
;
2510 case FSF_UNKNOWN_OP_SUBTYPE
:
2511 /* should never occure, subtype not set in zfcp_fsf_open_port */
2512 ZFCP_LOG_INFO("unknown operation subtype (adapter: %s, "
2513 "op_subtype=0x%x)\n",
2514 zfcp_get_busid_by_port(port
),
2515 fsf_req
->qtcb
->bottom
.support
.operation_subtype
);
2516 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2520 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
2521 "(debug info 0x%x)\n",
2522 header
->fsf_status
);
2523 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf_s_inval:");
2524 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
2525 &header
->fsf_status
, sizeof (u32
));
2530 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING
, &port
->status
);
2535 * function: zfcp_fsf_close_port
2537 * purpose: submit FSF command "close port"
2539 * returns: address of initiated FSF request
2540 * NULL - request could not be initiated
2543 zfcp_fsf_close_port(struct zfcp_erp_action
*erp_action
)
2545 volatile struct qdio_buffer_element
*sbale
;
2546 unsigned long lock_flags
;
2549 /* setup new FSF request */
2550 retval
= zfcp_fsf_req_create(erp_action
->adapter
,
2551 FSF_QTCB_CLOSE_PORT
,
2552 ZFCP_WAIT_FOR_SBAL
| ZFCP_REQ_AUTO_CLEANUP
,
2553 erp_action
->adapter
->pool
.fsf_req_erp
,
2554 &lock_flags
, &(erp_action
->fsf_req
));
2556 ZFCP_LOG_INFO("error: Could not create a close port request "
2557 "for port 0x%016Lx on adapter %s.\n",
2558 erp_action
->port
->wwpn
,
2559 zfcp_get_busid_by_adapter(erp_action
->adapter
));
2563 sbale
= zfcp_qdio_sbale_req(erp_action
->fsf_req
,
2564 erp_action
->fsf_req
->sbal_curr
, 0);
2565 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
2566 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
2568 atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING
, &erp_action
->port
->status
);
2569 erp_action
->fsf_req
->data
.close_port
.port
= erp_action
->port
;
2570 erp_action
->fsf_req
->erp_action
= erp_action
;
2571 erp_action
->fsf_req
->qtcb
->header
.port_handle
=
2572 erp_action
->port
->handle
;
2574 /* start QDIO request for this FSF request */
2575 retval
= zfcp_fsf_req_send(erp_action
->fsf_req
, &erp_action
->timer
);
2577 ZFCP_LOG_INFO("error: Could not send a close port request for "
2578 "port 0x%016Lx on adapter %s.\n",
2579 erp_action
->port
->wwpn
,
2580 zfcp_get_busid_by_adapter(erp_action
->adapter
));
2581 zfcp_fsf_req_free(erp_action
->fsf_req
);
2582 erp_action
->fsf_req
= NULL
;
2586 ZFCP_LOG_TRACE("close port request initiated "
2587 "(adapter %s, port 0x%016Lx)\n",
2588 zfcp_get_busid_by_adapter(erp_action
->adapter
),
2589 erp_action
->port
->wwpn
);
2591 write_unlock_irqrestore(&erp_action
->adapter
->request_queue
.queue_lock
,
2597 * function: zfcp_fsf_close_port_handler
2599 * purpose: is called for finished Close Port FSF command
2604 zfcp_fsf_close_port_handler(struct zfcp_fsf_req
*fsf_req
)
2606 int retval
= -EINVAL
;
2607 struct zfcp_port
*port
;
2609 port
= fsf_req
->data
.close_port
.port
;
2611 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
2612 /* don't change port status in our bookkeeping */
2613 goto skip_fsfstatus
;
2616 /* evaluate FSF status in QTCB */
2617 switch (fsf_req
->qtcb
->header
.fsf_status
) {
2619 case FSF_PORT_HANDLE_NOT_VALID
:
2620 ZFCP_LOG_INFO("Temporary port identifier 0x%x for port "
2621 "0x%016Lx on adapter %s invalid. This may happen "
2622 "occasionally.\n", port
->handle
,
2623 port
->wwpn
, zfcp_get_busid_by_port(port
));
2624 ZFCP_LOG_DEBUG("status qualifier:\n");
2625 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
2626 (char *) &fsf_req
->qtcb
->header
.fsf_status_qual
,
2627 sizeof (union fsf_status_qual
));
2628 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
2630 zfcp_erp_adapter_reopen(port
->adapter
, 0);
2631 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2634 case FSF_ADAPTER_STATUS_AVAILABLE
:
2635 /* Note: FSF has actually closed the port in this case.
2636 * The status code is just daft. Fingers crossed for a change
2642 ZFCP_LOG_TRACE("remote port 0x016%Lx on adapter %s closed, "
2643 "port handle 0x%x\n", port
->wwpn
,
2644 zfcp_get_busid_by_port(port
), port
->handle
);
2645 zfcp_erp_modify_port_status(port
,
2646 ZFCP_STATUS_COMMON_OPEN
,
2652 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
2653 "(debug info 0x%x)\n",
2654 fsf_req
->qtcb
->header
.fsf_status
);
2655 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf_s_inval:");
2656 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
2657 &fsf_req
->qtcb
->header
.fsf_status
,
2663 atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING
, &port
->status
);
2668 * function: zfcp_fsf_close_physical_port
2670 * purpose: submit FSF command "close physical port"
2672 * returns: address of initiated FSF request
2673 * NULL - request could not be initiated
2676 zfcp_fsf_close_physical_port(struct zfcp_erp_action
*erp_action
)
2679 unsigned long lock_flags
;
2680 volatile struct qdio_buffer_element
*sbale
;
2682 /* setup new FSF request */
2683 retval
= zfcp_fsf_req_create(erp_action
->adapter
,
2684 FSF_QTCB_CLOSE_PHYSICAL_PORT
,
2685 ZFCP_WAIT_FOR_SBAL
| ZFCP_REQ_AUTO_CLEANUP
,
2686 erp_action
->adapter
->pool
.fsf_req_erp
,
2687 &lock_flags
, &erp_action
->fsf_req
);
2689 ZFCP_LOG_INFO("error: Could not create close physical port "
2690 "request (adapter %s, port 0x%016Lx)\n",
2691 zfcp_get_busid_by_adapter(erp_action
->adapter
),
2692 erp_action
->port
->wwpn
);
2697 sbale
= zfcp_qdio_sbale_req(erp_action
->fsf_req
,
2698 erp_action
->fsf_req
->sbal_curr
, 0);
2699 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
2700 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
2702 /* mark port as being closed */
2703 atomic_set_mask(ZFCP_STATUS_PORT_PHYS_CLOSING
,
2704 &erp_action
->port
->status
);
2705 /* save a pointer to this port */
2706 erp_action
->fsf_req
->data
.close_physical_port
.port
= erp_action
->port
;
2707 /* port to be closeed */
2708 erp_action
->fsf_req
->qtcb
->header
.port_handle
=
2709 erp_action
->port
->handle
;
2710 erp_action
->fsf_req
->erp_action
= erp_action
;
2712 /* start QDIO request for this FSF request */
2713 retval
= zfcp_fsf_req_send(erp_action
->fsf_req
, &erp_action
->timer
);
2715 ZFCP_LOG_INFO("error: Could not send close physical port "
2716 "request (adapter %s, port 0x%016Lx)\n",
2717 zfcp_get_busid_by_adapter(erp_action
->adapter
),
2718 erp_action
->port
->wwpn
);
2719 zfcp_fsf_req_free(erp_action
->fsf_req
);
2720 erp_action
->fsf_req
= NULL
;
2724 ZFCP_LOG_TRACE("close physical port request initiated "
2725 "(adapter %s, port 0x%016Lx)\n",
2726 zfcp_get_busid_by_adapter(erp_action
->adapter
),
2727 erp_action
->port
->wwpn
);
2729 write_unlock_irqrestore(&erp_action
->adapter
->request_queue
.queue_lock
,
2735 * function: zfcp_fsf_close_physical_port_handler
2737 * purpose: is called for finished Close Physical Port FSF command
2742 zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req
*fsf_req
)
2744 int retval
= -EINVAL
;
2745 struct zfcp_port
*port
;
2746 struct zfcp_unit
*unit
;
2747 struct fsf_qtcb_header
*header
;
2748 u16 subtable
, rule
, counter
;
2750 port
= fsf_req
->data
.close_physical_port
.port
;
2751 header
= &fsf_req
->qtcb
->header
;
2753 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
2754 /* don't change port status in our bookkeeping */
2755 goto skip_fsfstatus
;
2758 /* evaluate FSF status in QTCB */
2759 switch (header
->fsf_status
) {
2761 case FSF_PORT_HANDLE_NOT_VALID
:
2762 ZFCP_LOG_INFO("Temporary port identifier 0x%x invalid"
2763 "(adapter %s, port 0x%016Lx). "
2764 "This may happen occasionally.\n",
2766 zfcp_get_busid_by_port(port
),
2768 ZFCP_LOG_DEBUG("status qualifier:\n");
2769 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
2770 (char *) &header
->fsf_status_qual
,
2771 sizeof (union fsf_status_qual
));
2772 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
2774 zfcp_erp_adapter_reopen(port
->adapter
, 0);
2775 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2778 case FSF_ACCESS_DENIED
:
2779 ZFCP_LOG_NORMAL("Access denied, cannot close "
2780 "physical port 0x%016Lx on adapter %s\n",
2781 port
->wwpn
, zfcp_get_busid_by_port(port
));
2782 for (counter
= 0; counter
< 2; counter
++) {
2783 subtable
= header
->fsf_status_qual
.halfword
[counter
* 2];
2784 rule
= header
->fsf_status_qual
.halfword
[counter
* 2 + 1];
2786 case FSF_SQ_CFDC_SUBTABLE_OS
:
2787 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN
:
2788 case FSF_SQ_CFDC_SUBTABLE_PORT_DID
:
2789 case FSF_SQ_CFDC_SUBTABLE_LUN
:
2790 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
2791 zfcp_act_subtable_type
[subtable
], rule
);
2795 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1, "fsf_s_access");
2796 zfcp_erp_port_access_denied(port
);
2797 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2800 case FSF_PORT_BOXED
:
2801 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter "
2802 "%s needs to be reopened but it was attempted "
2803 "to close it physically.\n",
2805 zfcp_get_busid_by_port(port
));
2806 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1, "fsf_s_pboxed");
2807 zfcp_erp_port_boxed(port
);
2808 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
|
2809 ZFCP_STATUS_FSFREQ_RETRY
;
2812 case FSF_ADAPTER_STATUS_AVAILABLE
:
2813 switch (header
->fsf_status_qual
.word
[0]) {
2814 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
2815 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
2817 /* This will now be escalated by ERP */
2818 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2820 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
2821 /* ERP strategy will escalate */
2822 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
2824 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2828 ("bug: Wrong status qualifier 0x%x arrived.\n",
2829 header
->fsf_status_qual
.word
[0]);
2830 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
2833 fsf_req
->adapter
->erp_dbf
, 0,
2834 &header
->fsf_status_qual
.word
[0], sizeof (u32
));
2840 ZFCP_LOG_DEBUG("Remote port 0x%016Lx via adapter %s "
2841 "physically closed, port handle 0x%x\n",
2843 zfcp_get_busid_by_port(port
), port
->handle
);
2844 /* can't use generic zfcp_erp_modify_port_status because
2845 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
2847 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN
, &port
->status
);
2848 list_for_each_entry(unit
, &port
->unit_list_head
, list
)
2849 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN
, &unit
->status
);
2854 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
2855 "(debug info 0x%x)\n",
2856 header
->fsf_status
);
2857 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf_s_inval:");
2858 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
2859 &header
->fsf_status
, sizeof (u32
));
2864 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_CLOSING
, &port
->status
);
2869 * function: zfcp_fsf_open_unit
2875 * assumptions: This routine does not check whether the associated
2876 * remote port has already been opened. This should be
2877 * done by calling routines. Otherwise some status
2878 * may be presented by FSF
2881 zfcp_fsf_open_unit(struct zfcp_erp_action
*erp_action
)
2883 volatile struct qdio_buffer_element
*sbale
;
2884 unsigned long lock_flags
;
2887 /* setup new FSF request */
2888 retval
= zfcp_fsf_req_create(erp_action
->adapter
,
2890 ZFCP_WAIT_FOR_SBAL
| ZFCP_REQ_AUTO_CLEANUP
,
2891 erp_action
->adapter
->pool
.fsf_req_erp
,
2892 &lock_flags
, &(erp_action
->fsf_req
));
2894 ZFCP_LOG_INFO("error: Could not create open unit request for "
2895 "unit 0x%016Lx on port 0x%016Lx on adapter %s.\n",
2896 erp_action
->unit
->fcp_lun
,
2897 erp_action
->unit
->port
->wwpn
,
2898 zfcp_get_busid_by_adapter(erp_action
->adapter
));
2902 sbale
= zfcp_qdio_sbale_req(erp_action
->fsf_req
,
2903 erp_action
->fsf_req
->sbal_curr
, 0);
2904 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
2905 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
2907 erp_action
->fsf_req
->qtcb
->header
.port_handle
=
2908 erp_action
->port
->handle
;
2909 erp_action
->fsf_req
->qtcb
->bottom
.support
.fcp_lun
=
2910 erp_action
->unit
->fcp_lun
;
2911 erp_action
->fsf_req
->qtcb
->bottom
.support
.option
=
2912 FSF_OPEN_LUN_SUPPRESS_BOXING
;
2913 atomic_set_mask(ZFCP_STATUS_COMMON_OPENING
, &erp_action
->unit
->status
);
2914 erp_action
->fsf_req
->data
.open_unit
.unit
= erp_action
->unit
;
2915 erp_action
->fsf_req
->erp_action
= erp_action
;
2917 /* start QDIO request for this FSF request */
2918 retval
= zfcp_fsf_req_send(erp_action
->fsf_req
, &erp_action
->timer
);
2920 ZFCP_LOG_INFO("error: Could not send an open unit request "
2921 "on the adapter %s, port 0x%016Lx for "
2923 zfcp_get_busid_by_adapter(erp_action
->adapter
),
2924 erp_action
->port
->wwpn
,
2925 erp_action
->unit
->fcp_lun
);
2926 zfcp_fsf_req_free(erp_action
->fsf_req
);
2927 erp_action
->fsf_req
= NULL
;
2931 ZFCP_LOG_TRACE("Open LUN request initiated (adapter %s, "
2932 "port 0x%016Lx, unit 0x%016Lx)\n",
2933 zfcp_get_busid_by_adapter(erp_action
->adapter
),
2934 erp_action
->port
->wwpn
, erp_action
->unit
->fcp_lun
);
2936 write_unlock_irqrestore(&erp_action
->adapter
->request_queue
.queue_lock
,
2942 * function: zfcp_fsf_open_unit_handler
2944 * purpose: is called for finished Open LUN command
2949 zfcp_fsf_open_unit_handler(struct zfcp_fsf_req
*fsf_req
)
2951 int retval
= -EINVAL
;
2952 struct zfcp_adapter
*adapter
;
2953 struct zfcp_unit
*unit
;
2954 struct fsf_qtcb_header
*header
;
2955 struct fsf_qtcb_bottom_support
*bottom
;
2956 struct fsf_queue_designator
*queue_designator
;
2957 u16 subtable
, rule
, counter
;
2958 u32 allowed
, exclusive
, readwrite
;
2960 unit
= fsf_req
->data
.open_unit
.unit
;
2962 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
2963 /* don't change unit status in our bookkeeping */
2964 goto skip_fsfstatus
;
2967 adapter
= fsf_req
->adapter
;
2968 header
= &fsf_req
->qtcb
->header
;
2969 bottom
= &fsf_req
->qtcb
->bottom
.support
;
2970 queue_designator
= &header
->fsf_status_qual
.fsf_queue_designator
;
2972 allowed
= bottom
->lun_access_info
& FSF_UNIT_ACCESS_OPEN_LUN_ALLOWED
;
2973 exclusive
= bottom
->lun_access_info
& FSF_UNIT_ACCESS_EXCLUSIVE
;
2974 readwrite
= bottom
->lun_access_info
& FSF_UNIT_ACCESS_OUTBOUND_TRANSFER
;
2976 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED
|
2977 ZFCP_STATUS_UNIT_SHARED
|
2978 ZFCP_STATUS_UNIT_READONLY
,
2981 /* evaluate FSF status in QTCB */
2982 switch (header
->fsf_status
) {
2984 case FSF_PORT_HANDLE_NOT_VALID
:
2985 ZFCP_LOG_INFO("Temporary port identifier 0x%x "
2986 "for port 0x%016Lx on adapter %s invalid "
2987 "This may happen occasionally\n",
2989 unit
->port
->wwpn
, zfcp_get_busid_by_unit(unit
));
2990 ZFCP_LOG_DEBUG("status qualifier:\n");
2991 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
2992 (char *) &header
->fsf_status_qual
,
2993 sizeof (union fsf_status_qual
));
2994 debug_text_event(adapter
->erp_dbf
, 1, "fsf_s_ph_nv");
2995 zfcp_erp_adapter_reopen(unit
->port
->adapter
, 0);
2996 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
2999 case FSF_LUN_ALREADY_OPEN
:
3000 ZFCP_LOG_NORMAL("bug: Attempted to open unit 0x%016Lx on "
3001 "remote port 0x%016Lx on adapter %s twice.\n",
3003 unit
->port
->wwpn
, zfcp_get_busid_by_unit(unit
));
3004 debug_text_exception(adapter
->erp_dbf
, 0,
3006 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3009 case FSF_ACCESS_DENIED
:
3010 ZFCP_LOG_NORMAL("Access denied, cannot open unit 0x%016Lx on "
3011 "remote port 0x%016Lx on adapter %s\n",
3012 unit
->fcp_lun
, unit
->port
->wwpn
,
3013 zfcp_get_busid_by_unit(unit
));
3014 for (counter
= 0; counter
< 2; counter
++) {
3015 subtable
= header
->fsf_status_qual
.halfword
[counter
* 2];
3016 rule
= header
->fsf_status_qual
.halfword
[counter
* 2 + 1];
3018 case FSF_SQ_CFDC_SUBTABLE_OS
:
3019 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN
:
3020 case FSF_SQ_CFDC_SUBTABLE_PORT_DID
:
3021 case FSF_SQ_CFDC_SUBTABLE_LUN
:
3022 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
3023 zfcp_act_subtable_type
[subtable
], rule
);
3027 debug_text_event(adapter
->erp_dbf
, 1, "fsf_s_access");
3028 zfcp_erp_unit_access_denied(unit
);
3029 atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED
, &unit
->status
);
3030 atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY
, &unit
->status
);
3031 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3034 case FSF_PORT_BOXED
:
3035 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter %s "
3036 "needs to be reopened\n",
3037 unit
->port
->wwpn
, zfcp_get_busid_by_unit(unit
));
3038 debug_text_event(adapter
->erp_dbf
, 2, "fsf_s_pboxed");
3039 zfcp_erp_port_boxed(unit
->port
);
3040 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
|
3041 ZFCP_STATUS_FSFREQ_RETRY
;
3044 case FSF_LUN_SHARING_VIOLATION
:
3045 if (header
->fsf_status_qual
.word
[0] != 0) {
3046 ZFCP_LOG_NORMAL("FCP-LUN 0x%Lx at the remote port "
3048 "connected to the adapter %s "
3049 "is already in use in LPAR%d, CSS%d\n",
3052 zfcp_get_busid_by_unit(unit
),
3053 queue_designator
->hla
,
3054 queue_designator
->cssid
);
3056 subtable
= header
->fsf_status_qual
.halfword
[4];
3057 rule
= header
->fsf_status_qual
.halfword
[5];
3059 case FSF_SQ_CFDC_SUBTABLE_OS
:
3060 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN
:
3061 case FSF_SQ_CFDC_SUBTABLE_PORT_DID
:
3062 case FSF_SQ_CFDC_SUBTABLE_LUN
:
3063 ZFCP_LOG_NORMAL("Access to FCP-LUN 0x%Lx at the "
3064 "remote port with WWPN 0x%Lx "
3065 "connected to the adapter %s "
3066 "is denied (%s rule %d)\n",
3069 zfcp_get_busid_by_unit(unit
),
3070 zfcp_act_subtable_type
[subtable
],
3075 ZFCP_LOG_DEBUG("status qualifier:\n");
3076 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
3077 (char *) &header
->fsf_status_qual
,
3078 sizeof (union fsf_status_qual
));
3079 debug_text_event(adapter
->erp_dbf
, 2,
3081 zfcp_erp_unit_access_denied(unit
);
3082 atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED
, &unit
->status
);
3083 atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY
, &unit
->status
);
3084 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3087 case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED
:
3088 ZFCP_LOG_INFO("error: The adapter ran out of resources. "
3089 "There is no handle (temporary port identifier) "
3090 "available for unit 0x%016Lx on port 0x%016Lx "
3094 zfcp_get_busid_by_unit(unit
));
3095 debug_text_event(adapter
->erp_dbf
, 1,
3097 zfcp_erp_unit_failed(unit
);
3098 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3101 case FSF_ADAPTER_STATUS_AVAILABLE
:
3102 switch (header
->fsf_status_qual
.word
[0]) {
3103 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
3104 /* Re-establish link to port */
3105 debug_text_event(adapter
->erp_dbf
, 1,
3107 zfcp_test_link(unit
->port
);
3108 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3110 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
3111 /* ERP strategy will escalate */
3112 debug_text_event(adapter
->erp_dbf
, 1,
3114 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3118 ("bug: Wrong status qualifier 0x%x arrived.\n",
3119 header
->fsf_status_qual
.word
[0]);
3120 debug_text_event(adapter
->erp_dbf
, 0,
3122 debug_exception(adapter
->erp_dbf
, 0,
3123 &header
->fsf_status_qual
.word
[0],
3128 case FSF_INVALID_COMMAND_OPTION
:
3130 "Invalid option 0x%x has been specified "
3131 "in QTCB bottom sent to the adapter %s\n",
3133 zfcp_get_busid_by_adapter(adapter
));
3134 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3139 /* save LUN handle assigned by FSF */
3140 unit
->handle
= header
->lun_handle
;
3141 ZFCP_LOG_TRACE("unit 0x%016Lx on remote port 0x%016Lx on "
3142 "adapter %s opened, port handle 0x%x\n",
3145 zfcp_get_busid_by_unit(unit
),
3147 /* mark unit as open */
3148 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN
, &unit
->status
);
3149 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED
|
3150 ZFCP_STATUS_COMMON_ACCESS_BOXED
,
3152 if (adapter
->supported_features
& FSF_FEATURE_LUN_SHARING
){
3154 atomic_set_mask(ZFCP_STATUS_UNIT_SHARED
,
3158 atomic_set_mask(ZFCP_STATUS_UNIT_READONLY
,
3160 ZFCP_LOG_NORMAL("read-only access for unit "
3161 "(adapter %s, wwpn=0x%016Lx, "
3162 "fcp_lun=0x%016Lx)\n",
3163 zfcp_get_busid_by_unit(unit
),
3168 if (exclusive
&& !readwrite
) {
3169 ZFCP_LOG_NORMAL("exclusive access of read-only "
3170 "unit not supported\n");
3171 zfcp_erp_unit_failed(unit
);
3172 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3173 zfcp_erp_unit_shutdown(unit
, 0);
3174 } else if (!exclusive
&& readwrite
) {
3175 ZFCP_LOG_NORMAL("shared access of read-write "
3176 "unit not supported\n");
3177 zfcp_erp_unit_failed(unit
);
3178 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3179 zfcp_erp_unit_shutdown(unit
, 0);
3187 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
3188 "(debug info 0x%x)\n",
3189 header
->fsf_status
);
3190 debug_text_event(adapter
->erp_dbf
, 0, "fsf_s_inval:");
3191 debug_exception(adapter
->erp_dbf
, 0,
3192 &header
->fsf_status
, sizeof (u32
));
3197 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING
, &unit
->status
);
3202 * function: zfcp_fsf_close_unit
3206 * returns: address of fsf_req - request successfully initiated
3209 * assumptions: This routine does not check whether the associated
3210 * remote port/lun has already been opened. This should be
3211 * done by calling routines. Otherwise some status
3212 * may be presented by FSF
3215 zfcp_fsf_close_unit(struct zfcp_erp_action
*erp_action
)
3217 volatile struct qdio_buffer_element
*sbale
;
3218 unsigned long lock_flags
;
3221 /* setup new FSF request */
3222 retval
= zfcp_fsf_req_create(erp_action
->adapter
,
3224 ZFCP_WAIT_FOR_SBAL
| ZFCP_REQ_AUTO_CLEANUP
,
3225 erp_action
->adapter
->pool
.fsf_req_erp
,
3226 &lock_flags
, &(erp_action
->fsf_req
));
3228 ZFCP_LOG_INFO("error: Could not create close unit request for "
3229 "unit 0x%016Lx on port 0x%016Lx on adapter %s.\n",
3230 erp_action
->unit
->fcp_lun
,
3231 erp_action
->port
->wwpn
,
3232 zfcp_get_busid_by_adapter(erp_action
->adapter
));
3236 sbale
= zfcp_qdio_sbale_req(erp_action
->fsf_req
,
3237 erp_action
->fsf_req
->sbal_curr
, 0);
3238 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_READ
;
3239 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
3241 erp_action
->fsf_req
->qtcb
->header
.port_handle
=
3242 erp_action
->port
->handle
;
3243 erp_action
->fsf_req
->qtcb
->header
.lun_handle
= erp_action
->unit
->handle
;
3244 atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING
, &erp_action
->unit
->status
);
3245 erp_action
->fsf_req
->data
.close_unit
.unit
= erp_action
->unit
;
3246 erp_action
->fsf_req
->erp_action
= erp_action
;
3248 /* start QDIO request for this FSF request */
3249 retval
= zfcp_fsf_req_send(erp_action
->fsf_req
, &erp_action
->timer
);
3251 ZFCP_LOG_INFO("error: Could not send a close unit request for "
3252 "unit 0x%016Lx on port 0x%016Lx onadapter %s.\n",
3253 erp_action
->unit
->fcp_lun
,
3254 erp_action
->port
->wwpn
,
3255 zfcp_get_busid_by_adapter(erp_action
->adapter
));
3256 zfcp_fsf_req_free(erp_action
->fsf_req
);
3257 erp_action
->fsf_req
= NULL
;
3261 ZFCP_LOG_TRACE("Close LUN request initiated (adapter %s, "
3262 "port 0x%016Lx, unit 0x%016Lx)\n",
3263 zfcp_get_busid_by_adapter(erp_action
->adapter
),
3264 erp_action
->port
->wwpn
, erp_action
->unit
->fcp_lun
);
3266 write_unlock_irqrestore(&erp_action
->adapter
->request_queue
.queue_lock
,
3272 * function: zfcp_fsf_close_unit_handler
3274 * purpose: is called for finished Close LUN FSF command
3279 zfcp_fsf_close_unit_handler(struct zfcp_fsf_req
*fsf_req
)
3281 int retval
= -EINVAL
;
3282 struct zfcp_unit
*unit
;
3284 unit
= fsf_req
->data
.close_unit
.unit
; /* restore unit */
3286 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
3287 /* don't change unit status in our bookkeeping */
3288 goto skip_fsfstatus
;
3291 /* evaluate FSF status in QTCB */
3292 switch (fsf_req
->qtcb
->header
.fsf_status
) {
3294 case FSF_PORT_HANDLE_NOT_VALID
:
3295 ZFCP_LOG_INFO("Temporary port identifier 0x%x for port "
3296 "0x%016Lx on adapter %s invalid. This may "
3297 "happen in rare circumstances\n",
3300 zfcp_get_busid_by_unit(unit
));
3301 ZFCP_LOG_DEBUG("status qualifier:\n");
3302 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
3303 (char *) &fsf_req
->qtcb
->header
.fsf_status_qual
,
3304 sizeof (union fsf_status_qual
));
3305 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3307 zfcp_erp_adapter_reopen(unit
->port
->adapter
, 0);
3308 zfcp_cmd_dbf_event_fsf("porthinv", fsf_req
,
3309 &fsf_req
->qtcb
->header
.fsf_status_qual
,
3310 sizeof (union fsf_status_qual
));
3311 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3314 case FSF_LUN_HANDLE_NOT_VALID
:
3315 ZFCP_LOG_INFO("Temporary LUN identifier 0x%x of unit "
3316 "0x%016Lx on port 0x%016Lx on adapter %s is "
3317 "invalid. This may happen occasionally.\n",
3321 zfcp_get_busid_by_unit(unit
));
3322 ZFCP_LOG_DEBUG("Status qualifier data:\n");
3323 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
3324 (char *) &fsf_req
->qtcb
->header
.fsf_status_qual
,
3325 sizeof (union fsf_status_qual
));
3326 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3328 zfcp_erp_port_reopen(unit
->port
, 0);
3329 zfcp_cmd_dbf_event_fsf("lunhinv", fsf_req
,
3330 &fsf_req
->qtcb
->header
.fsf_status_qual
,
3331 sizeof (union fsf_status_qual
));
3332 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3335 case FSF_PORT_BOXED
:
3336 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter %s "
3337 "needs to be reopened\n",
3339 zfcp_get_busid_by_unit(unit
));
3340 debug_text_event(fsf_req
->adapter
->erp_dbf
, 2, "fsf_s_pboxed");
3341 zfcp_erp_port_boxed(unit
->port
);
3342 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
|
3343 ZFCP_STATUS_FSFREQ_RETRY
;
3346 case FSF_ADAPTER_STATUS_AVAILABLE
:
3347 switch (fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0]) {
3348 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
3349 /* re-establish link to port */
3350 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3352 zfcp_test_link(unit
->port
);
3353 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3355 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
3356 /* ERP strategy will escalate */
3357 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3359 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3363 ("bug: Wrong status qualifier 0x%x arrived.\n",
3364 fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0]);
3365 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
3368 fsf_req
->adapter
->erp_dbf
, 0,
3369 &fsf_req
->qtcb
->header
.fsf_status_qual
.word
[0],
3376 ZFCP_LOG_TRACE("unit 0x%016Lx on port 0x%016Lx on adapter %s "
3377 "closed, port handle 0x%x\n",
3380 zfcp_get_busid_by_unit(unit
),
3382 /* mark unit as closed */
3383 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN
, &unit
->status
);
3388 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
3389 "(debug info 0x%x)\n",
3390 fsf_req
->qtcb
->header
.fsf_status
);
3391 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf_s_inval:");
3392 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
3393 &fsf_req
->qtcb
->header
.fsf_status
,
3399 atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING
, &unit
->status
);
3404 * zfcp_fsf_send_fcp_command_task - initiate an FCP command (for a SCSI command)
3405 * @adapter: adapter where scsi command is issued
3406 * @unit: unit where command is sent to
3407 * @scsi_cmnd: scsi command to be sent
3408 * @timer: timer to be started when request is initiated
3409 * @req_flags: flags for fsf_request
3412 zfcp_fsf_send_fcp_command_task(struct zfcp_adapter
*adapter
,
3413 struct zfcp_unit
*unit
,
3414 struct scsi_cmnd
* scsi_cmnd
,
3415 struct timer_list
*timer
, int req_flags
)
3417 struct zfcp_fsf_req
*fsf_req
= NULL
;
3418 struct fcp_cmnd_iu
*fcp_cmnd_iu
;
3419 unsigned int sbtype
;
3420 unsigned long lock_flags
;
3425 /* setup new FSF request */
3426 retval
= zfcp_fsf_req_create(adapter
, FSF_QTCB_FCP_CMND
, req_flags
,
3427 adapter
->pool
.fsf_req_scsi
,
3428 &lock_flags
, &fsf_req
);
3429 if (unlikely(retval
< 0)) {
3430 ZFCP_LOG_DEBUG("error: Could not create FCP command request "
3431 "for unit 0x%016Lx on port 0x%016Lx on "
3435 zfcp_get_busid_by_adapter(adapter
));
3436 goto failed_req_create
;
3440 * associate FSF request with SCSI request
3441 * (need this for look up on abort)
3443 fsf_req
->data
.send_fcp_command_task
.fsf_req
= fsf_req
;
3444 scsi_cmnd
->host_scribble
= (char *) &(fsf_req
->data
);
3447 * associate SCSI command with FSF request
3448 * (need this for look up on normal command completion)
3450 fsf_req
->data
.send_fcp_command_task
.scsi_cmnd
= scsi_cmnd
;
3451 fsf_req
->data
.send_fcp_command_task
.start_jiffies
= jiffies
;
3452 fsf_req
->data
.send_fcp_command_task
.unit
= unit
;
3453 ZFCP_LOG_DEBUG("unit=%p, fcp_lun=0x%016Lx\n", unit
, unit
->fcp_lun
);
3455 /* set handles of unit and its parent port in QTCB */
3456 fsf_req
->qtcb
->header
.lun_handle
= unit
->handle
;
3457 fsf_req
->qtcb
->header
.port_handle
= unit
->port
->handle
;
3459 /* FSF does not define the structure of the FCP_CMND IU */
3460 fcp_cmnd_iu
= (struct fcp_cmnd_iu
*)
3461 &(fsf_req
->qtcb
->bottom
.io
.fcp_cmnd
);
3464 * set depending on data direction:
3465 * data direction bits in SBALE (SB Type)
3466 * data direction bits in QTCB
3467 * data direction bits in FCP_CMND IU
3469 switch (scsi_cmnd
->sc_data_direction
) {
3471 fsf_req
->qtcb
->bottom
.io
.data_direction
= FSF_DATADIR_CMND
;
3474 * what is the correct type for commands
3475 * without 'real' data buffers?
3477 sbtype
= SBAL_FLAGS0_TYPE_READ
;
3479 case DMA_FROM_DEVICE
:
3480 fsf_req
->qtcb
->bottom
.io
.data_direction
= FSF_DATADIR_READ
;
3481 sbtype
= SBAL_FLAGS0_TYPE_READ
;
3482 fcp_cmnd_iu
->rddata
= 1;
3485 fsf_req
->qtcb
->bottom
.io
.data_direction
= FSF_DATADIR_WRITE
;
3486 sbtype
= SBAL_FLAGS0_TYPE_WRITE
;
3487 fcp_cmnd_iu
->wddata
= 1;
3489 case DMA_BIDIRECTIONAL
:
3492 * dummy, catch this condition earlier
3493 * in zfcp_scsi_queuecommand
3495 goto failed_scsi_cmnd
;
3498 /* set FC service class in QTCB (3 per default) */
3499 fsf_req
->qtcb
->bottom
.io
.service_class
= adapter
->fc_service_class
;
3501 /* set FCP_LUN in FCP_CMND IU in QTCB */
3502 fcp_cmnd_iu
->fcp_lun
= unit
->fcp_lun
;
3504 mask
= ZFCP_STATUS_UNIT_READONLY
| ZFCP_STATUS_UNIT_SHARED
;
3506 /* set task attributes in FCP_CMND IU in QTCB */
3507 if (likely((scsi_cmnd
->device
->simple_tags
) ||
3508 (atomic_test_mask(mask
, &unit
->status
))))
3509 fcp_cmnd_iu
->task_attribute
= SIMPLE_Q
;
3511 fcp_cmnd_iu
->task_attribute
= UNTAGGED
;
3513 /* set additional length of FCP_CDB in FCP_CMND IU in QTCB, if needed */
3514 if (unlikely(scsi_cmnd
->cmd_len
> FCP_CDB_LENGTH
)) {
3515 fcp_cmnd_iu
->add_fcp_cdb_length
3516 = (scsi_cmnd
->cmd_len
- FCP_CDB_LENGTH
) >> 2;
3517 ZFCP_LOG_TRACE("SCSI CDB length is 0x%x, "
3518 "additional FCP_CDB length is 0x%x "
3519 "(shifted right 2 bits)\n",
3521 fcp_cmnd_iu
->add_fcp_cdb_length
);
3524 * copy SCSI CDB (including additional length, if any) to
3525 * FCP_CDB in FCP_CMND IU in QTCB
3527 memcpy(fcp_cmnd_iu
->fcp_cdb
, scsi_cmnd
->cmnd
, scsi_cmnd
->cmd_len
);
3529 /* FCP CMND IU length in QTCB */
3530 fsf_req
->qtcb
->bottom
.io
.fcp_cmnd_length
=
3531 sizeof (struct fcp_cmnd_iu
) +
3532 fcp_cmnd_iu
->add_fcp_cdb_length
+ sizeof (fcp_dl_t
);
3534 /* generate SBALEs from data buffer */
3535 real_bytes
= zfcp_qdio_sbals_from_scsicmnd(fsf_req
, sbtype
, scsi_cmnd
);
3536 if (unlikely(real_bytes
< 0)) {
3537 if (fsf_req
->sbal_number
< ZFCP_MAX_SBALS_PER_REQ
) {
3539 "Data did not fit into available buffer(s), "
3540 "waiting for more...\n");
3543 ZFCP_LOG_NORMAL("error: No truncation implemented but "
3544 "required. Shutting down unit "
3545 "(adapter %s, port 0x%016Lx, "
3547 zfcp_get_busid_by_unit(unit
),
3550 zfcp_erp_unit_shutdown(unit
, 0);
3556 /* set length of FCP data length in FCP_CMND IU in QTCB */
3557 zfcp_set_fcp_dl(fcp_cmnd_iu
, real_bytes
);
3559 ZFCP_LOG_DEBUG("Sending SCSI command:\n");
3560 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
3561 (char *) scsi_cmnd
->cmnd
, scsi_cmnd
->cmd_len
);
3564 * start QDIO request for this FSF request
3565 * covered by an SBALE)
3567 retval
= zfcp_fsf_req_send(fsf_req
, timer
);
3568 if (unlikely(retval
< 0)) {
3569 ZFCP_LOG_INFO("error: Could not send FCP command request "
3570 "on adapter %s, port 0x%016Lx, unit 0x%016Lx\n",
3571 zfcp_get_busid_by_adapter(adapter
),
3577 ZFCP_LOG_TRACE("Send FCP Command initiated (adapter %s, "
3578 "port 0x%016Lx, unit 0x%016Lx)\n",
3579 zfcp_get_busid_by_adapter(adapter
),
3587 zfcp_fsf_req_free(fsf_req
);
3589 scsi_cmnd
->host_scribble
= NULL
;
3592 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
, lock_flags
);
3597 * function: zfcp_fsf_send_fcp_command_task_management
3603 * FIXME(design): should be watched by a timeout!!!
3604 * FIXME(design) shouldn't this be modified to return an int
3605 * also...don't know how though
3608 struct zfcp_fsf_req
*
3609 zfcp_fsf_send_fcp_command_task_management(struct zfcp_adapter
*adapter
,
3610 struct zfcp_unit
*unit
,
3611 u8 tm_flags
, int req_flags
)
3613 struct zfcp_fsf_req
*fsf_req
= NULL
;
3615 struct fcp_cmnd_iu
*fcp_cmnd_iu
;
3616 unsigned long lock_flags
;
3617 volatile struct qdio_buffer_element
*sbale
;
3619 /* setup new FSF request */
3620 retval
= zfcp_fsf_req_create(adapter
, FSF_QTCB_FCP_CMND
, req_flags
,
3621 adapter
->pool
.fsf_req_scsi
,
3622 &lock_flags
, &fsf_req
);
3624 ZFCP_LOG_INFO("error: Could not create FCP command (task "
3625 "management) request for adapter %s, port "
3626 " 0x%016Lx, unit 0x%016Lx.\n",
3627 zfcp_get_busid_by_adapter(adapter
),
3628 unit
->port
->wwpn
, unit
->fcp_lun
);
3633 * Used to decide on proper handler in the return path,
3634 * could be either zfcp_fsf_send_fcp_command_task_handler or
3635 * zfcp_fsf_send_fcp_command_task_management_handler */
3637 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT
;
3640 * hold a pointer to the unit being target of this
3641 * task management request
3643 fsf_req
->data
.send_fcp_command_task_management
.unit
= unit
;
3645 /* set FSF related fields in QTCB */
3646 fsf_req
->qtcb
->header
.lun_handle
= unit
->handle
;
3647 fsf_req
->qtcb
->header
.port_handle
= unit
->port
->handle
;
3648 fsf_req
->qtcb
->bottom
.io
.data_direction
= FSF_DATADIR_CMND
;
3649 fsf_req
->qtcb
->bottom
.io
.service_class
= adapter
->fc_service_class
;
3650 fsf_req
->qtcb
->bottom
.io
.fcp_cmnd_length
=
3651 sizeof (struct fcp_cmnd_iu
) + sizeof (fcp_dl_t
);
3653 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
3654 sbale
[0].flags
|= SBAL_FLAGS0_TYPE_WRITE
;
3655 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
3657 /* set FCP related fields in FCP_CMND IU in QTCB */
3658 fcp_cmnd_iu
= (struct fcp_cmnd_iu
*)
3659 &(fsf_req
->qtcb
->bottom
.io
.fcp_cmnd
);
3660 fcp_cmnd_iu
->fcp_lun
= unit
->fcp_lun
;
3661 fcp_cmnd_iu
->task_management_flags
= tm_flags
;
3663 /* start QDIO request for this FSF request */
3664 zfcp_fsf_start_scsi_er_timer(adapter
);
3665 retval
= zfcp_fsf_req_send(fsf_req
, NULL
);
3667 del_timer(&adapter
->scsi_er_timer
);
3668 ZFCP_LOG_INFO("error: Could not send an FCP-command (task "
3669 "management) on adapter %s, port 0x%016Lx for "
3670 "unit LUN 0x%016Lx\n",
3671 zfcp_get_busid_by_adapter(adapter
),
3674 zfcp_fsf_req_free(fsf_req
);
3679 ZFCP_LOG_TRACE("Send FCP Command (task management function) initiated "
3680 "(adapter %s, port 0x%016Lx, unit 0x%016Lx, "
3682 zfcp_get_busid_by_adapter(adapter
),
3687 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
, lock_flags
);
3692 * function: zfcp_fsf_send_fcp_command_handler
3694 * purpose: is called for finished Send FCP Command
3699 zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req
*fsf_req
)
3701 int retval
= -EINVAL
;
3702 struct zfcp_unit
*unit
;
3703 struct fsf_qtcb_header
*header
;
3704 u16 subtable
, rule
, counter
;
3706 header
= &fsf_req
->qtcb
->header
;
3708 if (unlikely(fsf_req
->status
& ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT
))
3709 unit
= fsf_req
->data
.send_fcp_command_task_management
.unit
;
3711 unit
= fsf_req
->data
.send_fcp_command_task
.unit
;
3713 if (unlikely(fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)) {
3714 /* go directly to calls of special handlers */
3715 goto skip_fsfstatus
;
3718 /* evaluate FSF status in QTCB */
3719 switch (header
->fsf_status
) {
3721 case FSF_PORT_HANDLE_NOT_VALID
:
3722 ZFCP_LOG_INFO("Temporary port identifier 0x%x for port "
3723 "0x%016Lx on adapter %s invalid\n",
3725 unit
->port
->wwpn
, zfcp_get_busid_by_unit(unit
));
3726 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
3727 (char *) &header
->fsf_status_qual
,
3728 sizeof (union fsf_status_qual
));
3729 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3731 zfcp_erp_adapter_reopen(unit
->port
->adapter
, 0);
3732 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3735 case FSF_LUN_HANDLE_NOT_VALID
:
3736 ZFCP_LOG_INFO("Temporary LUN identifier 0x%x for unit "
3737 "0x%016Lx on port 0x%016Lx on adapter %s is "
3738 "invalid. This may happen occasionally.\n",
3742 zfcp_get_busid_by_unit(unit
));
3743 ZFCP_LOG_NORMAL("Status qualifier data:\n");
3744 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL
,
3745 (char *) &header
->fsf_status_qual
,
3746 sizeof (union fsf_status_qual
));
3747 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3749 zfcp_erp_port_reopen(unit
->port
, 0);
3750 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3753 case FSF_HANDLE_MISMATCH
:
3754 ZFCP_LOG_NORMAL("bug: The port handle 0x%x has changed "
3755 "unexpectedly. (adapter %s, port 0x%016Lx, "
3758 zfcp_get_busid_by_unit(unit
),
3761 ZFCP_LOG_NORMAL("status qualifier:\n");
3762 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL
,
3763 (char *) &header
->fsf_status_qual
,
3764 sizeof (union fsf_status_qual
));
3765 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3767 zfcp_erp_adapter_reopen(unit
->port
->adapter
, 0);
3768 zfcp_cmd_dbf_event_fsf("handmism",
3770 &header
->fsf_status_qual
,
3771 sizeof (union fsf_status_qual
));
3772 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3775 case FSF_SERVICE_CLASS_NOT_SUPPORTED
:
3776 if (fsf_req
->adapter
->fc_service_class
<= 3) {
3777 ZFCP_LOG_NORMAL("error: The adapter %s does "
3778 "not support fibrechannel class %d.\n",
3779 zfcp_get_busid_by_unit(unit
),
3780 fsf_req
->adapter
->fc_service_class
);
3782 ZFCP_LOG_NORMAL("bug: The fibrechannel class at "
3783 "adapter %s is invalid. "
3784 "(debug info %d)\n",
3785 zfcp_get_busid_by_unit(unit
),
3786 fsf_req
->adapter
->fc_service_class
);
3788 /* stop operation for this adapter */
3789 debug_text_exception(fsf_req
->adapter
->erp_dbf
, 0,
3790 "fsf_s_class_nsup");
3791 zfcp_erp_adapter_shutdown(unit
->port
->adapter
, 0);
3792 zfcp_cmd_dbf_event_fsf("unsclass",
3794 &header
->fsf_status_qual
,
3795 sizeof (union fsf_status_qual
));
3796 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3799 case FSF_FCPLUN_NOT_VALID
:
3800 ZFCP_LOG_NORMAL("bug: unit 0x%016Lx on port 0x%016Lx on "
3801 "adapter %s does not have correct unit "
3805 zfcp_get_busid_by_unit(unit
),
3807 ZFCP_LOG_DEBUG("status qualifier:\n");
3808 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
3809 (char *) &header
->fsf_status_qual
,
3810 sizeof (union fsf_status_qual
));
3811 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3812 "fsf_s_fcp_lun_nv");
3813 zfcp_erp_port_reopen(unit
->port
, 0);
3814 zfcp_cmd_dbf_event_fsf("fluninv",
3816 &header
->fsf_status_qual
,
3817 sizeof (union fsf_status_qual
));
3818 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3821 case FSF_ACCESS_DENIED
:
3822 ZFCP_LOG_NORMAL("Access denied, cannot send FCP command to "
3823 "unit 0x%016Lx on port 0x%016Lx on "
3824 "adapter %s\n", unit
->fcp_lun
, unit
->port
->wwpn
,
3825 zfcp_get_busid_by_unit(unit
));
3826 for (counter
= 0; counter
< 2; counter
++) {
3827 subtable
= header
->fsf_status_qual
.halfword
[counter
* 2];
3828 rule
= header
->fsf_status_qual
.halfword
[counter
* 2 + 1];
3830 case FSF_SQ_CFDC_SUBTABLE_OS
:
3831 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN
:
3832 case FSF_SQ_CFDC_SUBTABLE_PORT_DID
:
3833 case FSF_SQ_CFDC_SUBTABLE_LUN
:
3834 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
3835 zfcp_act_subtable_type
[subtable
], rule
);
3839 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1, "fsf_s_access");
3840 zfcp_erp_unit_access_denied(unit
);
3841 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3844 case FSF_DIRECTION_INDICATOR_NOT_VALID
:
3845 ZFCP_LOG_INFO("bug: Invalid data direction given for unit "
3846 "0x%016Lx on port 0x%016Lx on adapter %s "
3847 "(debug info %d)\n",
3850 zfcp_get_busid_by_unit(unit
),
3851 fsf_req
->qtcb
->bottom
.io
.data_direction
);
3852 /* stop operation for this adapter */
3853 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
3854 "fsf_s_dir_ind_nv");
3855 zfcp_erp_adapter_shutdown(unit
->port
->adapter
, 0);
3856 zfcp_cmd_dbf_event_fsf("dirinv",
3858 &header
->fsf_status_qual
,
3859 sizeof (union fsf_status_qual
));
3860 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3863 case FSF_CMND_LENGTH_NOT_VALID
:
3865 ("bug: An invalid control-data-block length field "
3866 "was found in a command for unit 0x%016Lx on port "
3867 "0x%016Lx on adapter %s " "(debug info %d)\n",
3868 unit
->fcp_lun
, unit
->port
->wwpn
,
3869 zfcp_get_busid_by_unit(unit
),
3870 fsf_req
->qtcb
->bottom
.io
.fcp_cmnd_length
);
3871 /* stop operation for this adapter */
3872 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
3873 "fsf_s_cmd_len_nv");
3874 zfcp_erp_adapter_shutdown(unit
->port
->adapter
, 0);
3875 zfcp_cmd_dbf_event_fsf("cleninv",
3877 &header
->fsf_status_qual
,
3878 sizeof (union fsf_status_qual
));
3879 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3882 case FSF_PORT_BOXED
:
3883 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter %s "
3884 "needs to be reopened\n",
3885 unit
->port
->wwpn
, zfcp_get_busid_by_unit(unit
));
3886 debug_text_event(fsf_req
->adapter
->erp_dbf
, 2, "fsf_s_pboxed");
3887 zfcp_erp_port_boxed(unit
->port
);
3888 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
|
3889 ZFCP_STATUS_FSFREQ_RETRY
;
3893 ZFCP_LOG_NORMAL("unit needs to be reopened (adapter %s, "
3894 "wwpn=0x%016Lx, fcp_lun=0x%016Lx)\n",
3895 zfcp_get_busid_by_unit(unit
),
3896 unit
->port
->wwpn
, unit
->fcp_lun
);
3897 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1, "fsf_s_lboxed");
3898 zfcp_erp_unit_boxed(unit
);
3899 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
3900 | ZFCP_STATUS_FSFREQ_RETRY
;
3903 case FSF_ADAPTER_STATUS_AVAILABLE
:
3904 switch (header
->fsf_status_qual
.word
[0]) {
3905 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE
:
3906 /* re-establish link to port */
3907 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3909 zfcp_test_link(unit
->port
);
3911 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED
:
3912 /* FIXME(hw) need proper specs for proper action */
3913 /* let scsi stack deal with retries and escalation */
3914 debug_text_event(fsf_req
->adapter
->erp_dbf
, 1,
3919 ("Unknown status qualifier 0x%x arrived.\n",
3920 header
->fsf_status_qual
.word
[0]);
3921 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0,
3923 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
3924 &header
->fsf_status_qual
.word
[0],
3928 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
3934 case FSF_FCP_RSP_AVAILABLE
:
3938 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf_s_inval:");
3939 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
3940 &header
->fsf_status
, sizeof(u32
));
3945 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT
) {
3947 zfcp_fsf_send_fcp_command_task_management_handler(fsf_req
);
3949 retval
= zfcp_fsf_send_fcp_command_task_handler(fsf_req
);
3955 * function: zfcp_fsf_send_fcp_command_task_handler
3957 * purpose: evaluates FCP_RSP IU
3962 zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req
*fsf_req
)
3965 struct scsi_cmnd
*scpnt
;
3966 struct fcp_rsp_iu
*fcp_rsp_iu
= (struct fcp_rsp_iu
*)
3967 &(fsf_req
->qtcb
->bottom
.io
.fcp_rsp
);
3968 struct fcp_cmnd_iu
*fcp_cmnd_iu
= (struct fcp_cmnd_iu
*)
3969 &(fsf_req
->qtcb
->bottom
.io
.fcp_cmnd
);
3971 char *fcp_rsp_info
= zfcp_get_fcp_rsp_info_ptr(fcp_rsp_iu
);
3972 unsigned long flags
;
3973 struct zfcp_unit
*unit
= fsf_req
->data
.send_fcp_command_task
.unit
;
3975 read_lock_irqsave(&fsf_req
->adapter
->abort_lock
, flags
);
3976 scpnt
= fsf_req
->data
.send_fcp_command_task
.scsi_cmnd
;
3977 if (unlikely(!scpnt
)) {
3979 ("Command with fsf_req %p is not associated to "
3980 "a scsi command anymore. Aborted?\n", fsf_req
);
3983 if (unlikely(fsf_req
->status
& ZFCP_STATUS_FSFREQ_ABORTED
)) {
3984 /* FIXME: (design) mid-layer should handle DID_ABORT like
3985 * DID_SOFT_ERROR by retrying the request for devices
3986 * that allow retries.
3988 ZFCP_LOG_DEBUG("Setting DID_SOFT_ERROR and SUGGEST_RETRY\n");
3989 set_host_byte(&scpnt
->result
, DID_SOFT_ERROR
);
3990 set_driver_byte(&scpnt
->result
, SUGGEST_RETRY
);
3991 goto skip_fsfstatus
;
3994 if (unlikely(fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
)) {
3995 ZFCP_LOG_DEBUG("Setting DID_ERROR\n");
3996 set_host_byte(&scpnt
->result
, DID_ERROR
);
3997 goto skip_fsfstatus
;
4000 /* set message byte of result in SCSI command */
4001 scpnt
->result
|= COMMAND_COMPLETE
<< 8;
4004 * copy SCSI status code of FCP_STATUS of FCP_RSP IU to status byte
4005 * of result in SCSI command
4007 scpnt
->result
|= fcp_rsp_iu
->scsi_status
;
4008 if (unlikely(fcp_rsp_iu
->scsi_status
)) {
4010 ZFCP_LOG_DEBUG("status for SCSI Command:\n");
4011 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
4012 scpnt
->cmnd
, scpnt
->cmd_len
);
4013 ZFCP_LOG_DEBUG("SCSI status code 0x%x\n",
4014 fcp_rsp_iu
->scsi_status
);
4015 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
4016 (void *) fcp_rsp_iu
, sizeof (struct fcp_rsp_iu
));
4017 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
4018 zfcp_get_fcp_sns_info_ptr(fcp_rsp_iu
),
4019 fcp_rsp_iu
->fcp_sns_len
);
4022 /* check FCP_RSP_INFO */
4023 if (unlikely(fcp_rsp_iu
->validity
.bits
.fcp_rsp_len_valid
)) {
4024 ZFCP_LOG_DEBUG("rsp_len is valid\n");
4025 switch (fcp_rsp_info
[3]) {
4028 ZFCP_LOG_TRACE("no failure or Task Management "
4029 "Function complete\n");
4030 set_host_byte(&scpnt
->result
, DID_OK
);
4032 case RSP_CODE_LENGTH_MISMATCH
:
4034 ZFCP_LOG_NORMAL("bug: FCP response code indictates "
4035 "that the fibrechannel protocol data "
4036 "length differs from the burst length. "
4037 "The problem occured on unit 0x%016Lx "
4038 "on port 0x%016Lx on adapter %s",
4041 zfcp_get_busid_by_unit(unit
));
4042 /* dump SCSI CDB as prepared by zfcp */
4043 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
4044 (char *) &fsf_req
->qtcb
->
4045 bottom
.io
.fcp_cmnd
, FSF_FCP_CMND_SIZE
);
4046 zfcp_cmd_dbf_event_fsf("clenmis", fsf_req
, NULL
, 0);
4047 set_host_byte(&scpnt
->result
, DID_ERROR
);
4048 goto skip_fsfstatus
;
4049 case RSP_CODE_FIELD_INVALID
:
4050 /* driver or hardware bug */
4051 ZFCP_LOG_NORMAL("bug: FCP response code indictates "
4052 "that the fibrechannel protocol data "
4053 "fields were incorrectly set up. "
4054 "The problem occured on the unit "
4055 "0x%016Lx on port 0x%016Lx on "
4059 zfcp_get_busid_by_unit(unit
));
4060 /* dump SCSI CDB as prepared by zfcp */
4061 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
4062 (char *) &fsf_req
->qtcb
->
4063 bottom
.io
.fcp_cmnd
, FSF_FCP_CMND_SIZE
);
4064 set_host_byte(&scpnt
->result
, DID_ERROR
);
4065 zfcp_cmd_dbf_event_fsf("codeinv", fsf_req
, NULL
, 0);
4066 goto skip_fsfstatus
;
4067 case RSP_CODE_RO_MISMATCH
:
4069 ZFCP_LOG_NORMAL("bug: The FCP response code indicates "
4070 "that conflicting values for the "
4071 "fibrechannel payload offset from the "
4072 "header were found. "
4073 "The problem occured on unit 0x%016Lx "
4074 "on port 0x%016Lx on adapter %s.\n",
4077 zfcp_get_busid_by_unit(unit
));
4078 /* dump SCSI CDB as prepared by zfcp */
4079 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
4080 (char *) &fsf_req
->qtcb
->
4081 bottom
.io
.fcp_cmnd
, FSF_FCP_CMND_SIZE
);
4082 zfcp_cmd_dbf_event_fsf("codemism", fsf_req
, NULL
, 0);
4083 set_host_byte(&scpnt
->result
, DID_ERROR
);
4084 goto skip_fsfstatus
;
4086 ZFCP_LOG_NORMAL("bug: An invalid FCP response "
4087 "code was detected for a command. "
4088 "The problem occured on the unit "
4089 "0x%016Lx on port 0x%016Lx on "
4090 "adapter %s (debug info 0x%x)\n",
4093 zfcp_get_busid_by_unit(unit
),
4095 /* dump SCSI CDB as prepared by zfcp */
4096 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG
,
4097 (char *) &fsf_req
->qtcb
->
4098 bottom
.io
.fcp_cmnd
, FSF_FCP_CMND_SIZE
);
4099 zfcp_cmd_dbf_event_fsf("undeffcp", fsf_req
, NULL
, 0);
4100 set_host_byte(&scpnt
->result
, DID_ERROR
);
4101 goto skip_fsfstatus
;
4105 /* check for sense data */
4106 if (unlikely(fcp_rsp_iu
->validity
.bits
.fcp_sns_len_valid
)) {
4107 sns_len
= FSF_FCP_RSP_SIZE
-
4108 sizeof (struct fcp_rsp_iu
) + fcp_rsp_iu
->fcp_rsp_len
;
4109 ZFCP_LOG_TRACE("room for %i bytes sense data in QTCB\n",
4111 sns_len
= min(sns_len
, (u32
) SCSI_SENSE_BUFFERSIZE
);
4112 ZFCP_LOG_TRACE("room for %i bytes sense data in SCSI command\n",
4113 SCSI_SENSE_BUFFERSIZE
);
4114 sns_len
= min(sns_len
, fcp_rsp_iu
->fcp_sns_len
);
4115 ZFCP_LOG_TRACE("scpnt->result =0x%x, command was:\n",
4117 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE
,
4118 (void *) &scpnt
->cmnd
, scpnt
->cmd_len
);
4120 ZFCP_LOG_TRACE("%i bytes sense data provided by FCP\n",
4121 fcp_rsp_iu
->fcp_sns_len
);
4122 memcpy(&scpnt
->sense_buffer
,
4123 zfcp_get_fcp_sns_info_ptr(fcp_rsp_iu
), sns_len
);
4124 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE
,
4125 (void *) &scpnt
->sense_buffer
, sns_len
);
4128 /* check for overrun */
4129 if (unlikely(fcp_rsp_iu
->validity
.bits
.fcp_resid_over
)) {
4130 ZFCP_LOG_INFO("A data overrun was detected for a command. "
4131 "unit 0x%016Lx, port 0x%016Lx, adapter %s. "
4132 "The response data length is "
4133 "%d, the original length was %d.\n",
4136 zfcp_get_busid_by_unit(unit
),
4137 fcp_rsp_iu
->fcp_resid
,
4138 (int) zfcp_get_fcp_dl(fcp_cmnd_iu
));
4141 /* check for underrun */
4142 if (unlikely(fcp_rsp_iu
->validity
.bits
.fcp_resid_under
)) {
4143 ZFCP_LOG_INFO("A data underrun was detected for a command. "
4144 "unit 0x%016Lx, port 0x%016Lx, adapter %s. "
4145 "The response data length is "
4146 "%d, the original length was %d.\n",
4149 zfcp_get_busid_by_unit(unit
),
4150 fcp_rsp_iu
->fcp_resid
,
4151 (int) zfcp_get_fcp_dl(fcp_cmnd_iu
));
4153 scpnt
->resid
= fcp_rsp_iu
->fcp_resid
;
4154 if (scpnt
->request_bufflen
- scpnt
->resid
< scpnt
->underflow
)
4155 set_host_byte(&scpnt
->result
, DID_ERROR
);
4159 ZFCP_LOG_DEBUG("scpnt->result =0x%x\n", scpnt
->result
);
4161 zfcp_cmd_dbf_event_scsi("response", scpnt
);
4163 /* cleanup pointer (need this especially for abort) */
4164 scpnt
->host_scribble
= NULL
;
4168 * according to the outcome of a discussion on linux-scsi we
4169 * don't need to grab the io_request_lock here since we use
4172 /* always call back */
4174 (scpnt
->scsi_done
) (scpnt
);
4177 * We must hold this lock until scsi_done has been called.
4178 * Otherwise we may call scsi_done after abort regarding this
4179 * command has completed.
4180 * Note: scsi_done must not block!
4183 read_unlock_irqrestore(&fsf_req
->adapter
->abort_lock
, flags
);
4188 * function: zfcp_fsf_send_fcp_command_task_management_handler
4190 * purpose: evaluates FCP_RSP IU
4195 zfcp_fsf_send_fcp_command_task_management_handler(struct zfcp_fsf_req
*fsf_req
)
4198 struct fcp_rsp_iu
*fcp_rsp_iu
= (struct fcp_rsp_iu
*)
4199 &(fsf_req
->qtcb
->bottom
.io
.fcp_rsp
);
4200 char *fcp_rsp_info
= zfcp_get_fcp_rsp_info_ptr(fcp_rsp_iu
);
4201 struct zfcp_unit
*unit
=
4202 fsf_req
->data
.send_fcp_command_task_management
.unit
;
4204 del_timer(&fsf_req
->adapter
->scsi_er_timer
);
4205 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
4206 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_TMFUNCFAILED
;
4207 goto skip_fsfstatus
;
4210 /* check FCP_RSP_INFO */
4211 switch (fcp_rsp_info
[3]) {
4214 ZFCP_LOG_DEBUG("no failure or Task Management "
4215 "Function complete\n");
4217 case RSP_CODE_TASKMAN_UNSUPP
:
4218 ZFCP_LOG_NORMAL("bug: A reuested task management function "
4219 "is not supported on the target device "
4220 "unit 0x%016Lx, port 0x%016Lx, adapter %s\n ",
4223 zfcp_get_busid_by_unit(unit
));
4224 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP
;
4226 case RSP_CODE_TASKMAN_FAILED
:
4227 ZFCP_LOG_NORMAL("bug: A reuested task management function "
4228 "failed to complete successfully. "
4229 "unit 0x%016Lx, port 0x%016Lx, adapter %s.\n",
4232 zfcp_get_busid_by_unit(unit
));
4233 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_TMFUNCFAILED
;
4236 ZFCP_LOG_NORMAL("bug: An invalid FCP response "
4237 "code was detected for a command. "
4238 "unit 0x%016Lx, port 0x%016Lx, adapter %s "
4239 "(debug info 0x%x)\n",
4242 zfcp_get_busid_by_unit(unit
),
4244 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_TMFUNCFAILED
;
4253 * function: zfcp_fsf_control_file
4255 * purpose: Initiator of the control file upload/download FSF requests
4257 * returns: 0 - FSF request is successfuly created and queued
4258 * -EOPNOTSUPP - The FCP adapter does not have Control File support
4259 * -EINVAL - Invalid direction specified
4260 * -ENOMEM - Insufficient memory
4261 * -EPERM - Cannot create FSF request or place it in QDIO queue
4264 zfcp_fsf_control_file(struct zfcp_adapter
*adapter
,
4265 struct zfcp_fsf_req
**fsf_req_ptr
,
4268 struct zfcp_sg_list
*sg_list
)
4270 struct zfcp_fsf_req
*fsf_req
;
4271 struct fsf_qtcb_bottom_support
*bottom
;
4272 volatile struct qdio_buffer_element
*sbale
;
4273 struct timer_list
*timer
;
4274 unsigned long lock_flags
;
4279 if (!(adapter
->supported_features
& FSF_FEATURE_CFDC
)) {
4280 ZFCP_LOG_INFO("cfdc not supported (adapter %s)\n",
4281 zfcp_get_busid_by_adapter(adapter
));
4282 retval
= -EOPNOTSUPP
;
4286 switch (fsf_command
) {
4288 case FSF_QTCB_DOWNLOAD_CONTROL_FILE
:
4289 direction
= SBAL_FLAGS0_TYPE_WRITE
;
4290 if ((option
!= FSF_CFDC_OPTION_FULL_ACCESS
) &&
4291 (option
!= FSF_CFDC_OPTION_RESTRICTED_ACCESS
))
4292 req_flags
= ZFCP_WAIT_FOR_SBAL
;
4295 case FSF_QTCB_UPLOAD_CONTROL_FILE
:
4296 direction
= SBAL_FLAGS0_TYPE_READ
;
4300 ZFCP_LOG_INFO("Invalid FSF command code 0x%08x\n", fsf_command
);
4305 timer
= kmalloc(sizeof(struct timer_list
), GFP_KERNEL
);
4311 retval
= zfcp_fsf_req_create(adapter
, fsf_command
, req_flags
,
4312 NULL
, &lock_flags
, &fsf_req
);
4314 ZFCP_LOG_INFO("error: Could not create FSF request for the "
4316 zfcp_get_busid_by_adapter(adapter
));
4318 goto unlock_queue_lock
;
4321 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
4322 sbale
[0].flags
|= direction
;
4324 bottom
= &fsf_req
->qtcb
->bottom
.support
;
4325 bottom
->operation_subtype
= FSF_CFDC_OPERATION_SUBTYPE
;
4326 bottom
->option
= option
;
4328 if (sg_list
->count
> 0) {
4331 bytes
= zfcp_qdio_sbals_from_sg(fsf_req
, direction
,
4332 sg_list
->sg
, sg_list
->count
,
4333 ZFCP_MAX_SBALS_PER_REQ
);
4334 if (bytes
!= ZFCP_CFDC_MAX_CONTROL_FILE_SIZE
) {
4336 "error: Could not create sufficient number of "
4337 "SBALS for an FSF request to the adapter %s\n",
4338 zfcp_get_busid_by_adapter(adapter
));
4343 sbale
[1].flags
|= SBAL_FLAGS_LAST_ENTRY
;
4346 timer
->function
= zfcp_fsf_request_timeout_handler
;
4347 timer
->data
= (unsigned long) adapter
;
4348 timer
->expires
= ZFCP_FSF_REQUEST_TIMEOUT
;
4350 retval
= zfcp_fsf_req_send(fsf_req
, timer
);
4352 ZFCP_LOG_INFO("initiation of cfdc up/download failed"
4354 zfcp_get_busid_by_adapter(adapter
));
4358 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
, lock_flags
);
4360 ZFCP_LOG_NORMAL("Control file %s FSF request has been sent to the "
4362 fsf_command
== FSF_QTCB_DOWNLOAD_CONTROL_FILE
?
4363 "download" : "upload",
4364 zfcp_get_busid_by_adapter(adapter
));
4366 wait_event(fsf_req
->completion_wq
,
4367 fsf_req
->status
& ZFCP_STATUS_FSFREQ_COMPLETED
);
4369 *fsf_req_ptr
= fsf_req
;
4370 del_timer_sync(timer
);
4374 zfcp_fsf_req_free(fsf_req
);
4376 write_unlock_irqrestore(&adapter
->request_queue
.queue_lock
, lock_flags
);
4385 * function: zfcp_fsf_control_file_handler
4387 * purpose: Handler of the control file upload/download FSF requests
4389 * returns: 0 - FSF request successfuly processed
4390 * -EAGAIN - Operation has to be repeated because of a temporary problem
4391 * -EACCES - There is no permission to execute an operation
4392 * -EPERM - The control file is not in a right format
4393 * -EIO - There is a problem with the FCP adapter
4394 * -EINVAL - Invalid operation
4395 * -EFAULT - User space memory I/O operation fault
4398 zfcp_fsf_control_file_handler(struct zfcp_fsf_req
*fsf_req
)
4400 struct zfcp_adapter
*adapter
= fsf_req
->adapter
;
4401 struct fsf_qtcb_header
*header
= &fsf_req
->qtcb
->header
;
4402 struct fsf_qtcb_bottom_support
*bottom
= &fsf_req
->qtcb
->bottom
.support
;
4405 if (fsf_req
->status
& ZFCP_STATUS_FSFREQ_ERROR
) {
4407 goto skip_fsfstatus
;
4410 switch (header
->fsf_status
) {
4414 "The FSF request has been successfully completed "
4415 "on the adapter %s\n",
4416 zfcp_get_busid_by_adapter(adapter
));
4419 case FSF_OPERATION_PARTIALLY_SUCCESSFUL
:
4420 if (bottom
->operation_subtype
== FSF_CFDC_OPERATION_SUBTYPE
) {
4421 switch (header
->fsf_status_qual
.word
[0]) {
4423 case FSF_SQ_CFDC_HARDENED_ON_SE
:
4425 "CFDC on the adapter %s has being "
4426 "hardened on primary and secondary SE\n",
4427 zfcp_get_busid_by_adapter(adapter
));
4430 case FSF_SQ_CFDC_COULD_NOT_HARDEN_ON_SE
:
4432 "CFDC of the adapter %s could not "
4433 "be saved on the SE\n",
4434 zfcp_get_busid_by_adapter(adapter
));
4437 case FSF_SQ_CFDC_COULD_NOT_HARDEN_ON_SE2
:
4439 "CFDC of the adapter %s could not "
4440 "be copied to the secondary SE\n",
4441 zfcp_get_busid_by_adapter(adapter
));
4446 "CFDC could not be hardened "
4447 "on the adapter %s\n",
4448 zfcp_get_busid_by_adapter(adapter
));
4451 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4455 case FSF_AUTHORIZATION_FAILURE
:
4457 "Adapter %s does not accept privileged commands\n",
4458 zfcp_get_busid_by_adapter(adapter
));
4459 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4463 case FSF_CFDC_ERROR_DETECTED
:
4465 "Error at position %d in the CFDC, "
4466 "CFDC is discarded by the adapter %s\n",
4467 header
->fsf_status_qual
.word
[0],
4468 zfcp_get_busid_by_adapter(adapter
));
4469 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4473 case FSF_CONTROL_FILE_UPDATE_ERROR
:
4475 "Adapter %s cannot harden the control file, "
4476 "file is discarded\n",
4477 zfcp_get_busid_by_adapter(adapter
));
4478 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4482 case FSF_CONTROL_FILE_TOO_LARGE
:
4484 "Control file is too large, file is discarded "
4485 "by the adapter %s\n",
4486 zfcp_get_busid_by_adapter(adapter
));
4487 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4491 case FSF_ACCESS_CONFLICT_DETECTED
:
4492 if (bottom
->operation_subtype
== FSF_CFDC_OPERATION_SUBTYPE
)
4494 "CFDC has been discarded by the adapter %s, "
4495 "because activation would impact "
4496 "%d active connection(s)\n",
4497 zfcp_get_busid_by_adapter(adapter
),
4498 header
->fsf_status_qual
.word
[0]);
4499 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4503 case FSF_CONFLICTS_OVERRULED
:
4504 if (bottom
->operation_subtype
== FSF_CFDC_OPERATION_SUBTYPE
)
4506 "CFDC has been activated on the adapter %s, "
4507 "but activation has impacted "
4508 "%d active connection(s)\n",
4509 zfcp_get_busid_by_adapter(adapter
),
4510 header
->fsf_status_qual
.word
[0]);
4511 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4515 case FSF_UNKNOWN_OP_SUBTYPE
:
4516 ZFCP_LOG_NORMAL("unknown operation subtype (adapter: %s, "
4517 "op_subtype=0x%x)\n",
4518 zfcp_get_busid_by_adapter(adapter
),
4519 bottom
->operation_subtype
);
4520 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4524 case FSF_INVALID_COMMAND_OPTION
:
4526 "Invalid option 0x%x has been specified "
4527 "in QTCB bottom sent to the adapter %s\n",
4529 zfcp_get_busid_by_adapter(adapter
));
4530 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4536 "bug: An unknown/unexpected FSF status 0x%08x "
4537 "was presented on the adapter %s\n",
4539 zfcp_get_busid_by_adapter(adapter
));
4540 debug_text_event(fsf_req
->adapter
->erp_dbf
, 0, "fsf_sq_inval");
4541 debug_exception(fsf_req
->adapter
->erp_dbf
, 0,
4542 &header
->fsf_status_qual
.word
[0], sizeof(u32
));
4543 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_ERROR
;
4554 * function: zfcp_fsf_req_wait_and_cleanup
4558 * FIXME(design): signal seems to be <0 !!!
4559 * returns: 0 - request completed (*status is valid), cleanup succ.
4560 * <0 - request completed (*status is valid), cleanup failed
4561 * >0 - signal which interrupted waiting (*status invalid),
4562 * request not completed, no cleanup
4564 * *status is a copy of status of completed fsf_req
4567 zfcp_fsf_req_wait_and_cleanup(struct zfcp_fsf_req
*fsf_req
,
4568 int interruptible
, u32
* status
)
4573 if (interruptible
) {
4574 __wait_event_interruptible(fsf_req
->completion_wq
,
4576 ZFCP_STATUS_FSFREQ_COMPLETED
,
4579 ZFCP_LOG_DEBUG("Caught signal %i while waiting for the "
4580 "completion of the request at %p\n",
4586 __wait_event(fsf_req
->completion_wq
,
4587 fsf_req
->status
& ZFCP_STATUS_FSFREQ_COMPLETED
);
4590 *status
= fsf_req
->status
;
4592 /* cleanup request */
4593 zfcp_fsf_req_free(fsf_req
);
4599 zfcp_fsf_req_sbal_check(unsigned long *flags
,
4600 struct zfcp_qdio_queue
*queue
, int needed
)
4602 write_lock_irqsave(&queue
->queue_lock
, *flags
);
4603 if (likely(atomic_read(&queue
->free_count
) >= needed
))
4605 write_unlock_irqrestore(&queue
->queue_lock
, *flags
);
4610 * set qtcb pointer in fsf_req and initialize QTCB
4613 zfcp_fsf_req_qtcb_init(struct zfcp_fsf_req
*fsf_req
, u32 fsf_cmd
)
4615 if (likely(fsf_req
->qtcb
!= NULL
)) {
4616 fsf_req
->qtcb
->prefix
.req_id
= (unsigned long)fsf_req
;
4617 fsf_req
->qtcb
->prefix
.ulp_info
= ZFCP_ULP_INFO_VERSION
;
4618 fsf_req
->qtcb
->prefix
.qtcb_type
= fsf_qtcb_type
[fsf_cmd
];
4619 fsf_req
->qtcb
->prefix
.qtcb_version
= ZFCP_QTCB_VERSION
;
4620 fsf_req
->qtcb
->header
.req_handle
= (unsigned long)fsf_req
;
4621 fsf_req
->qtcb
->header
.fsf_command
= fsf_cmd
;
4626 * zfcp_fsf_req_sbal_get - try to get one SBAL in the request queue
4627 * @adapter: adapter for which request queue is examined
4628 * @req_flags: flags indicating whether to wait for needed SBAL or not
4629 * @lock_flags: lock_flags if queue_lock is taken
4630 * Return: 0 on success, otherwise -EIO, or -ERESTARTSYS
4631 * Locks: lock adapter->request_queue->queue_lock on success
4634 zfcp_fsf_req_sbal_get(struct zfcp_adapter
*adapter
, int req_flags
,
4635 unsigned long *lock_flags
)
4638 struct zfcp_qdio_queue
*req_queue
= &adapter
->request_queue
;
4640 if (unlikely(req_flags
& ZFCP_WAIT_FOR_SBAL
)) {
4641 ret
= wait_event_interruptible_timeout(adapter
->request_wq
,
4642 zfcp_fsf_req_sbal_check(lock_flags
, req_queue
, 1),
4648 } else if (!zfcp_fsf_req_sbal_check(lock_flags
, req_queue
, 1))
4655 * function: zfcp_fsf_req_create
4657 * purpose: create an FSF request at the specified adapter and
4658 * setup common fields
4660 * returns: -ENOMEM if there was insufficient memory for a request
4661 * -EIO if no qdio buffers could be allocate to the request
4662 * -EINVAL/-EPERM on bug conditions in req_dequeue
4665 * note: The created request is returned by reference.
4667 * locks: lock of concerned request queue must not be held,
4668 * but is held on completion (write, irqsave)
4671 zfcp_fsf_req_create(struct zfcp_adapter
*adapter
, u32 fsf_cmd
, int req_flags
,
4672 mempool_t
*pool
, unsigned long *lock_flags
,
4673 struct zfcp_fsf_req
**fsf_req_p
)
4675 volatile struct qdio_buffer_element
*sbale
;
4676 struct zfcp_fsf_req
*fsf_req
= NULL
;
4678 struct zfcp_qdio_queue
*req_queue
= &adapter
->request_queue
;
4680 /* allocate new FSF request */
4681 fsf_req
= zfcp_fsf_req_alloc(pool
, req_flags
);
4682 if (unlikely(NULL
== fsf_req
)) {
4683 ZFCP_LOG_DEBUG("error: Could not put an FSF request into"
4684 "the outbound (send) queue.\n");
4686 goto failed_fsf_req
;
4689 zfcp_fsf_req_qtcb_init(fsf_req
, fsf_cmd
);
4691 /* initialize waitqueue which may be used to wait on
4692 this request completion */
4693 init_waitqueue_head(&fsf_req
->completion_wq
);
4695 ret
= zfcp_fsf_req_sbal_get(adapter
, req_flags
, lock_flags
);
4701 * We hold queue_lock here. Check if QDIOUP is set and let request fail
4702 * if it is not set (see also *_open_qdio and *_close_qdio).
4705 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_QDIOUP
, &adapter
->status
)) {
4706 write_unlock_irqrestore(&req_queue
->queue_lock
, *lock_flags
);
4711 fsf_req
->adapter
= adapter
; /* pointer to "parent" adapter */
4712 fsf_req
->fsf_command
= fsf_cmd
;
4713 fsf_req
->sbal_number
= 1;
4714 fsf_req
->sbal_first
= req_queue
->free_index
;
4715 fsf_req
->sbal_curr
= req_queue
->free_index
;
4716 fsf_req
->sbale_curr
= 1;
4718 if (likely(req_flags
& ZFCP_REQ_AUTO_CLEANUP
)) {
4719 fsf_req
->status
|= ZFCP_STATUS_FSFREQ_CLEANUP
;
4722 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_curr
, 0);
4724 /* setup common SBALE fields */
4725 sbale
[0].addr
= fsf_req
;
4726 sbale
[0].flags
|= SBAL_FLAGS0_COMMAND
;
4727 if (likely(fsf_req
->qtcb
!= NULL
)) {
4728 sbale
[1].addr
= (void *) fsf_req
->qtcb
;
4729 sbale
[1].length
= sizeof(struct fsf_qtcb
);
4732 ZFCP_LOG_TRACE("got %i free BUFFERs starting at index %i\n",
4733 fsf_req
->sbal_number
, fsf_req
->sbal_first
);
4738 /* dequeue new FSF request previously enqueued */
4739 zfcp_fsf_req_free(fsf_req
);
4743 write_lock_irqsave(&req_queue
->queue_lock
, *lock_flags
);
4745 *fsf_req_p
= fsf_req
;
4750 * function: zfcp_fsf_req_send
4752 * purpose: start transfer of FSF request via QDIO
4754 * returns: 0 - request transfer succesfully started
4755 * !0 - start of request transfer failed
4758 zfcp_fsf_req_send(struct zfcp_fsf_req
*fsf_req
, struct timer_list
*timer
)
4760 struct zfcp_adapter
*adapter
;
4761 struct zfcp_qdio_queue
*req_queue
;
4762 volatile struct qdio_buffer_element
*sbale
;
4763 int new_distance_from_int
;
4764 unsigned long flags
;
4768 adapter
= fsf_req
->adapter
;
4769 req_queue
= &adapter
->request_queue
,
4772 /* FIXME(debug): remove it later */
4773 sbale
= zfcp_qdio_sbale_req(fsf_req
, fsf_req
->sbal_first
, 0);
4774 ZFCP_LOG_DEBUG("SBALE0 flags=0x%x\n", sbale
[0].flags
);
4775 ZFCP_LOG_TRACE("HEX DUMP OF SBALE1 PAYLOAD:\n");
4776 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE
, (char *) sbale
[1].addr
,
4779 /* set sequence counter in QTCB */
4780 if (likely(fsf_req
->qtcb
)) {
4781 fsf_req
->qtcb
->prefix
.req_seq_no
= adapter
->fsf_req_seq_no
;
4782 fsf_req
->seq_no
= adapter
->fsf_req_seq_no
;
4783 ZFCP_LOG_TRACE("FSF request %p of adapter %s gets "
4784 "FSF sequence counter value of %i\n",
4786 zfcp_get_busid_by_adapter(adapter
),
4787 fsf_req
->qtcb
->prefix
.req_seq_no
);
4791 /* put allocated FSF request at list tail */
4792 spin_lock_irqsave(&adapter
->fsf_req_list_lock
, flags
);
4793 list_add_tail(&fsf_req
->list
, &adapter
->fsf_req_list_head
);
4794 spin_unlock_irqrestore(&adapter
->fsf_req_list_lock
, flags
);
4796 /* figure out expiration time of timeout and start timeout */
4797 if (unlikely(timer
)) {
4798 timer
->expires
+= jiffies
;
4802 ZFCP_LOG_TRACE("request queue of adapter %s: "
4803 "next free SBAL is %i, %i free SBALs\n",
4804 zfcp_get_busid_by_adapter(adapter
),
4805 req_queue
->free_index
,
4806 atomic_read(&req_queue
->free_count
));
4808 ZFCP_LOG_DEBUG("calling do_QDIO adapter %s, flags=0x%x, queue_no=%i, "
4809 "index_in_queue=%i, count=%i, buffers=%p\n",
4810 zfcp_get_busid_by_adapter(adapter
),
4811 QDIO_FLAG_SYNC_OUTPUT
,
4812 0, fsf_req
->sbal_first
, fsf_req
->sbal_number
,
4813 &req_queue
->buffer
[fsf_req
->sbal_first
]);
4816 * adjust the number of free SBALs in request queue as well as
4817 * position of first one
4819 atomic_sub(fsf_req
->sbal_number
, &req_queue
->free_count
);
4820 ZFCP_LOG_TRACE("free_count=%d\n", atomic_read(&req_queue
->free_count
));
4821 req_queue
->free_index
+= fsf_req
->sbal_number
; /* increase */
4822 req_queue
->free_index
%= QDIO_MAX_BUFFERS_PER_Q
; /* wrap if needed */
4823 new_distance_from_int
= zfcp_qdio_determine_pci(req_queue
, fsf_req
);
4825 retval
= do_QDIO(adapter
->ccw_device
,
4826 QDIO_FLAG_SYNC_OUTPUT
,
4827 0, fsf_req
->sbal_first
, fsf_req
->sbal_number
, NULL
);
4829 if (unlikely(retval
)) {
4830 /* Queues are down..... */
4833 * FIXME(potential race):
4834 * timer might be expired (absolutely unlikely)
4838 spin_lock_irqsave(&adapter
->fsf_req_list_lock
, flags
);
4839 list_del(&fsf_req
->list
);
4840 spin_unlock_irqrestore(&adapter
->fsf_req_list_lock
, flags
);
4842 * adjust the number of free SBALs in request queue as well as
4843 * position of first one
4845 zfcp_qdio_zero_sbals(req_queue
->buffer
,
4846 fsf_req
->sbal_first
, fsf_req
->sbal_number
);
4847 atomic_add(fsf_req
->sbal_number
, &req_queue
->free_count
);
4848 req_queue
->free_index
-= fsf_req
->sbal_number
; /* increase */
4849 req_queue
->free_index
+= QDIO_MAX_BUFFERS_PER_Q
;
4850 req_queue
->free_index
%= QDIO_MAX_BUFFERS_PER_Q
; /* wrap */
4852 ("error: do_QDIO failed. Buffers could not be enqueued "
4853 "to request queue.\n");
4855 req_queue
->distance_from_int
= new_distance_from_int
;
4857 * increase FSF sequence counter -
4858 * this must only be done for request successfully enqueued to
4859 * QDIO this rejected requests may be cleaned up by calling
4860 * routines resulting in missing sequence counter values
4863 /* Don't increase for unsolicited status */
4864 if (likely(inc_seq_no
)) {
4865 adapter
->fsf_req_seq_no
++;
4867 ("FSF sequence counter value of adapter %s "
4868 "increased to %i\n",
4869 zfcp_get_busid_by_adapter(adapter
),
4870 adapter
->fsf_req_seq_no
);
4872 /* count FSF requests pending */
4873 atomic_inc(&adapter
->fsf_reqs_active
);
4878 #undef ZFCP_LOG_AREA