2 * This file is part of the zfcp device driver for
3 * FCP adapters for IBM System z9 and zSeries.
5 * (C) Copyright IBM Corp. 2002, 2006
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #define ZFCP_LOG_AREA ZFCP_LOG_AREA_ERP
26 static int zfcp_erp_adisc(struct zfcp_port
*);
27 static void zfcp_erp_adisc_handler(unsigned long);
29 static int zfcp_erp_adapter_reopen_internal(struct zfcp_adapter
*, int, u8
,
31 static int zfcp_erp_port_forced_reopen_internal(struct zfcp_port
*, int, u8
,
33 static int zfcp_erp_port_reopen_internal(struct zfcp_port
*, int, u8
, void *);
34 static int zfcp_erp_unit_reopen_internal(struct zfcp_unit
*, int, u8
, void *);
36 static int zfcp_erp_port_reopen_all_internal(struct zfcp_adapter
*, int, u8
,
38 static int zfcp_erp_unit_reopen_all_internal(struct zfcp_port
*, int, u8
,
41 static void zfcp_erp_adapter_block(struct zfcp_adapter
*, int);
42 static void zfcp_erp_adapter_unblock(struct zfcp_adapter
*);
43 static void zfcp_erp_port_block(struct zfcp_port
*, int);
44 static void zfcp_erp_port_unblock(struct zfcp_port
*);
45 static void zfcp_erp_unit_block(struct zfcp_unit
*, int);
46 static void zfcp_erp_unit_unblock(struct zfcp_unit
*);
48 static int zfcp_erp_thread(void *);
50 static int zfcp_erp_strategy(struct zfcp_erp_action
*);
52 static int zfcp_erp_strategy_do_action(struct zfcp_erp_action
*);
53 static int zfcp_erp_strategy_memwait(struct zfcp_erp_action
*);
54 static int zfcp_erp_strategy_check_target(struct zfcp_erp_action
*, int);
55 static int zfcp_erp_strategy_check_unit(struct zfcp_unit
*, int);
56 static int zfcp_erp_strategy_check_port(struct zfcp_port
*, int);
57 static int zfcp_erp_strategy_check_adapter(struct zfcp_adapter
*, int);
58 static int zfcp_erp_strategy_statechange(int, u32
, struct zfcp_adapter
*,
60 struct zfcp_unit
*, int);
61 static int zfcp_erp_strategy_statechange_detected(atomic_t
*, u32
);
62 static int zfcp_erp_strategy_followup_actions(int, struct zfcp_adapter
*,
64 struct zfcp_unit
*, int);
65 static int zfcp_erp_strategy_check_queues(struct zfcp_adapter
*);
66 static int zfcp_erp_strategy_check_action(struct zfcp_erp_action
*, int);
68 static int zfcp_erp_adapter_strategy(struct zfcp_erp_action
*);
69 static int zfcp_erp_adapter_strategy_generic(struct zfcp_erp_action
*, int);
70 static int zfcp_erp_adapter_strategy_close(struct zfcp_erp_action
*);
71 static int zfcp_erp_adapter_strategy_open(struct zfcp_erp_action
*);
72 static int zfcp_erp_adapter_strategy_open_qdio(struct zfcp_erp_action
*);
73 static int zfcp_erp_adapter_strategy_open_fsf(struct zfcp_erp_action
*);
74 static int zfcp_erp_adapter_strategy_open_fsf_xconfig(struct zfcp_erp_action
*);
75 static int zfcp_erp_adapter_strategy_open_fsf_xport(struct zfcp_erp_action
*);
76 static int zfcp_erp_adapter_strategy_open_fsf_statusread(
77 struct zfcp_erp_action
*);
79 static int zfcp_erp_port_forced_strategy(struct zfcp_erp_action
*);
80 static int zfcp_erp_port_forced_strategy_close(struct zfcp_erp_action
*);
82 static int zfcp_erp_port_strategy(struct zfcp_erp_action
*);
83 static int zfcp_erp_port_strategy_clearstati(struct zfcp_port
*);
84 static int zfcp_erp_port_strategy_close(struct zfcp_erp_action
*);
85 static int zfcp_erp_port_strategy_open(struct zfcp_erp_action
*);
86 static int zfcp_erp_port_strategy_open_nameserver(struct zfcp_erp_action
*);
87 static int zfcp_erp_port_strategy_open_nameserver_wakeup(
88 struct zfcp_erp_action
*);
89 static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action
*);
90 static int zfcp_erp_port_strategy_open_common_lookup(struct zfcp_erp_action
*);
91 static int zfcp_erp_port_strategy_open_port(struct zfcp_erp_action
*);
93 static int zfcp_erp_unit_strategy(struct zfcp_erp_action
*);
94 static int zfcp_erp_unit_strategy_clearstati(struct zfcp_unit
*);
95 static int zfcp_erp_unit_strategy_close(struct zfcp_erp_action
*);
96 static int zfcp_erp_unit_strategy_open(struct zfcp_erp_action
*);
98 static void zfcp_erp_action_dismiss_adapter(struct zfcp_adapter
*);
99 static void zfcp_erp_action_dismiss_port(struct zfcp_port
*);
100 static void zfcp_erp_action_dismiss_unit(struct zfcp_unit
*);
101 static void zfcp_erp_action_dismiss(struct zfcp_erp_action
*);
103 static int zfcp_erp_action_enqueue(int, struct zfcp_adapter
*,
104 struct zfcp_port
*, struct zfcp_unit
*,
106 static int zfcp_erp_action_dequeue(struct zfcp_erp_action
*);
107 static void zfcp_erp_action_cleanup(int, struct zfcp_adapter
*,
108 struct zfcp_port
*, struct zfcp_unit
*,
111 static void zfcp_erp_action_ready(struct zfcp_erp_action
*);
112 static int zfcp_erp_action_exists(struct zfcp_erp_action
*);
114 static void zfcp_erp_action_to_ready(struct zfcp_erp_action
*);
115 static void zfcp_erp_action_to_running(struct zfcp_erp_action
*);
117 static void zfcp_erp_memwait_handler(unsigned long);
120 * zfcp_close_qdio - close qdio queues for an adapter
122 static void zfcp_close_qdio(struct zfcp_adapter
*adapter
)
124 struct zfcp_qdio_queue
*req_queue
;
127 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_QDIOUP
, &adapter
->status
))
130 /* clear QDIOUP flag, thus do_QDIO is not called during qdio_shutdown */
131 req_queue
= &adapter
->request_queue
;
132 write_lock_irq(&req_queue
->queue_lock
);
133 atomic_clear_mask(ZFCP_STATUS_ADAPTER_QDIOUP
, &adapter
->status
);
134 write_unlock_irq(&req_queue
->queue_lock
);
136 while (qdio_shutdown(adapter
->ccw_device
,
137 QDIO_FLAG_CLEANUP_USING_CLEAR
) == -EINPROGRESS
)
140 /* cleanup used outbound sbals */
141 count
= atomic_read(&req_queue
->free_count
);
142 if (count
< QDIO_MAX_BUFFERS_PER_Q
) {
143 first
= (req_queue
->free_index
+count
) % QDIO_MAX_BUFFERS_PER_Q
;
144 count
= QDIO_MAX_BUFFERS_PER_Q
- count
;
145 zfcp_qdio_zero_sbals(req_queue
->buffer
, first
, count
);
147 req_queue
->free_index
= 0;
148 atomic_set(&req_queue
->free_count
, 0);
149 req_queue
->distance_from_int
= 0;
150 adapter
->response_queue
.free_index
= 0;
151 atomic_set(&adapter
->response_queue
.free_count
, 0);
155 * zfcp_close_fsf - stop FSF operations for an adapter
157 * Dismiss and cleanup all pending fsf_reqs (this wakes up all initiators of
158 * requests waiting for completion; especially this returns SCSI commands
161 static void zfcp_close_fsf(struct zfcp_adapter
*adapter
)
163 /* close queues to ensure that buffers are not accessed by adapter */
164 zfcp_close_qdio(adapter
);
165 zfcp_fsf_req_dismiss_all(adapter
);
166 /* reset FSF request sequence number */
167 adapter
->fsf_req_seq_no
= 0;
168 /* all ports and units are closed */
169 zfcp_erp_modify_adapter_status(adapter
, 24, NULL
,
170 ZFCP_STATUS_COMMON_OPEN
, ZFCP_CLEAR
);
174 * zfcp_fsf_request_timeout_handler - called if a request timed out
175 * @data: pointer to adapter for handler function
177 * This function needs to be called if requests (ELS, Generic Service,
178 * or SCSI commands) exceed a certain time limit. The assumption is
179 * that after the time limit the adapter get stuck. So we trigger a reopen of
182 static void zfcp_fsf_request_timeout_handler(unsigned long data
)
184 struct zfcp_adapter
*adapter
= (struct zfcp_adapter
*) data
;
185 zfcp_erp_adapter_reopen(adapter
, ZFCP_STATUS_COMMON_ERP_FAILED
, 62,
189 void zfcp_fsf_start_timer(struct zfcp_fsf_req
*fsf_req
, unsigned long timeout
)
191 fsf_req
->timer
.function
= zfcp_fsf_request_timeout_handler
;
192 fsf_req
->timer
.data
= (unsigned long) fsf_req
->adapter
;
193 fsf_req
->timer
.expires
= jiffies
+ timeout
;
194 add_timer(&fsf_req
->timer
);
200 * purpose: called if an adapter failed,
201 * initiates adapter recovery which is done
204 * returns: 0 - initiated action successfully
205 * <0 - failed to initiate action
207 static int zfcp_erp_adapter_reopen_internal(struct zfcp_adapter
*adapter
,
208 int clear_mask
, u8 id
, void *ref
)
212 ZFCP_LOG_DEBUG("reopen adapter %s\n",
213 zfcp_get_busid_by_adapter(adapter
));
215 zfcp_erp_adapter_block(adapter
, clear_mask
);
217 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED
, &adapter
->status
)) {
218 ZFCP_LOG_DEBUG("skipped reopen of failed adapter %s\n",
219 zfcp_get_busid_by_adapter(adapter
));
220 /* ensure propagation of failed status to new devices */
221 zfcp_erp_adapter_failed(adapter
, 13, NULL
);
225 retval
= zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER
,
226 adapter
, NULL
, NULL
, id
, ref
);
235 * purpose: Wrappper for zfcp_erp_adapter_reopen_internal
236 * used to ensure the correct locking
238 * returns: 0 - initiated action successfully
239 * <0 - failed to initiate action
241 int zfcp_erp_adapter_reopen(struct zfcp_adapter
*adapter
, int clear_mask
,
247 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
248 write_lock(&adapter
->erp_lock
);
249 retval
= zfcp_erp_adapter_reopen_internal(adapter
, clear_mask
, id
, ref
);
250 write_unlock(&adapter
->erp_lock
);
251 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
256 int zfcp_erp_adapter_shutdown(struct zfcp_adapter
*adapter
, int clear_mask
,
261 retval
= zfcp_erp_adapter_reopen(adapter
,
262 ZFCP_STATUS_COMMON_RUNNING
|
263 ZFCP_STATUS_COMMON_ERP_FAILED
|
264 clear_mask
, id
, ref
);
269 int zfcp_erp_port_shutdown(struct zfcp_port
*port
, int clear_mask
, u8 id
,
274 retval
= zfcp_erp_port_reopen(port
,
275 ZFCP_STATUS_COMMON_RUNNING
|
276 ZFCP_STATUS_COMMON_ERP_FAILED
|
277 clear_mask
, id
, ref
);
282 int zfcp_erp_unit_shutdown(struct zfcp_unit
*unit
, int clear_mask
, u8 id
,
287 retval
= zfcp_erp_unit_reopen(unit
,
288 ZFCP_STATUS_COMMON_RUNNING
|
289 ZFCP_STATUS_COMMON_ERP_FAILED
|
290 clear_mask
, id
, ref
);
297 * zfcp_erp_adisc - send ADISC ELS command
298 * @port: port structure
301 zfcp_erp_adisc(struct zfcp_port
*port
)
303 struct zfcp_adapter
*adapter
= port
->adapter
;
304 struct zfcp_send_els
*send_els
;
305 struct zfcp_ls_adisc
*adisc
;
306 void *address
= NULL
;
309 send_els
= kzalloc(sizeof(struct zfcp_send_els
), GFP_ATOMIC
);
310 if (send_els
== NULL
)
313 send_els
->req
= kmalloc(sizeof(struct scatterlist
), GFP_ATOMIC
);
314 if (send_els
->req
== NULL
)
316 sg_init_table(send_els
->req
, 1);
318 send_els
->resp
= kmalloc(sizeof(struct scatterlist
), GFP_ATOMIC
);
319 if (send_els
->resp
== NULL
)
321 sg_init_table(send_els
->resp
, 1);
323 address
= (void *) get_zeroed_page(GFP_ATOMIC
);
327 zfcp_address_to_sg(address
, send_els
->req
, sizeof(struct zfcp_ls_adisc
));
328 address
+= PAGE_SIZE
>> 1;
329 zfcp_address_to_sg(address
, send_els
->resp
, sizeof(struct zfcp_ls_adisc_acc
));
330 send_els
->req_count
= send_els
->resp_count
= 1;
332 send_els
->adapter
= adapter
;
333 send_els
->port
= port
;
334 send_els
->d_id
= port
->d_id
;
335 send_els
->handler
= zfcp_erp_adisc_handler
;
336 send_els
->handler_data
= (unsigned long) send_els
;
338 adisc
= zfcp_sg_to_address(send_els
->req
);
339 send_els
->ls_code
= adisc
->code
= ZFCP_LS_ADISC
;
341 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
342 without FC-AL-2 capability, so we don't set it */
343 adisc
->wwpn
= fc_host_port_name(adapter
->scsi_host
);
344 adisc
->wwnn
= fc_host_node_name(adapter
->scsi_host
);
345 adisc
->nport_id
= fc_host_port_id(adapter
->scsi_host
);
346 ZFCP_LOG_INFO("ADISC request from s_id 0x%06x to d_id 0x%06x "
347 "(wwpn=0x%016Lx, wwnn=0x%016Lx, "
348 "hard_nport_id=0x%06x, nport_id=0x%06x)\n",
349 adisc
->nport_id
, send_els
->d_id
, (wwn_t
) adisc
->wwpn
,
350 (wwn_t
) adisc
->wwnn
, adisc
->hard_nport_id
,
353 retval
= zfcp_fsf_send_els(send_els
);
355 ZFCP_LOG_NORMAL("error: initiation of Send ELS failed for port "
356 "0x%06x on adapter %s\n", send_els
->d_id
,
357 zfcp_get_busid_by_adapter(adapter
));
367 __free_pages(sg_page(send_els
->req
), 0);
368 if (send_els
!= NULL
) {
369 kfree(send_els
->req
);
370 kfree(send_els
->resp
);
379 * zfcp_erp_adisc_handler - handler for ADISC ELS command
380 * @data: pointer to struct zfcp_send_els
382 * If ADISC failed (LS_RJT or timed out) forced reopen of the port is triggered.
385 zfcp_erp_adisc_handler(unsigned long data
)
387 struct zfcp_send_els
*send_els
;
388 struct zfcp_port
*port
;
389 struct zfcp_adapter
*adapter
;
391 struct zfcp_ls_adisc_acc
*adisc
;
393 send_els
= (struct zfcp_send_els
*) data
;
394 adapter
= send_els
->adapter
;
395 port
= send_els
->port
;
396 d_id
= send_els
->d_id
;
398 /* request rejected or timed out */
399 if (send_els
->status
!= 0) {
400 ZFCP_LOG_NORMAL("ELS request rejected/timed out, "
401 "force physical port reopen "
402 "(adapter %s, port d_id=0x%06x)\n",
403 zfcp_get_busid_by_adapter(adapter
), d_id
);
404 if (zfcp_erp_port_forced_reopen(port
, 0, 63, NULL
))
405 ZFCP_LOG_NORMAL("failed reopen of port "
406 "(adapter %s, wwpn=0x%016Lx)\n",
407 zfcp_get_busid_by_port(port
),
412 adisc
= zfcp_sg_to_address(send_els
->resp
);
414 ZFCP_LOG_INFO("ADISC response from d_id 0x%06x to s_id "
415 "0x%06x (wwpn=0x%016Lx, wwnn=0x%016Lx, "
416 "hard_nport_id=0x%06x, nport_id=0x%06x)\n",
417 d_id
, fc_host_port_id(adapter
->scsi_host
),
418 (wwn_t
) adisc
->wwpn
, (wwn_t
) adisc
->wwnn
,
419 adisc
->hard_nport_id
, adisc
->nport_id
);
421 /* set wwnn for port */
423 port
->wwnn
= adisc
->wwnn
;
425 if (port
->wwpn
!= adisc
->wwpn
) {
426 ZFCP_LOG_NORMAL("d_id assignment changed, reopening "
427 "port (adapter %s, wwpn=0x%016Lx, "
428 "adisc_resp_wwpn=0x%016Lx)\n",
429 zfcp_get_busid_by_port(port
),
430 port
->wwpn
, (wwn_t
) adisc
->wwpn
);
431 if (zfcp_erp_port_reopen(port
, 0, 64, NULL
))
432 ZFCP_LOG_NORMAL("failed reopen of port "
433 "(adapter %s, wwpn=0x%016Lx)\n",
434 zfcp_get_busid_by_port(port
),
440 __free_pages(sg_page(send_els
->req
), 0);
441 kfree(send_els
->req
);
442 kfree(send_els
->resp
);
448 * zfcp_test_link - lightweight link test procedure
449 * @port: port to be tested
451 * Test status of a link to a remote port using the ELS command ADISC.
454 zfcp_test_link(struct zfcp_port
*port
)
459 retval
= zfcp_erp_adisc(port
);
460 if (retval
!= 0 && retval
!= -EBUSY
) {
462 ZFCP_LOG_NORMAL("reopen needed for port 0x%016Lx "
463 "on adapter %s\n ", port
->wwpn
,
464 zfcp_get_busid_by_port(port
));
465 retval
= zfcp_erp_port_forced_reopen(port
, 0, 65, NULL
);
467 ZFCP_LOG_NORMAL("reopen of remote port 0x%016Lx "
468 "on adapter %s failed\n", port
->wwpn
,
469 zfcp_get_busid_by_port(port
));
481 * purpose: called if a port failed to be opened normally
482 * initiates Forced Reopen recovery which is done
485 * returns: 0 - initiated action successfully
486 * <0 - failed to initiate action
488 static int zfcp_erp_port_forced_reopen_internal(struct zfcp_port
*port
,
489 int clear_mask
, u8 id
,
494 ZFCP_LOG_DEBUG("forced reopen of port 0x%016Lx on adapter %s\n",
495 port
->wwpn
, zfcp_get_busid_by_port(port
));
497 zfcp_erp_port_block(port
, clear_mask
);
499 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED
, &port
->status
)) {
500 ZFCP_LOG_DEBUG("skipped forced reopen of failed port 0x%016Lx "
501 "on adapter %s\n", port
->wwpn
,
502 zfcp_get_busid_by_port(port
));
507 retval
= zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
,
508 port
->adapter
, port
, NULL
, id
, ref
);
517 * purpose: Wrappper for zfcp_erp_port_forced_reopen_internal
518 * used to ensure the correct locking
520 * returns: 0 - initiated action successfully
521 * <0 - failed to initiate action
523 int zfcp_erp_port_forced_reopen(struct zfcp_port
*port
, int clear_mask
, u8 id
,
528 struct zfcp_adapter
*adapter
;
530 adapter
= port
->adapter
;
531 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
532 write_lock(&adapter
->erp_lock
);
533 retval
= zfcp_erp_port_forced_reopen_internal(port
, clear_mask
, id
,
535 write_unlock(&adapter
->erp_lock
);
536 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
544 * purpose: called if a port is to be opened
545 * initiates Reopen recovery which is done
548 * returns: 0 - initiated action successfully
549 * <0 - failed to initiate action
551 static int zfcp_erp_port_reopen_internal(struct zfcp_port
*port
, int clear_mask
,
556 ZFCP_LOG_DEBUG("reopen of port 0x%016Lx on adapter %s\n",
557 port
->wwpn
, zfcp_get_busid_by_port(port
));
559 zfcp_erp_port_block(port
, clear_mask
);
561 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED
, &port
->status
)) {
562 ZFCP_LOG_DEBUG("skipped reopen of failed port 0x%016Lx "
563 "on adapter %s\n", port
->wwpn
,
564 zfcp_get_busid_by_port(port
));
565 /* ensure propagation of failed status to new devices */
566 zfcp_erp_port_failed(port
, 14, NULL
);
571 retval
= zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT
,
572 port
->adapter
, port
, NULL
, id
, ref
);
579 * zfcp_erp_port_reopen - initiate reopen of a remote port
580 * @port: port to be reopened
581 * @clear_mask: specifies flags in port status to be cleared
582 * Return: 0 on success, < 0 on error
584 * This is a wrappper function for zfcp_erp_port_reopen_internal. It ensures
585 * correct locking. An error recovery task is initiated to do the reopen.
586 * To wait for the completion of the reopen zfcp_erp_wait should be used.
588 int zfcp_erp_port_reopen(struct zfcp_port
*port
, int clear_mask
, u8 id
,
593 struct zfcp_adapter
*adapter
= port
->adapter
;
595 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
596 write_lock(&adapter
->erp_lock
);
597 retval
= zfcp_erp_port_reopen_internal(port
, clear_mask
, id
, ref
);
598 write_unlock(&adapter
->erp_lock
);
599 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
607 * purpose: called if a unit is to be opened
608 * initiates Reopen recovery which is done
611 * returns: 0 - initiated action successfully
612 * <0 - failed to initiate action
614 static int zfcp_erp_unit_reopen_internal(struct zfcp_unit
*unit
, int clear_mask
,
618 struct zfcp_adapter
*adapter
= unit
->port
->adapter
;
620 ZFCP_LOG_DEBUG("reopen of unit 0x%016Lx on port 0x%016Lx "
621 "on adapter %s\n", unit
->fcp_lun
,
622 unit
->port
->wwpn
, zfcp_get_busid_by_unit(unit
));
624 zfcp_erp_unit_block(unit
, clear_mask
);
626 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED
, &unit
->status
)) {
627 ZFCP_LOG_DEBUG("skipped reopen of failed unit 0x%016Lx "
628 "on port 0x%016Lx on adapter %s\n",
629 unit
->fcp_lun
, unit
->port
->wwpn
,
630 zfcp_get_busid_by_unit(unit
));
635 retval
= zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_UNIT
,
636 adapter
, unit
->port
, unit
, id
, ref
);
642 * zfcp_erp_unit_reopen - initiate reopen of a unit
643 * @unit: unit to be reopened
644 * @clear_mask: specifies flags in unit status to be cleared
645 * Return: 0 on success, < 0 on error
647 * This is a wrappper for zfcp_erp_unit_reopen_internal. It ensures correct
648 * locking. An error recovery task is initiated to do the reopen.
649 * To wait for the completion of the reopen zfcp_erp_wait should be used.
651 int zfcp_erp_unit_reopen(struct zfcp_unit
*unit
, int clear_mask
, u8 id
,
656 struct zfcp_adapter
*adapter
;
657 struct zfcp_port
*port
;
660 adapter
= port
->adapter
;
662 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
663 write_lock(&adapter
->erp_lock
);
664 retval
= zfcp_erp_unit_reopen_internal(unit
, clear_mask
, id
, ref
);
665 write_unlock(&adapter
->erp_lock
);
666 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
672 * zfcp_erp_adapter_block - mark adapter as blocked, block scsi requests
674 static void zfcp_erp_adapter_block(struct zfcp_adapter
*adapter
, int clear_mask
)
676 zfcp_erp_modify_adapter_status(adapter
, 15, NULL
,
677 ZFCP_STATUS_COMMON_UNBLOCKED
|
678 clear_mask
, ZFCP_CLEAR
);
681 /* FIXME: isn't really atomic */
683 * returns the mask which has not been set so far, i.e.
684 * 0 if no bit has been changed, !0 if some bit has been changed
686 static int atomic_test_and_set_mask(unsigned long mask
, atomic_t
*v
)
688 int changed_bits
= (atomic_read(v
) /*XOR*/^ mask
) & mask
;
689 atomic_set_mask(mask
, v
);
693 /* FIXME: isn't really atomic */
695 * returns the mask which has not been cleared so far, i.e.
696 * 0 if no bit has been changed, !0 if some bit has been changed
698 static int atomic_test_and_clear_mask(unsigned long mask
, atomic_t
*v
)
700 int changed_bits
= atomic_read(v
) & mask
;
701 atomic_clear_mask(mask
, v
);
706 * zfcp_erp_adapter_unblock - mark adapter as unblocked, allow scsi requests
708 static void zfcp_erp_adapter_unblock(struct zfcp_adapter
*adapter
)
710 if (atomic_test_and_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED
,
712 zfcp_rec_dbf_event_adapter(16, NULL
, adapter
);
718 * purpose: disable I/O,
719 * return any open requests and clean them up,
720 * aim: no pending and incoming I/O
725 zfcp_erp_port_block(struct zfcp_port
*port
, int clear_mask
)
727 zfcp_erp_modify_port_status(port
, 17, NULL
,
728 ZFCP_STATUS_COMMON_UNBLOCKED
| clear_mask
,
735 * purpose: enable I/O
740 zfcp_erp_port_unblock(struct zfcp_port
*port
)
742 if (atomic_test_and_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED
,
744 zfcp_rec_dbf_event_port(18, NULL
, port
);
750 * purpose: disable I/O,
751 * return any open requests and clean them up,
752 * aim: no pending and incoming I/O
757 zfcp_erp_unit_block(struct zfcp_unit
*unit
, int clear_mask
)
759 zfcp_erp_modify_unit_status(unit
, 19, NULL
,
760 ZFCP_STATUS_COMMON_UNBLOCKED
| clear_mask
,
767 * purpose: enable I/O
772 zfcp_erp_unit_unblock(struct zfcp_unit
*unit
)
774 if (atomic_test_and_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED
,
776 zfcp_rec_dbf_event_unit(20, NULL
, unit
);
780 zfcp_erp_action_ready(struct zfcp_erp_action
*erp_action
)
782 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
784 zfcp_erp_action_to_ready(erp_action
);
785 up(&adapter
->erp_ready_sem
);
786 zfcp_rec_dbf_event_thread(2, adapter
, 0);
794 * returns: <0 erp_action not found in any list
795 * ZFCP_ERP_ACTION_READY erp_action is in ready list
796 * ZFCP_ERP_ACTION_RUNNING erp_action is in running list
798 * locks: erp_lock must be held
801 zfcp_erp_action_exists(struct zfcp_erp_action
*erp_action
)
803 int retval
= -EINVAL
;
804 struct list_head
*entry
;
805 struct zfcp_erp_action
*entry_erp_action
;
806 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
808 /* search in running list */
809 list_for_each(entry
, &adapter
->erp_running_head
) {
811 list_entry(entry
, struct zfcp_erp_action
, list
);
812 if (entry_erp_action
== erp_action
) {
813 retval
= ZFCP_ERP_ACTION_RUNNING
;
817 /* search in ready list */
818 list_for_each(entry
, &adapter
->erp_ready_head
) {
820 list_entry(entry
, struct zfcp_erp_action
, list
);
821 if (entry_erp_action
== erp_action
) {
822 retval
= ZFCP_ERP_ACTION_READY
;
832 * purpose: checks current status of action (timed out, dismissed, ...)
833 * and does appropriate preparations (dismiss fsf request, ...)
835 * locks: called under erp_lock (disabled interrupts)
838 zfcp_erp_strategy_check_fsfreq(struct zfcp_erp_action
*erp_action
)
840 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
842 if (erp_action
->fsf_req
) {
843 /* take lock to ensure that request is not deleted meanwhile */
844 spin_lock(&adapter
->req_list_lock
);
845 if (zfcp_reqlist_find_safe(adapter
, erp_action
->fsf_req
) &&
846 erp_action
->fsf_req
->erp_action
== erp_action
) {
847 /* fsf_req still exists */
848 /* dismiss fsf_req of timed out/dismissed erp_action */
849 if (erp_action
->status
& (ZFCP_STATUS_ERP_DISMISSED
|
850 ZFCP_STATUS_ERP_TIMEDOUT
)) {
851 erp_action
->fsf_req
->status
|=
852 ZFCP_STATUS_FSFREQ_DISMISSED
;
853 zfcp_rec_dbf_event_action(142, erp_action
);
855 if (erp_action
->status
& ZFCP_STATUS_ERP_TIMEDOUT
) {
856 zfcp_rec_dbf_event_action(143, erp_action
);
857 ZFCP_LOG_NORMAL("error: erp step timed out "
858 "(action=%d, fsf_req=%p)\n ",
860 erp_action
->fsf_req
);
863 * If fsf_req is neither dismissed nor completed
864 * then keep it running asynchronously and don't mess
865 * with the association of erp_action and fsf_req.
867 if (erp_action
->fsf_req
->status
&
868 (ZFCP_STATUS_FSFREQ_COMPLETED
|
869 ZFCP_STATUS_FSFREQ_DISMISSED
)) {
870 /* forget about association between fsf_req
872 erp_action
->fsf_req
= NULL
;
876 * even if this fsf_req has gone, forget about
877 * association between erp_action and fsf_req
879 erp_action
->fsf_req
= NULL
;
881 spin_unlock(&adapter
->req_list_lock
);
886 * zfcp_erp_async_handler_nolock - complete erp_action
888 * Used for normal completion, time-out, dismissal and failure after
889 * low memory condition.
891 static void zfcp_erp_async_handler_nolock(struct zfcp_erp_action
*erp_action
,
892 unsigned long set_mask
)
894 if (zfcp_erp_action_exists(erp_action
) == ZFCP_ERP_ACTION_RUNNING
) {
895 erp_action
->status
|= set_mask
;
896 zfcp_erp_action_ready(erp_action
);
898 /* action is ready or gone - nothing to do */
903 * zfcp_erp_async_handler - wrapper for erp_async_handler_nolock w/ locking
905 void zfcp_erp_async_handler(struct zfcp_erp_action
*erp_action
,
906 unsigned long set_mask
)
908 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
911 write_lock_irqsave(&adapter
->erp_lock
, flags
);
912 zfcp_erp_async_handler_nolock(erp_action
, set_mask
);
913 write_unlock_irqrestore(&adapter
->erp_lock
, flags
);
917 * purpose: is called for erp_action which was slept waiting for
918 * memory becoming avaliable,
919 * will trigger that this action will be continued
922 zfcp_erp_memwait_handler(unsigned long data
)
924 struct zfcp_erp_action
*erp_action
= (struct zfcp_erp_action
*) data
;
926 zfcp_erp_async_handler(erp_action
, 0);
930 * purpose: is called if an asynchronous erp step timed out,
931 * action gets an appropriate flag and will be processed
934 static void zfcp_erp_timeout_handler(unsigned long data
)
936 struct zfcp_erp_action
*erp_action
= (struct zfcp_erp_action
*) data
;
938 zfcp_erp_async_handler(erp_action
, ZFCP_STATUS_ERP_TIMEDOUT
);
942 * zfcp_erp_action_dismiss - dismiss an erp_action
944 * adapter->erp_lock must be held
946 * Dismissal of an erp_action is usually required if an erp_action of
947 * higher priority is generated.
949 static void zfcp_erp_action_dismiss(struct zfcp_erp_action
*erp_action
)
951 erp_action
->status
|= ZFCP_STATUS_ERP_DISMISSED
;
952 if (zfcp_erp_action_exists(erp_action
) == ZFCP_ERP_ACTION_RUNNING
)
953 zfcp_erp_action_ready(erp_action
);
957 zfcp_erp_thread_setup(struct zfcp_adapter
*adapter
)
961 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP
, &adapter
->status
);
963 retval
= kernel_thread(zfcp_erp_thread
, adapter
, SIGCHLD
);
965 ZFCP_LOG_NORMAL("error: creation of erp thread failed for "
967 zfcp_get_busid_by_adapter(adapter
));
969 wait_event(adapter
->erp_thread_wqh
,
970 atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP
,
984 * context: process (i.e. proc-fs or rmmod/insmod)
986 * note: The caller of this routine ensures that the specified
987 * adapter has been shut down and that this operation
988 * has been completed. Thus, there are no pending erp_actions
989 * which would need to be handled here.
992 zfcp_erp_thread_kill(struct zfcp_adapter
*adapter
)
996 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL
, &adapter
->status
);
997 up(&adapter
->erp_ready_sem
);
998 zfcp_rec_dbf_event_thread(2, adapter
, 1);
1000 wait_event(adapter
->erp_thread_wqh
,
1001 !atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP
,
1004 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL
,
1011 * purpose: is run as a kernel thread,
1012 * goes through list of error recovery actions of associated adapter
1013 * and delegates single action to execution
1018 zfcp_erp_thread(void *data
)
1020 struct zfcp_adapter
*adapter
= (struct zfcp_adapter
*) data
;
1021 struct list_head
*next
;
1022 struct zfcp_erp_action
*erp_action
;
1023 unsigned long flags
;
1025 daemonize("zfcperp%s", zfcp_get_busid_by_adapter(adapter
));
1026 /* Block all signals */
1027 siginitsetinv(¤t
->blocked
, 0);
1028 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP
, &adapter
->status
);
1029 wake_up(&adapter
->erp_thread_wqh
);
1031 while (!atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL
,
1032 &adapter
->status
)) {
1034 write_lock_irqsave(&adapter
->erp_lock
, flags
);
1035 next
= adapter
->erp_ready_head
.next
;
1036 write_unlock_irqrestore(&adapter
->erp_lock
, flags
);
1038 if (next
!= &adapter
->erp_ready_head
) {
1040 list_entry(next
, struct zfcp_erp_action
, list
);
1042 * process action (incl. [re]moving it
1043 * from 'ready' queue)
1045 zfcp_erp_strategy(erp_action
);
1049 * sleep as long as there is nothing to do, i.e.
1050 * no action in 'ready' queue to be processed and
1051 * thread is not to be killed
1053 zfcp_rec_dbf_event_thread(4, adapter
, 1);
1054 down_interruptible(&adapter
->erp_ready_sem
);
1055 zfcp_rec_dbf_event_thread(5, adapter
, 1);
1058 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP
, &adapter
->status
);
1059 wake_up(&adapter
->erp_thread_wqh
);
1067 * purpose: drives single error recovery action and schedules higher and
1068 * subordinate actions, if necessary
1070 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
1071 * ZFCP_ERP_SUCCEEDED - action finished successfully (deqd)
1072 * ZFCP_ERP_FAILED - action finished unsuccessfully (deqd)
1073 * ZFCP_ERP_EXIT - action finished (dequeued), offline
1074 * ZFCP_ERP_DISMISSED - action canceled (dequeued)
1077 zfcp_erp_strategy(struct zfcp_erp_action
*erp_action
)
1080 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
1081 struct zfcp_port
*port
= erp_action
->port
;
1082 struct zfcp_unit
*unit
= erp_action
->unit
;
1083 int action
= erp_action
->action
;
1084 u32 status
= erp_action
->status
;
1085 unsigned long flags
;
1087 /* serialise dismissing, timing out, moving, enqueueing */
1088 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
1089 write_lock(&adapter
->erp_lock
);
1091 /* dequeue dismissed action and leave, if required */
1092 retval
= zfcp_erp_strategy_check_action(erp_action
, retval
);
1093 if (retval
== ZFCP_ERP_DISMISSED
) {
1098 * move action to 'running' queue before processing it
1099 * (to avoid a race condition regarding moving the
1100 * action to the 'running' queue and back)
1102 zfcp_erp_action_to_running(erp_action
);
1105 * try to process action as far as possible,
1106 * no lock to allow for blocking operations (kmalloc, qdio, ...),
1107 * afterwards the lock is required again for the following reasons:
1108 * - dequeueing of finished action and enqueueing of
1109 * follow-up actions must be atomic so that any other
1110 * reopen-routine does not believe there is nothing to do
1111 * and that it is safe to enqueue something else,
1112 * - we want to force any control thread which is dismissing
1113 * actions to finish this before we decide about
1114 * necessary steps to be taken here further
1116 write_unlock(&adapter
->erp_lock
);
1117 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
1118 retval
= zfcp_erp_strategy_do_action(erp_action
);
1119 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
1120 write_lock(&adapter
->erp_lock
);
1123 * check for dismissed status again to avoid follow-up actions,
1124 * failing of targets and so on for dismissed actions,
1125 * we go through down() here because there has been an up()
1127 if (erp_action
->status
& ZFCP_STATUS_ERP_DISMISSED
)
1128 retval
= ZFCP_ERP_CONTINUES
;
1131 case ZFCP_ERP_NOMEM
:
1132 /* no memory to continue immediately, let it sleep */
1133 if (!(erp_action
->status
& ZFCP_STATUS_ERP_LOWMEM
)) {
1134 ++adapter
->erp_low_mem_count
;
1135 erp_action
->status
|= ZFCP_STATUS_ERP_LOWMEM
;
1137 /* This condition is true if there is no memory available
1138 for any erp_action on this adapter. This implies that there
1139 are no elements in the memory pool(s) left for erp_actions.
1140 This might happen if an erp_action that used a memory pool
1141 element was timed out.
1143 if (adapter
->erp_total_count
== adapter
->erp_low_mem_count
) {
1144 ZFCP_LOG_NORMAL("error: no mempool elements available, "
1145 "restarting I/O on adapter %s "
1146 "to free mempool\n",
1147 zfcp_get_busid_by_adapter(adapter
));
1148 zfcp_erp_adapter_reopen_internal(adapter
, 0, 66, NULL
);
1150 retval
= zfcp_erp_strategy_memwait(erp_action
);
1153 case ZFCP_ERP_CONTINUES
:
1154 /* leave since this action runs asynchronously */
1155 if (erp_action
->status
& ZFCP_STATUS_ERP_LOWMEM
) {
1156 --adapter
->erp_low_mem_count
;
1157 erp_action
->status
&= ~ZFCP_STATUS_ERP_LOWMEM
;
1161 /* ok, finished action (whatever its result is) */
1163 /* check for unrecoverable targets */
1164 retval
= zfcp_erp_strategy_check_target(erp_action
, retval
);
1166 /* action must be dequeued (here to allow for further ones) */
1167 zfcp_erp_action_dequeue(erp_action
);
1170 * put this target through the erp mill again if someone has
1171 * requested to change the status of a target being online
1172 * to offline or the other way around
1173 * (old retval is preserved if nothing has to be done here)
1175 retval
= zfcp_erp_strategy_statechange(action
, status
, adapter
,
1176 port
, unit
, retval
);
1179 * leave if target is in permanent error state or if
1180 * action is repeated in order to process state change
1182 if (retval
== ZFCP_ERP_EXIT
) {
1186 /* trigger follow up actions */
1187 zfcp_erp_strategy_followup_actions(action
, adapter
, port
, unit
, retval
);
1190 write_unlock(&adapter
->erp_lock
);
1191 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
1193 if (retval
!= ZFCP_ERP_CONTINUES
)
1194 zfcp_erp_action_cleanup(action
, adapter
, port
, unit
, retval
);
1197 * a few tasks remain when the erp queues are empty
1198 * (don't do that if the last action evaluated was dismissed
1199 * since this clearly indicates that there is more to come) :
1200 * - close the name server port if it is open yet
1201 * (enqueues another [probably] final action)
1202 * - otherwise, wake up whoever wants to be woken when we are
1205 if (retval
!= ZFCP_ERP_DISMISSED
)
1206 zfcp_erp_strategy_check_queues(adapter
);
1216 * returns: ZFCP_ERP_DISMISSED - if action has been dismissed
1217 * retval - otherwise
1220 zfcp_erp_strategy_check_action(struct zfcp_erp_action
*erp_action
, int retval
)
1222 zfcp_erp_strategy_check_fsfreq(erp_action
);
1224 if (erp_action
->status
& ZFCP_STATUS_ERP_DISMISSED
) {
1225 zfcp_erp_action_dequeue(erp_action
);
1226 retval
= ZFCP_ERP_DISMISSED
;
1233 zfcp_erp_strategy_do_action(struct zfcp_erp_action
*erp_action
)
1235 int retval
= ZFCP_ERP_FAILED
;
1238 * try to execute/continue action as far as possible,
1239 * note: no lock in subsequent strategy routines
1240 * (this allows these routine to call schedule, e.g.
1241 * kmalloc with such flags or qdio_initialize & friends)
1242 * Note: in case of timeout, the separate strategies will fail
1243 * anyhow. No need for a special action. Even worse, a nameserver
1244 * failure would not wake up waiting ports without the call.
1246 switch (erp_action
->action
) {
1248 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
1249 retval
= zfcp_erp_adapter_strategy(erp_action
);
1252 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
1253 retval
= zfcp_erp_port_forced_strategy(erp_action
);
1256 case ZFCP_ERP_ACTION_REOPEN_PORT
:
1257 retval
= zfcp_erp_port_strategy(erp_action
);
1260 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
1261 retval
= zfcp_erp_unit_strategy(erp_action
);
1265 ZFCP_LOG_NORMAL("bug: unknown erp action requested on "
1266 "adapter %s (action=%d)\n",
1267 zfcp_get_busid_by_adapter(erp_action
->adapter
),
1268 erp_action
->action
);
1277 * purpose: triggers retry of this action after a certain amount of time
1278 * by means of timer provided by erp_action
1280 * returns: ZFCP_ERP_CONTINUES - erp_action sleeps in erp running queue
1283 zfcp_erp_strategy_memwait(struct zfcp_erp_action
*erp_action
)
1285 int retval
= ZFCP_ERP_CONTINUES
;
1287 init_timer(&erp_action
->timer
);
1288 erp_action
->timer
.function
= zfcp_erp_memwait_handler
;
1289 erp_action
->timer
.data
= (unsigned long) erp_action
;
1290 erp_action
->timer
.expires
= jiffies
+ ZFCP_ERP_MEMWAIT_TIMEOUT
;
1291 add_timer(&erp_action
->timer
);
1297 * function: zfcp_erp_adapter_failed
1299 * purpose: sets the adapter and all underlying devices to ERP_FAILED
1303 zfcp_erp_adapter_failed(struct zfcp_adapter
*adapter
, u8 id
, void *ref
)
1305 zfcp_erp_modify_adapter_status(adapter
, id
, ref
,
1306 ZFCP_STATUS_COMMON_ERP_FAILED
, ZFCP_SET
);
1307 ZFCP_LOG_NORMAL("adapter erp failed on adapter %s\n",
1308 zfcp_get_busid_by_adapter(adapter
));
1312 * function: zfcp_erp_port_failed
1314 * purpose: sets the port and all underlying devices to ERP_FAILED
1318 zfcp_erp_port_failed(struct zfcp_port
*port
, u8 id
, void *ref
)
1320 zfcp_erp_modify_port_status(port
, id
, ref
,
1321 ZFCP_STATUS_COMMON_ERP_FAILED
, ZFCP_SET
);
1323 if (atomic_test_mask(ZFCP_STATUS_PORT_WKA
, &port
->status
))
1324 ZFCP_LOG_NORMAL("port erp failed (adapter %s, "
1325 "port d_id=0x%06x)\n",
1326 zfcp_get_busid_by_port(port
), port
->d_id
);
1328 ZFCP_LOG_NORMAL("port erp failed (adapter %s, wwpn=0x%016Lx)\n",
1329 zfcp_get_busid_by_port(port
), port
->wwpn
);
1333 * function: zfcp_erp_unit_failed
1335 * purpose: sets the unit to ERP_FAILED
1339 zfcp_erp_unit_failed(struct zfcp_unit
*unit
, u8 id
, void *ref
)
1341 zfcp_erp_modify_unit_status(unit
, id
, ref
,
1342 ZFCP_STATUS_COMMON_ERP_FAILED
, ZFCP_SET
);
1344 ZFCP_LOG_NORMAL("unit erp failed on unit 0x%016Lx on port 0x%016Lx "
1345 " on adapter %s\n", unit
->fcp_lun
,
1346 unit
->port
->wwpn
, zfcp_get_busid_by_unit(unit
));
1350 * function: zfcp_erp_strategy_check_target
1352 * purpose: increments the erp action count on the device currently in
1353 * recovery if the action failed or resets the count in case of
1354 * success. If a maximum count is exceeded the device is marked
1356 * The 'blocked' state of a target which has been recovered
1357 * successfully is reset.
1359 * returns: ZFCP_ERP_CONTINUES - action continues (not considered)
1360 * ZFCP_ERP_SUCCEEDED - action finished successfully
1361 * ZFCP_ERP_EXIT - action failed and will not continue
1364 zfcp_erp_strategy_check_target(struct zfcp_erp_action
*erp_action
, int result
)
1366 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
1367 struct zfcp_port
*port
= erp_action
->port
;
1368 struct zfcp_unit
*unit
= erp_action
->unit
;
1370 switch (erp_action
->action
) {
1372 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
1373 result
= zfcp_erp_strategy_check_unit(unit
, result
);
1376 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
1377 case ZFCP_ERP_ACTION_REOPEN_PORT
:
1378 result
= zfcp_erp_strategy_check_port(port
, result
);
1381 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
1382 result
= zfcp_erp_strategy_check_adapter(adapter
, result
);
1390 zfcp_erp_strategy_statechange(int action
,
1392 struct zfcp_adapter
*adapter
,
1393 struct zfcp_port
*port
,
1394 struct zfcp_unit
*unit
, int retval
)
1398 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
1399 if (zfcp_erp_strategy_statechange_detected(&adapter
->status
,
1401 zfcp_erp_adapter_reopen_internal(adapter
,
1402 ZFCP_STATUS_COMMON_ERP_FAILED
,
1404 retval
= ZFCP_ERP_EXIT
;
1408 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
1409 case ZFCP_ERP_ACTION_REOPEN_PORT
:
1410 if (zfcp_erp_strategy_statechange_detected(&port
->status
,
1412 zfcp_erp_port_reopen_internal(port
,
1413 ZFCP_STATUS_COMMON_ERP_FAILED
,
1415 retval
= ZFCP_ERP_EXIT
;
1419 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
1420 if (zfcp_erp_strategy_statechange_detected(&unit
->status
,
1422 zfcp_erp_unit_reopen_internal(unit
,
1423 ZFCP_STATUS_COMMON_ERP_FAILED
,
1425 retval
= ZFCP_ERP_EXIT
;
1434 zfcp_erp_strategy_statechange_detected(atomic_t
* target_status
, u32 erp_status
)
1437 /* take it online */
1438 (atomic_test_mask(ZFCP_STATUS_COMMON_RUNNING
, target_status
) &&
1439 (ZFCP_STATUS_ERP_CLOSE_ONLY
& erp_status
)) ||
1440 /* take it offline */
1441 (!atomic_test_mask(ZFCP_STATUS_COMMON_RUNNING
, target_status
) &&
1442 !(ZFCP_STATUS_ERP_CLOSE_ONLY
& erp_status
));
1446 zfcp_erp_strategy_check_unit(struct zfcp_unit
*unit
, int result
)
1449 case ZFCP_ERP_SUCCEEDED
:
1450 atomic_set(&unit
->erp_counter
, 0);
1451 zfcp_erp_unit_unblock(unit
);
1453 case ZFCP_ERP_FAILED
:
1454 atomic_inc(&unit
->erp_counter
);
1455 if (atomic_read(&unit
->erp_counter
) > ZFCP_MAX_ERPS
)
1456 zfcp_erp_unit_failed(unit
, 21, NULL
);
1458 case ZFCP_ERP_EXIT
:
1463 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED
, &unit
->status
)) {
1464 zfcp_erp_unit_block(unit
, 0); /* for ZFCP_ERP_SUCCEEDED */
1465 result
= ZFCP_ERP_EXIT
;
1472 zfcp_erp_strategy_check_port(struct zfcp_port
*port
, int result
)
1475 case ZFCP_ERP_SUCCEEDED
:
1476 atomic_set(&port
->erp_counter
, 0);
1477 zfcp_erp_port_unblock(port
);
1479 case ZFCP_ERP_FAILED
:
1480 atomic_inc(&port
->erp_counter
);
1481 if (atomic_read(&port
->erp_counter
) > ZFCP_MAX_ERPS
)
1482 zfcp_erp_port_failed(port
, 22, NULL
);
1484 case ZFCP_ERP_EXIT
:
1489 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED
, &port
->status
)) {
1490 zfcp_erp_port_block(port
, 0); /* for ZFCP_ERP_SUCCEEDED */
1491 result
= ZFCP_ERP_EXIT
;
1498 zfcp_erp_strategy_check_adapter(struct zfcp_adapter
*adapter
, int result
)
1501 case ZFCP_ERP_SUCCEEDED
:
1502 atomic_set(&adapter
->erp_counter
, 0);
1503 zfcp_erp_adapter_unblock(adapter
);
1505 case ZFCP_ERP_FAILED
:
1506 atomic_inc(&adapter
->erp_counter
);
1507 if (atomic_read(&adapter
->erp_counter
) > ZFCP_MAX_ERPS
)
1508 zfcp_erp_adapter_failed(adapter
, 23, NULL
);
1510 case ZFCP_ERP_EXIT
:
1515 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED
, &adapter
->status
)) {
1516 zfcp_erp_adapter_block(adapter
, 0); /* for ZFCP_ERP_SUCCEEDED */
1517 result
= ZFCP_ERP_EXIT
;
1523 struct zfcp_erp_add_work
{
1524 struct zfcp_unit
*unit
;
1525 struct work_struct work
;
1529 * zfcp_erp_scsi_scan
1530 * @data: pointer to a struct zfcp_erp_add_work
1532 * Registers a logical unit with the SCSI stack.
1534 static void zfcp_erp_scsi_scan(struct work_struct
*work
)
1536 struct zfcp_erp_add_work
*p
=
1537 container_of(work
, struct zfcp_erp_add_work
, work
);
1538 struct zfcp_unit
*unit
= p
->unit
;
1539 struct fc_rport
*rport
= unit
->port
->rport
;
1540 scsi_scan_target(&rport
->dev
, 0, rport
->scsi_target_id
,
1542 atomic_clear_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING
, &unit
->status
);
1543 zfcp_unit_put(unit
);
1548 * zfcp_erp_schedule_work
1549 * @unit: pointer to unit which should be registered with SCSI stack
1551 * Schedules work which registers a unit with the SCSI stack
1554 zfcp_erp_schedule_work(struct zfcp_unit
*unit
)
1556 struct zfcp_erp_add_work
*p
;
1558 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
1560 ZFCP_LOG_NORMAL("error: Out of resources. Could not register "
1561 "the FCP-LUN 0x%Lx connected to "
1562 "the port with WWPN 0x%Lx connected to "
1563 "the adapter %s with the SCSI stack.\n",
1566 zfcp_get_busid_by_unit(unit
));
1570 zfcp_unit_get(unit
);
1571 atomic_set_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING
, &unit
->status
);
1572 INIT_WORK(&p
->work
, zfcp_erp_scsi_scan
);
1574 schedule_work(&p
->work
);
1580 * purpose: remaining things in good cases,
1581 * escalation in bad cases
1586 zfcp_erp_strategy_followup_actions(int action
,
1587 struct zfcp_adapter
*adapter
,
1588 struct zfcp_port
*port
,
1589 struct zfcp_unit
*unit
, int status
)
1591 /* initiate follow-up actions depending on success of finished action */
1594 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
1595 if (status
== ZFCP_ERP_SUCCEEDED
)
1596 zfcp_erp_port_reopen_all_internal(adapter
, 0, 70, NULL
);
1598 zfcp_erp_adapter_reopen_internal(adapter
, 0, 71, NULL
);
1601 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
1602 if (status
== ZFCP_ERP_SUCCEEDED
)
1603 zfcp_erp_port_reopen_internal(port
, 0, 72, NULL
);
1605 zfcp_erp_adapter_reopen_internal(adapter
, 0, 73, NULL
);
1608 case ZFCP_ERP_ACTION_REOPEN_PORT
:
1609 if (status
== ZFCP_ERP_SUCCEEDED
)
1610 zfcp_erp_unit_reopen_all_internal(port
, 0, 74, NULL
);
1612 zfcp_erp_port_forced_reopen_internal(port
, 0, 75, NULL
);
1615 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
1616 /* Nothing to do if status == ZFCP_ERP_SUCCEEDED */
1617 if (status
!= ZFCP_ERP_SUCCEEDED
)
1618 zfcp_erp_port_reopen_internal(unit
->port
, 0, 76, NULL
);
1626 zfcp_erp_strategy_check_queues(struct zfcp_adapter
*adapter
)
1628 unsigned long flags
;
1630 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
1631 read_lock(&adapter
->erp_lock
);
1632 if (list_empty(&adapter
->erp_ready_head
) &&
1633 list_empty(&adapter
->erp_running_head
)) {
1634 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING
,
1636 wake_up(&adapter
->erp_done_wqh
);
1638 read_unlock(&adapter
->erp_lock
);
1639 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
1645 * zfcp_erp_wait - wait for completion of error recovery on an adapter
1646 * @adapter: adapter for which to wait for completion of its error recovery
1650 zfcp_erp_wait(struct zfcp_adapter
*adapter
)
1654 wait_event(adapter
->erp_done_wqh
,
1655 !atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING
,
1661 void zfcp_erp_modify_adapter_status(struct zfcp_adapter
*adapter
, u8 id
,
1662 void *ref
, u32 mask
, int set_or_clear
)
1664 struct zfcp_port
*port
;
1665 u32 changed
, common_mask
= mask
& ZFCP_COMMON_FLAGS
;
1667 if (set_or_clear
== ZFCP_SET
) {
1668 changed
= atomic_test_and_set_mask(mask
, &adapter
->status
);
1670 changed
= atomic_test_and_clear_mask(mask
, &adapter
->status
);
1671 if (mask
& ZFCP_STATUS_COMMON_ERP_FAILED
)
1672 atomic_set(&adapter
->erp_counter
, 0);
1675 zfcp_rec_dbf_event_adapter(id
, ref
, adapter
);
1677 /* Deal with all underlying devices, only pass common_mask */
1679 list_for_each_entry(port
, &adapter
->port_list_head
, list
)
1680 zfcp_erp_modify_port_status(port
, id
, ref
, common_mask
,
1685 * function: zfcp_erp_modify_port_status
1687 * purpose: sets the port and all underlying devices to ERP_FAILED
1690 void zfcp_erp_modify_port_status(struct zfcp_port
*port
, u8 id
, void *ref
,
1691 u32 mask
, int set_or_clear
)
1693 struct zfcp_unit
*unit
;
1694 u32 changed
, common_mask
= mask
& ZFCP_COMMON_FLAGS
;
1696 if (set_or_clear
== ZFCP_SET
) {
1697 changed
= atomic_test_and_set_mask(mask
, &port
->status
);
1699 changed
= atomic_test_and_clear_mask(mask
, &port
->status
);
1700 if (mask
& ZFCP_STATUS_COMMON_ERP_FAILED
)
1701 atomic_set(&port
->erp_counter
, 0);
1704 zfcp_rec_dbf_event_port(id
, ref
, port
);
1706 /* Modify status of all underlying devices, only pass common mask */
1708 list_for_each_entry(unit
, &port
->unit_list_head
, list
)
1709 zfcp_erp_modify_unit_status(unit
, id
, ref
, common_mask
,
1714 * function: zfcp_erp_modify_unit_status
1716 * purpose: sets the unit to ERP_FAILED
1719 void zfcp_erp_modify_unit_status(struct zfcp_unit
*unit
, u8 id
, void *ref
,
1720 u32 mask
, int set_or_clear
)
1724 if (set_or_clear
== ZFCP_SET
) {
1725 changed
= atomic_test_and_set_mask(mask
, &unit
->status
);
1727 changed
= atomic_test_and_clear_mask(mask
, &unit
->status
);
1728 if (mask
& ZFCP_STATUS_COMMON_ERP_FAILED
) {
1729 atomic_set(&unit
->erp_counter
, 0);
1733 zfcp_rec_dbf_event_unit(id
, ref
, unit
);
1739 * purpose: Wrappper for zfcp_erp_port_reopen_all_internal
1740 * used to ensure the correct locking
1742 * returns: 0 - initiated action successfully
1743 * <0 - failed to initiate action
1745 int zfcp_erp_port_reopen_all(struct zfcp_adapter
*adapter
, int clear_mask
,
1749 unsigned long flags
;
1751 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
1752 write_lock(&adapter
->erp_lock
);
1753 retval
= zfcp_erp_port_reopen_all_internal(adapter
, clear_mask
, id
,
1755 write_unlock(&adapter
->erp_lock
);
1756 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
1761 static int zfcp_erp_port_reopen_all_internal(struct zfcp_adapter
*adapter
,
1762 int clear_mask
, u8 id
, void *ref
)
1765 struct zfcp_port
*port
;
1767 list_for_each_entry(port
, &adapter
->port_list_head
, list
)
1768 if (!atomic_test_mask(ZFCP_STATUS_PORT_WKA
, &port
->status
))
1769 zfcp_erp_port_reopen_internal(port
, clear_mask
, id
,
1782 static int zfcp_erp_unit_reopen_all_internal(struct zfcp_port
*port
,
1783 int clear_mask
, u8 id
, void *ref
)
1786 struct zfcp_unit
*unit
;
1788 list_for_each_entry(unit
, &port
->unit_list_head
, list
)
1789 zfcp_erp_unit_reopen_internal(unit
, clear_mask
, id
, ref
);
1797 * purpose: this routine executes the 'Reopen Adapter' action
1798 * (the entire action is processed synchronously, since
1799 * there are no actions which might be run concurrently
1802 * returns: ZFCP_ERP_SUCCEEDED - action finished successfully
1803 * ZFCP_ERP_FAILED - action finished unsuccessfully
1806 zfcp_erp_adapter_strategy(struct zfcp_erp_action
*erp_action
)
1809 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
1811 retval
= zfcp_erp_adapter_strategy_close(erp_action
);
1812 if (erp_action
->status
& ZFCP_STATUS_ERP_CLOSE_ONLY
)
1813 retval
= ZFCP_ERP_EXIT
;
1815 retval
= zfcp_erp_adapter_strategy_open(erp_action
);
1817 if (retval
== ZFCP_ERP_FAILED
) {
1818 ZFCP_LOG_INFO("Waiting to allow the adapter %s "
1819 "to recover itself\n",
1820 zfcp_get_busid_by_adapter(adapter
));
1821 ssleep(ZFCP_TYPE2_RECOVERY_TIME
);
1832 * returns: ZFCP_ERP_SUCCEEDED - action finished successfully
1833 * ZFCP_ERP_FAILED - action finished unsuccessfully
1836 zfcp_erp_adapter_strategy_close(struct zfcp_erp_action
*erp_action
)
1840 atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING
,
1841 &erp_action
->adapter
->status
);
1842 retval
= zfcp_erp_adapter_strategy_generic(erp_action
, 1);
1843 atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING
,
1844 &erp_action
->adapter
->status
);
1854 * returns: ZFCP_ERP_SUCCEEDED - action finished successfully
1855 * ZFCP_ERP_FAILED - action finished unsuccessfully
1858 zfcp_erp_adapter_strategy_open(struct zfcp_erp_action
*erp_action
)
1862 atomic_set_mask(ZFCP_STATUS_COMMON_OPENING
,
1863 &erp_action
->adapter
->status
);
1864 retval
= zfcp_erp_adapter_strategy_generic(erp_action
, 0);
1865 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING
,
1866 &erp_action
->adapter
->status
);
1872 * function: zfcp_register_adapter
1874 * purpose: allocate the irq associated with this devno and register
1875 * the FSF adapter with the SCSI stack
1880 zfcp_erp_adapter_strategy_generic(struct zfcp_erp_action
*erp_action
, int close
)
1882 int retval
= ZFCP_ERP_SUCCEEDED
;
1887 retval
= zfcp_erp_adapter_strategy_open_qdio(erp_action
);
1888 if (retval
!= ZFCP_ERP_SUCCEEDED
)
1891 retval
= zfcp_erp_adapter_strategy_open_fsf(erp_action
);
1892 if (retval
!= ZFCP_ERP_SUCCEEDED
)
1893 goto failed_openfcp
;
1895 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN
, &erp_action
->adapter
->status
);
1899 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN
,
1900 &erp_action
->adapter
->status
);
1903 zfcp_close_fsf(erp_action
->adapter
);
1905 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK
|
1906 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
|
1907 ZFCP_STATUS_ADAPTER_XPORT_OK
,
1908 &erp_action
->adapter
->status
);
1914 * function: zfcp_qdio_init
1916 * purpose: setup QDIO operation for specified adapter
1918 * returns: 0 - successful setup
1922 zfcp_erp_adapter_strategy_open_qdio(struct zfcp_erp_action
*erp_action
)
1926 volatile struct qdio_buffer_element
*sbale
;
1927 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
1929 if (atomic_test_mask(ZFCP_STATUS_ADAPTER_QDIOUP
, &adapter
->status
)) {
1930 ZFCP_LOG_NORMAL("bug: second attempt to set up QDIO on "
1932 zfcp_get_busid_by_adapter(adapter
));
1936 if (qdio_establish(&adapter
->qdio_init_data
) != 0) {
1937 ZFCP_LOG_INFO("error: establishment of QDIO queues failed "
1939 zfcp_get_busid_by_adapter(adapter
));
1940 goto failed_qdio_establish
;
1943 if (qdio_activate(adapter
->ccw_device
, 0) != 0) {
1944 ZFCP_LOG_INFO("error: activation of QDIO queues failed "
1946 zfcp_get_busid_by_adapter(adapter
));
1947 goto failed_qdio_activate
;
1951 * put buffers into response queue,
1953 for (i
= 0; i
< QDIO_MAX_BUFFERS_PER_Q
; i
++) {
1954 sbale
= &(adapter
->response_queue
.buffer
[i
]->element
[0]);
1956 sbale
->flags
= SBAL_FLAGS_LAST_ENTRY
;
1960 ZFCP_LOG_TRACE("calling do_QDIO on adapter %s (flags=0x%x, "
1961 "queue_no=%i, index_in_queue=%i, count=%i)\n",
1962 zfcp_get_busid_by_adapter(adapter
),
1963 QDIO_FLAG_SYNC_INPUT
, 0, 0, QDIO_MAX_BUFFERS_PER_Q
);
1965 retval
= do_QDIO(adapter
->ccw_device
,
1966 QDIO_FLAG_SYNC_INPUT
,
1967 0, 0, QDIO_MAX_BUFFERS_PER_Q
, NULL
);
1970 ZFCP_LOG_NORMAL("bug: setup of QDIO failed (retval=%d)\n",
1972 goto failed_do_qdio
;
1974 adapter
->response_queue
.free_index
= 0;
1975 atomic_set(&adapter
->response_queue
.free_count
, 0);
1976 ZFCP_LOG_DEBUG("%i buffers successfully enqueued to "
1977 "response queue\n", QDIO_MAX_BUFFERS_PER_Q
);
1979 /* set index of first avalable SBALS / number of available SBALS */
1980 adapter
->request_queue
.free_index
= 0;
1981 atomic_set(&adapter
->request_queue
.free_count
, QDIO_MAX_BUFFERS_PER_Q
);
1982 adapter
->request_queue
.distance_from_int
= 0;
1984 /* initialize waitqueue used to wait for free SBALs in requests queue */
1985 init_waitqueue_head(&adapter
->request_wq
);
1987 /* ok, we did it - skip all cleanups for different failures */
1988 atomic_set_mask(ZFCP_STATUS_ADAPTER_QDIOUP
, &adapter
->status
);
1989 retval
= ZFCP_ERP_SUCCEEDED
;
1995 failed_qdio_activate
:
1996 while (qdio_shutdown(adapter
->ccw_device
,
1997 QDIO_FLAG_CLEANUP_USING_CLEAR
) == -EINPROGRESS
)
2000 failed_qdio_establish
:
2002 retval
= ZFCP_ERP_FAILED
;
2010 zfcp_erp_adapter_strategy_open_fsf(struct zfcp_erp_action
*erp_action
)
2014 retval
= zfcp_erp_adapter_strategy_open_fsf_xconfig(erp_action
);
2015 if (retval
== ZFCP_ERP_FAILED
)
2016 return ZFCP_ERP_FAILED
;
2018 retval
= zfcp_erp_adapter_strategy_open_fsf_xport(erp_action
);
2019 if (retval
== ZFCP_ERP_FAILED
)
2020 return ZFCP_ERP_FAILED
;
2022 return zfcp_erp_adapter_strategy_open_fsf_statusread(erp_action
);
2026 zfcp_erp_adapter_strategy_open_fsf_xconfig(struct zfcp_erp_action
*erp_action
)
2028 int retval
= ZFCP_ERP_SUCCEEDED
;
2030 int sleep
= ZFCP_EXCHANGE_CONFIG_DATA_FIRST_SLEEP
;
2031 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
2033 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK
, &adapter
->status
);
2035 for (retries
= ZFCP_EXCHANGE_CONFIG_DATA_RETRIES
; retries
; retries
--) {
2036 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT
,
2038 ZFCP_LOG_DEBUG("Doing exchange config data\n");
2039 write_lock_irq(&adapter
->erp_lock
);
2040 zfcp_erp_action_to_running(erp_action
);
2041 write_unlock_irq(&adapter
->erp_lock
);
2042 if (zfcp_fsf_exchange_config_data(erp_action
)) {
2043 retval
= ZFCP_ERP_FAILED
;
2044 ZFCP_LOG_INFO("error: initiation of exchange of "
2045 "configuration data failed for "
2047 zfcp_get_busid_by_adapter(adapter
));
2050 ZFCP_LOG_DEBUG("Xchange underway\n");
2054 * Both the normal completion handler as well as the timeout
2055 * handler will do an 'up' when the 'exchange config data'
2056 * request completes or times out. Thus, the signal to go on
2057 * won't be lost utilizing this semaphore.
2058 * Furthermore, this 'adapter_reopen' action is
2059 * guaranteed to be the only action being there (highest action
2060 * which prevents other actions from being created).
2061 * Resulting from that, the wake signal recognized here
2062 * _must_ be the one belonging to the 'exchange config
2065 zfcp_rec_dbf_event_thread(6, adapter
, 1);
2066 down(&adapter
->erp_ready_sem
);
2067 zfcp_rec_dbf_event_thread(7, adapter
, 1);
2068 if (erp_action
->status
& ZFCP_STATUS_ERP_TIMEDOUT
) {
2069 ZFCP_LOG_INFO("error: exchange of configuration data "
2070 "for adapter %s timed out\n",
2071 zfcp_get_busid_by_adapter(adapter
));
2075 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT
,
2079 ZFCP_LOG_DEBUG("host connection still initialising... "
2080 "waiting and retrying...\n");
2081 /* sleep a little bit before retry */
2086 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT
,
2089 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK
,
2090 &adapter
->status
)) {
2091 ZFCP_LOG_INFO("error: exchange of configuration data for "
2092 "adapter %s failed\n",
2093 zfcp_get_busid_by_adapter(adapter
));
2094 retval
= ZFCP_ERP_FAILED
;
2101 zfcp_erp_adapter_strategy_open_fsf_xport(struct zfcp_erp_action
*erp_action
)
2104 struct zfcp_adapter
*adapter
;
2106 adapter
= erp_action
->adapter
;
2107 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XPORT_OK
, &adapter
->status
);
2109 write_lock_irq(&adapter
->erp_lock
);
2110 zfcp_erp_action_to_running(erp_action
);
2111 write_unlock_irq(&adapter
->erp_lock
);
2113 ret
= zfcp_fsf_exchange_port_data(erp_action
);
2114 if (ret
== -EOPNOTSUPP
) {
2115 return ZFCP_ERP_SUCCEEDED
;
2117 return ZFCP_ERP_FAILED
;
2120 ret
= ZFCP_ERP_SUCCEEDED
;
2121 zfcp_rec_dbf_event_thread(8, adapter
, 1);
2122 down(&adapter
->erp_ready_sem
);
2123 zfcp_rec_dbf_event_thread(9, adapter
, 1);
2124 if (erp_action
->status
& ZFCP_STATUS_ERP_TIMEDOUT
) {
2125 ZFCP_LOG_INFO("error: exchange port data timed out (adapter "
2126 "%s)\n", zfcp_get_busid_by_adapter(adapter
));
2127 ret
= ZFCP_ERP_FAILED
;
2130 /* don't treat as error for the sake of compatibility */
2131 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_XPORT_OK
, &adapter
->status
))
2132 ZFCP_LOG_INFO("warning: exchange port data failed (adapter "
2133 "%s\n", zfcp_get_busid_by_adapter(adapter
));
2139 zfcp_erp_adapter_strategy_open_fsf_statusread(struct zfcp_erp_action
2142 int retval
= ZFCP_ERP_SUCCEEDED
;
2144 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
2147 adapter
->status_read_failed
= 0;
2148 for (i
= 0; i
< ZFCP_STATUS_READS_RECOM
; i
++) {
2149 temp_ret
= zfcp_fsf_status_read(adapter
, ZFCP_WAIT_FOR_SBAL
);
2151 ZFCP_LOG_INFO("error: set-up of unsolicited status "
2152 "notification failed on adapter %s\n",
2153 zfcp_get_busid_by_adapter(adapter
));
2154 retval
= ZFCP_ERP_FAILED
;
2166 * purpose: this routine executes the 'Reopen Physical Port' action
2168 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2169 * ZFCP_ERP_SUCCEEDED - action finished successfully
2170 * ZFCP_ERP_FAILED - action finished unsuccessfully
2173 zfcp_erp_port_forced_strategy(struct zfcp_erp_action
*erp_action
)
2175 int retval
= ZFCP_ERP_FAILED
;
2176 struct zfcp_port
*port
= erp_action
->port
;
2178 switch (erp_action
->step
) {
2182 * the ULP spec. begs for waiting for oustanding commands
2184 case ZFCP_ERP_STEP_UNINITIALIZED
:
2185 zfcp_erp_port_strategy_clearstati(port
);
2187 * it would be sufficient to test only the normal open flag
2188 * since the phys. open flag cannot be set if the normal
2189 * open flag is unset - however, this is for readabilty ...
2191 if (atomic_test_mask((ZFCP_STATUS_PORT_PHYS_OPEN
|
2192 ZFCP_STATUS_COMMON_OPEN
),
2194 ZFCP_LOG_DEBUG("port 0x%016Lx is open -> trying "
2195 "close physical\n", port
->wwpn
);
2197 zfcp_erp_port_forced_strategy_close(erp_action
);
2199 retval
= ZFCP_ERP_FAILED
;
2202 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING
:
2203 if (atomic_test_mask(ZFCP_STATUS_PORT_PHYS_OPEN
,
2205 ZFCP_LOG_DEBUG("close physical failed for port "
2206 "0x%016Lx\n", port
->wwpn
);
2207 retval
= ZFCP_ERP_FAILED
;
2209 retval
= ZFCP_ERP_SUCCEEDED
;
2219 * purpose: this routine executes the 'Reopen Port' action
2221 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2222 * ZFCP_ERP_SUCCEEDED - action finished successfully
2223 * ZFCP_ERP_FAILED - action finished unsuccessfully
2226 zfcp_erp_port_strategy(struct zfcp_erp_action
*erp_action
)
2228 int retval
= ZFCP_ERP_FAILED
;
2229 struct zfcp_port
*port
= erp_action
->port
;
2231 switch (erp_action
->step
) {
2235 * the ULP spec. begs for waiting for oustanding commands
2237 case ZFCP_ERP_STEP_UNINITIALIZED
:
2238 zfcp_erp_port_strategy_clearstati(port
);
2239 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN
, &port
->status
)) {
2240 ZFCP_LOG_DEBUG("port 0x%016Lx is open -> trying "
2241 "close\n", port
->wwpn
);
2242 retval
= zfcp_erp_port_strategy_close(erp_action
);
2244 } /* else it's already closed, open it */
2247 case ZFCP_ERP_STEP_PORT_CLOSING
:
2248 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN
, &port
->status
)) {
2249 ZFCP_LOG_DEBUG("close failed for port 0x%016Lx\n",
2251 retval
= ZFCP_ERP_FAILED
;
2253 } /* else it's closed now, open it */
2256 if (erp_action
->status
& ZFCP_STATUS_ERP_CLOSE_ONLY
)
2257 retval
= ZFCP_ERP_EXIT
;
2259 retval
= zfcp_erp_port_strategy_open(erp_action
);
2266 zfcp_erp_port_strategy_open(struct zfcp_erp_action
*erp_action
)
2270 if (atomic_test_mask(ZFCP_STATUS_PORT_WKA
,
2271 &erp_action
->port
->status
))
2272 retval
= zfcp_erp_port_strategy_open_nameserver(erp_action
);
2274 retval
= zfcp_erp_port_strategy_open_common(erp_action
);
2280 zfcp_erp_port_strategy_open_common(struct zfcp_erp_action
*erp_action
)
2283 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
2284 struct zfcp_port
*port
= erp_action
->port
;
2286 switch (erp_action
->step
) {
2288 case ZFCP_ERP_STEP_UNINITIALIZED
:
2289 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING
:
2290 case ZFCP_ERP_STEP_PORT_CLOSING
:
2291 if (fc_host_port_type(adapter
->scsi_host
) == FC_PORTTYPE_PTP
) {
2292 if (port
->wwpn
!= adapter
->peer_wwpn
) {
2293 ZFCP_LOG_NORMAL("Failed to open port 0x%016Lx "
2294 "on adapter %s.\nPeer WWPN "
2295 "0x%016Lx does not match\n",
2297 zfcp_get_busid_by_adapter(adapter
),
2298 adapter
->peer_wwpn
);
2299 zfcp_erp_port_failed(port
, 25, NULL
);
2300 retval
= ZFCP_ERP_FAILED
;
2303 port
->d_id
= adapter
->peer_d_id
;
2304 atomic_set_mask(ZFCP_STATUS_PORT_DID_DID
, &port
->status
);
2305 retval
= zfcp_erp_port_strategy_open_port(erp_action
);
2308 if (!(adapter
->nameserver_port
)) {
2309 retval
= zfcp_nameserver_enqueue(adapter
);
2311 ZFCP_LOG_NORMAL("error: nameserver port "
2312 "unavailable for adapter %s\n",
2313 zfcp_get_busid_by_adapter(adapter
));
2314 retval
= ZFCP_ERP_FAILED
;
2318 if (!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED
,
2319 &adapter
->nameserver_port
->status
)) {
2320 ZFCP_LOG_DEBUG("nameserver port is not open -> open "
2321 "nameserver port\n");
2322 /* nameserver port may live again */
2323 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING
,
2324 &adapter
->nameserver_port
->status
);
2325 if (zfcp_erp_port_reopen(adapter
->nameserver_port
, 0,
2326 77, erp_action
) >= 0) {
2328 ZFCP_ERP_STEP_NAMESERVER_OPEN
;
2329 retval
= ZFCP_ERP_CONTINUES
;
2331 retval
= ZFCP_ERP_FAILED
;
2334 /* else nameserver port is already open, fall through */
2335 case ZFCP_ERP_STEP_NAMESERVER_OPEN
:
2336 if (!atomic_test_mask(ZFCP_STATUS_COMMON_OPEN
,
2337 &adapter
->nameserver_port
->status
)) {
2338 ZFCP_LOG_DEBUG("open failed for nameserver port\n");
2339 retval
= ZFCP_ERP_FAILED
;
2341 ZFCP_LOG_DEBUG("nameserver port is open -> "
2342 "nameserver look-up for port 0x%016Lx\n",
2344 retval
= zfcp_erp_port_strategy_open_common_lookup
2349 case ZFCP_ERP_STEP_NAMESERVER_LOOKUP
:
2350 if (!atomic_test_mask(ZFCP_STATUS_PORT_DID_DID
, &port
->status
)) {
2351 if (atomic_test_mask
2352 (ZFCP_STATUS_PORT_INVALID_WWPN
, &port
->status
)) {
2353 ZFCP_LOG_DEBUG("nameserver look-up failed "
2354 "for port 0x%016Lx "
2355 "(misconfigured WWPN?)\n",
2357 zfcp_erp_port_failed(port
, 26, NULL
);
2358 retval
= ZFCP_ERP_EXIT
;
2360 ZFCP_LOG_DEBUG("nameserver look-up failed for "
2361 "port 0x%016Lx\n", port
->wwpn
);
2362 retval
= ZFCP_ERP_FAILED
;
2365 ZFCP_LOG_DEBUG("port 0x%016Lx has d_id=0x%06x -> "
2366 "trying open\n", port
->wwpn
, port
->d_id
);
2367 retval
= zfcp_erp_port_strategy_open_port(erp_action
);
2371 case ZFCP_ERP_STEP_PORT_OPENING
:
2372 /* D_ID might have changed during open */
2373 if (atomic_test_mask((ZFCP_STATUS_COMMON_OPEN
|
2374 ZFCP_STATUS_PORT_DID_DID
),
2376 ZFCP_LOG_DEBUG("port 0x%016Lx is open\n", port
->wwpn
);
2377 retval
= ZFCP_ERP_SUCCEEDED
;
2379 ZFCP_LOG_DEBUG("open failed for port 0x%016Lx\n",
2381 retval
= ZFCP_ERP_FAILED
;
2386 ZFCP_LOG_NORMAL("bug: unknown erp step 0x%08x\n",
2388 retval
= ZFCP_ERP_FAILED
;
2395 zfcp_erp_port_strategy_open_nameserver(struct zfcp_erp_action
*erp_action
)
2398 struct zfcp_port
*port
= erp_action
->port
;
2400 switch (erp_action
->step
) {
2402 case ZFCP_ERP_STEP_UNINITIALIZED
:
2403 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING
:
2404 case ZFCP_ERP_STEP_PORT_CLOSING
:
2405 ZFCP_LOG_DEBUG("port 0x%016Lx has d_id=0x%06x -> trying open\n",
2406 port
->wwpn
, port
->d_id
);
2407 retval
= zfcp_erp_port_strategy_open_port(erp_action
);
2410 case ZFCP_ERP_STEP_PORT_OPENING
:
2411 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN
, &port
->status
)) {
2412 ZFCP_LOG_DEBUG("WKA port is open\n");
2413 retval
= ZFCP_ERP_SUCCEEDED
;
2415 ZFCP_LOG_DEBUG("open failed for WKA port\n");
2416 retval
= ZFCP_ERP_FAILED
;
2418 /* this is needed anyway (dont care for retval of wakeup) */
2419 ZFCP_LOG_DEBUG("continue other open port operations\n");
2420 zfcp_erp_port_strategy_open_nameserver_wakeup(erp_action
);
2424 ZFCP_LOG_NORMAL("bug: unknown erp step 0x%08x\n",
2426 retval
= ZFCP_ERP_FAILED
;
2435 * purpose: makes the erp thread continue with reopen (physical) port
2436 * actions which have been paused until the name server port
2437 * is opened (or failed)
2439 * returns: 0 (a kind of void retval, its not used)
2442 zfcp_erp_port_strategy_open_nameserver_wakeup(struct zfcp_erp_action
2446 unsigned long flags
;
2447 struct zfcp_adapter
*adapter
= ns_erp_action
->adapter
;
2448 struct zfcp_erp_action
*erp_action
, *tmp
;
2450 read_lock_irqsave(&adapter
->erp_lock
, flags
);
2451 list_for_each_entry_safe(erp_action
, tmp
, &adapter
->erp_running_head
,
2453 if (erp_action
->step
== ZFCP_ERP_STEP_NAMESERVER_OPEN
) {
2454 if (atomic_test_mask(
2455 ZFCP_STATUS_COMMON_ERP_FAILED
,
2456 &adapter
->nameserver_port
->status
))
2457 zfcp_erp_port_failed(erp_action
->port
, 27,
2459 zfcp_erp_action_ready(erp_action
);
2462 read_unlock_irqrestore(&adapter
->erp_lock
, flags
);
2472 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2473 * ZFCP_ERP_FAILED - action finished unsuccessfully
2476 zfcp_erp_port_forced_strategy_close(struct zfcp_erp_action
*erp_action
)
2480 retval
= zfcp_fsf_close_physical_port(erp_action
);
2481 if (retval
== -ENOMEM
) {
2482 retval
= ZFCP_ERP_NOMEM
;
2485 erp_action
->step
= ZFCP_ERP_STEP_PHYS_PORT_CLOSING
;
2487 /* could not send 'open', fail */
2488 retval
= ZFCP_ERP_FAILED
;
2491 retval
= ZFCP_ERP_CONTINUES
;
2497 zfcp_erp_port_strategy_clearstati(struct zfcp_port
*port
)
2501 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING
|
2502 ZFCP_STATUS_COMMON_CLOSING
|
2503 ZFCP_STATUS_COMMON_ACCESS_DENIED
|
2504 ZFCP_STATUS_PORT_DID_DID
|
2505 ZFCP_STATUS_PORT_PHYS_CLOSING
|
2506 ZFCP_STATUS_PORT_INVALID_WWPN
,
2516 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2517 * ZFCP_ERP_FAILED - action finished unsuccessfully
2520 zfcp_erp_port_strategy_close(struct zfcp_erp_action
*erp_action
)
2524 retval
= zfcp_fsf_close_port(erp_action
);
2525 if (retval
== -ENOMEM
) {
2526 retval
= ZFCP_ERP_NOMEM
;
2529 erp_action
->step
= ZFCP_ERP_STEP_PORT_CLOSING
;
2531 /* could not send 'close', fail */
2532 retval
= ZFCP_ERP_FAILED
;
2535 retval
= ZFCP_ERP_CONTINUES
;
2545 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2546 * ZFCP_ERP_FAILED - action finished unsuccessfully
2549 zfcp_erp_port_strategy_open_port(struct zfcp_erp_action
*erp_action
)
2553 retval
= zfcp_fsf_open_port(erp_action
);
2554 if (retval
== -ENOMEM
) {
2555 retval
= ZFCP_ERP_NOMEM
;
2558 erp_action
->step
= ZFCP_ERP_STEP_PORT_OPENING
;
2560 /* could not send 'open', fail */
2561 retval
= ZFCP_ERP_FAILED
;
2564 retval
= ZFCP_ERP_CONTINUES
;
2574 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2575 * ZFCP_ERP_FAILED - action finished unsuccessfully
2578 zfcp_erp_port_strategy_open_common_lookup(struct zfcp_erp_action
*erp_action
)
2582 retval
= zfcp_ns_gid_pn_request(erp_action
);
2583 if (retval
== -ENOMEM
) {
2584 retval
= ZFCP_ERP_NOMEM
;
2587 erp_action
->step
= ZFCP_ERP_STEP_NAMESERVER_LOOKUP
;
2589 /* could not send nameserver request, fail */
2590 retval
= ZFCP_ERP_FAILED
;
2593 retval
= ZFCP_ERP_CONTINUES
;
2601 * purpose: this routine executes the 'Reopen Unit' action
2602 * currently no retries
2604 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2605 * ZFCP_ERP_SUCCEEDED - action finished successfully
2606 * ZFCP_ERP_FAILED - action finished unsuccessfully
2609 zfcp_erp_unit_strategy(struct zfcp_erp_action
*erp_action
)
2611 int retval
= ZFCP_ERP_FAILED
;
2612 struct zfcp_unit
*unit
= erp_action
->unit
;
2614 switch (erp_action
->step
) {
2618 * the ULP spec. begs for waiting for oustanding commands
2620 case ZFCP_ERP_STEP_UNINITIALIZED
:
2621 zfcp_erp_unit_strategy_clearstati(unit
);
2622 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN
, &unit
->status
)) {
2623 ZFCP_LOG_DEBUG("unit 0x%016Lx is open -> "
2624 "trying close\n", unit
->fcp_lun
);
2625 retval
= zfcp_erp_unit_strategy_close(erp_action
);
2628 /* else it's already closed, fall through */
2629 case ZFCP_ERP_STEP_UNIT_CLOSING
:
2630 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN
, &unit
->status
)) {
2631 ZFCP_LOG_DEBUG("close failed for unit 0x%016Lx\n",
2633 retval
= ZFCP_ERP_FAILED
;
2635 if (erp_action
->status
& ZFCP_STATUS_ERP_CLOSE_ONLY
)
2636 retval
= ZFCP_ERP_EXIT
;
2638 ZFCP_LOG_DEBUG("unit 0x%016Lx is not open -> "
2639 "trying open\n", unit
->fcp_lun
);
2641 zfcp_erp_unit_strategy_open(erp_action
);
2646 case ZFCP_ERP_STEP_UNIT_OPENING
:
2647 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN
, &unit
->status
)) {
2648 ZFCP_LOG_DEBUG("unit 0x%016Lx is open\n",
2650 retval
= ZFCP_ERP_SUCCEEDED
;
2652 ZFCP_LOG_DEBUG("open failed for unit 0x%016Lx\n",
2654 retval
= ZFCP_ERP_FAILED
;
2663 zfcp_erp_unit_strategy_clearstati(struct zfcp_unit
*unit
)
2667 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING
|
2668 ZFCP_STATUS_COMMON_CLOSING
|
2669 ZFCP_STATUS_COMMON_ACCESS_DENIED
|
2670 ZFCP_STATUS_UNIT_SHARED
|
2671 ZFCP_STATUS_UNIT_READONLY
,
2682 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2683 * ZFCP_ERP_FAILED - action finished unsuccessfully
2686 zfcp_erp_unit_strategy_close(struct zfcp_erp_action
*erp_action
)
2690 retval
= zfcp_fsf_close_unit(erp_action
);
2691 if (retval
== -ENOMEM
) {
2692 retval
= ZFCP_ERP_NOMEM
;
2695 erp_action
->step
= ZFCP_ERP_STEP_UNIT_CLOSING
;
2697 /* could not send 'close', fail */
2698 retval
= ZFCP_ERP_FAILED
;
2701 retval
= ZFCP_ERP_CONTINUES
;
2712 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2713 * ZFCP_ERP_FAILED - action finished unsuccessfully
2716 zfcp_erp_unit_strategy_open(struct zfcp_erp_action
*erp_action
)
2720 retval
= zfcp_fsf_open_unit(erp_action
);
2721 if (retval
== -ENOMEM
) {
2722 retval
= ZFCP_ERP_NOMEM
;
2725 erp_action
->step
= ZFCP_ERP_STEP_UNIT_OPENING
;
2727 /* could not send 'open', fail */
2728 retval
= ZFCP_ERP_FAILED
;
2731 retval
= ZFCP_ERP_CONTINUES
;
2736 void zfcp_erp_start_timer(struct zfcp_fsf_req
*fsf_req
)
2738 BUG_ON(!fsf_req
->erp_action
);
2739 fsf_req
->timer
.function
= zfcp_erp_timeout_handler
;
2740 fsf_req
->timer
.data
= (unsigned long) fsf_req
->erp_action
;
2741 fsf_req
->timer
.expires
= jiffies
+ ZFCP_ERP_FSFREQ_TIMEOUT
;
2742 add_timer(&fsf_req
->timer
);
2748 * purpose: enqueue the specified error recovery action, if needed
2752 static int zfcp_erp_action_enqueue(int want
, struct zfcp_adapter
*adapter
,
2753 struct zfcp_port
*port
,
2754 struct zfcp_unit
*unit
, u8 id
, void *ref
)
2756 int retval
= 1, need
= want
;
2757 struct zfcp_erp_action
*erp_action
= NULL
;
2761 * We need some rules here which check whether we really need
2762 * this action or whether we should just drop it.
2763 * E.g. if there is a unfinished 'Reopen Port' request then we drop a
2764 * 'Reopen Unit' request for an associated unit since we can't
2765 * satisfy this request now. A 'Reopen Port' action will trigger
2766 * 'Reopen Unit' actions when it completes.
2767 * Thus, there are only actions in the queue which can immediately be
2768 * executed. This makes the processing of the action queue more
2772 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP
,
2776 /* check whether we really need this */
2778 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
2779 if (atomic_test_mask
2780 (ZFCP_STATUS_COMMON_ERP_INUSE
, &unit
->status
)) {
2783 if (!atomic_test_mask
2784 (ZFCP_STATUS_COMMON_RUNNING
, &port
->status
) ||
2786 (ZFCP_STATUS_COMMON_ERP_FAILED
, &port
->status
)) {
2789 if (!atomic_test_mask
2790 (ZFCP_STATUS_COMMON_UNBLOCKED
, &port
->status
))
2791 need
= ZFCP_ERP_ACTION_REOPEN_PORT
;
2792 /* fall through !!! */
2794 case ZFCP_ERP_ACTION_REOPEN_PORT
:
2795 if (atomic_test_mask
2796 (ZFCP_STATUS_COMMON_ERP_INUSE
, &port
->status
)) {
2799 /* fall through !!! */
2801 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
2802 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE
,
2804 if (port
->erp_action
.action
!=
2805 ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
) {
2806 ZFCP_LOG_INFO("dropped erp action %i (port "
2807 "0x%016Lx, action in use: %i)\n",
2809 port
->erp_action
.action
);
2813 if (!atomic_test_mask
2814 (ZFCP_STATUS_COMMON_RUNNING
, &adapter
->status
) ||
2816 (ZFCP_STATUS_COMMON_ERP_FAILED
, &adapter
->status
)) {
2819 if (!atomic_test_mask
2820 (ZFCP_STATUS_COMMON_UNBLOCKED
, &adapter
->status
))
2821 need
= ZFCP_ERP_ACTION_REOPEN_ADAPTER
;
2822 /* fall through !!! */
2824 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
2825 if (atomic_test_mask
2826 (ZFCP_STATUS_COMMON_ERP_INUSE
, &adapter
->status
)) {
2832 ZFCP_LOG_NORMAL("bug: unknown erp action requested "
2833 "on adapter %s (action=%d)\n",
2834 zfcp_get_busid_by_adapter(adapter
), want
);
2838 /* check whether we need something stronger first */
2840 ZFCP_LOG_DEBUG("stronger erp action %d needed before "
2841 "erp action %d on adapter %s\n",
2842 need
, want
, zfcp_get_busid_by_adapter(adapter
));
2845 /* mark adapter to have some error recovery pending */
2846 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING
, &adapter
->status
);
2848 /* setup error recovery action */
2851 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
2852 zfcp_unit_get(unit
);
2853 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE
, &unit
->status
);
2854 erp_action
= &unit
->erp_action
;
2855 if (!atomic_test_mask
2856 (ZFCP_STATUS_COMMON_RUNNING
, &unit
->status
))
2857 status
= ZFCP_STATUS_ERP_CLOSE_ONLY
;
2860 case ZFCP_ERP_ACTION_REOPEN_PORT
:
2861 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
2862 zfcp_port_get(port
);
2863 zfcp_erp_action_dismiss_port(port
);
2864 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE
, &port
->status
);
2865 erp_action
= &port
->erp_action
;
2866 if (!atomic_test_mask
2867 (ZFCP_STATUS_COMMON_RUNNING
, &port
->status
))
2868 status
= ZFCP_STATUS_ERP_CLOSE_ONLY
;
2871 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
2872 zfcp_adapter_get(adapter
);
2873 zfcp_erp_action_dismiss_adapter(adapter
);
2874 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE
, &adapter
->status
);
2875 erp_action
= &adapter
->erp_action
;
2876 if (!atomic_test_mask
2877 (ZFCP_STATUS_COMMON_RUNNING
, &adapter
->status
))
2878 status
= ZFCP_STATUS_ERP_CLOSE_ONLY
;
2882 memset(erp_action
, 0, sizeof (struct zfcp_erp_action
));
2883 erp_action
->adapter
= adapter
;
2884 erp_action
->port
= port
;
2885 erp_action
->unit
= unit
;
2886 erp_action
->action
= need
;
2887 erp_action
->status
= status
;
2889 ++adapter
->erp_total_count
;
2891 /* finally put it into 'ready' queue and kick erp thread */
2892 list_add_tail(&erp_action
->list
, &adapter
->erp_ready_head
);
2893 up(&adapter
->erp_ready_sem
);
2894 zfcp_rec_dbf_event_thread(1, adapter
, 0);
2897 zfcp_rec_dbf_event_trigger(id
, ref
, want
, need
, erp_action
,
2898 adapter
, port
, unit
);
2903 zfcp_erp_action_dequeue(struct zfcp_erp_action
*erp_action
)
2906 struct zfcp_adapter
*adapter
= erp_action
->adapter
;
2908 --adapter
->erp_total_count
;
2909 if (erp_action
->status
& ZFCP_STATUS_ERP_LOWMEM
) {
2910 --adapter
->erp_low_mem_count
;
2911 erp_action
->status
&= ~ZFCP_STATUS_ERP_LOWMEM
;
2914 list_del(&erp_action
->list
);
2915 zfcp_rec_dbf_event_action(144, erp_action
);
2917 switch (erp_action
->action
) {
2918 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
2919 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE
,
2920 &erp_action
->unit
->status
);
2922 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
2923 case ZFCP_ERP_ACTION_REOPEN_PORT
:
2924 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE
,
2925 &erp_action
->port
->status
);
2927 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
2928 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE
,
2929 &erp_action
->adapter
->status
);
2939 * zfcp_erp_action_cleanup
2941 * Register unit with scsi stack if appropriate and fix reference counts.
2942 * Note: Temporary units are not registered with scsi stack.
2945 zfcp_erp_action_cleanup(int action
, struct zfcp_adapter
*adapter
,
2946 struct zfcp_port
*port
, struct zfcp_unit
*unit
,
2950 case ZFCP_ERP_ACTION_REOPEN_UNIT
:
2951 if ((result
== ZFCP_ERP_SUCCEEDED
)
2952 && (!atomic_test_mask(ZFCP_STATUS_UNIT_TEMPORARY
,
2956 atomic_set_mask(ZFCP_STATUS_UNIT_REGISTERED
,
2958 if (atomic_test_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING
,
2959 &unit
->status
) == 0)
2960 zfcp_erp_schedule_work(unit
);
2962 zfcp_unit_put(unit
);
2964 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED
:
2965 case ZFCP_ERP_ACTION_REOPEN_PORT
:
2966 if (atomic_test_mask(ZFCP_STATUS_PORT_NO_WWPN
,
2968 zfcp_port_put(port
);
2972 if ((result
== ZFCP_ERP_SUCCEEDED
)
2974 struct fc_rport_identifiers ids
;
2975 ids
.node_name
= port
->wwnn
;
2976 ids
.port_name
= port
->wwpn
;
2977 ids
.port_id
= port
->d_id
;
2978 ids
.roles
= FC_RPORT_ROLE_FCP_TARGET
;
2980 fc_remote_port_add(adapter
->scsi_host
, 0, &ids
);
2982 ZFCP_LOG_NORMAL("failed registration of rport"
2983 "(adapter %s, wwpn=0x%016Lx)\n",
2984 zfcp_get_busid_by_port(port
),
2987 scsi_target_unblock(&port
->rport
->dev
);
2988 port
->rport
->maxframe_size
= port
->maxframe_size
;
2989 port
->rport
->supported_classes
=
2990 port
->supported_classes
;
2993 if ((result
!= ZFCP_ERP_SUCCEEDED
) && port
->rport
) {
2994 fc_remote_port_delete(port
->rport
);
2997 zfcp_port_put(port
);
2999 case ZFCP_ERP_ACTION_REOPEN_ADAPTER
:
3000 if (result
!= ZFCP_ERP_SUCCEEDED
) {
3001 list_for_each_entry(port
, &adapter
->port_list_head
, list
)
3003 !atomic_test_mask(ZFCP_STATUS_PORT_WKA
,
3005 fc_remote_port_delete(port
->rport
);
3009 zfcp_adapter_put(adapter
);
3017 static void zfcp_erp_action_dismiss_adapter(struct zfcp_adapter
*adapter
)
3019 struct zfcp_port
*port
;
3021 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE
, &adapter
->status
))
3022 zfcp_erp_action_dismiss(&adapter
->erp_action
);
3024 list_for_each_entry(port
, &adapter
->port_list_head
, list
)
3025 zfcp_erp_action_dismiss_port(port
);
3028 static void zfcp_erp_action_dismiss_port(struct zfcp_port
*port
)
3030 struct zfcp_unit
*unit
;
3032 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE
, &port
->status
))
3033 zfcp_erp_action_dismiss(&port
->erp_action
);
3035 list_for_each_entry(unit
, &port
->unit_list_head
, list
)
3036 zfcp_erp_action_dismiss_unit(unit
);
3039 static void zfcp_erp_action_dismiss_unit(struct zfcp_unit
*unit
)
3041 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE
, &unit
->status
))
3042 zfcp_erp_action_dismiss(&unit
->erp_action
);
3045 static void zfcp_erp_action_to_running(struct zfcp_erp_action
*erp_action
)
3047 list_move(&erp_action
->list
, &erp_action
->adapter
->erp_running_head
);
3048 zfcp_rec_dbf_event_action(145, erp_action
);
3051 static void zfcp_erp_action_to_ready(struct zfcp_erp_action
*erp_action
)
3053 list_move(&erp_action
->list
, &erp_action
->adapter
->erp_ready_head
);
3054 zfcp_rec_dbf_event_action(146, erp_action
);
3057 void zfcp_erp_port_boxed(struct zfcp_port
*port
, u8 id
, void *ref
)
3059 unsigned long flags
;
3061 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
3062 zfcp_erp_modify_port_status(port
, id
, ref
,
3063 ZFCP_STATUS_COMMON_ACCESS_BOXED
, ZFCP_SET
);
3064 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
3065 zfcp_erp_port_reopen(port
, ZFCP_STATUS_COMMON_ERP_FAILED
, id
, ref
);
3068 void zfcp_erp_unit_boxed(struct zfcp_unit
*unit
, u8 id
, void *ref
)
3070 zfcp_erp_modify_unit_status(unit
, id
, ref
,
3071 ZFCP_STATUS_COMMON_ACCESS_BOXED
, ZFCP_SET
);
3072 zfcp_erp_unit_reopen(unit
, ZFCP_STATUS_COMMON_ERP_FAILED
, id
, ref
);
3075 void zfcp_erp_port_access_denied(struct zfcp_port
*port
, u8 id
, void *ref
)
3077 unsigned long flags
;
3079 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
3080 zfcp_erp_modify_port_status(port
, id
, ref
,
3081 ZFCP_STATUS_COMMON_ERP_FAILED
|
3082 ZFCP_STATUS_COMMON_ACCESS_DENIED
, ZFCP_SET
);
3083 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
3086 void zfcp_erp_unit_access_denied(struct zfcp_unit
*unit
, u8 id
, void *ref
)
3088 zfcp_erp_modify_unit_status(unit
, id
, ref
,
3089 ZFCP_STATUS_COMMON_ERP_FAILED
|
3090 ZFCP_STATUS_COMMON_ACCESS_DENIED
, ZFCP_SET
);
3093 void zfcp_erp_adapter_access_changed(struct zfcp_adapter
*adapter
, u8 id
,
3096 struct zfcp_port
*port
;
3097 unsigned long flags
;
3099 if (adapter
->connection_features
& FSF_FEATURE_NPIV_MODE
)
3102 read_lock_irqsave(&zfcp_data
.config_lock
, flags
);
3103 if (adapter
->nameserver_port
)
3104 zfcp_erp_port_access_changed(adapter
->nameserver_port
, id
, ref
);
3105 list_for_each_entry(port
, &adapter
->port_list_head
, list
)
3106 if (port
!= adapter
->nameserver_port
)
3107 zfcp_erp_port_access_changed(port
, id
, ref
);
3108 read_unlock_irqrestore(&zfcp_data
.config_lock
, flags
);
3111 void zfcp_erp_port_access_changed(struct zfcp_port
*port
, u8 id
, void *ref
)
3113 struct zfcp_adapter
*adapter
= port
->adapter
;
3114 struct zfcp_unit
*unit
;
3116 if (!atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED
,
3118 !atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_BOXED
,
3120 if (!atomic_test_mask(ZFCP_STATUS_PORT_WKA
, &port
->status
))
3121 list_for_each_entry(unit
, &port
->unit_list_head
, list
)
3122 zfcp_erp_unit_access_changed(unit
, id
, ref
);
3126 ZFCP_LOG_NORMAL("reopen of port 0x%016Lx on adapter %s "
3127 "(due to ACT update)\n",
3128 port
->wwpn
, zfcp_get_busid_by_adapter(adapter
));
3129 if (zfcp_erp_port_reopen(port
, ZFCP_STATUS_COMMON_ERP_FAILED
, id
, ref
))
3130 ZFCP_LOG_NORMAL("failed reopen of port"
3131 "(adapter %s, wwpn=0x%016Lx)\n",
3132 zfcp_get_busid_by_adapter(adapter
), port
->wwpn
);
3135 void zfcp_erp_unit_access_changed(struct zfcp_unit
*unit
, u8 id
, void *ref
)
3137 struct zfcp_adapter
*adapter
= unit
->port
->adapter
;
3139 if (!atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED
,
3141 !atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_BOXED
,
3145 ZFCP_LOG_NORMAL("reopen of unit 0x%016Lx on port 0x%016Lx "
3146 " on adapter %s (due to ACT update)\n",
3147 unit
->fcp_lun
, unit
->port
->wwpn
,
3148 zfcp_get_busid_by_adapter(adapter
));
3149 if (zfcp_erp_unit_reopen(unit
, ZFCP_STATUS_COMMON_ERP_FAILED
, id
, ref
))
3150 ZFCP_LOG_NORMAL("failed reopen of unit (adapter %s, "
3151 "wwpn=0x%016Lx, fcp_lun=0x%016Lx)\n",
3152 zfcp_get_busid_by_adapter(adapter
),
3153 unit
->port
->wwpn
, unit
->fcp_lun
);
3156 #undef ZFCP_LOG_AREA