blob: 4d797e5264d9588ed9ed1187349f658e248d0f89 [file] [log] [blame]
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Error Recovery Procedures (ERP).
Swen Schillig41fa2ad2007-09-07 09:15:31 +02005 *
Christof Schmitt553448f2008-06-10 18:20:58 +02006 * Copyright IBM Corporation 2002, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include "zfcp_ext.h"
10
Martin Peschke9467a9b2008-03-27 14:22:03 +010011static int zfcp_erp_adapter_reopen_internal(struct zfcp_adapter *, int, u8,
Martin Peschke1f6f7122008-04-18 12:51:55 +020012 void *);
Martin Peschke9467a9b2008-03-27 14:22:03 +010013static int zfcp_erp_port_forced_reopen_internal(struct zfcp_port *, int, u8,
Martin Peschke1f6f7122008-04-18 12:51:55 +020014 void *);
15static int zfcp_erp_port_reopen_internal(struct zfcp_port *, int, u8, void *);
16static int zfcp_erp_unit_reopen_internal(struct zfcp_unit *, int, u8, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Martin Peschke9467a9b2008-03-27 14:22:03 +010018static int zfcp_erp_port_reopen_all_internal(struct zfcp_adapter *, int, u8,
Martin Peschke1f6f7122008-04-18 12:51:55 +020019 void *);
20static int zfcp_erp_unit_reopen_all_internal(struct zfcp_port *, int, u8,
21 void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23static void zfcp_erp_adapter_block(struct zfcp_adapter *, int);
24static void zfcp_erp_adapter_unblock(struct zfcp_adapter *);
25static void zfcp_erp_port_block(struct zfcp_port *, int);
26static void zfcp_erp_port_unblock(struct zfcp_port *);
27static void zfcp_erp_unit_block(struct zfcp_unit *, int);
28static void zfcp_erp_unit_unblock(struct zfcp_unit *);
29
30static int zfcp_erp_thread(void *);
31
32static int zfcp_erp_strategy(struct zfcp_erp_action *);
33
34static int zfcp_erp_strategy_do_action(struct zfcp_erp_action *);
35static int zfcp_erp_strategy_memwait(struct zfcp_erp_action *);
36static int zfcp_erp_strategy_check_target(struct zfcp_erp_action *, int);
37static int zfcp_erp_strategy_check_unit(struct zfcp_unit *, int);
38static int zfcp_erp_strategy_check_port(struct zfcp_port *, int);
39static int zfcp_erp_strategy_check_adapter(struct zfcp_adapter *, int);
40static int zfcp_erp_strategy_statechange(int, u32, struct zfcp_adapter *,
41 struct zfcp_port *,
42 struct zfcp_unit *, int);
Heiko Carstens364c8552007-10-12 16:11:35 +020043static int zfcp_erp_strategy_statechange_detected(atomic_t *, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static int zfcp_erp_strategy_followup_actions(int, struct zfcp_adapter *,
45 struct zfcp_port *,
46 struct zfcp_unit *, int);
47static int zfcp_erp_strategy_check_queues(struct zfcp_adapter *);
48static int zfcp_erp_strategy_check_action(struct zfcp_erp_action *, int);
49
50static int zfcp_erp_adapter_strategy(struct zfcp_erp_action *);
51static int zfcp_erp_adapter_strategy_generic(struct zfcp_erp_action *, int);
52static int zfcp_erp_adapter_strategy_close(struct zfcp_erp_action *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static int zfcp_erp_adapter_strategy_open(struct zfcp_erp_action *);
54static int zfcp_erp_adapter_strategy_open_qdio(struct zfcp_erp_action *);
55static int zfcp_erp_adapter_strategy_open_fsf(struct zfcp_erp_action *);
56static int zfcp_erp_adapter_strategy_open_fsf_xconfig(struct zfcp_erp_action *);
Maxim Shchetyninaef4a982005-09-13 21:51:16 +020057static int zfcp_erp_adapter_strategy_open_fsf_xport(struct zfcp_erp_action *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static int zfcp_erp_adapter_strategy_open_fsf_statusread(
59 struct zfcp_erp_action *);
60
61static int zfcp_erp_port_forced_strategy(struct zfcp_erp_action *);
62static int zfcp_erp_port_forced_strategy_close(struct zfcp_erp_action *);
63
64static int zfcp_erp_port_strategy(struct zfcp_erp_action *);
65static int zfcp_erp_port_strategy_clearstati(struct zfcp_port *);
66static int zfcp_erp_port_strategy_close(struct zfcp_erp_action *);
67static int zfcp_erp_port_strategy_open(struct zfcp_erp_action *);
68static int zfcp_erp_port_strategy_open_nameserver(struct zfcp_erp_action *);
69static int zfcp_erp_port_strategy_open_nameserver_wakeup(
70 struct zfcp_erp_action *);
71static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *);
72static int zfcp_erp_port_strategy_open_common_lookup(struct zfcp_erp_action *);
73static int zfcp_erp_port_strategy_open_port(struct zfcp_erp_action *);
74
75static int zfcp_erp_unit_strategy(struct zfcp_erp_action *);
76static int zfcp_erp_unit_strategy_clearstati(struct zfcp_unit *);
77static int zfcp_erp_unit_strategy_close(struct zfcp_erp_action *);
78static int zfcp_erp_unit_strategy_open(struct zfcp_erp_action *);
79
Andreas Herrmann81654282006-09-18 22:30:36 +020080static void zfcp_erp_action_dismiss_adapter(struct zfcp_adapter *);
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +020081static void zfcp_erp_action_dismiss_port(struct zfcp_port *);
82static void zfcp_erp_action_dismiss_unit(struct zfcp_unit *);
83static void zfcp_erp_action_dismiss(struct zfcp_erp_action *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85static int zfcp_erp_action_enqueue(int, struct zfcp_adapter *,
Martin Peschke9467a9b2008-03-27 14:22:03 +010086 struct zfcp_port *, struct zfcp_unit *,
Martin Peschke1f6f7122008-04-18 12:51:55 +020087 u8 id, void *ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static int zfcp_erp_action_dequeue(struct zfcp_erp_action *);
89static void zfcp_erp_action_cleanup(int, struct zfcp_adapter *,
90 struct zfcp_port *, struct zfcp_unit *,
91 int);
92
93static void zfcp_erp_action_ready(struct zfcp_erp_action *);
94static int zfcp_erp_action_exists(struct zfcp_erp_action *);
95
Heiko Carstens364c8552007-10-12 16:11:35 +020096static void zfcp_erp_action_to_ready(struct zfcp_erp_action *);
97static void zfcp_erp_action_to_running(struct zfcp_erp_action *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99static void zfcp_erp_memwait_handler(unsigned long);
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200100
101/**
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200102 * zfcp_close_fsf - stop FSF operations for an adapter
103 *
104 * Dismiss and cleanup all pending fsf_reqs (this wakes up all initiators of
105 * requests waiting for completion; especially this returns SCSI commands
106 * with error state).
107 */
108static void zfcp_close_fsf(struct zfcp_adapter *adapter)
109{
110 /* close queues to ensure that buffers are not accessed by adapter */
Swen Schillig00bab912008-06-10 18:20:57 +0200111 zfcp_qdio_close(adapter);
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200112 zfcp_fsf_req_dismiss_all(adapter);
113 /* reset FSF request sequence number */
114 adapter->fsf_req_seq_no = 0;
115 /* all ports and units are closed */
Martin Peschke1f6f7122008-04-18 12:51:55 +0200116 zfcp_erp_modify_adapter_status(adapter, 24, NULL,
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200117 ZFCP_STATUS_COMMON_OPEN, ZFCP_CLEAR);
118}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/**
121 * zfcp_fsf_request_timeout_handler - called if a request timed out
122 * @data: pointer to adapter for handler function
123 *
124 * This function needs to be called if requests (ELS, Generic Service,
125 * or SCSI commands) exceed a certain time limit. The assumption is
126 * that after the time limit the adapter get stuck. So we trigger a reopen of
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200127 * the adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200129static void zfcp_fsf_request_timeout_handler(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200131 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
Martin Peschke1f6f7122008-04-18 12:51:55 +0200132 zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED, 62,
133 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200136void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req, unsigned long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200138 fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
139 fsf_req->timer.data = (unsigned long) fsf_req->adapter;
Christof Schmitt9e3738f2007-03-28 14:20:40 +0200140 fsf_req->timer.expires = jiffies + timeout;
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200141 add_timer(&fsf_req->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200145 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 *
147 * purpose: called if an adapter failed,
148 * initiates adapter recovery which is done
149 * asynchronously
150 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200151 * returns: 0 - initiated action successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * <0 - failed to initiate action
153 */
Martin Peschke9467a9b2008-03-27 14:22:03 +0100154static int zfcp_erp_adapter_reopen_internal(struct zfcp_adapter *adapter,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200155 int clear_mask, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 int retval;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 zfcp_erp_adapter_block(adapter, clear_mask);
160
161 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &adapter->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* ensure propagation of failed status to new devices */
Martin Peschke1f6f7122008-04-18 12:51:55 +0200163 zfcp_erp_adapter_failed(adapter, 13, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 retval = -EIO;
165 goto out;
166 }
167 retval = zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER,
Martin Peschke9467a9b2008-03-27 14:22:03 +0100168 adapter, NULL, NULL, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 out:
171 return retval;
172}
173
174/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200175 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 *
177 * purpose: Wrappper for zfcp_erp_adapter_reopen_internal
178 * used to ensure the correct locking
179 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200180 * returns: 0 - initiated action successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * <0 - failed to initiate action
182 */
Martin Peschke9467a9b2008-03-27 14:22:03 +0100183int zfcp_erp_adapter_reopen(struct zfcp_adapter *adapter, int clear_mask,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200184 u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 int retval;
187 unsigned long flags;
188
189 read_lock_irqsave(&zfcp_data.config_lock, flags);
190 write_lock(&adapter->erp_lock);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100191 retval = zfcp_erp_adapter_reopen_internal(adapter, clear_mask, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 write_unlock(&adapter->erp_lock);
193 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
194
195 return retval;
196}
197
Martin Peschke9467a9b2008-03-27 14:22:03 +0100198int zfcp_erp_adapter_shutdown(struct zfcp_adapter *adapter, int clear_mask,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200199 u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 int retval;
202
203 retval = zfcp_erp_adapter_reopen(adapter,
204 ZFCP_STATUS_COMMON_RUNNING |
205 ZFCP_STATUS_COMMON_ERP_FAILED |
Martin Peschke9467a9b2008-03-27 14:22:03 +0100206 clear_mask, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 return retval;
209}
210
Martin Peschke9467a9b2008-03-27 14:22:03 +0100211int zfcp_erp_port_shutdown(struct zfcp_port *port, int clear_mask, u8 id,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200212 void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 int retval;
215
216 retval = zfcp_erp_port_reopen(port,
217 ZFCP_STATUS_COMMON_RUNNING |
218 ZFCP_STATUS_COMMON_ERP_FAILED |
Martin Peschke9467a9b2008-03-27 14:22:03 +0100219 clear_mask, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 return retval;
222}
223
Martin Peschke9467a9b2008-03-27 14:22:03 +0100224int zfcp_erp_unit_shutdown(struct zfcp_unit *unit, int clear_mask, u8 id,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200225 void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 int retval;
228
229 retval = zfcp_erp_unit_reopen(unit,
230 ZFCP_STATUS_COMMON_RUNNING |
231 ZFCP_STATUS_COMMON_ERP_FAILED |
Martin Peschke9467a9b2008-03-27 14:22:03 +0100232 clear_mask, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 return retval;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200238 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *
240 * purpose: called if a port failed to be opened normally
241 * initiates Forced Reopen recovery which is done
242 * asynchronously
243 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200244 * returns: 0 - initiated action successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * <0 - failed to initiate action
246 */
Martin Peschke9467a9b2008-03-27 14:22:03 +0100247static int zfcp_erp_port_forced_reopen_internal(struct zfcp_port *port,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200248 int clear_mask, u8 id,
249 void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 zfcp_erp_port_block(port, clear_mask);
254
255 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 retval = -EIO;
257 goto out;
258 }
259
260 retval = zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT_FORCED,
Martin Peschke9467a9b2008-03-27 14:22:03 +0100261 port->adapter, port, NULL, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 out:
264 return retval;
265}
266
267/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200268 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 *
270 * purpose: Wrappper for zfcp_erp_port_forced_reopen_internal
271 * used to ensure the correct locking
272 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200273 * returns: 0 - initiated action successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * <0 - failed to initiate action
275 */
Martin Peschke9467a9b2008-03-27 14:22:03 +0100276int zfcp_erp_port_forced_reopen(struct zfcp_port *port, int clear_mask, u8 id,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200277 void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 int retval;
280 unsigned long flags;
281 struct zfcp_adapter *adapter;
282
283 adapter = port->adapter;
284 read_lock_irqsave(&zfcp_data.config_lock, flags);
285 write_lock(&adapter->erp_lock);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100286 retval = zfcp_erp_port_forced_reopen_internal(port, clear_mask, id,
287 ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 write_unlock(&adapter->erp_lock);
289 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
290
291 return retval;
292}
293
294/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200295 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 *
297 * purpose: called if a port is to be opened
298 * initiates Reopen recovery which is done
299 * asynchronously
300 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200301 * returns: 0 - initiated action successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * <0 - failed to initiate action
303 */
Martin Peschke9467a9b2008-03-27 14:22:03 +0100304static int zfcp_erp_port_reopen_internal(struct zfcp_port *port, int clear_mask,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200305 u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 zfcp_erp_port_block(port, clear_mask);
310
311 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* ensure propagation of failed status to new devices */
Martin Peschke1f6f7122008-04-18 12:51:55 +0200313 zfcp_erp_port_failed(port, 14, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 retval = -EIO;
315 goto out;
316 }
317
318 retval = zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT,
Martin Peschke9467a9b2008-03-27 14:22:03 +0100319 port->adapter, port, NULL, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 out:
322 return retval;
323}
324
325/**
326 * zfcp_erp_port_reopen - initiate reopen of a remote port
327 * @port: port to be reopened
328 * @clear_mask: specifies flags in port status to be cleared
329 * Return: 0 on success, < 0 on error
330 *
331 * This is a wrappper function for zfcp_erp_port_reopen_internal. It ensures
332 * correct locking. An error recovery task is initiated to do the reopen.
333 * To wait for the completion of the reopen zfcp_erp_wait should be used.
334 */
Martin Peschke1f6f7122008-04-18 12:51:55 +0200335int zfcp_erp_port_reopen(struct zfcp_port *port, int clear_mask, u8 id,
336 void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 int retval;
339 unsigned long flags;
340 struct zfcp_adapter *adapter = port->adapter;
341
342 read_lock_irqsave(&zfcp_data.config_lock, flags);
343 write_lock(&adapter->erp_lock);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100344 retval = zfcp_erp_port_reopen_internal(port, clear_mask, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 write_unlock(&adapter->erp_lock);
346 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
347
348 return retval;
349}
350
351/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200352 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 *
354 * purpose: called if a unit is to be opened
355 * initiates Reopen recovery which is done
356 * asynchronously
357 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200358 * returns: 0 - initiated action successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * <0 - failed to initiate action
360 */
Martin Peschke9467a9b2008-03-27 14:22:03 +0100361static int zfcp_erp_unit_reopen_internal(struct zfcp_unit *unit, int clear_mask,
Martin Peschke1f6f7122008-04-18 12:51:55 +0200362 u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 int retval;
365 struct zfcp_adapter *adapter = unit->port->adapter;
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 zfcp_erp_unit_block(unit, clear_mask);
368
369 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &unit->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 retval = -EIO;
371 goto out;
372 }
373
374 retval = zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_UNIT,
Martin Peschke9467a9b2008-03-27 14:22:03 +0100375 adapter, unit->port, unit, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 out:
377 return retval;
378}
379
380/**
381 * zfcp_erp_unit_reopen - initiate reopen of a unit
382 * @unit: unit to be reopened
383 * @clear_mask: specifies flags in unit status to be cleared
384 * Return: 0 on success, < 0 on error
385 *
386 * This is a wrappper for zfcp_erp_unit_reopen_internal. It ensures correct
387 * locking. An error recovery task is initiated to do the reopen.
388 * To wait for the completion of the reopen zfcp_erp_wait should be used.
389 */
Martin Peschke1f6f7122008-04-18 12:51:55 +0200390int zfcp_erp_unit_reopen(struct zfcp_unit *unit, int clear_mask, u8 id,
391 void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 int retval;
394 unsigned long flags;
395 struct zfcp_adapter *adapter;
396 struct zfcp_port *port;
397
398 port = unit->port;
399 adapter = port->adapter;
400
401 read_lock_irqsave(&zfcp_data.config_lock, flags);
402 write_lock(&adapter->erp_lock);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100403 retval = zfcp_erp_unit_reopen_internal(unit, clear_mask, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 write_unlock(&adapter->erp_lock);
405 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
406
407 return retval;
408}
409
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200410/**
411 * zfcp_erp_adapter_block - mark adapter as blocked, block scsi requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 */
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200413static void zfcp_erp_adapter_block(struct zfcp_adapter *adapter, int clear_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Martin Peschke1f6f7122008-04-18 12:51:55 +0200415 zfcp_erp_modify_adapter_status(adapter, 15, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 ZFCP_STATUS_COMMON_UNBLOCKED |
417 clear_mask, ZFCP_CLEAR);
418}
419
Martin Peschke698ec0162008-03-27 14:22:02 +0100420/* FIXME: isn't really atomic */
421/*
422 * returns the mask which has not been set so far, i.e.
423 * 0 if no bit has been changed, !0 if some bit has been changed
424 */
425static int atomic_test_and_set_mask(unsigned long mask, atomic_t *v)
426{
427 int changed_bits = (atomic_read(v) /*XOR*/^ mask) & mask;
428 atomic_set_mask(mask, v);
429 return changed_bits;
430}
431
432/* FIXME: isn't really atomic */
433/*
434 * returns the mask which has not been cleared so far, i.e.
435 * 0 if no bit has been changed, !0 if some bit has been changed
436 */
437static int atomic_test_and_clear_mask(unsigned long mask, atomic_t *v)
438{
439 int changed_bits = atomic_read(v) & mask;
440 atomic_clear_mask(mask, v);
441 return changed_bits;
442}
443
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200444/**
445 * zfcp_erp_adapter_unblock - mark adapter as unblocked, allow scsi requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200447static void zfcp_erp_adapter_unblock(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Martin Peschke698ec0162008-03-27 14:22:02 +0100449 if (atomic_test_and_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
450 &adapter->status))
Martin Peschke1f6f7122008-04-18 12:51:55 +0200451 zfcp_rec_dbf_event_adapter(16, NULL, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200455 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 *
457 * purpose: disable I/O,
458 * return any open requests and clean them up,
459 * aim: no pending and incoming I/O
460 *
461 * returns:
462 */
463static void
464zfcp_erp_port_block(struct zfcp_port *port, int clear_mask)
465{
Martin Peschke1f6f7122008-04-18 12:51:55 +0200466 zfcp_erp_modify_port_status(port, 17, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 ZFCP_STATUS_COMMON_UNBLOCKED | clear_mask,
468 ZFCP_CLEAR);
469}
470
471/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200472 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 *
474 * purpose: enable I/O
475 *
476 * returns:
477 */
478static void
479zfcp_erp_port_unblock(struct zfcp_port *port)
480{
Martin Peschke698ec0162008-03-27 14:22:02 +0100481 if (atomic_test_and_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
482 &port->status))
Martin Peschke1f6f7122008-04-18 12:51:55 +0200483 zfcp_rec_dbf_event_port(18, NULL, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200487 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 *
489 * purpose: disable I/O,
490 * return any open requests and clean them up,
491 * aim: no pending and incoming I/O
492 *
493 * returns:
494 */
495static void
496zfcp_erp_unit_block(struct zfcp_unit *unit, int clear_mask)
497{
Martin Peschke1f6f7122008-04-18 12:51:55 +0200498 zfcp_erp_modify_unit_status(unit, 19, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 ZFCP_STATUS_COMMON_UNBLOCKED | clear_mask,
500 ZFCP_CLEAR);
501}
502
503/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200504 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 *
506 * purpose: enable I/O
507 *
508 * returns:
509 */
510static void
511zfcp_erp_unit_unblock(struct zfcp_unit *unit)
512{
Martin Peschke698ec0162008-03-27 14:22:02 +0100513 if (atomic_test_and_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
514 &unit->status))
Martin Peschke1f6f7122008-04-18 12:51:55 +0200515 zfcp_rec_dbf_event_unit(20, NULL, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518static void
519zfcp_erp_action_ready(struct zfcp_erp_action *erp_action)
520{
521 struct zfcp_adapter *adapter = erp_action->adapter;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 zfcp_erp_action_to_ready(erp_action);
524 up(&adapter->erp_ready_sem);
Christof Schmittaa0fec62008-05-19 12:17:47 +0200525 zfcp_rec_dbf_event_thread(2, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
528/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200529 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 *
531 * purpose:
532 *
533 * returns: <0 erp_action not found in any list
534 * ZFCP_ERP_ACTION_READY erp_action is in ready list
535 * ZFCP_ERP_ACTION_RUNNING erp_action is in running list
536 *
537 * locks: erp_lock must be held
538 */
539static int
540zfcp_erp_action_exists(struct zfcp_erp_action *erp_action)
541{
542 int retval = -EINVAL;
543 struct list_head *entry;
544 struct zfcp_erp_action *entry_erp_action;
545 struct zfcp_adapter *adapter = erp_action->adapter;
546
547 /* search in running list */
548 list_for_each(entry, &adapter->erp_running_head) {
549 entry_erp_action =
550 list_entry(entry, struct zfcp_erp_action, list);
551 if (entry_erp_action == erp_action) {
552 retval = ZFCP_ERP_ACTION_RUNNING;
553 goto out;
554 }
555 }
556 /* search in ready list */
557 list_for_each(entry, &adapter->erp_ready_head) {
558 entry_erp_action =
559 list_entry(entry, struct zfcp_erp_action, list);
560 if (entry_erp_action == erp_action) {
561 retval = ZFCP_ERP_ACTION_READY;
562 goto out;
563 }
564 }
565
566 out:
567 return retval;
568}
569
570/*
571 * purpose: checks current status of action (timed out, dismissed, ...)
572 * and does appropriate preparations (dismiss fsf request, ...)
573 *
574 * locks: called under erp_lock (disabled interrupts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 */
Swen Schilligca880cf2007-02-09 10:00:14 +0100576static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577zfcp_erp_strategy_check_fsfreq(struct zfcp_erp_action *erp_action)
578{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 struct zfcp_adapter *adapter = erp_action->adapter;
580
581 if (erp_action->fsf_req) {
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200582 /* take lock to ensure that request is not deleted meanwhile */
583 spin_lock(&adapter->req_list_lock);
Heiko Carstensd1ad09d2007-12-20 12:30:22 +0100584 if (zfcp_reqlist_find_safe(adapter, erp_action->fsf_req) &&
585 erp_action->fsf_req->erp_action == erp_action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /* fsf_req still exists */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200587 /* dismiss fsf_req of timed out/dismissed erp_action */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (erp_action->status & (ZFCP_STATUS_ERP_DISMISSED |
589 ZFCP_STATUS_ERP_TIMEDOUT)) {
Swen Schilligca880cf2007-02-09 10:00:14 +0100590 erp_action->fsf_req->status |=
591 ZFCP_STATUS_FSFREQ_DISMISSED;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100592 zfcp_rec_dbf_event_action(142, erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Christof Schmitt553448f2008-06-10 18:20:58 +0200594 if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT)
Martin Peschke6f4f3652008-03-27 14:22:04 +0100595 zfcp_rec_dbf_event_action(143, erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /*
597 * If fsf_req is neither dismissed nor completed
598 * then keep it running asynchronously and don't mess
599 * with the association of erp_action and fsf_req.
600 */
Swen Schilligca880cf2007-02-09 10:00:14 +0100601 if (erp_action->fsf_req->status &
602 (ZFCP_STATUS_FSFREQ_COMPLETED |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 ZFCP_STATUS_FSFREQ_DISMISSED)) {
604 /* forget about association between fsf_req
605 and erp_action */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 erp_action->fsf_req = NULL;
607 }
608 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /*
610 * even if this fsf_req has gone, forget about
611 * association between erp_action and fsf_req
612 */
613 erp_action->fsf_req = NULL;
614 }
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200615 spin_unlock(&adapter->req_list_lock);
Martin Peschke507e4962008-03-27 14:22:05 +0100616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200619/**
620 * zfcp_erp_async_handler_nolock - complete erp_action
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 *
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200622 * Used for normal completion, time-out, dismissal and failure after
623 * low memory condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 */
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200625static void zfcp_erp_async_handler_nolock(struct zfcp_erp_action *erp_action,
626 unsigned long set_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (zfcp_erp_action_exists(erp_action) == ZFCP_ERP_ACTION_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 erp_action->status |= set_mask;
630 zfcp_erp_action_ready(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 } else {
632 /* action is ready or gone - nothing to do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200636/**
637 * zfcp_erp_async_handler - wrapper for erp_async_handler_nolock w/ locking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200639void zfcp_erp_async_handler(struct zfcp_erp_action *erp_action,
640 unsigned long set_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 struct zfcp_adapter *adapter = erp_action->adapter;
643 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 write_lock_irqsave(&adapter->erp_lock, flags);
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200646 zfcp_erp_async_handler_nolock(erp_action, set_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 write_unlock_irqrestore(&adapter->erp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650/*
651 * purpose: is called for erp_action which was slept waiting for
652 * memory becoming avaliable,
653 * will trigger that this action will be continued
654 */
655static void
656zfcp_erp_memwait_handler(unsigned long data)
657{
658 struct zfcp_erp_action *erp_action = (struct zfcp_erp_action *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 zfcp_erp_async_handler(erp_action, 0);
661}
662
663/*
664 * purpose: is called if an asynchronous erp step timed out,
665 * action gets an appropriate flag and will be processed
666 * accordingly
667 */
Heiko Carstens364c8552007-10-12 16:11:35 +0200668static void zfcp_erp_timeout_handler(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 struct zfcp_erp_action *erp_action = (struct zfcp_erp_action *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 zfcp_erp_async_handler(erp_action, ZFCP_STATUS_ERP_TIMEDOUT);
673}
674
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200675/**
676 * zfcp_erp_action_dismiss - dismiss an erp_action
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200678 * adapter->erp_lock must be held
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200679 *
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200680 * Dismissal of an erp_action is usually required if an erp_action of
681 * higher priority is generated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 */
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200683static void zfcp_erp_action_dismiss(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Martin Peschked0076f72007-11-15 13:57:08 +0100685 erp_action->status |= ZFCP_STATUS_ERP_DISMISSED;
686 if (zfcp_erp_action_exists(erp_action) == ZFCP_ERP_ACTION_RUNNING)
687 zfcp_erp_action_ready(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690int
691zfcp_erp_thread_setup(struct zfcp_adapter *adapter)
692{
693 int retval = 0;
694
695 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP, &adapter->status);
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 retval = kernel_thread(zfcp_erp_thread, adapter, SIGCHLD);
Christof Schmitt553448f2008-06-10 18:20:58 +0200698 if (retval < 0)
699 dev_err(&adapter->ccw_device->dev,
700 "Creation of ERP thread failed.\n");
701 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 wait_event(adapter->erp_thread_wqh,
703 atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP,
704 &adapter->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706
707 return (retval < 0);
708}
709
710/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200711 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200713 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *
715 * returns:
716 *
717 * context: process (i.e. proc-fs or rmmod/insmod)
718 *
719 * note: The caller of this routine ensures that the specified
720 * adapter has been shut down and that this operation
721 * has been completed. Thus, there are no pending erp_actions
722 * which would need to be handled here.
723 */
724int
725zfcp_erp_thread_kill(struct zfcp_adapter *adapter)
726{
727 int retval = 0;
728
729 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL, &adapter->status);
730 up(&adapter->erp_ready_sem);
Christof Schmittaa0fec62008-05-19 12:17:47 +0200731 zfcp_rec_dbf_event_thread_lock(2, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 wait_event(adapter->erp_thread_wqh,
734 !atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP,
735 &adapter->status));
736
737 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL,
738 &adapter->status);
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return retval;
741}
742
743/*
744 * purpose: is run as a kernel thread,
745 * goes through list of error recovery actions of associated adapter
746 * and delegates single action to execution
747 *
748 * returns: 0
749 */
750static int
751zfcp_erp_thread(void *data)
752{
753 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
754 struct list_head *next;
755 struct zfcp_erp_action *erp_action;
756 unsigned long flags;
757
758 daemonize("zfcperp%s", zfcp_get_busid_by_adapter(adapter));
759 /* Block all signals */
760 siginitsetinv(&current->blocked, 0);
761 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP, &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 wake_up(&adapter->erp_thread_wqh);
763
764 while (!atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL,
765 &adapter->status)) {
766
767 write_lock_irqsave(&adapter->erp_lock, flags);
Martin Peschke86e8dfc2007-11-15 13:57:17 +0100768 next = adapter->erp_ready_head.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 write_unlock_irqrestore(&adapter->erp_lock, flags);
770
771 if (next != &adapter->erp_ready_head) {
772 erp_action =
773 list_entry(next, struct zfcp_erp_action, list);
774 /*
775 * process action (incl. [re]moving it
776 * from 'ready' queue)
777 */
778 zfcp_erp_strategy(erp_action);
779 }
780
781 /*
782 * sleep as long as there is nothing to do, i.e.
783 * no action in 'ready' queue to be processed and
784 * thread is not to be killed
785 */
Christof Schmittaa0fec62008-05-19 12:17:47 +0200786 zfcp_rec_dbf_event_thread_lock(4, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 down_interruptible(&adapter->erp_ready_sem);
Christof Schmittaa0fec62008-05-19 12:17:47 +0200788 zfcp_rec_dbf_event_thread_lock(5, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790
791 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP, &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 wake_up(&adapter->erp_thread_wqh);
793
794 return 0;
795}
796
797/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200798 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
800 * purpose: drives single error recovery action and schedules higher and
801 * subordinate actions, if necessary
802 *
803 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
804 * ZFCP_ERP_SUCCEEDED - action finished successfully (deqd)
805 * ZFCP_ERP_FAILED - action finished unsuccessfully (deqd)
806 * ZFCP_ERP_EXIT - action finished (dequeued), offline
807 * ZFCP_ERP_DISMISSED - action canceled (dequeued)
808 */
809static int
810zfcp_erp_strategy(struct zfcp_erp_action *erp_action)
811{
812 int retval = 0;
813 struct zfcp_adapter *adapter = erp_action->adapter;
814 struct zfcp_port *port = erp_action->port;
815 struct zfcp_unit *unit = erp_action->unit;
816 int action = erp_action->action;
817 u32 status = erp_action->status;
818 unsigned long flags;
819
820 /* serialise dismissing, timing out, moving, enqueueing */
821 read_lock_irqsave(&zfcp_data.config_lock, flags);
822 write_lock(&adapter->erp_lock);
823
824 /* dequeue dismissed action and leave, if required */
825 retval = zfcp_erp_strategy_check_action(erp_action, retval);
826 if (retval == ZFCP_ERP_DISMISSED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 goto unlock;
828 }
829
830 /*
831 * move action to 'running' queue before processing it
832 * (to avoid a race condition regarding moving the
833 * action to the 'running' queue and back)
834 */
835 zfcp_erp_action_to_running(erp_action);
836
837 /*
838 * try to process action as far as possible,
839 * no lock to allow for blocking operations (kmalloc, qdio, ...),
840 * afterwards the lock is required again for the following reasons:
841 * - dequeueing of finished action and enqueueing of
842 * follow-up actions must be atomic so that any other
843 * reopen-routine does not believe there is nothing to do
844 * and that it is safe to enqueue something else,
845 * - we want to force any control thread which is dismissing
846 * actions to finish this before we decide about
847 * necessary steps to be taken here further
848 */
849 write_unlock(&adapter->erp_lock);
850 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
851 retval = zfcp_erp_strategy_do_action(erp_action);
852 read_lock_irqsave(&zfcp_data.config_lock, flags);
853 write_lock(&adapter->erp_lock);
854
855 /*
856 * check for dismissed status again to avoid follow-up actions,
Martin Peschke86e8dfc2007-11-15 13:57:17 +0100857 * failing of targets and so on for dismissed actions,
858 * we go through down() here because there has been an up()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 */
Martin Peschke86e8dfc2007-11-15 13:57:17 +0100860 if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED)
861 retval = ZFCP_ERP_CONTINUES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 switch (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 case ZFCP_ERP_NOMEM:
865 /* no memory to continue immediately, let it sleep */
866 if (!(erp_action->status & ZFCP_STATUS_ERP_LOWMEM)) {
867 ++adapter->erp_low_mem_count;
868 erp_action->status |= ZFCP_STATUS_ERP_LOWMEM;
869 }
870 /* This condition is true if there is no memory available
871 for any erp_action on this adapter. This implies that there
872 are no elements in the memory pool(s) left for erp_actions.
873 This might happen if an erp_action that used a memory pool
874 element was timed out.
875 */
Christof Schmitt553448f2008-06-10 18:20:58 +0200876 if (adapter->erp_total_count == adapter->erp_low_mem_count)
Martin Peschke1f6f7122008-04-18 12:51:55 +0200877 zfcp_erp_adapter_reopen_internal(adapter, 0, 66, NULL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200878 else
879 retval = zfcp_erp_strategy_memwait(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 goto unlock;
881 case ZFCP_ERP_CONTINUES:
882 /* leave since this action runs asynchronously */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) {
884 --adapter->erp_low_mem_count;
885 erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM;
886 }
887 goto unlock;
888 }
889 /* ok, finished action (whatever its result is) */
890
891 /* check for unrecoverable targets */
892 retval = zfcp_erp_strategy_check_target(erp_action, retval);
893
894 /* action must be dequeued (here to allow for further ones) */
895 zfcp_erp_action_dequeue(erp_action);
896
897 /*
898 * put this target through the erp mill again if someone has
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200899 * requested to change the status of a target being online
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * to offline or the other way around
901 * (old retval is preserved if nothing has to be done here)
902 */
903 retval = zfcp_erp_strategy_statechange(action, status, adapter,
904 port, unit, retval);
905
906 /*
907 * leave if target is in permanent error state or if
908 * action is repeated in order to process state change
909 */
910 if (retval == ZFCP_ERP_EXIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 goto unlock;
912 }
913
914 /* trigger follow up actions */
915 zfcp_erp_strategy_followup_actions(action, adapter, port, unit, retval);
916
917 unlock:
918 write_unlock(&adapter->erp_lock);
919 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (retval != ZFCP_ERP_CONTINUES)
922 zfcp_erp_action_cleanup(action, adapter, port, unit, retval);
923
924 /*
925 * a few tasks remain when the erp queues are empty
926 * (don't do that if the last action evaluated was dismissed
927 * since this clearly indicates that there is more to come) :
928 * - close the name server port if it is open yet
929 * (enqueues another [probably] final action)
930 * - otherwise, wake up whoever wants to be woken when we are
931 * done with erp
932 */
933 if (retval != ZFCP_ERP_DISMISSED)
934 zfcp_erp_strategy_check_queues(adapter);
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return retval;
937}
938
939/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200940 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200942 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 *
944 * returns: ZFCP_ERP_DISMISSED - if action has been dismissed
945 * retval - otherwise
946 */
947static int
948zfcp_erp_strategy_check_action(struct zfcp_erp_action *erp_action, int retval)
949{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 zfcp_erp_strategy_check_fsfreq(erp_action);
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 zfcp_erp_action_dequeue(erp_action);
954 retval = ZFCP_ERP_DISMISSED;
Martin Peschke507e4962008-03-27 14:22:05 +0100955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 return retval;
958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960static int
961zfcp_erp_strategy_do_action(struct zfcp_erp_action *erp_action)
962{
963 int retval = ZFCP_ERP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /*
966 * try to execute/continue action as far as possible,
967 * note: no lock in subsequent strategy routines
968 * (this allows these routine to call schedule, e.g.
969 * kmalloc with such flags or qdio_initialize & friends)
Joe Perches5d67d162008-01-26 14:11:20 +0100970 * Note: in case of timeout, the separate strategies will fail
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * anyhow. No need for a special action. Even worse, a nameserver
972 * failure would not wake up waiting ports without the call.
973 */
974 switch (erp_action->action) {
975
976 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
977 retval = zfcp_erp_adapter_strategy(erp_action);
978 break;
979
980 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
981 retval = zfcp_erp_port_forced_strategy(erp_action);
982 break;
983
984 case ZFCP_ERP_ACTION_REOPEN_PORT:
985 retval = zfcp_erp_port_strategy(erp_action);
986 break;
987
988 case ZFCP_ERP_ACTION_REOPEN_UNIT:
989 retval = zfcp_erp_unit_strategy(erp_action);
990 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
992
993 return retval;
994}
995
996/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200997 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 *
999 * purpose: triggers retry of this action after a certain amount of time
1000 * by means of timer provided by erp_action
1001 *
1002 * returns: ZFCP_ERP_CONTINUES - erp_action sleeps in erp running queue
1003 */
1004static int
1005zfcp_erp_strategy_memwait(struct zfcp_erp_action *erp_action)
1006{
1007 int retval = ZFCP_ERP_CONTINUES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 init_timer(&erp_action->timer);
1010 erp_action->timer.function = zfcp_erp_memwait_handler;
1011 erp_action->timer.data = (unsigned long) erp_action;
1012 erp_action->timer.expires = jiffies + ZFCP_ERP_MEMWAIT_TIMEOUT;
1013 add_timer(&erp_action->timer);
1014
1015 return retval;
1016}
1017
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001018/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 * function: zfcp_erp_adapter_failed
1020 *
1021 * purpose: sets the adapter and all underlying devices to ERP_FAILED
1022 *
1023 */
1024void
Martin Peschke1f6f7122008-04-18 12:51:55 +02001025zfcp_erp_adapter_failed(struct zfcp_adapter *adapter, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Martin Peschke698ec0162008-03-27 14:22:02 +01001027 zfcp_erp_modify_adapter_status(adapter, id, ref,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 ZFCP_STATUS_COMMON_ERP_FAILED, ZFCP_SET);
Christof Schmitt553448f2008-06-10 18:20:58 +02001029 dev_err(&adapter->ccw_device->dev, "Adapter ERP failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001032/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 * function: zfcp_erp_port_failed
1034 *
1035 * purpose: sets the port and all underlying devices to ERP_FAILED
1036 *
1037 */
1038void
Martin Peschke1f6f7122008-04-18 12:51:55 +02001039zfcp_erp_port_failed(struct zfcp_port *port, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Martin Peschke698ec0162008-03-27 14:22:02 +01001041 zfcp_erp_modify_port_status(port, id, ref,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ZFCP_STATUS_COMMON_ERP_FAILED, ZFCP_SET);
1043
1044 if (atomic_test_mask(ZFCP_STATUS_PORT_WKA, &port->status))
Christof Schmitt553448f2008-06-10 18:20:58 +02001045 dev_err(&port->adapter->ccw_device->dev,
1046 "Port ERP failed for WKA port d_id=0x%06x.\n",
1047 port->d_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 else
Christof Schmitt553448f2008-06-10 18:20:58 +02001049 dev_err(&port->adapter->ccw_device->dev,
1050 "Port ERP failed for port wwpn=0x%016Lx.\n",
1051 port->wwpn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001054/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 * function: zfcp_erp_unit_failed
1056 *
1057 * purpose: sets the unit to ERP_FAILED
1058 *
1059 */
1060void
Martin Peschke1f6f7122008-04-18 12:51:55 +02001061zfcp_erp_unit_failed(struct zfcp_unit *unit, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Martin Peschke698ec0162008-03-27 14:22:02 +01001063 zfcp_erp_modify_unit_status(unit, id, ref,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 ZFCP_STATUS_COMMON_ERP_FAILED, ZFCP_SET);
1065
Christof Schmitt553448f2008-06-10 18:20:58 +02001066 dev_err(&unit->port->adapter->ccw_device->dev,
1067 "Unit ERP failed for unit 0x%016Lx on port 0x%016Lx.\n",
1068 unit->fcp_lun, unit->port->wwpn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
1071/*
1072 * function: zfcp_erp_strategy_check_target
1073 *
1074 * purpose: increments the erp action count on the device currently in
1075 * recovery if the action failed or resets the count in case of
1076 * success. If a maximum count is exceeded the device is marked
1077 * as ERP_FAILED.
1078 * The 'blocked' state of a target which has been recovered
1079 * successfully is reset.
1080 *
1081 * returns: ZFCP_ERP_CONTINUES - action continues (not considered)
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001082 * ZFCP_ERP_SUCCEEDED - action finished successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 * ZFCP_ERP_EXIT - action failed and will not continue
1084 */
1085static int
1086zfcp_erp_strategy_check_target(struct zfcp_erp_action *erp_action, int result)
1087{
1088 struct zfcp_adapter *adapter = erp_action->adapter;
1089 struct zfcp_port *port = erp_action->port;
1090 struct zfcp_unit *unit = erp_action->unit;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 switch (erp_action->action) {
1093
1094 case ZFCP_ERP_ACTION_REOPEN_UNIT:
1095 result = zfcp_erp_strategy_check_unit(unit, result);
1096 break;
1097
1098 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1099 case ZFCP_ERP_ACTION_REOPEN_PORT:
1100 result = zfcp_erp_strategy_check_port(port, result);
1101 break;
1102
1103 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1104 result = zfcp_erp_strategy_check_adapter(adapter, result);
1105 break;
1106 }
1107
1108 return result;
1109}
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111static int
1112zfcp_erp_strategy_statechange(int action,
1113 u32 status,
1114 struct zfcp_adapter *adapter,
1115 struct zfcp_port *port,
1116 struct zfcp_unit *unit, int retval)
1117{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 switch (action) {
1119
1120 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1121 if (zfcp_erp_strategy_statechange_detected(&adapter->status,
1122 status)) {
Martin Peschke9467a9b2008-03-27 14:22:03 +01001123 zfcp_erp_adapter_reopen_internal(adapter,
1124 ZFCP_STATUS_COMMON_ERP_FAILED,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001125 67, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 retval = ZFCP_ERP_EXIT;
1127 }
1128 break;
1129
1130 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1131 case ZFCP_ERP_ACTION_REOPEN_PORT:
1132 if (zfcp_erp_strategy_statechange_detected(&port->status,
1133 status)) {
Martin Peschke9467a9b2008-03-27 14:22:03 +01001134 zfcp_erp_port_reopen_internal(port,
1135 ZFCP_STATUS_COMMON_ERP_FAILED,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001136 68, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 retval = ZFCP_ERP_EXIT;
1138 }
1139 break;
1140
1141 case ZFCP_ERP_ACTION_REOPEN_UNIT:
1142 if (zfcp_erp_strategy_statechange_detected(&unit->status,
1143 status)) {
Martin Peschke9467a9b2008-03-27 14:22:03 +01001144 zfcp_erp_unit_reopen_internal(unit,
1145 ZFCP_STATUS_COMMON_ERP_FAILED,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001146 69, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 retval = ZFCP_ERP_EXIT;
1148 }
1149 break;
1150 }
1151
1152 return retval;
1153}
1154
Heiko Carstens364c8552007-10-12 16:11:35 +02001155static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156zfcp_erp_strategy_statechange_detected(atomic_t * target_status, u32 erp_status)
1157{
1158 return
1159 /* take it online */
1160 (atomic_test_mask(ZFCP_STATUS_COMMON_RUNNING, target_status) &&
1161 (ZFCP_STATUS_ERP_CLOSE_ONLY & erp_status)) ||
1162 /* take it offline */
1163 (!atomic_test_mask(ZFCP_STATUS_COMMON_RUNNING, target_status) &&
1164 !(ZFCP_STATUS_ERP_CLOSE_ONLY & erp_status));
1165}
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167static int
1168zfcp_erp_strategy_check_unit(struct zfcp_unit *unit, int result)
1169{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 switch (result) {
1171 case ZFCP_ERP_SUCCEEDED :
1172 atomic_set(&unit->erp_counter, 0);
1173 zfcp_erp_unit_unblock(unit);
1174 break;
1175 case ZFCP_ERP_FAILED :
1176 atomic_inc(&unit->erp_counter);
1177 if (atomic_read(&unit->erp_counter) > ZFCP_MAX_ERPS)
Martin Peschke1f6f7122008-04-18 12:51:55 +02001178 zfcp_erp_unit_failed(unit, 21, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 break;
1180 case ZFCP_ERP_EXIT :
1181 /* nothing */
1182 break;
1183 }
1184
1185 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &unit->status)) {
1186 zfcp_erp_unit_block(unit, 0); /* for ZFCP_ERP_SUCCEEDED */
1187 result = ZFCP_ERP_EXIT;
1188 }
1189
1190 return result;
1191}
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193static int
1194zfcp_erp_strategy_check_port(struct zfcp_port *port, int result)
1195{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 switch (result) {
1197 case ZFCP_ERP_SUCCEEDED :
1198 atomic_set(&port->erp_counter, 0);
1199 zfcp_erp_port_unblock(port);
1200 break;
1201 case ZFCP_ERP_FAILED :
Swen Schilligcc8c2822008-06-10 18:21:00 +02001202 if (atomic_test_mask(ZFCP_STATUS_COMMON_NOESC, &port->status)) {
1203 zfcp_erp_port_block(port, 0);
1204 result = ZFCP_ERP_EXIT;
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 atomic_inc(&port->erp_counter);
1207 if (atomic_read(&port->erp_counter) > ZFCP_MAX_ERPS)
Martin Peschke1f6f7122008-04-18 12:51:55 +02001208 zfcp_erp_port_failed(port, 22, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 break;
1210 case ZFCP_ERP_EXIT :
1211 /* nothing */
1212 break;
1213 }
1214
1215 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &port->status)) {
1216 zfcp_erp_port_block(port, 0); /* for ZFCP_ERP_SUCCEEDED */
1217 result = ZFCP_ERP_EXIT;
1218 }
1219
1220 return result;
1221}
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223static int
1224zfcp_erp_strategy_check_adapter(struct zfcp_adapter *adapter, int result)
1225{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 switch (result) {
1227 case ZFCP_ERP_SUCCEEDED :
1228 atomic_set(&adapter->erp_counter, 0);
1229 zfcp_erp_adapter_unblock(adapter);
1230 break;
1231 case ZFCP_ERP_FAILED :
1232 atomic_inc(&adapter->erp_counter);
1233 if (atomic_read(&adapter->erp_counter) > ZFCP_MAX_ERPS)
Martin Peschke1f6f7122008-04-18 12:51:55 +02001234 zfcp_erp_adapter_failed(adapter, 23, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 break;
1236 case ZFCP_ERP_EXIT :
1237 /* nothing */
1238 break;
1239 }
1240
1241 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &adapter->status)) {
1242 zfcp_erp_adapter_block(adapter, 0); /* for ZFCP_ERP_SUCCEEDED */
1243 result = ZFCP_ERP_EXIT;
1244 }
1245
1246 return result;
1247}
1248
Christof Schmitt5f852be2007-05-08 11:16:52 +02001249struct zfcp_erp_add_work {
1250 struct zfcp_unit *unit;
1251 struct work_struct work;
1252};
1253
1254/**
1255 * zfcp_erp_scsi_scan
1256 * @data: pointer to a struct zfcp_erp_add_work
1257 *
1258 * Registers a logical unit with the SCSI stack.
1259 */
1260static void zfcp_erp_scsi_scan(struct work_struct *work)
1261{
1262 struct zfcp_erp_add_work *p =
1263 container_of(work, struct zfcp_erp_add_work, work);
1264 struct zfcp_unit *unit = p->unit;
1265 struct fc_rport *rport = unit->port->rport;
1266 scsi_scan_target(&rport->dev, 0, rport->scsi_target_id,
1267 unit->scsi_lun, 0);
1268 atomic_clear_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING, &unit->status);
Christof Schmitt5f852be2007-05-08 11:16:52 +02001269 zfcp_unit_put(unit);
1270 kfree(p);
1271}
1272
1273/**
1274 * zfcp_erp_schedule_work
1275 * @unit: pointer to unit which should be registered with SCSI stack
1276 *
1277 * Schedules work which registers a unit with the SCSI stack
1278 */
1279static void
1280zfcp_erp_schedule_work(struct zfcp_unit *unit)
1281{
1282 struct zfcp_erp_add_work *p;
1283
Swen Schillig0d661322007-07-18 10:55:08 +02001284 p = kzalloc(sizeof(*p), GFP_KERNEL);
Christof Schmitt5f852be2007-05-08 11:16:52 +02001285 if (!p) {
Christof Schmitt553448f2008-06-10 18:20:58 +02001286 dev_err(&unit->port->adapter->ccw_device->dev,
1287 "Out of resources. Could not register unit 0x%016Lx "
1288 "on port 0x%016Lx with SCSI stack.\n",
1289 unit->fcp_lun, unit->port->wwpn);
Christof Schmitt5f852be2007-05-08 11:16:52 +02001290 return;
1291 }
1292
1293 zfcp_unit_get(unit);
Christof Schmitt5f852be2007-05-08 11:16:52 +02001294 atomic_set_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING, &unit->status);
1295 INIT_WORK(&p->work, zfcp_erp_scsi_scan);
1296 p->unit = unit;
1297 schedule_work(&p->work);
1298}
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001301 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 *
1303 * purpose: remaining things in good cases,
1304 * escalation in bad cases
1305 *
1306 * returns:
1307 */
1308static int
1309zfcp_erp_strategy_followup_actions(int action,
1310 struct zfcp_adapter *adapter,
1311 struct zfcp_port *port,
1312 struct zfcp_unit *unit, int status)
1313{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 /* initiate follow-up actions depending on success of finished action */
1315 switch (action) {
1316
1317 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1318 if (status == ZFCP_ERP_SUCCEEDED)
Martin Peschke1f6f7122008-04-18 12:51:55 +02001319 zfcp_erp_port_reopen_all_internal(adapter, 0, 70, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 else
Martin Peschke1f6f7122008-04-18 12:51:55 +02001321 zfcp_erp_adapter_reopen_internal(adapter, 0, 71, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 break;
1323
1324 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1325 if (status == ZFCP_ERP_SUCCEEDED)
Martin Peschke1f6f7122008-04-18 12:51:55 +02001326 zfcp_erp_port_reopen_internal(port, 0, 72, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 else
Martin Peschke1f6f7122008-04-18 12:51:55 +02001328 zfcp_erp_adapter_reopen_internal(adapter, 0, 73, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 break;
1330
1331 case ZFCP_ERP_ACTION_REOPEN_PORT:
1332 if (status == ZFCP_ERP_SUCCEEDED)
Martin Peschke1f6f7122008-04-18 12:51:55 +02001333 zfcp_erp_unit_reopen_all_internal(port, 0, 74, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 else
Martin Peschke1f6f7122008-04-18 12:51:55 +02001335 zfcp_erp_port_forced_reopen_internal(port, 0, 75, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 break;
1337
1338 case ZFCP_ERP_ACTION_REOPEN_UNIT:
Heiko Carstenscc16ceb2007-08-28 09:30:42 +02001339 /* Nothing to do if status == ZFCP_ERP_SUCCEEDED */
1340 if (status != ZFCP_ERP_SUCCEEDED)
Martin Peschke1f6f7122008-04-18 12:51:55 +02001341 zfcp_erp_port_reopen_internal(unit->port, 0, 76, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 break;
1343 }
1344
1345 return 0;
1346}
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348static int
1349zfcp_erp_strategy_check_queues(struct zfcp_adapter *adapter)
1350{
1351 unsigned long flags;
1352
1353 read_lock_irqsave(&zfcp_data.config_lock, flags);
1354 read_lock(&adapter->erp_lock);
1355 if (list_empty(&adapter->erp_ready_head) &&
1356 list_empty(&adapter->erp_running_head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING,
1358 &adapter->status);
1359 wake_up(&adapter->erp_done_wqh);
Martin Peschke507e4962008-03-27 14:22:05 +01001360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 read_unlock(&adapter->erp_lock);
1362 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
1363
1364 return 0;
1365}
1366
1367/**
1368 * zfcp_erp_wait - wait for completion of error recovery on an adapter
1369 * @adapter: adapter for which to wait for completion of its error recovery
1370 * Return: 0
1371 */
1372int
1373zfcp_erp_wait(struct zfcp_adapter *adapter)
1374{
1375 int retval = 0;
1376
1377 wait_event(adapter->erp_done_wqh,
1378 !atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING,
1379 &adapter->status));
1380
1381 return retval;
1382}
1383
Martin Peschke698ec0162008-03-27 14:22:02 +01001384void zfcp_erp_modify_adapter_status(struct zfcp_adapter *adapter, u8 id,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001385 void *ref, u32 mask, int set_or_clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 struct zfcp_port *port;
Martin Peschke698ec0162008-03-27 14:22:02 +01001388 u32 changed, common_mask = mask & ZFCP_COMMON_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 if (set_or_clear == ZFCP_SET) {
Martin Peschke698ec0162008-03-27 14:22:02 +01001391 changed = atomic_test_and_set_mask(mask, &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 } else {
Martin Peschke698ec0162008-03-27 14:22:02 +01001393 changed = atomic_test_and_clear_mask(mask, &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (mask & ZFCP_STATUS_COMMON_ERP_FAILED)
1395 atomic_set(&adapter->erp_counter, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Martin Peschke698ec0162008-03-27 14:22:02 +01001397 if (changed)
1398 zfcp_rec_dbf_event_adapter(id, ref, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 /* Deal with all underlying devices, only pass common_mask */
1401 if (common_mask)
1402 list_for_each_entry(port, &adapter->port_list_head, list)
Martin Peschke698ec0162008-03-27 14:22:02 +01001403 zfcp_erp_modify_port_status(port, id, ref, common_mask,
1404 set_or_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
1407/*
1408 * function: zfcp_erp_modify_port_status
1409 *
1410 * purpose: sets the port and all underlying devices to ERP_FAILED
1411 *
1412 */
Martin Peschke1f6f7122008-04-18 12:51:55 +02001413void zfcp_erp_modify_port_status(struct zfcp_port *port, u8 id, void *ref,
Martin Peschke698ec0162008-03-27 14:22:02 +01001414 u32 mask, int set_or_clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 struct zfcp_unit *unit;
Martin Peschke698ec0162008-03-27 14:22:02 +01001417 u32 changed, common_mask = mask & ZFCP_COMMON_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 if (set_or_clear == ZFCP_SET) {
Martin Peschke698ec0162008-03-27 14:22:02 +01001420 changed = atomic_test_and_set_mask(mask, &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 } else {
Martin Peschke698ec0162008-03-27 14:22:02 +01001422 changed = atomic_test_and_clear_mask(mask, &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (mask & ZFCP_STATUS_COMMON_ERP_FAILED)
1424 atomic_set(&port->erp_counter, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
Martin Peschke698ec0162008-03-27 14:22:02 +01001426 if (changed)
1427 zfcp_rec_dbf_event_port(id, ref, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 /* Modify status of all underlying devices, only pass common mask */
1430 if (common_mask)
1431 list_for_each_entry(unit, &port->unit_list_head, list)
Martin Peschke698ec0162008-03-27 14:22:02 +01001432 zfcp_erp_modify_unit_status(unit, id, ref, common_mask,
1433 set_or_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
1436/*
1437 * function: zfcp_erp_modify_unit_status
1438 *
1439 * purpose: sets the unit to ERP_FAILED
1440 *
1441 */
Martin Peschke1f6f7122008-04-18 12:51:55 +02001442void zfcp_erp_modify_unit_status(struct zfcp_unit *unit, u8 id, void *ref,
Martin Peschke698ec0162008-03-27 14:22:02 +01001443 u32 mask, int set_or_clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Martin Peschke698ec0162008-03-27 14:22:02 +01001445 u32 changed;
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (set_or_clear == ZFCP_SET) {
Martin Peschke698ec0162008-03-27 14:22:02 +01001448 changed = atomic_test_and_set_mask(mask, &unit->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 } else {
Martin Peschke698ec0162008-03-27 14:22:02 +01001450 changed = atomic_test_and_clear_mask(mask, &unit->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (mask & ZFCP_STATUS_COMMON_ERP_FAILED) {
1452 atomic_set(&unit->erp_counter, 0);
1453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
Martin Peschke698ec0162008-03-27 14:22:02 +01001455 if (changed)
1456 zfcp_rec_dbf_event_unit(id, ref, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
1459/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001460 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 *
1462 * purpose: Wrappper for zfcp_erp_port_reopen_all_internal
1463 * used to ensure the correct locking
1464 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001465 * returns: 0 - initiated action successfully
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 * <0 - failed to initiate action
1467 */
Martin Peschke9467a9b2008-03-27 14:22:03 +01001468int zfcp_erp_port_reopen_all(struct zfcp_adapter *adapter, int clear_mask,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001469 u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 int retval;
1472 unsigned long flags;
1473
1474 read_lock_irqsave(&zfcp_data.config_lock, flags);
1475 write_lock(&adapter->erp_lock);
Martin Peschke9467a9b2008-03-27 14:22:03 +01001476 retval = zfcp_erp_port_reopen_all_internal(adapter, clear_mask, id,
1477 ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 write_unlock(&adapter->erp_lock);
1479 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
1480
1481 return retval;
1482}
1483
Martin Peschke9467a9b2008-03-27 14:22:03 +01001484static int zfcp_erp_port_reopen_all_internal(struct zfcp_adapter *adapter,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001485 int clear_mask, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 int retval = 0;
1488 struct zfcp_port *port;
1489
1490 list_for_each_entry(port, &adapter->port_list_head, list)
1491 if (!atomic_test_mask(ZFCP_STATUS_PORT_WKA, &port->status))
Martin Peschke9467a9b2008-03-27 14:22:03 +01001492 zfcp_erp_port_reopen_internal(port, clear_mask, id,
1493 ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 return retval;
1496}
1497
1498/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001499 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001501 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 *
1503 * returns: FIXME
1504 */
Martin Peschke9467a9b2008-03-27 14:22:03 +01001505static int zfcp_erp_unit_reopen_all_internal(struct zfcp_port *port,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001506 int clear_mask, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
1508 int retval = 0;
1509 struct zfcp_unit *unit;
1510
1511 list_for_each_entry(unit, &port->unit_list_head, list)
Martin Peschke9467a9b2008-03-27 14:22:03 +01001512 zfcp_erp_unit_reopen_internal(unit, clear_mask, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 return retval;
1515}
1516
1517/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001518 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 *
1520 * purpose: this routine executes the 'Reopen Adapter' action
1521 * (the entire action is processed synchronously, since
1522 * there are no actions which might be run concurrently
1523 * per definition)
1524 *
1525 * returns: ZFCP_ERP_SUCCEEDED - action finished successfully
1526 * ZFCP_ERP_FAILED - action finished unsuccessfully
1527 */
1528static int
1529zfcp_erp_adapter_strategy(struct zfcp_erp_action *erp_action)
1530{
1531 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 retval = zfcp_erp_adapter_strategy_close(erp_action);
1534 if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
1535 retval = ZFCP_ERP_EXIT;
1536 else
1537 retval = zfcp_erp_adapter_strategy_open(erp_action);
1538
Christof Schmitt553448f2008-06-10 18:20:58 +02001539 if (retval == ZFCP_ERP_FAILED)
Christof Schmitt18edcdb2007-11-05 12:37:45 +01001540 ssleep(ZFCP_TYPE2_RECOVERY_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 return retval;
1543}
1544
1545/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001546 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001548 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 *
1550 * returns: ZFCP_ERP_SUCCEEDED - action finished successfully
1551 * ZFCP_ERP_FAILED - action finished unsuccessfully
1552 */
1553static int
1554zfcp_erp_adapter_strategy_close(struct zfcp_erp_action *erp_action)
1555{
1556 int retval;
1557
1558 atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING,
1559 &erp_action->adapter->status);
1560 retval = zfcp_erp_adapter_strategy_generic(erp_action, 1);
1561 atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING,
1562 &erp_action->adapter->status);
1563
1564 return retval;
1565}
1566
1567/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001568 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001570 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 *
1572 * returns: ZFCP_ERP_SUCCEEDED - action finished successfully
1573 * ZFCP_ERP_FAILED - action finished unsuccessfully
1574 */
1575static int
1576zfcp_erp_adapter_strategy_open(struct zfcp_erp_action *erp_action)
1577{
1578 int retval;
1579
1580 atomic_set_mask(ZFCP_STATUS_COMMON_OPENING,
1581 &erp_action->adapter->status);
1582 retval = zfcp_erp_adapter_strategy_generic(erp_action, 0);
1583 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING,
1584 &erp_action->adapter->status);
1585
1586 return retval;
1587}
1588
1589/*
1590 * function: zfcp_register_adapter
1591 *
1592 * purpose: allocate the irq associated with this devno and register
1593 * the FSF adapter with the SCSI stack
1594 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001595 * returns:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 */
1597static int
1598zfcp_erp_adapter_strategy_generic(struct zfcp_erp_action *erp_action, int close)
1599{
1600 int retval = ZFCP_ERP_SUCCEEDED;
1601
1602 if (close)
1603 goto close_only;
1604
1605 retval = zfcp_erp_adapter_strategy_open_qdio(erp_action);
1606 if (retval != ZFCP_ERP_SUCCEEDED)
1607 goto failed_qdio;
1608
1609 retval = zfcp_erp_adapter_strategy_open_fsf(erp_action);
1610 if (retval != ZFCP_ERP_SUCCEEDED)
1611 goto failed_openfcp;
1612
1613 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &erp_action->adapter->status);
Swen Schilligcc8c2822008-06-10 18:21:00 +02001614 schedule_work(&erp_action->adapter->scan_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 goto out;
1616
1617 close_only:
1618 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1619 &erp_action->adapter->status);
1620
1621 failed_openfcp:
Andreas Herrmann2abbe862006-09-18 22:29:56 +02001622 zfcp_close_fsf(erp_action->adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 failed_qdio:
Volker Sameskec7f6b3a2007-05-29 15:29:49 +02001624 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK |
1625 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
1626 ZFCP_STATUS_ADAPTER_XPORT_OK,
1627 &erp_action->adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 out:
1629 return retval;
1630}
1631
1632/*
1633 * function: zfcp_qdio_init
1634 *
1635 * purpose: setup QDIO operation for specified adapter
1636 *
1637 * returns: 0 - successful setup
1638 * !0 - failed setup
1639 */
Heiko Carstens364c8552007-10-12 16:11:35 +02001640static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641zfcp_erp_adapter_strategy_open_qdio(struct zfcp_erp_action *erp_action)
1642{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 struct zfcp_adapter *adapter = erp_action->adapter;
1644
Swen Schillig00bab912008-06-10 18:20:57 +02001645 if (zfcp_qdio_open(adapter))
1646 return ZFCP_ERP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 /* initialize waitqueue used to wait for free SBALs in requests queue */
1649 init_waitqueue_head(&adapter->request_wq);
1650
1651 /* ok, we did it - skip all cleanups for different failures */
1652 atomic_set_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &adapter->status);
Swen Schillig00bab912008-06-10 18:20:57 +02001653 return ZFCP_ERP_SUCCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657static int
1658zfcp_erp_adapter_strategy_open_fsf(struct zfcp_erp_action *erp_action)
1659{
Andreas Herrmann2448c452005-12-01 02:50:36 +01001660 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Andreas Herrmann2448c452005-12-01 02:50:36 +01001662 retval = zfcp_erp_adapter_strategy_open_fsf_xconfig(erp_action);
1663 if (retval == ZFCP_ERP_FAILED)
1664 return ZFCP_ERP_FAILED;
1665
1666 retval = zfcp_erp_adapter_strategy_open_fsf_xport(erp_action);
1667 if (retval == ZFCP_ERP_FAILED)
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001668 return ZFCP_ERP_FAILED;
1669
1670 return zfcp_erp_adapter_strategy_open_fsf_statusread(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671}
1672
Swen Schilligcc8c2822008-06-10 18:21:00 +02001673static void zfcp_erp_open_ptp_port(struct zfcp_adapter *adapter)
1674{
1675 struct zfcp_port *port;
1676 port = zfcp_port_enqueue(adapter, adapter->peer_wwpn, 0,
1677 adapter->peer_d_id);
Swen Schillig317e6b62008-07-02 10:56:37 +02001678 if (IS_ERR(port)) /* error or port already attached */
Swen Schilligcc8c2822008-06-10 18:21:00 +02001679 return;
1680 zfcp_erp_port_reopen_internal(port, 0, 150, NULL);
1681}
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683static int
1684zfcp_erp_adapter_strategy_open_fsf_xconfig(struct zfcp_erp_action *erp_action)
1685{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 int retries;
Andreas Herrmann22753fa2005-06-13 13:15:15 +02001687 int sleep = ZFCP_EXCHANGE_CONFIG_DATA_FIRST_SLEEP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 struct zfcp_adapter *adapter = erp_action->adapter;
1689
1690 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK, &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Andreas Herrmann22753fa2005-06-13 13:15:15 +02001692 for (retries = ZFCP_EXCHANGE_CONFIG_DATA_RETRIES; retries; retries--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
1694 &adapter->status);
Heiko Carstens9f09c542006-07-03 17:32:20 -07001695 write_lock_irq(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 zfcp_erp_action_to_running(erp_action);
Heiko Carstens9f09c542006-07-03 17:32:20 -07001697 write_unlock_irq(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (zfcp_fsf_exchange_config_data(erp_action)) {
Swen Schilligcc8c2822008-06-10 18:21:00 +02001699 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
1700 &adapter->status);
1701 return ZFCP_ERP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 /*
1705 * Why this works:
1706 * Both the normal completion handler as well as the timeout
1707 * handler will do an 'up' when the 'exchange config data'
1708 * request completes or times out. Thus, the signal to go on
1709 * won't be lost utilizing this semaphore.
1710 * Furthermore, this 'adapter_reopen' action is
1711 * guaranteed to be the only action being there (highest action
1712 * which prevents other actions from being created).
1713 * Resulting from that, the wake signal recognized here
1714 * _must_ be the one belonging to the 'exchange config
1715 * data' request.
1716 */
Christof Schmittaa0fec62008-05-19 12:17:47 +02001717 zfcp_rec_dbf_event_thread_lock(6, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 down(&adapter->erp_ready_sem);
Christof Schmittaa0fec62008-05-19 12:17:47 +02001719 zfcp_rec_dbf_event_thread_lock(7, adapter);
Christof Schmitt553448f2008-06-10 18:20:58 +02001720 if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 break;
Andreas Herrmann22753fa2005-06-13 13:15:15 +02001722
1723 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
1724 &adapter->status))
1725 break;
1726
Andreas Herrmann22753fa2005-06-13 13:15:15 +02001727 /* sleep a little bit before retry */
Christof Schmitt18edcdb2007-11-05 12:37:45 +01001728 ssleep(sleep);
Andreas Herrmann22753fa2005-06-13 13:15:15 +02001729 sleep *= 2;
1730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Volker Sameskec7f6b3a2007-05-29 15:29:49 +02001732 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
1733 &adapter->status);
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
Christof Schmitt553448f2008-06-10 18:20:58 +02001736 &adapter->status))
Swen Schilligcc8c2822008-06-10 18:21:00 +02001737 return ZFCP_ERP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Swen Schilligcc8c2822008-06-10 18:21:00 +02001739 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP)
1740 zfcp_erp_open_ptp_port(adapter);
1741
1742 return ZFCP_ERP_SUCCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001745static int
1746zfcp_erp_adapter_strategy_open_fsf_xport(struct zfcp_erp_action *erp_action)
1747{
Andreas Herrmann2448c452005-12-01 02:50:36 +01001748 int ret;
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001749 struct zfcp_adapter *adapter;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001750
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001751 adapter = erp_action->adapter;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001752 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XPORT_OK, &adapter->status);
1753
Heiko Carstens9f09c542006-07-03 17:32:20 -07001754 write_lock_irq(&adapter->erp_lock);
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001755 zfcp_erp_action_to_running(erp_action);
Heiko Carstens9f09c542006-07-03 17:32:20 -07001756 write_unlock_irq(&adapter->erp_lock);
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001757
Swen Schillig52ef11a2007-08-28 09:31:09 +02001758 ret = zfcp_fsf_exchange_port_data(erp_action);
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001759 if (ret == -EOPNOTSUPP) {
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001760 return ZFCP_ERP_SUCCEEDED;
1761 } else if (ret) {
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001762 return ZFCP_ERP_FAILED;
1763 }
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001764
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001765 ret = ZFCP_ERP_SUCCEEDED;
Christof Schmittaa0fec62008-05-19 12:17:47 +02001766 zfcp_rec_dbf_event_thread_lock(8, adapter);
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001767 down(&adapter->erp_ready_sem);
Christof Schmittaa0fec62008-05-19 12:17:47 +02001768 zfcp_rec_dbf_event_thread_lock(9, adapter);
Christof Schmitt553448f2008-06-10 18:20:58 +02001769 if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT)
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001770 ret = ZFCP_ERP_FAILED;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001771
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +01001772 return ret;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001773}
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775static int
1776zfcp_erp_adapter_strategy_open_fsf_statusread(struct zfcp_erp_action
1777 *erp_action)
1778{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 struct zfcp_adapter *adapter = erp_action->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Swen Schilligd26ab062008-05-19 12:17:37 +02001781 atomic_set(&adapter->stat_miss, 16);
1782 return zfcp_status_read_refill(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001786 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 *
1788 * purpose: this routine executes the 'Reopen Physical Port' action
1789 *
1790 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
1791 * ZFCP_ERP_SUCCEEDED - action finished successfully
1792 * ZFCP_ERP_FAILED - action finished unsuccessfully
1793 */
1794static int
1795zfcp_erp_port_forced_strategy(struct zfcp_erp_action *erp_action)
1796{
1797 int retval = ZFCP_ERP_FAILED;
1798 struct zfcp_port *port = erp_action->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 switch (erp_action->step) {
1801
1802 /*
1803 * FIXME:
1804 * the ULP spec. begs for waiting for oustanding commands
1805 */
1806 case ZFCP_ERP_STEP_UNINITIALIZED:
1807 zfcp_erp_port_strategy_clearstati(port);
1808 /*
1809 * it would be sufficient to test only the normal open flag
1810 * since the phys. open flag cannot be set if the normal
1811 * open flag is unset - however, this is for readabilty ...
1812 */
1813 if (atomic_test_mask((ZFCP_STATUS_PORT_PHYS_OPEN |
1814 ZFCP_STATUS_COMMON_OPEN),
1815 &port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 retval =
1817 zfcp_erp_port_forced_strategy_close(erp_action);
1818 } else
1819 retval = ZFCP_ERP_FAILED;
1820 break;
1821
1822 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING:
1823 if (atomic_test_mask(ZFCP_STATUS_PORT_PHYS_OPEN,
1824 &port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 retval = ZFCP_ERP_FAILED;
1826 } else
1827 retval = ZFCP_ERP_SUCCEEDED;
1828 break;
1829 }
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return retval;
1832}
1833
1834/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001835 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 *
1837 * purpose: this routine executes the 'Reopen Port' action
1838 *
1839 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
1840 * ZFCP_ERP_SUCCEEDED - action finished successfully
1841 * ZFCP_ERP_FAILED - action finished unsuccessfully
1842 */
1843static int
1844zfcp_erp_port_strategy(struct zfcp_erp_action *erp_action)
1845{
1846 int retval = ZFCP_ERP_FAILED;
1847 struct zfcp_port *port = erp_action->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 switch (erp_action->step) {
1850
1851 /*
1852 * FIXME:
1853 * the ULP spec. begs for waiting for oustanding commands
1854 */
1855 case ZFCP_ERP_STEP_UNINITIALIZED:
1856 zfcp_erp_port_strategy_clearstati(port);
1857 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN, &port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 retval = zfcp_erp_port_strategy_close(erp_action);
1859 goto out;
1860 } /* else it's already closed, open it */
1861 break;
1862
1863 case ZFCP_ERP_STEP_PORT_CLOSING:
1864 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN, &port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 retval = ZFCP_ERP_FAILED;
1866 goto out;
1867 } /* else it's closed now, open it */
1868 break;
1869 }
1870 if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
1871 retval = ZFCP_ERP_EXIT;
1872 else
1873 retval = zfcp_erp_port_strategy_open(erp_action);
1874
1875 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return retval;
1877}
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879static int
1880zfcp_erp_port_strategy_open(struct zfcp_erp_action *erp_action)
1881{
1882 int retval;
1883
1884 if (atomic_test_mask(ZFCP_STATUS_PORT_WKA,
1885 &erp_action->port->status))
1886 retval = zfcp_erp_port_strategy_open_nameserver(erp_action);
1887 else
1888 retval = zfcp_erp_port_strategy_open_common(erp_action);
1889
1890 return retval;
1891}
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893static int
1894zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *erp_action)
1895{
1896 int retval = 0;
1897 struct zfcp_adapter *adapter = erp_action->adapter;
1898 struct zfcp_port *port = erp_action->port;
1899
1900 switch (erp_action->step) {
1901
1902 case ZFCP_ERP_STEP_UNINITIALIZED:
1903 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING:
1904 case ZFCP_ERP_STEP_PORT_CLOSING:
Andreas Herrmannad757cd2006-01-13 02:26:11 +01001905 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP) {
6f71d9b2005-04-10 23:04:28 -05001906 if (port->wwpn != adapter->peer_wwpn) {
Christof Schmitt553448f2008-06-10 18:20:58 +02001907 dev_err(&adapter->ccw_device->dev,
1908 "Failed to open port 0x%016Lx, "
1909 "Peer WWPN 0x%016Lx does not match.\n",
1910 port->wwpn, adapter->peer_wwpn);
Martin Peschke1f6f7122008-04-18 12:51:55 +02001911 zfcp_erp_port_failed(port, 25, NULL);
6f71d9b2005-04-10 23:04:28 -05001912 retval = ZFCP_ERP_FAILED;
1913 break;
1914 }
1915 port->d_id = adapter->peer_d_id;
1916 atomic_set_mask(ZFCP_STATUS_PORT_DID_DID, &port->status);
1917 retval = zfcp_erp_port_strategy_open_port(erp_action);
1918 break;
1919 }
Swen Schilligcc8c2822008-06-10 18:21:00 +02001920
1921 if (!adapter->nameserver_port) {
1922 dev_err(&adapter->ccw_device->dev,
1923 "Nameserver port unavailable.\n");
1924 retval = ZFCP_ERP_FAILED;
1925 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 }
1927 if (!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
1928 &adapter->nameserver_port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 /* nameserver port may live again */
1930 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING,
1931 &adapter->nameserver_port->status);
Martin Peschke9467a9b2008-03-27 14:22:03 +01001932 if (zfcp_erp_port_reopen(adapter->nameserver_port, 0,
Martin Peschke1f6f7122008-04-18 12:51:55 +02001933 77, erp_action) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 erp_action->step =
1935 ZFCP_ERP_STEP_NAMESERVER_OPEN;
1936 retval = ZFCP_ERP_CONTINUES;
1937 } else
1938 retval = ZFCP_ERP_FAILED;
1939 break;
1940 }
1941 /* else nameserver port is already open, fall through */
1942 case ZFCP_ERP_STEP_NAMESERVER_OPEN:
1943 if (!atomic_test_mask(ZFCP_STATUS_COMMON_OPEN,
Christof Schmitt553448f2008-06-10 18:20:58 +02001944 &adapter->nameserver_port->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 retval = ZFCP_ERP_FAILED;
Christof Schmitt553448f2008-06-10 18:20:58 +02001946 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 retval = zfcp_erp_port_strategy_open_common_lookup
1948 (erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 break;
1950
1951 case ZFCP_ERP_STEP_NAMESERVER_LOOKUP:
1952 if (!atomic_test_mask(ZFCP_STATUS_PORT_DID_DID, &port->status)) {
1953 if (atomic_test_mask
1954 (ZFCP_STATUS_PORT_INVALID_WWPN, &port->status)) {
Martin Peschke1f6f7122008-04-18 12:51:55 +02001955 zfcp_erp_port_failed(port, 26, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 retval = ZFCP_ERP_EXIT;
Christof Schmitt553448f2008-06-10 18:20:58 +02001957 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 retval = ZFCP_ERP_FAILED;
Christof Schmitt553448f2008-06-10 18:20:58 +02001959 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 retval = zfcp_erp_port_strategy_open_port(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 break;
1962
1963 case ZFCP_ERP_STEP_PORT_OPENING:
1964 /* D_ID might have changed during open */
1965 if (atomic_test_mask((ZFCP_STATUS_COMMON_OPEN |
1966 ZFCP_STATUS_PORT_DID_DID),
Christof Schmitt553448f2008-06-10 18:20:58 +02001967 &port->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 retval = ZFCP_ERP_SUCCEEDED;
Christof Schmitt553448f2008-06-10 18:20:58 +02001969 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 retval = ZFCP_ERP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 break;
1972
1973 default:
Christof Schmitt553448f2008-06-10 18:20:58 +02001974 /* unknown erp step */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 retval = ZFCP_ERP_FAILED;
1976 }
1977
1978 return retval;
1979}
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981static int
1982zfcp_erp_port_strategy_open_nameserver(struct zfcp_erp_action *erp_action)
1983{
1984 int retval;
1985 struct zfcp_port *port = erp_action->port;
1986
1987 switch (erp_action->step) {
1988
1989 case ZFCP_ERP_STEP_UNINITIALIZED:
1990 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING:
1991 case ZFCP_ERP_STEP_PORT_CLOSING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 retval = zfcp_erp_port_strategy_open_port(erp_action);
1993 break;
1994
1995 case ZFCP_ERP_STEP_PORT_OPENING:
Christof Schmitt553448f2008-06-10 18:20:58 +02001996 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN, &port->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 retval = ZFCP_ERP_SUCCEEDED;
Christof Schmitt553448f2008-06-10 18:20:58 +02001998 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 retval = ZFCP_ERP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 /* this is needed anyway (dont care for retval of wakeup) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 zfcp_erp_port_strategy_open_nameserver_wakeup(erp_action);
2002 break;
2003
2004 default:
Christof Schmitt553448f2008-06-10 18:20:58 +02002005 /* unknown erp step */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 retval = ZFCP_ERP_FAILED;
2007 }
2008
2009 return retval;
2010}
2011
2012/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002013 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 *
2015 * purpose: makes the erp thread continue with reopen (physical) port
2016 * actions which have been paused until the name server port
2017 * is opened (or failed)
2018 *
2019 * returns: 0 (a kind of void retval, its not used)
2020 */
2021static int
2022zfcp_erp_port_strategy_open_nameserver_wakeup(struct zfcp_erp_action
2023 *ns_erp_action)
2024{
2025 int retval = 0;
2026 unsigned long flags;
2027 struct zfcp_adapter *adapter = ns_erp_action->adapter;
2028 struct zfcp_erp_action *erp_action, *tmp;
2029
2030 read_lock_irqsave(&adapter->erp_lock, flags);
2031 list_for_each_entry_safe(erp_action, tmp, &adapter->erp_running_head,
2032 list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (erp_action->step == ZFCP_ERP_STEP_NAMESERVER_OPEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 if (atomic_test_mask(
2035 ZFCP_STATUS_COMMON_ERP_FAILED,
2036 &adapter->nameserver_port->status))
Martin Peschke1f6f7122008-04-18 12:51:55 +02002037 zfcp_erp_port_failed(erp_action->port, 27,
2038 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 zfcp_erp_action_ready(erp_action);
2040 }
2041 }
2042 read_unlock_irqrestore(&adapter->erp_lock, flags);
2043
2044 return retval;
2045}
2046
2047/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002048 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002050 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 *
2052 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2053 * ZFCP_ERP_FAILED - action finished unsuccessfully
2054 */
2055static int
2056zfcp_erp_port_forced_strategy_close(struct zfcp_erp_action *erp_action)
2057{
2058 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 retval = zfcp_fsf_close_physical_port(erp_action);
2061 if (retval == -ENOMEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 retval = ZFCP_ERP_NOMEM;
2063 goto out;
2064 }
2065 erp_action->step = ZFCP_ERP_STEP_PHYS_PORT_CLOSING;
2066 if (retval != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 /* could not send 'open', fail */
2068 retval = ZFCP_ERP_FAILED;
2069 goto out;
2070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 retval = ZFCP_ERP_CONTINUES;
2072 out:
2073 return retval;
2074}
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076static int
2077zfcp_erp_port_strategy_clearstati(struct zfcp_port *port)
2078{
2079 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING |
2082 ZFCP_STATUS_COMMON_CLOSING |
2083 ZFCP_STATUS_COMMON_ACCESS_DENIED |
2084 ZFCP_STATUS_PORT_DID_DID |
2085 ZFCP_STATUS_PORT_PHYS_CLOSING |
2086 ZFCP_STATUS_PORT_INVALID_WWPN,
2087 &port->status);
2088 return retval;
2089}
2090
2091/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002092 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002094 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 *
2096 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2097 * ZFCP_ERP_FAILED - action finished unsuccessfully
2098 */
2099static int
2100zfcp_erp_port_strategy_close(struct zfcp_erp_action *erp_action)
2101{
2102 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 retval = zfcp_fsf_close_port(erp_action);
2105 if (retval == -ENOMEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 retval = ZFCP_ERP_NOMEM;
2107 goto out;
2108 }
2109 erp_action->step = ZFCP_ERP_STEP_PORT_CLOSING;
2110 if (retval != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /* could not send 'close', fail */
2112 retval = ZFCP_ERP_FAILED;
2113 goto out;
2114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 retval = ZFCP_ERP_CONTINUES;
2116 out:
2117 return retval;
2118}
2119
2120/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002121 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002123 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 *
2125 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2126 * ZFCP_ERP_FAILED - action finished unsuccessfully
2127 */
2128static int
2129zfcp_erp_port_strategy_open_port(struct zfcp_erp_action *erp_action)
2130{
2131 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 retval = zfcp_fsf_open_port(erp_action);
2134 if (retval == -ENOMEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 retval = ZFCP_ERP_NOMEM;
2136 goto out;
2137 }
2138 erp_action->step = ZFCP_ERP_STEP_PORT_OPENING;
2139 if (retval != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 /* could not send 'open', fail */
2141 retval = ZFCP_ERP_FAILED;
2142 goto out;
2143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 retval = ZFCP_ERP_CONTINUES;
2145 out:
2146 return retval;
2147}
2148
2149/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002150 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002152 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 *
2154 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2155 * ZFCP_ERP_FAILED - action finished unsuccessfully
2156 */
2157static int
2158zfcp_erp_port_strategy_open_common_lookup(struct zfcp_erp_action *erp_action)
2159{
2160 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Christof Schmitt24073b42008-06-10 18:20:54 +02002162 retval = zfcp_fc_ns_gid_pn_request(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (retval == -ENOMEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 retval = ZFCP_ERP_NOMEM;
2165 goto out;
2166 }
2167 erp_action->step = ZFCP_ERP_STEP_NAMESERVER_LOOKUP;
2168 if (retval != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 /* could not send nameserver request, fail */
2170 retval = ZFCP_ERP_FAILED;
2171 goto out;
2172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 retval = ZFCP_ERP_CONTINUES;
2174 out:
2175 return retval;
2176}
2177
2178/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002179 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 *
2181 * purpose: this routine executes the 'Reopen Unit' action
2182 * currently no retries
2183 *
2184 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2185 * ZFCP_ERP_SUCCEEDED - action finished successfully
2186 * ZFCP_ERP_FAILED - action finished unsuccessfully
2187 */
2188static int
2189zfcp_erp_unit_strategy(struct zfcp_erp_action *erp_action)
2190{
2191 int retval = ZFCP_ERP_FAILED;
2192 struct zfcp_unit *unit = erp_action->unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 switch (erp_action->step) {
2195
2196 /*
2197 * FIXME:
2198 * the ULP spec. begs for waiting for oustanding commands
2199 */
2200 case ZFCP_ERP_STEP_UNINITIALIZED:
2201 zfcp_erp_unit_strategy_clearstati(unit);
2202 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 retval = zfcp_erp_unit_strategy_close(erp_action);
2204 break;
2205 }
2206 /* else it's already closed, fall through */
2207 case ZFCP_ERP_STEP_UNIT_CLOSING:
Christof Schmitt553448f2008-06-10 18:20:58 +02002208 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 retval = ZFCP_ERP_FAILED;
Christof Schmitt553448f2008-06-10 18:20:58 +02002210 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
2212 retval = ZFCP_ERP_EXIT;
Christof Schmitt553448f2008-06-10 18:20:58 +02002213 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 retval =
2215 zfcp_erp_unit_strategy_open(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 break;
2217
2218 case ZFCP_ERP_STEP_UNIT_OPENING:
Christof Schmitt553448f2008-06-10 18:20:58 +02002219 if (atomic_test_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 retval = ZFCP_ERP_SUCCEEDED;
Christof Schmitt553448f2008-06-10 18:20:58 +02002221 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 retval = ZFCP_ERP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 break;
2224 }
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return retval;
2227}
2228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229static int
2230zfcp_erp_unit_strategy_clearstati(struct zfcp_unit *unit)
2231{
2232 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING |
2235 ZFCP_STATUS_COMMON_CLOSING |
2236 ZFCP_STATUS_COMMON_ACCESS_DENIED |
2237 ZFCP_STATUS_UNIT_SHARED |
2238 ZFCP_STATUS_UNIT_READONLY,
2239 &unit->status);
2240
2241 return retval;
2242}
2243
2244/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002245 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002247 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 *
2249 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2250 * ZFCP_ERP_FAILED - action finished unsuccessfully
2251 */
2252static int
2253zfcp_erp_unit_strategy_close(struct zfcp_erp_action *erp_action)
2254{
2255 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 retval = zfcp_fsf_close_unit(erp_action);
2258 if (retval == -ENOMEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 retval = ZFCP_ERP_NOMEM;
2260 goto out;
2261 }
2262 erp_action->step = ZFCP_ERP_STEP_UNIT_CLOSING;
2263 if (retval != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 /* could not send 'close', fail */
2265 retval = ZFCP_ERP_FAILED;
2266 goto out;
2267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 retval = ZFCP_ERP_CONTINUES;
2269
2270 out:
2271 return retval;
2272}
2273
2274/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002275 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 *
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002277 * purpose:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 *
2279 * returns: ZFCP_ERP_CONTINUES - action continues (asynchronously)
2280 * ZFCP_ERP_FAILED - action finished unsuccessfully
2281 */
2282static int
2283zfcp_erp_unit_strategy_open(struct zfcp_erp_action *erp_action)
2284{
2285 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 retval = zfcp_fsf_open_unit(erp_action);
2288 if (retval == -ENOMEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 retval = ZFCP_ERP_NOMEM;
2290 goto out;
2291 }
2292 erp_action->step = ZFCP_ERP_STEP_UNIT_OPENING;
2293 if (retval != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 /* could not send 'open', fail */
2295 retval = ZFCP_ERP_FAILED;
2296 goto out;
2297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 retval = ZFCP_ERP_CONTINUES;
2299 out:
2300 return retval;
2301}
2302
Andreas Herrmann2abbe862006-09-18 22:29:56 +02002303void zfcp_erp_start_timer(struct zfcp_fsf_req *fsf_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Andreas Herrmann2abbe862006-09-18 22:29:56 +02002305 BUG_ON(!fsf_req->erp_action);
2306 fsf_req->timer.function = zfcp_erp_timeout_handler;
2307 fsf_req->timer.data = (unsigned long) fsf_req->erp_action;
2308 fsf_req->timer.expires = jiffies + ZFCP_ERP_FSFREQ_TIMEOUT;
2309 add_timer(&fsf_req->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310}
2311
2312/*
Swen Schillig41fa2ad2007-09-07 09:15:31 +02002313 * function:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 *
2315 * purpose: enqueue the specified error recovery action, if needed
2316 *
2317 * returns:
2318 */
Martin Peschke9467a9b2008-03-27 14:22:03 +01002319static int zfcp_erp_action_enqueue(int want, struct zfcp_adapter *adapter,
2320 struct zfcp_port *port,
Martin Peschke1f6f7122008-04-18 12:51:55 +02002321 struct zfcp_unit *unit, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Martin Peschke9467a9b2008-03-27 14:22:03 +01002323 int retval = 1, need = want;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 struct zfcp_erp_action *erp_action = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 u32 status = 0;
2326
2327 /*
2328 * We need some rules here which check whether we really need
2329 * this action or whether we should just drop it.
2330 * E.g. if there is a unfinished 'Reopen Port' request then we drop a
2331 * 'Reopen Unit' request for an associated unit since we can't
2332 * satisfy this request now. A 'Reopen Port' action will trigger
2333 * 'Reopen Unit' actions when it completes.
2334 * Thus, there are only actions in the queue which can immediately be
2335 * executed. This makes the processing of the action queue more
2336 * efficient.
2337 */
2338
2339 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_ERP_THREAD_UP,
2340 &adapter->status))
2341 return -EIO;
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 /* check whether we really need this */
Martin Peschke9467a9b2008-03-27 14:22:03 +01002344 switch (want) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 case ZFCP_ERP_ACTION_REOPEN_UNIT:
2346 if (atomic_test_mask
2347 (ZFCP_STATUS_COMMON_ERP_INUSE, &unit->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 goto out;
2349 }
2350 if (!atomic_test_mask
2351 (ZFCP_STATUS_COMMON_RUNNING, &port->status) ||
2352 atomic_test_mask
2353 (ZFCP_STATUS_COMMON_ERP_FAILED, &port->status)) {
2354 goto out;
2355 }
2356 if (!atomic_test_mask
Martin Peschke9467a9b2008-03-27 14:22:03 +01002357 (ZFCP_STATUS_COMMON_UNBLOCKED, &port->status))
2358 need = ZFCP_ERP_ACTION_REOPEN_PORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 /* fall through !!! */
2360
2361 case ZFCP_ERP_ACTION_REOPEN_PORT:
2362 if (atomic_test_mask
2363 (ZFCP_STATUS_COMMON_ERP_INUSE, &port->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 goto out;
2365 }
2366 /* fall through !!! */
2367
2368 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Andreas Herrmann3734d242005-09-13 21:47:11 +02002369 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
Christof Schmitt553448f2008-06-10 18:20:58 +02002370 &port->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 if (!atomic_test_mask
2373 (ZFCP_STATUS_COMMON_RUNNING, &adapter->status) ||
2374 atomic_test_mask
2375 (ZFCP_STATUS_COMMON_ERP_FAILED, &adapter->status)) {
2376 goto out;
2377 }
2378 if (!atomic_test_mask
Martin Peschke9467a9b2008-03-27 14:22:03 +01002379 (ZFCP_STATUS_COMMON_UNBLOCKED, &adapter->status))
2380 need = ZFCP_ERP_ACTION_REOPEN_ADAPTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 /* fall through !!! */
2382
2383 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
2384 if (atomic_test_mask
2385 (ZFCP_STATUS_COMMON_ERP_INUSE, &adapter->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 goto out;
2387 }
2388 break;
2389
2390 default:
Christof Schmitt553448f2008-06-10 18:20:58 +02002391 /* unknown erp action */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 goto out;
2393 }
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 /* mark adapter to have some error recovery pending */
2396 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING, &adapter->status);
2397
2398 /* setup error recovery action */
Martin Peschke9467a9b2008-03-27 14:22:03 +01002399 switch (need) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401 case ZFCP_ERP_ACTION_REOPEN_UNIT:
2402 zfcp_unit_get(unit);
2403 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &unit->status);
2404 erp_action = &unit->erp_action;
2405 if (!atomic_test_mask
2406 (ZFCP_STATUS_COMMON_RUNNING, &unit->status))
2407 status = ZFCP_STATUS_ERP_CLOSE_ONLY;
2408 break;
2409
2410 case ZFCP_ERP_ACTION_REOPEN_PORT:
2411 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
2412 zfcp_port_get(port);
2413 zfcp_erp_action_dismiss_port(port);
2414 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &port->status);
2415 erp_action = &port->erp_action;
2416 if (!atomic_test_mask
2417 (ZFCP_STATUS_COMMON_RUNNING, &port->status))
2418 status = ZFCP_STATUS_ERP_CLOSE_ONLY;
2419 break;
2420
2421 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
2422 zfcp_adapter_get(adapter);
2423 zfcp_erp_action_dismiss_adapter(adapter);
2424 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &adapter->status);
2425 erp_action = &adapter->erp_action;
2426 if (!atomic_test_mask
2427 (ZFCP_STATUS_COMMON_RUNNING, &adapter->status))
2428 status = ZFCP_STATUS_ERP_CLOSE_ONLY;
2429 break;
2430 }
2431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 memset(erp_action, 0, sizeof (struct zfcp_erp_action));
2433 erp_action->adapter = adapter;
2434 erp_action->port = port;
2435 erp_action->unit = unit;
Martin Peschke9467a9b2008-03-27 14:22:03 +01002436 erp_action->action = need;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 erp_action->status = status;
2438
2439 ++adapter->erp_total_count;
2440
2441 /* finally put it into 'ready' queue and kick erp thread */
Martin Peschke86e8dfc2007-11-15 13:57:17 +01002442 list_add_tail(&erp_action->list, &adapter->erp_ready_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 up(&adapter->erp_ready_sem);
Christof Schmittaa0fec62008-05-19 12:17:47 +02002444 zfcp_rec_dbf_event_thread(1, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 retval = 0;
2446 out:
Martin Peschke1f6f7122008-04-18 12:51:55 +02002447 zfcp_rec_dbf_event_trigger(id, ref, want, need, erp_action,
Martin Peschke9467a9b2008-03-27 14:22:03 +01002448 adapter, port, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 return retval;
2450}
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452static int
2453zfcp_erp_action_dequeue(struct zfcp_erp_action *erp_action)
2454{
2455 int retval = 0;
2456 struct zfcp_adapter *adapter = erp_action->adapter;
2457
2458 --adapter->erp_total_count;
2459 if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) {
2460 --adapter->erp_low_mem_count;
2461 erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM;
2462 }
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 list_del(&erp_action->list);
Martin Peschke6f4f3652008-03-27 14:22:04 +01002465 zfcp_rec_dbf_event_action(144, erp_action);
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 switch (erp_action->action) {
2468 case ZFCP_ERP_ACTION_REOPEN_UNIT:
2469 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
2470 &erp_action->unit->status);
2471 break;
2472 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
2473 case ZFCP_ERP_ACTION_REOPEN_PORT:
2474 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
2475 &erp_action->port->status);
2476 break;
2477 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
2478 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
2479 &erp_action->adapter->status);
2480 break;
2481 default:
2482 /* bug */
2483 break;
2484 }
2485 return retval;
2486}
2487
2488/**
2489 * zfcp_erp_action_cleanup
2490 *
Adrian Bunk575c9682006-01-15 02:00:17 +01002491 * Register unit with scsi stack if appropriate and fix reference counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 * Note: Temporary units are not registered with scsi stack.
2493 */
2494static void
2495zfcp_erp_action_cleanup(int action, struct zfcp_adapter *adapter,
2496 struct zfcp_port *port, struct zfcp_unit *unit,
2497 int result)
2498{
2499 switch (action) {
2500 case ZFCP_ERP_ACTION_REOPEN_UNIT:
2501 if ((result == ZFCP_ERP_SUCCEEDED)
2502 && (!atomic_test_mask(ZFCP_STATUS_UNIT_TEMPORARY,
2503 &unit->status))
Andreas Herrmann3859f6a2005-08-27 11:07:54 -07002504 && !unit->device
Andreas Herrmannad58f7d2006-03-10 00:56:16 +01002505 && port->rport) {
2506 atomic_set_mask(ZFCP_STATUS_UNIT_REGISTERED,
2507 &unit->status);
Christof Schmitt5f852be2007-05-08 11:16:52 +02002508 if (atomic_test_mask(ZFCP_STATUS_UNIT_SCSI_WORK_PENDING,
2509 &unit->status) == 0)
2510 zfcp_erp_schedule_work(unit);
Andreas Herrmannad58f7d2006-03-10 00:56:16 +01002511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 zfcp_unit_put(unit);
2513 break;
2514 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
2515 case ZFCP_ERP_ACTION_REOPEN_PORT:
Andreas Herrmann338151e2006-05-22 18:25:56 +02002516 if (atomic_test_mask(ZFCP_STATUS_PORT_NO_WWPN,
2517 &port->status)) {
2518 zfcp_port_put(port);
2519 break;
2520 }
2521
Andreas Herrmann3859f6a2005-08-27 11:07:54 -07002522 if ((result == ZFCP_ERP_SUCCEEDED)
Andreas Herrmann3859f6a2005-08-27 11:07:54 -07002523 && !port->rport) {
2524 struct fc_rport_identifiers ids;
2525 ids.node_name = port->wwnn;
2526 ids.port_name = port->wwpn;
2527 ids.port_id = port->d_id;
2528 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
2529 port->rport =
2530 fc_remote_port_add(adapter->scsi_host, 0, &ids);
2531 if (!port->rport)
Christof Schmitt553448f2008-06-10 18:20:58 +02002532 dev_err(&adapter->ccw_device->dev,
2533 "Failed registration of rport "
2534 "0x%016Lx.\n", port->wwpn);
Ralph Wuerthner75bfc282006-05-22 18:24:33 +02002535 else {
Christof Schmitt5f852be2007-05-08 11:16:52 +02002536 scsi_target_unblock(&port->rport->dev);
Ralph Wuerthner75bfc282006-05-22 18:24:33 +02002537 port->rport->maxframe_size = port->maxframe_size;
2538 port->rport->supported_classes =
2539 port->supported_classes;
2540 }
Andreas Herrmann3859f6a2005-08-27 11:07:54 -07002541 }
Andreas Herrmann338151e2006-05-22 18:25:56 +02002542 if ((result != ZFCP_ERP_SUCCEEDED) && port->rport) {
2543 fc_remote_port_delete(port->rport);
2544 port->rport = NULL;
2545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 zfcp_port_put(port);
2547 break;
2548 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Andreas Herrmann338151e2006-05-22 18:25:56 +02002549 if (result != ZFCP_ERP_SUCCEEDED) {
Andreas Herrmann338151e2006-05-22 18:25:56 +02002550 list_for_each_entry(port, &adapter->port_list_head, list)
2551 if (port->rport &&
2552 !atomic_test_mask(ZFCP_STATUS_PORT_WKA,
2553 &port->status)) {
2554 fc_remote_port_delete(port->rport);
2555 port->rport = NULL;
2556 }
2557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 zfcp_adapter_put(adapter);
2559 break;
2560 default:
2561 break;
2562 }
2563}
2564
2565
Andreas Herrmann81654282006-09-18 22:30:36 +02002566static void zfcp_erp_action_dismiss_adapter(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 struct zfcp_port *port;
2569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &adapter->status))
2571 zfcp_erp_action_dismiss(&adapter->erp_action);
2572 else
2573 list_for_each_entry(port, &adapter->port_list_head, list)
2574 zfcp_erp_action_dismiss_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575}
2576
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +02002577static void zfcp_erp_action_dismiss_port(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &port->status))
2582 zfcp_erp_action_dismiss(&port->erp_action);
2583 else
2584 list_for_each_entry(unit, &port->unit_list_head, list)
2585 zfcp_erp_action_dismiss_unit(unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586}
2587
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +02002588static void zfcp_erp_action_dismiss_unit(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &unit->status))
2591 zfcp_erp_action_dismiss(&unit->erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
Heiko Carstens364c8552007-10-12 16:11:35 +02002594static void zfcp_erp_action_to_running(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 list_move(&erp_action->list, &erp_action->adapter->erp_running_head);
Martin Peschke6f4f3652008-03-27 14:22:04 +01002597 zfcp_rec_dbf_event_action(145, erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598}
2599
Heiko Carstens364c8552007-10-12 16:11:35 +02002600static void zfcp_erp_action_to_ready(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 list_move(&erp_action->list, &erp_action->adapter->erp_ready_head);
Martin Peschke6f4f3652008-03-27 14:22:04 +01002603 zfcp_rec_dbf_event_action(146, erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
2605
Martin Peschke1f6f7122008-04-18 12:51:55 +02002606void zfcp_erp_port_boxed(struct zfcp_port *port, u8 id, void *ref)
Andreas Herrmannd736a272005-06-13 13:23:57 +02002607{
Andreas Herrmannd736a272005-06-13 13:23:57 +02002608 unsigned long flags;
2609
Andreas Herrmannd736a272005-06-13 13:23:57 +02002610 read_lock_irqsave(&zfcp_data.config_lock, flags);
Martin Peschke698ec0162008-03-27 14:22:02 +01002611 zfcp_erp_modify_port_status(port, id, ref,
2612 ZFCP_STATUS_COMMON_ACCESS_BOXED, ZFCP_SET);
Andreas Herrmannd736a272005-06-13 13:23:57 +02002613 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
Martin Peschke9467a9b2008-03-27 14:22:03 +01002614 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref);
Andreas Herrmannd736a272005-06-13 13:23:57 +02002615}
2616
Martin Peschke1f6f7122008-04-18 12:51:55 +02002617void zfcp_erp_unit_boxed(struct zfcp_unit *unit, u8 id, void *ref)
Andreas Herrmannd736a272005-06-13 13:23:57 +02002618{
Martin Peschke698ec0162008-03-27 14:22:02 +01002619 zfcp_erp_modify_unit_status(unit, id, ref,
2620 ZFCP_STATUS_COMMON_ACCESS_BOXED, ZFCP_SET);
Martin Peschke9467a9b2008-03-27 14:22:03 +01002621 zfcp_erp_unit_reopen(unit, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref);
Andreas Herrmannd736a272005-06-13 13:23:57 +02002622}
2623
Martin Peschke1f6f7122008-04-18 12:51:55 +02002624void zfcp_erp_port_access_denied(struct zfcp_port *port, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 unsigned long flags;
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 read_lock_irqsave(&zfcp_data.config_lock, flags);
Martin Peschke698ec0162008-03-27 14:22:02 +01002629 zfcp_erp_modify_port_status(port, id, ref,
2630 ZFCP_STATUS_COMMON_ERP_FAILED |
2631 ZFCP_STATUS_COMMON_ACCESS_DENIED, ZFCP_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
2633}
2634
Martin Peschke1f6f7122008-04-18 12:51:55 +02002635void zfcp_erp_unit_access_denied(struct zfcp_unit *unit, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636{
Martin Peschke698ec0162008-03-27 14:22:02 +01002637 zfcp_erp_modify_unit_status(unit, id, ref,
2638 ZFCP_STATUS_COMMON_ERP_FAILED |
2639 ZFCP_STATUS_COMMON_ACCESS_DENIED, ZFCP_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641
Martin Peschke9467a9b2008-03-27 14:22:03 +01002642void zfcp_erp_adapter_access_changed(struct zfcp_adapter *adapter, u8 id,
Martin Peschke1f6f7122008-04-18 12:51:55 +02002643 void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
2645 struct zfcp_port *port;
2646 unsigned long flags;
2647
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02002648 if (adapter->connection_features & FSF_FEATURE_NPIV_MODE)
2649 return;
2650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 read_lock_irqsave(&zfcp_data.config_lock, flags);
6f71d9b2005-04-10 23:04:28 -05002652 if (adapter->nameserver_port)
Martin Peschke9467a9b2008-03-27 14:22:03 +01002653 zfcp_erp_port_access_changed(adapter->nameserver_port, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 list_for_each_entry(port, &adapter->port_list_head, list)
2655 if (port != adapter->nameserver_port)
Martin Peschke9467a9b2008-03-27 14:22:03 +01002656 zfcp_erp_port_access_changed(port, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
2658}
2659
Martin Peschke1f6f7122008-04-18 12:51:55 +02002660void zfcp_erp_port_access_changed(struct zfcp_port *port, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 struct zfcp_unit *unit;
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 if (!atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED,
Andreas Herrmannd736a272005-06-13 13:23:57 +02002665 &port->status) &&
2666 !atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_BOXED,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 &port->status)) {
2668 if (!atomic_test_mask(ZFCP_STATUS_PORT_WKA, &port->status))
2669 list_for_each_entry(unit, &port->unit_list_head, list)
Martin Peschke9467a9b2008-03-27 14:22:03 +01002670 zfcp_erp_unit_access_changed(unit, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 return;
2672 }
2673
Christof Schmitt553448f2008-06-10 18:20:58 +02002674 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
Martin Peschke1f6f7122008-04-18 12:51:55 +02002677void zfcp_erp_unit_access_changed(struct zfcp_unit *unit, u8 id, void *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
Andreas Herrmannd736a272005-06-13 13:23:57 +02002679 if (!atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED,
2680 &unit->status) &&
2681 !atomic_test_mask(ZFCP_STATUS_COMMON_ACCESS_BOXED,
2682 &unit->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 return;
2684
Christof Schmitt553448f2008-06-10 18:20:58 +02002685 zfcp_erp_unit_reopen(unit, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686}