blob: c82fe65c41286ae90af5d9d12452df32202e5504 [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 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02006 * Copyright IBM Corp. 2002, 2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Christof Schmitt347c6a92009-08-18 15:43:25 +020012#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "zfcp_ext.h"
Christof Schmittb6bd2fb2010-02-17 11:18:50 +010014#include "zfcp_reqlist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Christof Schmitt287ac012008-07-02 10:56:40 +020016#define ZFCP_MAX_ERPS 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Christof Schmitt287ac012008-07-02 10:56:40 +020018enum zfcp_erp_act_flags {
19 ZFCP_STATUS_ERP_TIMEDOUT = 0x10000000,
20 ZFCP_STATUS_ERP_CLOSE_ONLY = 0x01000000,
21 ZFCP_STATUS_ERP_DISMISSING = 0x00100000,
22 ZFCP_STATUS_ERP_DISMISSED = 0x00200000,
23 ZFCP_STATUS_ERP_LOWMEM = 0x00400000,
Christof Schmittfdbd1c52010-09-08 14:39:54 +020024 ZFCP_STATUS_ERP_NO_REF = 0x00800000,
Christof Schmitt287ac012008-07-02 10:56:40 +020025};
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Christof Schmitt287ac012008-07-02 10:56:40 +020027enum zfcp_erp_steps {
28 ZFCP_ERP_STEP_UNINITIALIZED = 0x0000,
29 ZFCP_ERP_STEP_FSF_XCONFIG = 0x0001,
30 ZFCP_ERP_STEP_PHYS_PORT_CLOSING = 0x0010,
31 ZFCP_ERP_STEP_PORT_CLOSING = 0x0100,
Christof Schmitt287ac012008-07-02 10:56:40 +020032 ZFCP_ERP_STEP_PORT_OPENING = 0x0800,
Christof Schmittb62a8d92010-09-08 14:39:55 +020033 ZFCP_ERP_STEP_LUN_CLOSING = 0x1000,
34 ZFCP_ERP_STEP_LUN_OPENING = 0x2000,
Christof Schmitt287ac012008-07-02 10:56:40 +020035};
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Christof Schmitt287ac012008-07-02 10:56:40 +020037enum zfcp_erp_act_type {
Christof Schmittb62a8d92010-09-08 14:39:55 +020038 ZFCP_ERP_ACTION_REOPEN_LUN = 1,
Christof Schmitt287ac012008-07-02 10:56:40 +020039 ZFCP_ERP_ACTION_REOPEN_PORT = 2,
40 ZFCP_ERP_ACTION_REOPEN_PORT_FORCED = 3,
41 ZFCP_ERP_ACTION_REOPEN_ADAPTER = 4,
42};
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Christof Schmitt287ac012008-07-02 10:56:40 +020044enum zfcp_erp_act_state {
45 ZFCP_ERP_ACTION_RUNNING = 1,
46 ZFCP_ERP_ACTION_READY = 2,
47};
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Christof Schmitt287ac012008-07-02 10:56:40 +020049enum zfcp_erp_act_result {
50 ZFCP_ERP_SUCCEEDED = 0,
51 ZFCP_ERP_FAILED = 1,
52 ZFCP_ERP_CONTINUES = 2,
53 ZFCP_ERP_EXIT = 3,
54 ZFCP_ERP_DISMISSED = 4,
55 ZFCP_ERP_NOMEM = 5,
56};
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Christof Schmitt287ac012008-07-02 10:56:40 +020058static void zfcp_erp_adapter_block(struct zfcp_adapter *adapter, int mask)
Andreas Herrmann2abbe862006-09-18 22:29:56 +020059{
Swen Schilligedaed852010-09-08 14:40:01 +020060 zfcp_erp_clear_adapter_status(adapter,
61 ZFCP_STATUS_COMMON_UNBLOCKED | mask);
Andreas Herrmann2abbe862006-09-18 22:29:56 +020062}
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Christof Schmitt287ac012008-07-02 10:56:40 +020064static int zfcp_erp_action_exists(struct zfcp_erp_action *act)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Christof Schmitt287ac012008-07-02 10:56:40 +020066 struct zfcp_erp_action *curr_act;
67
68 list_for_each_entry(curr_act, &act->adapter->erp_running_head, list)
69 if (act == curr_act)
70 return ZFCP_ERP_ACTION_RUNNING;
71 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Christof Schmitt287ac012008-07-02 10:56:40 +020074static void zfcp_erp_action_ready(struct zfcp_erp_action *act)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Christof Schmitt287ac012008-07-02 10:56:40 +020076 struct zfcp_adapter *adapter = act->adapter;
77
78 list_move(&act->list, &act->adapter->erp_ready_head);
Swen Schilligae0904f2010-12-02 15:16:12 +010079 zfcp_dbf_rec_run("erardy1", act);
Christof Schmitt347c6a92009-08-18 15:43:25 +020080 wake_up(&adapter->erp_ready_wq);
Swen Schilligae0904f2010-12-02 15:16:12 +010081 zfcp_dbf_rec_run("erardy2", act);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Christof Schmitt287ac012008-07-02 10:56:40 +020084static void zfcp_erp_action_dismiss(struct zfcp_erp_action *act)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Christof Schmitt287ac012008-07-02 10:56:40 +020086 act->status |= ZFCP_STATUS_ERP_DISMISSED;
87 if (zfcp_erp_action_exists(act) == ZFCP_ERP_ACTION_RUNNING)
88 zfcp_erp_action_ready(act);
89}
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Christof Schmittb62a8d92010-09-08 14:39:55 +020091static void zfcp_erp_action_dismiss_lun(struct scsi_device *sdev)
Christof Schmitt287ac012008-07-02 10:56:40 +020092{
Christof Schmittb62a8d92010-09-08 14:39:55 +020093 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
94
95 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_ERP_INUSE)
96 zfcp_erp_action_dismiss(&zfcp_sdev->erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +020097}
98
99static void zfcp_erp_action_dismiss_port(struct zfcp_port *port)
100{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200101 struct scsi_device *sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +0200102
103 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_INUSE)
104 zfcp_erp_action_dismiss(&port->erp_action);
Martin Peschke924dd582013-08-22 17:45:37 +0200105 else {
106 spin_lock(port->adapter->scsi_host->host_lock);
107 __shost_for_each_device(sdev, port->adapter->scsi_host)
Christof Schmittb62a8d92010-09-08 14:39:55 +0200108 if (sdev_to_zfcp(sdev)->port == port)
109 zfcp_erp_action_dismiss_lun(sdev);
Martin Peschke924dd582013-08-22 17:45:37 +0200110 spin_unlock(port->adapter->scsi_host->host_lock);
111 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200112}
113
114static void zfcp_erp_action_dismiss_adapter(struct zfcp_adapter *adapter)
115{
116 struct zfcp_port *port;
117
118 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_INUSE)
119 zfcp_erp_action_dismiss(&adapter->erp_action);
Swen Schilligecf0c772009-11-24 16:53:58 +0100120 else {
121 read_lock(&adapter->port_list_lock);
122 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitt287ac012008-07-02 10:56:40 +0200123 zfcp_erp_action_dismiss_port(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100124 read_unlock(&adapter->port_list_lock);
125 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200126}
127
128static int zfcp_erp_required_act(int want, struct zfcp_adapter *adapter,
129 struct zfcp_port *port,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200130 struct scsi_device *sdev)
Christof Schmitt287ac012008-07-02 10:56:40 +0200131{
132 int need = want;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200133 int l_status, p_status, a_status;
134 struct zfcp_scsi_dev *zfcp_sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +0200135
136 switch (want) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200137 case ZFCP_ERP_ACTION_REOPEN_LUN:
138 zfcp_sdev = sdev_to_zfcp(sdev);
139 l_status = atomic_read(&zfcp_sdev->status);
140 if (l_status & ZFCP_STATUS_COMMON_ERP_INUSE)
Christof Schmitt287ac012008-07-02 10:56:40 +0200141 return 0;
142 p_status = atomic_read(&port->status);
143 if (!(p_status & ZFCP_STATUS_COMMON_RUNNING) ||
144 p_status & ZFCP_STATUS_COMMON_ERP_FAILED)
145 return 0;
146 if (!(p_status & ZFCP_STATUS_COMMON_UNBLOCKED))
147 need = ZFCP_ERP_ACTION_REOPEN_PORT;
148 /* fall through */
Christof Schmitt287ac012008-07-02 10:56:40 +0200149 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
150 p_status = atomic_read(&port->status);
Christof Schmitt097ef3b2010-07-08 09:53:06 +0200151 if (!(p_status & ZFCP_STATUS_COMMON_OPEN))
152 need = ZFCP_ERP_ACTION_REOPEN_PORT;
153 /* fall through */
154 case ZFCP_ERP_ACTION_REOPEN_PORT:
155 p_status = atomic_read(&port->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200156 if (p_status & ZFCP_STATUS_COMMON_ERP_INUSE)
157 return 0;
158 a_status = atomic_read(&adapter->status);
159 if (!(a_status & ZFCP_STATUS_COMMON_RUNNING) ||
160 a_status & ZFCP_STATUS_COMMON_ERP_FAILED)
161 return 0;
Swen Schilligd3e10882010-11-17 14:23:42 +0100162 if (p_status & ZFCP_STATUS_COMMON_NOESC)
163 return need;
Christof Schmitt287ac012008-07-02 10:56:40 +0200164 if (!(a_status & ZFCP_STATUS_COMMON_UNBLOCKED))
165 need = ZFCP_ERP_ACTION_REOPEN_ADAPTER;
166 /* fall through */
167 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
168 a_status = atomic_read(&adapter->status);
169 if (a_status & ZFCP_STATUS_COMMON_ERP_INUSE)
170 return 0;
Christof Schmitt143bb6b2009-08-18 15:43:27 +0200171 if (!(a_status & ZFCP_STATUS_COMMON_RUNNING) &&
172 !(a_status & ZFCP_STATUS_COMMON_OPEN))
173 return 0; /* shutdown requested for closed adapter */
Christof Schmitt287ac012008-07-02 10:56:40 +0200174 }
175
176 return need;
177}
178
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200179static struct zfcp_erp_action *zfcp_erp_setup_act(int need, u32 act_status,
Christof Schmitt287ac012008-07-02 10:56:40 +0200180 struct zfcp_adapter *adapter,
181 struct zfcp_port *port,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200182 struct scsi_device *sdev)
Christof Schmitt287ac012008-07-02 10:56:40 +0200183{
184 struct zfcp_erp_action *erp_action;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200185 struct zfcp_scsi_dev *zfcp_sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +0200186
187 switch (need) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200188 case ZFCP_ERP_ACTION_REOPEN_LUN:
189 zfcp_sdev = sdev_to_zfcp(sdev);
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200190 if (!(act_status & ZFCP_STATUS_ERP_NO_REF))
Christof Schmittb62a8d92010-09-08 14:39:55 +0200191 if (scsi_device_get(sdev))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200192 return NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200193 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
194 &zfcp_sdev->status);
195 erp_action = &zfcp_sdev->erp_action;
Swen Schillig14718e32010-11-17 14:23:43 +0100196 memset(erp_action, 0, sizeof(struct zfcp_erp_action));
197 erp_action->port = port;
198 erp_action->sdev = sdev;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200199 if (!(atomic_read(&zfcp_sdev->status) &
200 ZFCP_STATUS_COMMON_RUNNING))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200201 act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY;
Christof Schmitt287ac012008-07-02 10:56:40 +0200202 break;
203
204 case ZFCP_ERP_ACTION_REOPEN_PORT:
205 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100206 if (!get_device(&port->dev))
Swen Schillig6b1833342009-11-24 16:54:05 +0100207 return NULL;
Christof Schmitt287ac012008-07-02 10:56:40 +0200208 zfcp_erp_action_dismiss_port(port);
209 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &port->status);
210 erp_action = &port->erp_action;
Swen Schillig14718e32010-11-17 14:23:43 +0100211 memset(erp_action, 0, sizeof(struct zfcp_erp_action));
212 erp_action->port = port;
Christof Schmitt287ac012008-07-02 10:56:40 +0200213 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_RUNNING))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200214 act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY;
Christof Schmitt287ac012008-07-02 10:56:40 +0200215 break;
216
217 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Swen Schilligf3450c72009-11-24 16:53:59 +0100218 kref_get(&adapter->ref);
Christof Schmitt287ac012008-07-02 10:56:40 +0200219 zfcp_erp_action_dismiss_adapter(adapter);
220 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &adapter->status);
221 erp_action = &adapter->erp_action;
Swen Schillig14718e32010-11-17 14:23:43 +0100222 memset(erp_action, 0, sizeof(struct zfcp_erp_action));
Christof Schmitt287ac012008-07-02 10:56:40 +0200223 if (!(atomic_read(&adapter->status) &
224 ZFCP_STATUS_COMMON_RUNNING))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200225 act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY;
Christof Schmitt287ac012008-07-02 10:56:40 +0200226 break;
227
228 default:
229 return NULL;
230 }
231
Christof Schmitt287ac012008-07-02 10:56:40 +0200232 erp_action->adapter = adapter;
Christof Schmitt287ac012008-07-02 10:56:40 +0200233 erp_action->action = need;
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200234 erp_action->status = act_status;
Christof Schmitt287ac012008-07-02 10:56:40 +0200235
236 return erp_action;
237}
238
239static int zfcp_erp_action_enqueue(int want, struct zfcp_adapter *adapter,
240 struct zfcp_port *port,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200241 struct scsi_device *sdev,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100242 char *id, u32 act_status)
Christof Schmitt287ac012008-07-02 10:56:40 +0200243{
244 int retval = 1, need;
Swen Schilligae0904f2010-12-02 15:16:12 +0100245 struct zfcp_erp_action *act;
Christof Schmitt287ac012008-07-02 10:56:40 +0200246
Christof Schmitt347c6a92009-08-18 15:43:25 +0200247 if (!adapter->erp_thread)
Christof Schmitt287ac012008-07-02 10:56:40 +0200248 return -EIO;
249
Christof Schmittb62a8d92010-09-08 14:39:55 +0200250 need = zfcp_erp_required_act(want, adapter, port, sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +0200251 if (!need)
252 goto out;
253
Christof Schmittb62a8d92010-09-08 14:39:55 +0200254 act = zfcp_erp_setup_act(need, act_status, adapter, port, sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +0200255 if (!act)
256 goto out;
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200257 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING, &adapter->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200258 ++adapter->erp_total_count;
259 list_add_tail(&act->list, &adapter->erp_ready_head);
Christof Schmitt347c6a92009-08-18 15:43:25 +0200260 wake_up(&adapter->erp_ready_wq);
Christof Schmitt287ac012008-07-02 10:56:40 +0200261 retval = 0;
262 out:
Swen Schilligae0904f2010-12-02 15:16:12 +0100263 zfcp_dbf_rec_trig(id, adapter, port, sdev, want, need);
Christof Schmitt287ac012008-07-02 10:56:40 +0200264 return retval;
265}
266
267static int _zfcp_erp_adapter_reopen(struct zfcp_adapter *adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100268 int clear_mask, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200269{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 zfcp_erp_adapter_block(adapter, clear_mask);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100271 zfcp_scsi_schedule_rports_block(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Christof Schmitt287ac012008-07-02 10:56:40 +0200273 /* ensure propagation of failed status to new devices */
274 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
Swen Schilligedaed852010-09-08 14:40:01 +0200275 zfcp_erp_set_adapter_status(adapter,
276 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt287ac012008-07-02 10:56:40 +0200277 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200279 return zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100280 adapter, NULL, NULL, id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/**
Christof Schmitt287ac012008-07-02 10:56:40 +0200284 * zfcp_erp_adapter_reopen - Reopen adapter.
285 * @adapter: Adapter to reopen.
286 * @clear: Status flags to clear.
287 * @id: Id for debug trace event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100289void zfcp_erp_adapter_reopen(struct zfcp_adapter *adapter, int clear, char *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Christof Schmitt287ac012008-07-02 10:56:40 +0200291 unsigned long flags;
292
Swen Schilligecf0c772009-11-24 16:53:58 +0100293 zfcp_erp_adapter_block(adapter, clear);
294 zfcp_scsi_schedule_rports_block(adapter);
295
296 write_lock_irqsave(&adapter->erp_lock, flags);
297 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED)
Swen Schilligedaed852010-09-08 14:40:01 +0200298 zfcp_erp_set_adapter_status(adapter,
299 ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligecf0c772009-11-24 16:53:58 +0100300 else
301 zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER, adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100302 NULL, NULL, id, 0);
Swen Schilligecf0c772009-11-24 16:53:58 +0100303 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200304}
305
306/**
307 * zfcp_erp_adapter_shutdown - Shutdown adapter.
308 * @adapter: Adapter to shut down.
309 * @clear: Status flags to clear.
310 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200311 */
312void zfcp_erp_adapter_shutdown(struct zfcp_adapter *adapter, int clear,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100313 char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200314{
315 int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100316 zfcp_erp_adapter_reopen(adapter, clear | flags, id);
Christof Schmitt287ac012008-07-02 10:56:40 +0200317}
318
319/**
320 * zfcp_erp_port_shutdown - Shutdown port
321 * @port: Port to shut down.
322 * @clear: Status flags to clear.
323 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200324 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100325void zfcp_erp_port_shutdown(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200326{
327 int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100328 zfcp_erp_port_reopen(port, clear | flags, id);
Christof Schmitt287ac012008-07-02 10:56:40 +0200329}
330
Christof Schmitt287ac012008-07-02 10:56:40 +0200331static void zfcp_erp_port_block(struct zfcp_port *port, int clear)
332{
Swen Schilligedaed852010-09-08 14:40:01 +0200333 zfcp_erp_clear_port_status(port,
334 ZFCP_STATUS_COMMON_UNBLOCKED | clear);
Christof Schmitt287ac012008-07-02 10:56:40 +0200335}
336
Swen Schilligea4a3a62010-12-02 15:16:16 +0100337static void _zfcp_erp_port_forced_reopen(struct zfcp_port *port, int clear,
338 char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200339{
340 zfcp_erp_port_block(port, clear);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100341 zfcp_scsi_schedule_rport_block(port);
Christof Schmitt287ac012008-07-02 10:56:40 +0200342
343 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED)
344 return;
345
346 zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT_FORCED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100347 port->adapter, port, NULL, id, 0);
Christof Schmitt287ac012008-07-02 10:56:40 +0200348}
349
350/**
351 * zfcp_erp_port_forced_reopen - Forced close of port and open again
352 * @port: Port to force close and to reopen.
Swen Schilligea4a3a62010-12-02 15:16:16 +0100353 * @clear: Status flags to clear.
Christof Schmitt287ac012008-07-02 10:56:40 +0200354 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200355 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100356void zfcp_erp_port_forced_reopen(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200357{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned long flags;
359 struct zfcp_adapter *adapter = port->adapter;
360
Swen Schilligecf0c772009-11-24 16:53:58 +0100361 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100362 _zfcp_erp_port_forced_reopen(port, clear, id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100363 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200364}
365
Swen Schilligea4a3a62010-12-02 15:16:16 +0100366static int _zfcp_erp_port_reopen(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200367{
368 zfcp_erp_port_block(port, clear);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100369 zfcp_scsi_schedule_rport_block(port);
Christof Schmitt287ac012008-07-02 10:56:40 +0200370
371 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
372 /* ensure propagation of failed status to new devices */
Swen Schilligedaed852010-09-08 14:40:01 +0200373 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt287ac012008-07-02 10:56:40 +0200374 return -EIO;
375 }
376
377 return zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100378 port->adapter, port, NULL, id, 0);
Christof Schmitt287ac012008-07-02 10:56:40 +0200379}
380
381/**
382 * zfcp_erp_port_reopen - trigger remote port recovery
383 * @port: port to recover
384 * @clear_mask: flags in port status to be cleared
Swen Schilligea4a3a62010-12-02 15:16:16 +0100385 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200386 *
387 * Returns 0 if recovery has been triggered, < 0 if not.
388 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100389int zfcp_erp_port_reopen(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200390{
Christof Schmitt287ac012008-07-02 10:56:40 +0200391 int retval;
Swen Schilligecf0c772009-11-24 16:53:58 +0100392 unsigned long flags;
Christof Schmitt287ac012008-07-02 10:56:40 +0200393 struct zfcp_adapter *adapter = port->adapter;
394
Swen Schilligecf0c772009-11-24 16:53:58 +0100395 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100396 retval = _zfcp_erp_port_reopen(port, clear, id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100397 write_unlock_irqrestore(&adapter->erp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 return retval;
400}
401
Christof Schmittb62a8d92010-09-08 14:39:55 +0200402static void zfcp_erp_lun_block(struct scsi_device *sdev, int clear_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Swen Schilligedaed852010-09-08 14:40:01 +0200404 zfcp_erp_clear_lun_status(sdev,
405 ZFCP_STATUS_COMMON_UNBLOCKED | clear_mask);
Christof Schmitt287ac012008-07-02 10:56:40 +0200406}
407
Christof Schmittb62a8d92010-09-08 14:39:55 +0200408static void _zfcp_erp_lun_reopen(struct scsi_device *sdev, int clear, char *id,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100409 u32 act_status)
Christof Schmitt287ac012008-07-02 10:56:40 +0200410{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200411 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
412 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Christof Schmittb62a8d92010-09-08 14:39:55 +0200414 zfcp_erp_lun_block(sdev, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Christof Schmittb62a8d92010-09-08 14:39:55 +0200416 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_ERP_FAILED)
Christof Schmitt287ac012008-07-02 10:56:40 +0200417 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Christof Schmittb62a8d92010-09-08 14:39:55 +0200419 zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_LUN, adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100420 zfcp_sdev->port, sdev, id, act_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200424 * zfcp_erp_lun_reopen - initiate reopen of a LUN
425 * @sdev: SCSI device / LUN to be reopened
426 * @clear_mask: specifies flags in LUN status to be cleared
Swen Schilligea4a3a62010-12-02 15:16:16 +0100427 * @id: Id for debug trace event.
428 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * Return: 0 on success, < 0 on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100431void zfcp_erp_lun_reopen(struct scsi_device *sdev, int clear, char *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 unsigned long flags;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200434 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
435 struct zfcp_port *port = zfcp_sdev->port;
Christof Schmitt287ac012008-07-02 10:56:40 +0200436 struct zfcp_adapter *adapter = port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Swen Schilligecf0c772009-11-24 16:53:58 +0100438 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100439 _zfcp_erp_lun_reopen(sdev, clear, id, 0);
Swen Schilligecf0c772009-11-24 16:53:58 +0100440 write_unlock_irqrestore(&adapter->erp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200443/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200444 * zfcp_erp_lun_shutdown - Shutdown LUN
445 * @sdev: SCSI device / LUN to shut down.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200446 * @clear: Status flags to clear.
447 * @id: Id for debug trace event.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200448 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100449void zfcp_erp_lun_shutdown(struct scsi_device *sdev, int clear, char *id)
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200450{
451 int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100452 zfcp_erp_lun_reopen(sdev, clear | flags, id);
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200453}
454
455/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200456 * zfcp_erp_lun_shutdown_wait - Shutdown LUN and wait for erp completion
457 * @sdev: SCSI device / LUN to shut down.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200458 * @id: Id for debug trace event.
459 *
Christof Schmittb62a8d92010-09-08 14:39:55 +0200460 * Do not acquire a reference for the LUN when creating the ERP
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200461 * action. It is safe, because this function waits for the ERP to
Christof Schmittb62a8d92010-09-08 14:39:55 +0200462 * complete first. This allows to shutdown the LUN, even when the SCSI
463 * device is in the state SDEV_DEL when scsi_device_get will fail.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200464 */
Christof Schmittb62a8d92010-09-08 14:39:55 +0200465void zfcp_erp_lun_shutdown_wait(struct scsi_device *sdev, char *id)
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200466{
467 unsigned long flags;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200468 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
469 struct zfcp_port *port = zfcp_sdev->port;
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200470 struct zfcp_adapter *adapter = port->adapter;
471 int clear = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
472
473 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100474 _zfcp_erp_lun_reopen(sdev, clear, id, ZFCP_STATUS_ERP_NO_REF);
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200475 write_unlock_irqrestore(&adapter->erp_lock, flags);
476
477 zfcp_erp_wait(adapter);
478}
479
Christof Schmitt287ac012008-07-02 10:56:40 +0200480static int status_change_set(unsigned long mask, atomic_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Christof Schmitt287ac012008-07-02 10:56:40 +0200482 return (atomic_read(status) ^ mask) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200485static void zfcp_erp_adapter_unblock(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Christof Schmitt287ac012008-07-02 10:56:40 +0200487 if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &adapter->status))
Swen Schilligae0904f2010-12-02 15:16:12 +0100488 zfcp_dbf_rec_run("eraubl1", &adapter->erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200489 atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Christof Schmitt287ac012008-07-02 10:56:40 +0200492static void zfcp_erp_port_unblock(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Christof Schmitt287ac012008-07-02 10:56:40 +0200494 if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &port->status))
Swen Schilligae0904f2010-12-02 15:16:12 +0100495 zfcp_dbf_rec_run("erpubl1", &port->erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200496 atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Christof Schmittb62a8d92010-09-08 14:39:55 +0200499static void zfcp_erp_lun_unblock(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200501 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
502
503 if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &zfcp_sdev->status))
Swen Schilligae0904f2010-12-02 15:16:12 +0100504 zfcp_dbf_rec_run("erlubl1", &sdev_to_zfcp(sdev)->erp_action);
Christof Schmittb62a8d92010-09-08 14:39:55 +0200505 atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Christof Schmitt287ac012008-07-02 10:56:40 +0200508static void zfcp_erp_action_to_running(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Christof Schmitt287ac012008-07-02 10:56:40 +0200510 list_move(&erp_action->list, &erp_action->adapter->erp_running_head);
Swen Schilligae0904f2010-12-02 15:16:12 +0100511 zfcp_dbf_rec_run("erator1", erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Christof Schmitt287ac012008-07-02 10:56:40 +0200514static void zfcp_erp_strategy_check_fsfreq(struct zfcp_erp_action *act)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Christof Schmitt287ac012008-07-02 10:56:40 +0200516 struct zfcp_adapter *adapter = act->adapter;
Christof Schmitte60a6d62010-02-17 11:18:49 +0100517 struct zfcp_fsf_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Christof Schmitte60a6d62010-02-17 11:18:49 +0100519 if (!act->fsf_req_id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200520 return;
521
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100522 spin_lock(&adapter->req_list->lock);
523 req = _zfcp_reqlist_find(adapter->req_list, act->fsf_req_id);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100524 if (req && req->erp_action == act) {
Christof Schmitt287ac012008-07-02 10:56:40 +0200525 if (act->status & (ZFCP_STATUS_ERP_DISMISSED |
526 ZFCP_STATUS_ERP_TIMEDOUT)) {
Christof Schmitte60a6d62010-02-17 11:18:49 +0100527 req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
Swen Schilligae0904f2010-12-02 15:16:12 +0100528 zfcp_dbf_rec_run("erscf_1", act);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100529 req->erp_action = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200531 if (act->status & ZFCP_STATUS_ERP_TIMEDOUT)
Swen Schilligae0904f2010-12-02 15:16:12 +0100532 zfcp_dbf_rec_run("erscf_2", act);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100533 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED)
534 act->fsf_req_id = 0;
Christof Schmitt287ac012008-07-02 10:56:40 +0200535 } else
Christof Schmitte60a6d62010-02-17 11:18:49 +0100536 act->fsf_req_id = 0;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100537 spin_unlock(&adapter->req_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200540/**
Christof Schmitt287ac012008-07-02 10:56:40 +0200541 * zfcp_erp_notify - Trigger ERP action.
542 * @erp_action: ERP action to continue.
543 * @set_mask: ERP action status flags to set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 */
Christof Schmitt287ac012008-07-02 10:56:40 +0200545void zfcp_erp_notify(struct zfcp_erp_action *erp_action, unsigned long set_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 struct zfcp_adapter *adapter = erp_action->adapter;
548 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 write_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200551 if (zfcp_erp_action_exists(erp_action) == ZFCP_ERP_ACTION_RUNNING) {
552 erp_action->status |= set_mask;
553 zfcp_erp_action_ready(erp_action);
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 write_unlock_irqrestore(&adapter->erp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200558/**
Christof Schmitt287ac012008-07-02 10:56:40 +0200559 * zfcp_erp_timeout_handler - Trigger ERP action from timed out ERP request
560 * @data: ERP action (from timer data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 */
Christof Schmitt287ac012008-07-02 10:56:40 +0200562void zfcp_erp_timeout_handler(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Christof Schmitt287ac012008-07-02 10:56:40 +0200564 struct zfcp_erp_action *act = (struct zfcp_erp_action *) data;
565 zfcp_erp_notify(act, ZFCP_STATUS_ERP_TIMEDOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Christof Schmitt287ac012008-07-02 10:56:40 +0200568static void zfcp_erp_memwait_handler(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Christof Schmitt287ac012008-07-02 10:56:40 +0200570 zfcp_erp_notify((struct zfcp_erp_action *)data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Christof Schmitt287ac012008-07-02 10:56:40 +0200573static void zfcp_erp_strategy_memwait(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 init_timer(&erp_action->timer);
576 erp_action->timer.function = zfcp_erp_memwait_handler;
577 erp_action->timer.data = (unsigned long) erp_action;
Christof Schmitt287ac012008-07-02 10:56:40 +0200578 erp_action->timer.expires = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 add_timer(&erp_action->timer);
Christof Schmitt287ac012008-07-02 10:56:40 +0200580}
581
582static void _zfcp_erp_port_reopen_all(struct zfcp_adapter *adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100583 int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200584{
585 struct zfcp_port *port;
586
Swen Schilligecf0c772009-11-24 16:53:58 +0100587 read_lock(&adapter->port_list_lock);
588 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligea4a3a62010-12-02 15:16:16 +0100589 _zfcp_erp_port_reopen(port, clear, id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100590 read_unlock(&adapter->port_list_lock);
Christof Schmitt287ac012008-07-02 10:56:40 +0200591}
592
Christof Schmittb62a8d92010-09-08 14:39:55 +0200593static void _zfcp_erp_lun_reopen_all(struct zfcp_port *port, int clear,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100594 char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200595{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200596 struct scsi_device *sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +0200597
Martin Peschke924dd582013-08-22 17:45:37 +0200598 spin_lock(port->adapter->scsi_host->host_lock);
599 __shost_for_each_device(sdev, port->adapter->scsi_host)
Christof Schmittb62a8d92010-09-08 14:39:55 +0200600 if (sdev_to_zfcp(sdev)->port == port)
Swen Schilligea4a3a62010-12-02 15:16:16 +0100601 _zfcp_erp_lun_reopen(sdev, clear, id, 0);
Martin Peschke924dd582013-08-22 17:45:37 +0200602 spin_unlock(port->adapter->scsi_host->host_lock);
Christof Schmitt287ac012008-07-02 10:56:40 +0200603}
604
Christof Schmitt85600f72009-07-13 15:06:09 +0200605static void zfcp_erp_strategy_followup_failed(struct zfcp_erp_action *act)
Christof Schmitt287ac012008-07-02 10:56:40 +0200606{
Christof Schmitt287ac012008-07-02 10:56:40 +0200607 switch (act->action) {
Christof Schmitt287ac012008-07-02 10:56:40 +0200608 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100609 _zfcp_erp_adapter_reopen(act->adapter, 0, "ersff_1");
Christof Schmitt287ac012008-07-02 10:56:40 +0200610 break;
Christof Schmitt287ac012008-07-02 10:56:40 +0200611 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100612 _zfcp_erp_port_forced_reopen(act->port, 0, "ersff_2");
Christof Schmitt287ac012008-07-02 10:56:40 +0200613 break;
Christof Schmitt287ac012008-07-02 10:56:40 +0200614 case ZFCP_ERP_ACTION_REOPEN_PORT:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100615 _zfcp_erp_port_reopen(act->port, 0, "ersff_3");
Christof Schmitt287ac012008-07-02 10:56:40 +0200616 break;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200617 case ZFCP_ERP_ACTION_REOPEN_LUN:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100618 _zfcp_erp_lun_reopen(act->sdev, 0, "ersff_4", 0);
Christof Schmitt85600f72009-07-13 15:06:09 +0200619 break;
620 }
621}
622
623static void zfcp_erp_strategy_followup_success(struct zfcp_erp_action *act)
624{
625 switch (act->action) {
626 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100627 _zfcp_erp_port_reopen_all(act->adapter, 0, "ersfs_1");
Christof Schmitt85600f72009-07-13 15:06:09 +0200628 break;
629 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100630 _zfcp_erp_port_reopen(act->port, 0, "ersfs_2");
Christof Schmitt85600f72009-07-13 15:06:09 +0200631 break;
632 case ZFCP_ERP_ACTION_REOPEN_PORT:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100633 _zfcp_erp_lun_reopen_all(act->port, 0, "ersfs_3");
Christof Schmitt287ac012008-07-02 10:56:40 +0200634 break;
635 }
636}
637
638static void zfcp_erp_wakeup(struct zfcp_adapter *adapter)
639{
640 unsigned long flags;
641
Swen Schilligecf0c772009-11-24 16:53:58 +0100642 read_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200643 if (list_empty(&adapter->erp_ready_head) &&
644 list_empty(&adapter->erp_running_head)) {
645 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING,
646 &adapter->status);
647 wake_up(&adapter->erp_done_wqh);
648 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100649 read_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200650}
651
Christof Schmitt287ac012008-07-02 10:56:40 +0200652static void zfcp_erp_enqueue_ptp_port(struct zfcp_adapter *adapter)
653{
654 struct zfcp_port *port;
655 port = zfcp_port_enqueue(adapter, adapter->peer_wwpn, 0,
656 adapter->peer_d_id);
657 if (IS_ERR(port)) /* error or port already attached */
658 return;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100659 _zfcp_erp_port_reopen(port, 0, "ereptp1");
Christof Schmitt287ac012008-07-02 10:56:40 +0200660}
661
662static int zfcp_erp_adapter_strat_fsf_xconf(struct zfcp_erp_action *erp_action)
663{
664 int retries;
665 int sleep = 1;
666 struct zfcp_adapter *adapter = erp_action->adapter;
667
668 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK, &adapter->status);
669
670 for (retries = 7; retries; retries--) {
671 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
672 &adapter->status);
673 write_lock_irq(&adapter->erp_lock);
674 zfcp_erp_action_to_running(erp_action);
675 write_unlock_irq(&adapter->erp_lock);
676 if (zfcp_fsf_exchange_config_data(erp_action)) {
677 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
678 &adapter->status);
679 return ZFCP_ERP_FAILED;
680 }
681
Christof Schmitt347c6a92009-08-18 15:43:25 +0200682 wait_event(adapter->erp_ready_wq,
683 !list_empty(&adapter->erp_ready_head));
Christof Schmitt287ac012008-07-02 10:56:40 +0200684 if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT)
685 break;
686
687 if (!(atomic_read(&adapter->status) &
688 ZFCP_STATUS_ADAPTER_HOST_CON_INIT))
689 break;
690
691 ssleep(sleep);
692 sleep *= 2;
693 }
694
695 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
696 &adapter->status);
697
698 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_XCONFIG_OK))
699 return ZFCP_ERP_FAILED;
700
701 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP)
702 zfcp_erp_enqueue_ptp_port(adapter);
703
704 return ZFCP_ERP_SUCCEEDED;
705}
706
707static int zfcp_erp_adapter_strategy_open_fsf_xport(struct zfcp_erp_action *act)
708{
709 int ret;
710 struct zfcp_adapter *adapter = act->adapter;
711
Christof Schmitt287ac012008-07-02 10:56:40 +0200712 write_lock_irq(&adapter->erp_lock);
713 zfcp_erp_action_to_running(act);
714 write_unlock_irq(&adapter->erp_lock);
715
716 ret = zfcp_fsf_exchange_port_data(act);
717 if (ret == -EOPNOTSUPP)
718 return ZFCP_ERP_SUCCEEDED;
719 if (ret)
720 return ZFCP_ERP_FAILED;
721
Swen Schilligae0904f2010-12-02 15:16:12 +0100722 zfcp_dbf_rec_run("erasox1", act);
Christof Schmitt347c6a92009-08-18 15:43:25 +0200723 wait_event(adapter->erp_ready_wq,
724 !list_empty(&adapter->erp_ready_head));
Swen Schilligae0904f2010-12-02 15:16:12 +0100725 zfcp_dbf_rec_run("erasox2", act);
Christof Schmitt287ac012008-07-02 10:56:40 +0200726 if (act->status & ZFCP_STATUS_ERP_TIMEDOUT)
727 return ZFCP_ERP_FAILED;
728
729 return ZFCP_ERP_SUCCEEDED;
730}
731
732static int zfcp_erp_adapter_strategy_open_fsf(struct zfcp_erp_action *act)
733{
734 if (zfcp_erp_adapter_strat_fsf_xconf(act) == ZFCP_ERP_FAILED)
735 return ZFCP_ERP_FAILED;
736
737 if (zfcp_erp_adapter_strategy_open_fsf_xport(act) == ZFCP_ERP_FAILED)
738 return ZFCP_ERP_FAILED;
739
Christof Schmittc7b279a2011-02-22 19:54:40 +0100740 if (mempool_resize(act->adapter->pool.sr_data,
Christof Schmitt8d88cf32010-06-21 10:11:33 +0200741 act->adapter->stat_read_buf_num, GFP_KERNEL))
742 return ZFCP_ERP_FAILED;
743
744 if (mempool_resize(act->adapter->pool.status_read_req,
745 act->adapter->stat_read_buf_num, GFP_KERNEL))
746 return ZFCP_ERP_FAILED;
747
Christof Schmitt64deb6e2010-04-30 18:09:36 +0200748 atomic_set(&act->adapter->stat_miss, act->adapter->stat_read_buf_num);
Christof Schmitt287ac012008-07-02 10:56:40 +0200749 if (zfcp_status_read_refill(act->adapter))
750 return ZFCP_ERP_FAILED;
751
752 return ZFCP_ERP_SUCCEEDED;
753}
754
Swen Schilligcf13c082009-03-02 13:09:03 +0100755static void zfcp_erp_adapter_strategy_close(struct zfcp_erp_action *act)
Christof Schmitt287ac012008-07-02 10:56:40 +0200756{
Christof Schmitt287ac012008-07-02 10:56:40 +0200757 struct zfcp_adapter *adapter = act->adapter;
758
Christof Schmitt287ac012008-07-02 10:56:40 +0200759 /* close queues to ensure that buffers are not accessed by adapter */
Swen Schillig564e1c82009-08-18 15:43:19 +0200760 zfcp_qdio_close(adapter->qdio);
Christof Schmitt287ac012008-07-02 10:56:40 +0200761 zfcp_fsf_req_dismiss_all(adapter);
762 adapter->fsf_req_seq_no = 0;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200763 zfcp_fc_wka_ports_force_offline(adapter->gs);
Christof Schmittb62a8d92010-09-08 14:39:55 +0200764 /* all ports and LUNs are closed */
Swen Schilligedaed852010-09-08 14:40:01 +0200765 zfcp_erp_clear_adapter_status(adapter, ZFCP_STATUS_COMMON_OPEN);
Swen Schilligcf13c082009-03-02 13:09:03 +0100766
Christof Schmitt287ac012008-07-02 10:56:40 +0200767 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK |
Swen Schilligcf13c082009-03-02 13:09:03 +0100768 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
769}
770
771static int zfcp_erp_adapter_strategy_open(struct zfcp_erp_action *act)
772{
773 struct zfcp_adapter *adapter = act->adapter;
774
Christof Schmitt3d63d3b2010-12-02 15:16:17 +0100775 if (zfcp_qdio_open(adapter->qdio)) {
Swen Schilligcf13c082009-03-02 13:09:03 +0100776 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK |
777 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED,
778 &adapter->status);
779 return ZFCP_ERP_FAILED;
780 }
781
782 if (zfcp_erp_adapter_strategy_open_fsf(act)) {
783 zfcp_erp_adapter_strategy_close(act);
784 return ZFCP_ERP_FAILED;
785 }
786
787 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &adapter->status);
788
789 return ZFCP_ERP_SUCCEEDED;
Christof Schmitt287ac012008-07-02 10:56:40 +0200790}
791
792static int zfcp_erp_adapter_strategy(struct zfcp_erp_action *act)
793{
Swen Schilligcf13c082009-03-02 13:09:03 +0100794 struct zfcp_adapter *adapter = act->adapter;
Christof Schmitt287ac012008-07-02 10:56:40 +0200795
Swen Schilligcf13c082009-03-02 13:09:03 +0100796 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN) {
797 zfcp_erp_adapter_strategy_close(act);
798 if (act->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
799 return ZFCP_ERP_EXIT;
800 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200801
Swen Schilligcf13c082009-03-02 13:09:03 +0100802 if (zfcp_erp_adapter_strategy_open(act)) {
Christof Schmitt287ac012008-07-02 10:56:40 +0200803 ssleep(8);
Swen Schilligcf13c082009-03-02 13:09:03 +0100804 return ZFCP_ERP_FAILED;
805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Swen Schilligcf13c082009-03-02 13:09:03 +0100807 return ZFCP_ERP_SUCCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Christof Schmitt287ac012008-07-02 10:56:40 +0200810static int zfcp_erp_port_forced_strategy_close(struct zfcp_erp_action *act)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Christof Schmitt287ac012008-07-02 10:56:40 +0200812 int retval;
813
814 retval = zfcp_fsf_close_physical_port(act);
815 if (retval == -ENOMEM)
816 return ZFCP_ERP_NOMEM;
817 act->step = ZFCP_ERP_STEP_PHYS_PORT_CLOSING;
818 if (retval)
819 return ZFCP_ERP_FAILED;
820
821 return ZFCP_ERP_CONTINUES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Christof Schmitt287ac012008-07-02 10:56:40 +0200824static void zfcp_erp_port_strategy_clearstati(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100826 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED, &port->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200827}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Christof Schmitt287ac012008-07-02 10:56:40 +0200829static int zfcp_erp_port_forced_strategy(struct zfcp_erp_action *erp_action)
830{
831 struct zfcp_port *port = erp_action->port;
832 int status = atomic_read(&port->status);
833
834 switch (erp_action->step) {
835 case ZFCP_ERP_STEP_UNINITIALIZED:
836 zfcp_erp_port_strategy_clearstati(port);
837 if ((status & ZFCP_STATUS_PORT_PHYS_OPEN) &&
838 (status & ZFCP_STATUS_COMMON_OPEN))
839 return zfcp_erp_port_forced_strategy_close(erp_action);
840 else
841 return ZFCP_ERP_FAILED;
842
843 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING:
Christof Schmittddb3e0c2009-07-13 15:06:08 +0200844 if (!(status & ZFCP_STATUS_PORT_PHYS_OPEN))
Christof Schmitt287ac012008-07-02 10:56:40 +0200845 return ZFCP_ERP_SUCCEEDED;
846 }
847 return ZFCP_ERP_FAILED;
848}
849
850static int zfcp_erp_port_strategy_close(struct zfcp_erp_action *erp_action)
851{
852 int retval;
853
854 retval = zfcp_fsf_close_port(erp_action);
855 if (retval == -ENOMEM)
856 return ZFCP_ERP_NOMEM;
857 erp_action->step = ZFCP_ERP_STEP_PORT_CLOSING;
858 if (retval)
859 return ZFCP_ERP_FAILED;
860 return ZFCP_ERP_CONTINUES;
861}
862
863static int zfcp_erp_port_strategy_open_port(struct zfcp_erp_action *erp_action)
864{
865 int retval;
866
867 retval = zfcp_fsf_open_port(erp_action);
868 if (retval == -ENOMEM)
869 return ZFCP_ERP_NOMEM;
870 erp_action->step = ZFCP_ERP_STEP_PORT_OPENING;
871 if (retval)
872 return ZFCP_ERP_FAILED;
873 return ZFCP_ERP_CONTINUES;
874}
875
Christof Schmitt287ac012008-07-02 10:56:40 +0200876static int zfcp_erp_open_ptp_port(struct zfcp_erp_action *act)
877{
878 struct zfcp_adapter *adapter = act->adapter;
879 struct zfcp_port *port = act->port;
880
881 if (port->wwpn != adapter->peer_wwpn) {
Swen Schilligedaed852010-09-08 14:40:01 +0200882 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt287ac012008-07-02 10:56:40 +0200883 return ZFCP_ERP_FAILED;
884 }
885 port->d_id = adapter->peer_d_id;
Christof Schmitt287ac012008-07-02 10:56:40 +0200886 return zfcp_erp_port_strategy_open_port(act);
887}
888
889static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *act)
890{
891 struct zfcp_adapter *adapter = act->adapter;
892 struct zfcp_port *port = act->port;
Christof Schmitt287ac012008-07-02 10:56:40 +0200893 int p_status = atomic_read(&port->status);
894
895 switch (act->step) {
896 case ZFCP_ERP_STEP_UNINITIALIZED:
897 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING:
898 case ZFCP_ERP_STEP_PORT_CLOSING:
899 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP)
900 return zfcp_erp_open_ptp_port(act);
Christof Schmittb98478d2008-12-19 16:56:59 +0100901 if (!port->d_id) {
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200902 zfcp_fc_trigger_did_lookup(port);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200903 return ZFCP_ERP_EXIT;
Christof Schmitt287ac012008-07-02 10:56:40 +0200904 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200905 return zfcp_erp_port_strategy_open_port(act);
906
907 case ZFCP_ERP_STEP_PORT_OPENING:
908 /* D_ID might have changed during open */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200909 if (p_status & ZFCP_STATUS_COMMON_OPEN) {
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200910 if (!port->d_id) {
911 zfcp_fc_trigger_did_lookup(port);
912 return ZFCP_ERP_EXIT;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200913 }
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200914 return ZFCP_ERP_SUCCEEDED;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200915 }
Swen Schilligea460a82009-05-15 13:18:20 +0200916 if (port->d_id && !(p_status & ZFCP_STATUS_COMMON_NOESC)) {
917 port->d_id = 0;
Christof Schmittf7bd7c32010-07-08 09:53:10 +0200918 return ZFCP_ERP_FAILED;
Swen Schilligea460a82009-05-15 13:18:20 +0200919 }
920 /* fall through otherwise */
Christof Schmitt287ac012008-07-02 10:56:40 +0200921 }
922 return ZFCP_ERP_FAILED;
923}
924
Christof Schmitt287ac012008-07-02 10:56:40 +0200925static int zfcp_erp_port_strategy(struct zfcp_erp_action *erp_action)
926{
927 struct zfcp_port *port = erp_action->port;
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200928 int p_status = atomic_read(&port->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200929
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200930 if ((p_status & ZFCP_STATUS_COMMON_NOESC) &&
931 !(p_status & ZFCP_STATUS_COMMON_OPEN))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200932 goto close_init_done;
933
Christof Schmitt287ac012008-07-02 10:56:40 +0200934 switch (erp_action->step) {
935 case ZFCP_ERP_STEP_UNINITIALIZED:
936 zfcp_erp_port_strategy_clearstati(port);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200937 if (p_status & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +0200938 return zfcp_erp_port_strategy_close(erp_action);
939 break;
940
941 case ZFCP_ERP_STEP_PORT_CLOSING:
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200942 if (p_status & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +0200943 return ZFCP_ERP_FAILED;
944 break;
945 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200946
947close_init_done:
Christof Schmitt287ac012008-07-02 10:56:40 +0200948 if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
949 return ZFCP_ERP_EXIT;
Christof Schmitt287ac012008-07-02 10:56:40 +0200950
Swen Schillig5ab944f2008-10-01 12:42:17 +0200951 return zfcp_erp_port_strategy_open_common(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Christof Schmittb62a8d92010-09-08 14:39:55 +0200954static void zfcp_erp_lun_strategy_clearstati(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200956 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
957
Martin Peschke663e0892013-04-26 16:13:54 +0200958 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200959 &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Christof Schmittb62a8d92010-09-08 14:39:55 +0200962static int zfcp_erp_lun_strategy_close(struct zfcp_erp_action *erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200963{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200964 int retval = zfcp_fsf_close_lun(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200965 if (retval == -ENOMEM)
966 return ZFCP_ERP_NOMEM;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200967 erp_action->step = ZFCP_ERP_STEP_LUN_CLOSING;
Christof Schmitt287ac012008-07-02 10:56:40 +0200968 if (retval)
969 return ZFCP_ERP_FAILED;
970 return ZFCP_ERP_CONTINUES;
971}
972
Christof Schmittb62a8d92010-09-08 14:39:55 +0200973static int zfcp_erp_lun_strategy_open(struct zfcp_erp_action *erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200974{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200975 int retval = zfcp_fsf_open_lun(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200976 if (retval == -ENOMEM)
977 return ZFCP_ERP_NOMEM;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200978 erp_action->step = ZFCP_ERP_STEP_LUN_OPENING;
Christof Schmitt287ac012008-07-02 10:56:40 +0200979 if (retval)
980 return ZFCP_ERP_FAILED;
981 return ZFCP_ERP_CONTINUES;
982}
983
Christof Schmittb62a8d92010-09-08 14:39:55 +0200984static int zfcp_erp_lun_strategy(struct zfcp_erp_action *erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200985{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200986 struct scsi_device *sdev = erp_action->sdev;
987 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +0200988
989 switch (erp_action->step) {
990 case ZFCP_ERP_STEP_UNINITIALIZED:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200991 zfcp_erp_lun_strategy_clearstati(sdev);
992 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_OPEN)
993 return zfcp_erp_lun_strategy_close(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200994 /* already closed, fall through */
Christof Schmittb62a8d92010-09-08 14:39:55 +0200995 case ZFCP_ERP_STEP_LUN_CLOSING:
996 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +0200997 return ZFCP_ERP_FAILED;
998 if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
999 return ZFCP_ERP_EXIT;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001000 return zfcp_erp_lun_strategy_open(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +02001001
Christof Schmittb62a8d92010-09-08 14:39:55 +02001002 case ZFCP_ERP_STEP_LUN_OPENING:
1003 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +02001004 return ZFCP_ERP_SUCCEEDED;
1005 }
1006 return ZFCP_ERP_FAILED;
1007}
1008
Christof Schmittb62a8d92010-09-08 14:39:55 +02001009static int zfcp_erp_strategy_check_lun(struct scsi_device *sdev, int result)
Christof Schmitt287ac012008-07-02 10:56:40 +02001010{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001011 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
1012
Christof Schmitt287ac012008-07-02 10:56:40 +02001013 switch (result) {
1014 case ZFCP_ERP_SUCCEEDED :
Christof Schmittb62a8d92010-09-08 14:39:55 +02001015 atomic_set(&zfcp_sdev->erp_counter, 0);
1016 zfcp_erp_lun_unblock(sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +02001017 break;
1018 case ZFCP_ERP_FAILED :
Christof Schmittb62a8d92010-09-08 14:39:55 +02001019 atomic_inc(&zfcp_sdev->erp_counter);
1020 if (atomic_read(&zfcp_sdev->erp_counter) > ZFCP_MAX_ERPS) {
1021 dev_err(&zfcp_sdev->port->adapter->ccw_device->dev,
1022 "ERP failed for LUN 0x%016Lx on "
Christof Schmittff3b24f2008-10-01 12:42:15 +02001023 "port 0x%016Lx\n",
Christof Schmittb62a8d92010-09-08 14:39:55 +02001024 (unsigned long long)zfcp_scsi_dev_lun(sdev),
1025 (unsigned long long)zfcp_sdev->port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001026 zfcp_erp_set_lun_status(sdev,
1027 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001028 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001029 break;
1030 }
1031
Christof Schmittb62a8d92010-09-08 14:39:55 +02001032 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
1033 zfcp_erp_lun_block(sdev, 0);
Christof Schmitt287ac012008-07-02 10:56:40 +02001034 result = ZFCP_ERP_EXIT;
1035 }
1036 return result;
1037}
1038
1039static int zfcp_erp_strategy_check_port(struct zfcp_port *port, int result)
1040{
1041 switch (result) {
1042 case ZFCP_ERP_SUCCEEDED :
1043 atomic_set(&port->erp_counter, 0);
1044 zfcp_erp_port_unblock(port);
1045 break;
1046
1047 case ZFCP_ERP_FAILED :
1048 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC) {
1049 zfcp_erp_port_block(port, 0);
1050 result = ZFCP_ERP_EXIT;
1051 }
1052 atomic_inc(&port->erp_counter);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001053 if (atomic_read(&port->erp_counter) > ZFCP_MAX_ERPS) {
1054 dev_err(&port->adapter->ccw_device->dev,
1055 "ERP failed for remote port 0x%016Lx\n",
Swen Schillig7ba58c92008-10-01 12:42:18 +02001056 (unsigned long long)port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001057 zfcp_erp_set_port_status(port,
1058 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001059 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001060 break;
1061 }
1062
1063 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
1064 zfcp_erp_port_block(port, 0);
1065 result = ZFCP_ERP_EXIT;
1066 }
1067 return result;
1068}
1069
1070static int zfcp_erp_strategy_check_adapter(struct zfcp_adapter *adapter,
1071 int result)
1072{
1073 switch (result) {
1074 case ZFCP_ERP_SUCCEEDED :
1075 atomic_set(&adapter->erp_counter, 0);
1076 zfcp_erp_adapter_unblock(adapter);
1077 break;
1078
1079 case ZFCP_ERP_FAILED :
1080 atomic_inc(&adapter->erp_counter);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001081 if (atomic_read(&adapter->erp_counter) > ZFCP_MAX_ERPS) {
1082 dev_err(&adapter->ccw_device->dev,
1083 "ERP cannot recover an error "
1084 "on the FCP device\n");
Swen Schilligedaed852010-09-08 14:40:01 +02001085 zfcp_erp_set_adapter_status(adapter,
1086 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001087 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001088 break;
1089 }
1090
1091 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
1092 zfcp_erp_adapter_block(adapter, 0);
1093 result = ZFCP_ERP_EXIT;
1094 }
1095 return result;
1096}
1097
1098static int zfcp_erp_strategy_check_target(struct zfcp_erp_action *erp_action,
1099 int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
1101 struct zfcp_adapter *adapter = erp_action->adapter;
1102 struct zfcp_port *port = erp_action->port;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001103 struct scsi_device *sdev = erp_action->sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 switch (erp_action->action) {
1106
Christof Schmittb62a8d92010-09-08 14:39:55 +02001107 case ZFCP_ERP_ACTION_REOPEN_LUN:
1108 result = zfcp_erp_strategy_check_lun(sdev, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 break;
1110
1111 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1112 case ZFCP_ERP_ACTION_REOPEN_PORT:
1113 result = zfcp_erp_strategy_check_port(port, result);
1114 break;
1115
1116 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1117 result = zfcp_erp_strategy_check_adapter(adapter, result);
1118 break;
1119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return result;
1121}
1122
Christof Schmitt287ac012008-07-02 10:56:40 +02001123static int zfcp_erp_strat_change_det(atomic_t *target_status, u32 erp_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Christof Schmitt287ac012008-07-02 10:56:40 +02001125 int status = atomic_read(target_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Christof Schmitt287ac012008-07-02 10:56:40 +02001127 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
1128 (erp_status & ZFCP_STATUS_ERP_CLOSE_ONLY))
1129 return 1; /* take it online */
1130
1131 if (!(status & ZFCP_STATUS_COMMON_RUNNING) &&
1132 !(erp_status & ZFCP_STATUS_ERP_CLOSE_ONLY))
1133 return 1; /* take it offline */
1134
1135 return 0;
1136}
1137
1138static int zfcp_erp_strategy_statechange(struct zfcp_erp_action *act, int ret)
1139{
1140 int action = act->action;
1141 struct zfcp_adapter *adapter = act->adapter;
1142 struct zfcp_port *port = act->port;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001143 struct scsi_device *sdev = act->sdev;
1144 struct zfcp_scsi_dev *zfcp_sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +02001145 u32 erp_status = act->status;
1146
1147 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Christof Schmitt287ac012008-07-02 10:56:40 +02001149 if (zfcp_erp_strat_change_det(&adapter->status, erp_status)) {
1150 _zfcp_erp_adapter_reopen(adapter,
1151 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001152 "ersscg1");
Christof Schmitt287ac012008-07-02 10:56:40 +02001153 return ZFCP_ERP_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155 break;
1156
1157 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1158 case ZFCP_ERP_ACTION_REOPEN_PORT:
Christof Schmitt287ac012008-07-02 10:56:40 +02001159 if (zfcp_erp_strat_change_det(&port->status, erp_status)) {
1160 _zfcp_erp_port_reopen(port,
1161 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001162 "ersscg2");
Christof Schmitt287ac012008-07-02 10:56:40 +02001163 return ZFCP_ERP_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165 break;
1166
Christof Schmittb62a8d92010-09-08 14:39:55 +02001167 case ZFCP_ERP_ACTION_REOPEN_LUN:
1168 zfcp_sdev = sdev_to_zfcp(sdev);
1169 if (zfcp_erp_strat_change_det(&zfcp_sdev->status, erp_status)) {
1170 _zfcp_erp_lun_reopen(sdev,
1171 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001172 "ersscg3", 0);
Christof Schmitt287ac012008-07-02 10:56:40 +02001173 return ZFCP_ERP_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175 break;
1176 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001177 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Christof Schmitt287ac012008-07-02 10:56:40 +02001180static void zfcp_erp_action_dequeue(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Christof Schmitt287ac012008-07-02 10:56:40 +02001182 struct zfcp_adapter *adapter = erp_action->adapter;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001183 struct zfcp_scsi_dev *zfcp_sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Christof Schmitt287ac012008-07-02 10:56:40 +02001185 adapter->erp_total_count--;
1186 if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) {
1187 adapter->erp_low_mem_count--;
1188 erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
Christof Schmitt287ac012008-07-02 10:56:40 +02001191 list_del(&erp_action->list);
Swen Schilligae0904f2010-12-02 15:16:12 +01001192 zfcp_dbf_rec_run("eractd1", erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Christof Schmitt287ac012008-07-02 10:56:40 +02001194 switch (erp_action->action) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001195 case ZFCP_ERP_ACTION_REOPEN_LUN:
1196 zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +02001197 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
Christof Schmittb62a8d92010-09-08 14:39:55 +02001198 &zfcp_sdev->status);
Christof Schmitt287ac012008-07-02 10:56:40 +02001199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Christof Schmitt287ac012008-07-02 10:56:40 +02001201 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1202 case ZFCP_ERP_ACTION_REOPEN_PORT:
1203 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
1204 &erp_action->port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 break;
Christof Schmitt287ac012008-07-02 10:56:40 +02001206
1207 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1208 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
1209 &erp_action->adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 break;
1211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
Christof Schmitt287ac012008-07-02 10:56:40 +02001214static void zfcp_erp_action_cleanup(struct zfcp_erp_action *act, int result)
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001215{
Christof Schmitt287ac012008-07-02 10:56:40 +02001216 struct zfcp_adapter *adapter = act->adapter;
1217 struct zfcp_port *port = act->port;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001218 struct scsi_device *sdev = act->sdev;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001219
Christof Schmitt287ac012008-07-02 10:56:40 +02001220 switch (act->action) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001221 case ZFCP_ERP_ACTION_REOPEN_LUN:
Christof Schmittfdbd1c52010-09-08 14:39:54 +02001222 if (!(act->status & ZFCP_STATUS_ERP_NO_REF))
Christof Schmittb62a8d92010-09-08 14:39:55 +02001223 scsi_device_put(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 break;
Christof Schmitt287ac012008-07-02 10:56:40 +02001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 case ZFCP_ERP_ACTION_REOPEN_PORT:
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01001227 if (result == ZFCP_ERP_SUCCEEDED)
1228 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt57676202010-07-08 09:53:05 +02001229 /* fall through */
1230 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Christof Schmitt615f59e2010-02-17 11:18:56 +01001231 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 break;
Christof Schmitt287ac012008-07-02 10:56:40 +02001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01001235 if (result == ZFCP_ERP_SUCCEEDED) {
Christof Schmittbd43a42b72008-12-25 13:38:50 +01001236 register_service_level(&adapter->service_level);
Steffen Maier43f60cb2012-09-04 15:23:35 +02001237 zfcp_fc_conditional_port_scan(adapter);
Christof Schmitt038d9442011-02-22 19:54:48 +01001238 queue_work(adapter->work_queue, &adapter->ns_up_work);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01001239 } else
1240 unregister_service_level(&adapter->service_level);
Christof Schmitt038d9442011-02-22 19:54:48 +01001241
Swen Schilligf3450c72009-11-24 16:53:59 +01001242 kref_put(&adapter->ref, zfcp_adapter_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245}
1246
Christof Schmitt287ac012008-07-02 10:56:40 +02001247static int zfcp_erp_strategy_do_action(struct zfcp_erp_action *erp_action)
1248{
1249 switch (erp_action->action) {
1250 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1251 return zfcp_erp_adapter_strategy(erp_action);
1252 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1253 return zfcp_erp_port_forced_strategy(erp_action);
1254 case ZFCP_ERP_ACTION_REOPEN_PORT:
1255 return zfcp_erp_port_strategy(erp_action);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001256 case ZFCP_ERP_ACTION_REOPEN_LUN:
1257 return zfcp_erp_lun_strategy(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +02001258 }
1259 return ZFCP_ERP_FAILED;
1260}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Christof Schmitt287ac012008-07-02 10:56:40 +02001262static int zfcp_erp_strategy(struct zfcp_erp_action *erp_action)
1263{
1264 int retval;
Christof Schmitt287ac012008-07-02 10:56:40 +02001265 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +01001266 struct zfcp_adapter *adapter = erp_action->adapter;
Christof Schmitt287ac012008-07-02 10:56:40 +02001267
Swen Schilligf3450c72009-11-24 16:53:59 +01001268 kref_get(&adapter->ref);
Christof Schmitt287ac012008-07-02 10:56:40 +02001269
Swen Schilligf3450c72009-11-24 16:53:59 +01001270 write_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001271 zfcp_erp_strategy_check_fsfreq(erp_action);
1272
1273 if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED) {
1274 zfcp_erp_action_dequeue(erp_action);
1275 retval = ZFCP_ERP_DISMISSED;
1276 goto unlock;
1277 }
1278
Christof Schmitt9c785d92010-07-08 09:53:09 +02001279 if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT) {
1280 retval = ZFCP_ERP_FAILED;
1281 goto check_target;
1282 }
1283
Christof Schmitt287ac012008-07-02 10:56:40 +02001284 zfcp_erp_action_to_running(erp_action);
1285
1286 /* no lock to allow for blocking operations */
Swen Schilligecf0c772009-11-24 16:53:58 +01001287 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001288 retval = zfcp_erp_strategy_do_action(erp_action);
Swen Schilligecf0c772009-11-24 16:53:58 +01001289 write_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001290
1291 if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED)
1292 retval = ZFCP_ERP_CONTINUES;
1293
1294 switch (retval) {
1295 case ZFCP_ERP_NOMEM:
1296 if (!(erp_action->status & ZFCP_STATUS_ERP_LOWMEM)) {
1297 ++adapter->erp_low_mem_count;
1298 erp_action->status |= ZFCP_STATUS_ERP_LOWMEM;
1299 }
1300 if (adapter->erp_total_count == adapter->erp_low_mem_count)
Swen Schilligea4a3a62010-12-02 15:16:16 +01001301 _zfcp_erp_adapter_reopen(adapter, 0, "erstgy1");
Christof Schmitt287ac012008-07-02 10:56:40 +02001302 else {
1303 zfcp_erp_strategy_memwait(erp_action);
1304 retval = ZFCP_ERP_CONTINUES;
1305 }
1306 goto unlock;
1307
1308 case ZFCP_ERP_CONTINUES:
1309 if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) {
1310 --adapter->erp_low_mem_count;
1311 erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM;
1312 }
1313 goto unlock;
1314 }
1315
Christof Schmitt9c785d92010-07-08 09:53:09 +02001316check_target:
Christof Schmitt287ac012008-07-02 10:56:40 +02001317 retval = zfcp_erp_strategy_check_target(erp_action, retval);
1318 zfcp_erp_action_dequeue(erp_action);
1319 retval = zfcp_erp_strategy_statechange(erp_action, retval);
1320 if (retval == ZFCP_ERP_EXIT)
1321 goto unlock;
Christof Schmitt85600f72009-07-13 15:06:09 +02001322 if (retval == ZFCP_ERP_SUCCEEDED)
1323 zfcp_erp_strategy_followup_success(erp_action);
1324 if (retval == ZFCP_ERP_FAILED)
1325 zfcp_erp_strategy_followup_failed(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +02001326
1327 unlock:
Swen Schilligecf0c772009-11-24 16:53:58 +01001328 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001329
1330 if (retval != ZFCP_ERP_CONTINUES)
1331 zfcp_erp_action_cleanup(erp_action, retval);
1332
Swen Schilligf3450c72009-11-24 16:53:59 +01001333 kref_put(&adapter->ref, zfcp_adapter_release);
Christof Schmitt287ac012008-07-02 10:56:40 +02001334 return retval;
1335}
1336
1337static int zfcp_erp_thread(void *data)
1338{
1339 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
1340 struct list_head *next;
1341 struct zfcp_erp_action *act;
1342 unsigned long flags;
1343
Christof Schmitt347c6a92009-08-18 15:43:25 +02001344 for (;;) {
Christof Schmitt347c6a92009-08-18 15:43:25 +02001345 wait_event_interruptible(adapter->erp_ready_wq,
1346 !list_empty(&adapter->erp_ready_head) ||
1347 kthread_should_stop());
Swen Schillig94ab4b32009-04-17 15:08:06 +02001348
Christof Schmitt347c6a92009-08-18 15:43:25 +02001349 if (kthread_should_stop())
1350 break;
1351
Christof Schmitt287ac012008-07-02 10:56:40 +02001352 write_lock_irqsave(&adapter->erp_lock, flags);
1353 next = adapter->erp_ready_head.next;
1354 write_unlock_irqrestore(&adapter->erp_lock, flags);
1355
1356 if (next != &adapter->erp_ready_head) {
1357 act = list_entry(next, struct zfcp_erp_action, list);
1358
1359 /* there is more to come after dismission, no notify */
1360 if (zfcp_erp_strategy(act) != ZFCP_ERP_DISMISSED)
1361 zfcp_erp_wakeup(adapter);
1362 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001363 }
1364
Christof Schmitt287ac012008-07-02 10:56:40 +02001365 return 0;
1366}
1367
1368/**
1369 * zfcp_erp_thread_setup - Start ERP thread for adapter
1370 * @adapter: Adapter to start the ERP thread for
1371 *
1372 * Returns 0 on success or error code from kernel_thread()
1373 */
1374int zfcp_erp_thread_setup(struct zfcp_adapter *adapter)
1375{
Christof Schmitt347c6a92009-08-18 15:43:25 +02001376 struct task_struct *thread;
Christof Schmitt287ac012008-07-02 10:56:40 +02001377
Christof Schmitt347c6a92009-08-18 15:43:25 +02001378 thread = kthread_run(zfcp_erp_thread, adapter, "zfcperp%s",
1379 dev_name(&adapter->ccw_device->dev));
1380 if (IS_ERR(thread)) {
Christof Schmitt287ac012008-07-02 10:56:40 +02001381 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001382 "Creating an ERP thread for the FCP device failed.\n");
Christof Schmitt347c6a92009-08-18 15:43:25 +02001383 return PTR_ERR(thread);
Christof Schmitt287ac012008-07-02 10:56:40 +02001384 }
Christof Schmitt347c6a92009-08-18 15:43:25 +02001385
1386 adapter->erp_thread = thread;
Christof Schmitt287ac012008-07-02 10:56:40 +02001387 return 0;
1388}
1389
1390/**
1391 * zfcp_erp_thread_kill - Stop ERP thread.
1392 * @adapter: Adapter where the ERP thread should be stopped.
1393 *
1394 * The caller of this routine ensures that the specified adapter has
1395 * been shut down and that this operation has been completed. Thus,
1396 * there are no pending erp_actions which would need to be handled
1397 * here.
1398 */
1399void zfcp_erp_thread_kill(struct zfcp_adapter *adapter)
1400{
Christof Schmitt347c6a92009-08-18 15:43:25 +02001401 kthread_stop(adapter->erp_thread);
1402 adapter->erp_thread = NULL;
Christof Schmitt143bb6b2009-08-18 15:43:27 +02001403 WARN_ON(!list_empty(&adapter->erp_ready_head));
1404 WARN_ON(!list_empty(&adapter->erp_running_head));
Christof Schmitt287ac012008-07-02 10:56:40 +02001405}
1406
1407/**
Christof Schmitt287ac012008-07-02 10:56:40 +02001408 * zfcp_erp_wait - wait for completion of error recovery on an adapter
1409 * @adapter: adapter for which to wait for completion of its error recovery
1410 */
1411void zfcp_erp_wait(struct zfcp_adapter *adapter)
1412{
1413 wait_event(adapter->erp_done_wqh,
1414 !(atomic_read(&adapter->status) &
1415 ZFCP_STATUS_ADAPTER_ERP_PENDING));
1416}
1417
1418/**
Swen Schilligedaed852010-09-08 14:40:01 +02001419 * zfcp_erp_set_adapter_status - set adapter status bits
Christof Schmitt287ac012008-07-02 10:56:40 +02001420 * @adapter: adapter to change the status
Christof Schmitt287ac012008-07-02 10:56:40 +02001421 * @mask: status bits to change
Christof Schmitt287ac012008-07-02 10:56:40 +02001422 *
Christof Schmittb62a8d92010-09-08 14:39:55 +02001423 * Changes in common status bits are propagated to attached ports and LUNs.
Christof Schmitt287ac012008-07-02 10:56:40 +02001424 */
Swen Schilligedaed852010-09-08 14:40:01 +02001425void zfcp_erp_set_adapter_status(struct zfcp_adapter *adapter, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 struct zfcp_port *port;
Swen Schilligedaed852010-09-08 14:40:01 +02001428 struct scsi_device *sdev;
Swen Schilligecf0c772009-11-24 16:53:58 +01001429 unsigned long flags;
Christof Schmitt287ac012008-07-02 10:56:40 +02001430 u32 common_mask = mask & ZFCP_COMMON_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Swen Schilligedaed852010-09-08 14:40:01 +02001432 atomic_set_mask(mask, &adapter->status);
Christof Schmitt287ac012008-07-02 10:56:40 +02001433
Swen Schilligedaed852010-09-08 14:40:01 +02001434 if (!common_mask)
1435 return;
1436
1437 read_lock_irqsave(&adapter->port_list_lock, flags);
1438 list_for_each_entry(port, &adapter->port_list, list)
1439 atomic_set_mask(common_mask, &port->status);
1440 read_unlock_irqrestore(&adapter->port_list_lock, flags);
1441
Martin Peschke924dd582013-08-22 17:45:37 +02001442 spin_lock_irqsave(adapter->scsi_host->host_lock, flags);
1443 __shost_for_each_device(sdev, adapter->scsi_host)
Swen Schilligedaed852010-09-08 14:40:01 +02001444 atomic_set_mask(common_mask, &sdev_to_zfcp(sdev)->status);
Martin Peschke924dd582013-08-22 17:45:37 +02001445 spin_unlock_irqrestore(adapter->scsi_host->host_lock, flags);
Swen Schilligedaed852010-09-08 14:40:01 +02001446}
1447
1448/**
1449 * zfcp_erp_clear_adapter_status - clear adapter status bits
1450 * @adapter: adapter to change the status
1451 * @mask: status bits to change
1452 *
1453 * Changes in common status bits are propagated to attached ports and LUNs.
1454 */
1455void zfcp_erp_clear_adapter_status(struct zfcp_adapter *adapter, u32 mask)
1456{
1457 struct zfcp_port *port;
1458 struct scsi_device *sdev;
1459 unsigned long flags;
1460 u32 common_mask = mask & ZFCP_COMMON_FLAGS;
1461 u32 clear_counter = mask & ZFCP_STATUS_COMMON_ERP_FAILED;
1462
1463 atomic_clear_mask(mask, &adapter->status);
1464
1465 if (!common_mask)
1466 return;
1467
1468 if (clear_counter)
1469 atomic_set(&adapter->erp_counter, 0);
1470
1471 read_lock_irqsave(&adapter->port_list_lock, flags);
1472 list_for_each_entry(port, &adapter->port_list, list) {
1473 atomic_clear_mask(common_mask, &port->status);
1474 if (clear_counter)
1475 atomic_set(&port->erp_counter, 0);
1476 }
1477 read_unlock_irqrestore(&adapter->port_list_lock, flags);
1478
Martin Peschke924dd582013-08-22 17:45:37 +02001479 spin_lock_irqsave(adapter->scsi_host->host_lock, flags);
1480 __shost_for_each_device(sdev, adapter->scsi_host) {
Swen Schilligedaed852010-09-08 14:40:01 +02001481 atomic_clear_mask(common_mask, &sdev_to_zfcp(sdev)->status);
1482 if (clear_counter)
1483 atomic_set(&sdev_to_zfcp(sdev)->erp_counter, 0);
Swen Schilligecf0c772009-11-24 16:53:58 +01001484 }
Martin Peschke924dd582013-08-22 17:45:37 +02001485 spin_unlock_irqrestore(adapter->scsi_host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
Christof Schmitt287ac012008-07-02 10:56:40 +02001488/**
Swen Schilligedaed852010-09-08 14:40:01 +02001489 * zfcp_erp_set_port_status - set port status bits
1490 * @port: port to change the status
Christof Schmitt287ac012008-07-02 10:56:40 +02001491 * @mask: status bits to change
Christof Schmitt287ac012008-07-02 10:56:40 +02001492 *
Christof Schmittb62a8d92010-09-08 14:39:55 +02001493 * Changes in common status bits are propagated to attached LUNs.
Christof Schmitt287ac012008-07-02 10:56:40 +02001494 */
Swen Schilligedaed852010-09-08 14:40:01 +02001495void zfcp_erp_set_port_status(struct zfcp_port *port, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001497 struct scsi_device *sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +02001498 u32 common_mask = mask & ZFCP_COMMON_FLAGS;
Martin Peschke924dd582013-08-22 17:45:37 +02001499 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Swen Schilligedaed852010-09-08 14:40:01 +02001501 atomic_set_mask(mask, &port->status);
Christof Schmitt287ac012008-07-02 10:56:40 +02001502
Swen Schilligedaed852010-09-08 14:40:01 +02001503 if (!common_mask)
1504 return;
1505
Martin Peschke924dd582013-08-22 17:45:37 +02001506 spin_lock_irqsave(port->adapter->scsi_host->host_lock, flags);
1507 __shost_for_each_device(sdev, port->adapter->scsi_host)
Swen Schilligedaed852010-09-08 14:40:01 +02001508 if (sdev_to_zfcp(sdev)->port == port)
1509 atomic_set_mask(common_mask,
1510 &sdev_to_zfcp(sdev)->status);
Martin Peschke924dd582013-08-22 17:45:37 +02001511 spin_unlock_irqrestore(port->adapter->scsi_host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Christof Schmitt287ac012008-07-02 10:56:40 +02001514/**
Swen Schilligedaed852010-09-08 14:40:01 +02001515 * zfcp_erp_clear_port_status - clear port status bits
1516 * @port: adapter to change the status
Christof Schmitt287ac012008-07-02 10:56:40 +02001517 * @mask: status bits to change
Swen Schilligedaed852010-09-08 14:40:01 +02001518 *
1519 * Changes in common status bits are propagated to attached LUNs.
Christof Schmitt287ac012008-07-02 10:56:40 +02001520 */
Swen Schilligedaed852010-09-08 14:40:01 +02001521void zfcp_erp_clear_port_status(struct zfcp_port *port, u32 mask)
1522{
1523 struct scsi_device *sdev;
1524 u32 common_mask = mask & ZFCP_COMMON_FLAGS;
1525 u32 clear_counter = mask & ZFCP_STATUS_COMMON_ERP_FAILED;
Martin Peschke924dd582013-08-22 17:45:37 +02001526 unsigned long flags;
Swen Schilligedaed852010-09-08 14:40:01 +02001527
1528 atomic_clear_mask(mask, &port->status);
1529
1530 if (!common_mask)
1531 return;
1532
1533 if (clear_counter)
1534 atomic_set(&port->erp_counter, 0);
1535
Martin Peschke924dd582013-08-22 17:45:37 +02001536 spin_lock_irqsave(port->adapter->scsi_host->host_lock, flags);
1537 __shost_for_each_device(sdev, port->adapter->scsi_host)
Swen Schilligedaed852010-09-08 14:40:01 +02001538 if (sdev_to_zfcp(sdev)->port == port) {
1539 atomic_clear_mask(common_mask,
1540 &sdev_to_zfcp(sdev)->status);
1541 if (clear_counter)
1542 atomic_set(&sdev_to_zfcp(sdev)->erp_counter, 0);
1543 }
Martin Peschke924dd582013-08-22 17:45:37 +02001544 spin_unlock_irqrestore(port->adapter->scsi_host->host_lock, flags);
Swen Schilligedaed852010-09-08 14:40:01 +02001545}
1546
1547/**
1548 * zfcp_erp_set_lun_status - set lun status bits
1549 * @sdev: SCSI device / lun to set the status bits
1550 * @mask: status bits to change
1551 */
1552void zfcp_erp_set_lun_status(struct scsi_device *sdev, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001554 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
1555
Swen Schilligedaed852010-09-08 14:40:01 +02001556 atomic_set_mask(mask, &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
Christof Schmitt287ac012008-07-02 10:56:40 +02001559/**
Swen Schilligedaed852010-09-08 14:40:01 +02001560 * zfcp_erp_clear_lun_status - clear lun status bits
1561 * @sdev: SCSi device / lun to clear the status bits
1562 * @mask: status bits to change
Christof Schmitt287ac012008-07-02 10:56:40 +02001563 */
Swen Schilligedaed852010-09-08 14:40:01 +02001564void zfcp_erp_clear_lun_status(struct scsi_device *sdev, u32 mask)
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001565{
Swen Schilligedaed852010-09-08 14:40:01 +02001566 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
1567
1568 atomic_clear_mask(mask, &zfcp_sdev->status);
1569
1570 if (mask & ZFCP_STATUS_COMMON_ERP_FAILED)
1571 atomic_set(&zfcp_sdev->erp_counter, 0);
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001572}
1573