blob: 066f9ea675022fb3acb916c46af609335d168dcd [file] [log] [blame]
Swen Schillig41fa2ada2007-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 Schillig41fa2ada2007-09-07 09:15:31 +02005 *
Christof Schmitt615f59e2010-02-17 11:18:56 +01006 * Copyright IBM Corporation 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);
Christof Schmittb62a8d92010-09-08 14:39:55 +0200105 else
106 shost_for_each_device(sdev, port->adapter->scsi_host)
107 if (sdev_to_zfcp(sdev)->port == port)
108 zfcp_erp_action_dismiss_lun(sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +0200109}
110
111static void zfcp_erp_action_dismiss_adapter(struct zfcp_adapter *adapter)
112{
113 struct zfcp_port *port;
114
115 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_INUSE)
116 zfcp_erp_action_dismiss(&adapter->erp_action);
Swen Schilligecf0c772009-11-24 16:53:58 +0100117 else {
118 read_lock(&adapter->port_list_lock);
119 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitt287ac012008-07-02 10:56:40 +0200120 zfcp_erp_action_dismiss_port(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100121 read_unlock(&adapter->port_list_lock);
122 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200123}
124
125static int zfcp_erp_required_act(int want, struct zfcp_adapter *adapter,
126 struct zfcp_port *port,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200127 struct scsi_device *sdev)
Christof Schmitt287ac012008-07-02 10:56:40 +0200128{
129 int need = want;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200130 int l_status, p_status, a_status;
131 struct zfcp_scsi_dev *zfcp_sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +0200132
133 switch (want) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200134 case ZFCP_ERP_ACTION_REOPEN_LUN:
135 zfcp_sdev = sdev_to_zfcp(sdev);
136 l_status = atomic_read(&zfcp_sdev->status);
137 if (l_status & ZFCP_STATUS_COMMON_ERP_INUSE)
Christof Schmitt287ac012008-07-02 10:56:40 +0200138 return 0;
139 p_status = atomic_read(&port->status);
140 if (!(p_status & ZFCP_STATUS_COMMON_RUNNING) ||
141 p_status & ZFCP_STATUS_COMMON_ERP_FAILED)
142 return 0;
143 if (!(p_status & ZFCP_STATUS_COMMON_UNBLOCKED))
144 need = ZFCP_ERP_ACTION_REOPEN_PORT;
145 /* fall through */
Christof Schmitt287ac012008-07-02 10:56:40 +0200146 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
147 p_status = atomic_read(&port->status);
Christof Schmitt097ef3b2010-07-08 09:53:06 +0200148 if (!(p_status & ZFCP_STATUS_COMMON_OPEN))
149 need = ZFCP_ERP_ACTION_REOPEN_PORT;
150 /* fall through */
151 case ZFCP_ERP_ACTION_REOPEN_PORT:
152 p_status = atomic_read(&port->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200153 if (p_status & ZFCP_STATUS_COMMON_ERP_INUSE)
154 return 0;
155 a_status = atomic_read(&adapter->status);
156 if (!(a_status & ZFCP_STATUS_COMMON_RUNNING) ||
157 a_status & ZFCP_STATUS_COMMON_ERP_FAILED)
158 return 0;
Swen Schilligd3e10882010-11-17 14:23:42 +0100159 if (p_status & ZFCP_STATUS_COMMON_NOESC)
160 return need;
Christof Schmitt287ac012008-07-02 10:56:40 +0200161 if (!(a_status & ZFCP_STATUS_COMMON_UNBLOCKED))
162 need = ZFCP_ERP_ACTION_REOPEN_ADAPTER;
163 /* fall through */
164 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
165 a_status = atomic_read(&adapter->status);
166 if (a_status & ZFCP_STATUS_COMMON_ERP_INUSE)
167 return 0;
Christof Schmitt143bb6b2009-08-18 15:43:27 +0200168 if (!(a_status & ZFCP_STATUS_COMMON_RUNNING) &&
169 !(a_status & ZFCP_STATUS_COMMON_OPEN))
170 return 0; /* shutdown requested for closed adapter */
Christof Schmitt287ac012008-07-02 10:56:40 +0200171 }
172
173 return need;
174}
175
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200176static struct zfcp_erp_action *zfcp_erp_setup_act(int need, u32 act_status,
Christof Schmitt287ac012008-07-02 10:56:40 +0200177 struct zfcp_adapter *adapter,
178 struct zfcp_port *port,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200179 struct scsi_device *sdev)
Christof Schmitt287ac012008-07-02 10:56:40 +0200180{
181 struct zfcp_erp_action *erp_action;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200182 struct zfcp_scsi_dev *zfcp_sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +0200183
184 switch (need) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200185 case ZFCP_ERP_ACTION_REOPEN_LUN:
186 zfcp_sdev = sdev_to_zfcp(sdev);
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200187 if (!(act_status & ZFCP_STATUS_ERP_NO_REF))
Christof Schmittb62a8d92010-09-08 14:39:55 +0200188 if (scsi_device_get(sdev))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200189 return NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200190 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
191 &zfcp_sdev->status);
192 erp_action = &zfcp_sdev->erp_action;
Swen Schillig14718e32010-11-17 14:23:43 +0100193 memset(erp_action, 0, sizeof(struct zfcp_erp_action));
194 erp_action->port = port;
195 erp_action->sdev = sdev;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200196 if (!(atomic_read(&zfcp_sdev->status) &
197 ZFCP_STATUS_COMMON_RUNNING))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200198 act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY;
Christof Schmitt287ac012008-07-02 10:56:40 +0200199 break;
200
201 case ZFCP_ERP_ACTION_REOPEN_PORT:
202 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100203 if (!get_device(&port->dev))
Swen Schillig6b1833342009-11-24 16:54:05 +0100204 return NULL;
Christof Schmitt287ac012008-07-02 10:56:40 +0200205 zfcp_erp_action_dismiss_port(port);
206 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &port->status);
207 erp_action = &port->erp_action;
Swen Schillig14718e32010-11-17 14:23:43 +0100208 memset(erp_action, 0, sizeof(struct zfcp_erp_action));
209 erp_action->port = port;
Christof Schmitt287ac012008-07-02 10:56:40 +0200210 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_RUNNING))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200211 act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY;
Christof Schmitt287ac012008-07-02 10:56:40 +0200212 break;
213
214 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Swen Schilligf3450c72009-11-24 16:53:59 +0100215 kref_get(&adapter->ref);
Christof Schmitt287ac012008-07-02 10:56:40 +0200216 zfcp_erp_action_dismiss_adapter(adapter);
217 atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &adapter->status);
218 erp_action = &adapter->erp_action;
Swen Schillig14718e32010-11-17 14:23:43 +0100219 memset(erp_action, 0, sizeof(struct zfcp_erp_action));
Christof Schmitt287ac012008-07-02 10:56:40 +0200220 if (!(atomic_read(&adapter->status) &
221 ZFCP_STATUS_COMMON_RUNNING))
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200222 act_status |= ZFCP_STATUS_ERP_CLOSE_ONLY;
Christof Schmitt287ac012008-07-02 10:56:40 +0200223 break;
224
225 default:
226 return NULL;
227 }
228
Christof Schmitt287ac012008-07-02 10:56:40 +0200229 erp_action->adapter = adapter;
Christof Schmitt287ac012008-07-02 10:56:40 +0200230 erp_action->action = need;
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200231 erp_action->status = act_status;
Christof Schmitt287ac012008-07-02 10:56:40 +0200232
233 return erp_action;
234}
235
236static int zfcp_erp_action_enqueue(int want, struct zfcp_adapter *adapter,
237 struct zfcp_port *port,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200238 struct scsi_device *sdev,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100239 char *id, u32 act_status)
Christof Schmitt287ac012008-07-02 10:56:40 +0200240{
241 int retval = 1, need;
Swen Schilligae0904f2010-12-02 15:16:12 +0100242 struct zfcp_erp_action *act;
Christof Schmitt287ac012008-07-02 10:56:40 +0200243
Christof Schmitt347c6a92009-08-18 15:43:25 +0200244 if (!adapter->erp_thread)
Christof Schmitt287ac012008-07-02 10:56:40 +0200245 return -EIO;
246
Christof Schmittb62a8d92010-09-08 14:39:55 +0200247 need = zfcp_erp_required_act(want, adapter, port, sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +0200248 if (!need)
249 goto out;
250
Christof Schmittb62a8d92010-09-08 14:39:55 +0200251 act = zfcp_erp_setup_act(need, act_status, adapter, port, sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +0200252 if (!act)
253 goto out;
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200254 atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING, &adapter->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200255 ++adapter->erp_total_count;
256 list_add_tail(&act->list, &adapter->erp_ready_head);
Christof Schmitt347c6a92009-08-18 15:43:25 +0200257 wake_up(&adapter->erp_ready_wq);
Christof Schmitt287ac012008-07-02 10:56:40 +0200258 retval = 0;
259 out:
Swen Schilligae0904f2010-12-02 15:16:12 +0100260 zfcp_dbf_rec_trig(id, adapter, port, sdev, want, need);
Christof Schmitt287ac012008-07-02 10:56:40 +0200261 return retval;
262}
263
264static int _zfcp_erp_adapter_reopen(struct zfcp_adapter *adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100265 int clear_mask, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200266{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 zfcp_erp_adapter_block(adapter, clear_mask);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100268 zfcp_scsi_schedule_rports_block(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Christof Schmitt287ac012008-07-02 10:56:40 +0200270 /* ensure propagation of failed status to new devices */
271 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
Swen Schilligedaed852010-09-08 14:40:01 +0200272 zfcp_erp_set_adapter_status(adapter,
273 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt287ac012008-07-02 10:56:40 +0200274 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200276 return zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100277 adapter, NULL, NULL, id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280/**
Christof Schmitt287ac012008-07-02 10:56:40 +0200281 * zfcp_erp_adapter_reopen - Reopen adapter.
282 * @adapter: Adapter to reopen.
283 * @clear: Status flags to clear.
284 * @id: Id for debug trace event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100286void zfcp_erp_adapter_reopen(struct zfcp_adapter *adapter, int clear, char *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Christof Schmitt287ac012008-07-02 10:56:40 +0200288 unsigned long flags;
289
Swen Schilligecf0c772009-11-24 16:53:58 +0100290 zfcp_erp_adapter_block(adapter, clear);
291 zfcp_scsi_schedule_rports_block(adapter);
292
293 write_lock_irqsave(&adapter->erp_lock, flags);
294 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED)
Swen Schilligedaed852010-09-08 14:40:01 +0200295 zfcp_erp_set_adapter_status(adapter,
296 ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligecf0c772009-11-24 16:53:58 +0100297 else
298 zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER, adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100299 NULL, NULL, id, 0);
Swen Schilligecf0c772009-11-24 16:53:58 +0100300 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200301}
302
303/**
304 * zfcp_erp_adapter_shutdown - Shutdown adapter.
305 * @adapter: Adapter to shut down.
306 * @clear: Status flags to clear.
307 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200308 */
309void zfcp_erp_adapter_shutdown(struct zfcp_adapter *adapter, int clear,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100310 char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200311{
312 int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100313 zfcp_erp_adapter_reopen(adapter, clear | flags, id);
Christof Schmitt287ac012008-07-02 10:56:40 +0200314}
315
316/**
317 * zfcp_erp_port_shutdown - Shutdown port
318 * @port: Port to shut down.
319 * @clear: Status flags to clear.
320 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200321 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100322void zfcp_erp_port_shutdown(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200323{
324 int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100325 zfcp_erp_port_reopen(port, clear | flags, id);
Christof Schmitt287ac012008-07-02 10:56:40 +0200326}
327
Christof Schmitt287ac012008-07-02 10:56:40 +0200328static void zfcp_erp_port_block(struct zfcp_port *port, int clear)
329{
Swen Schilligedaed852010-09-08 14:40:01 +0200330 zfcp_erp_clear_port_status(port,
331 ZFCP_STATUS_COMMON_UNBLOCKED | clear);
Christof Schmitt287ac012008-07-02 10:56:40 +0200332}
333
Swen Schilligea4a3a62010-12-02 15:16:16 +0100334static void _zfcp_erp_port_forced_reopen(struct zfcp_port *port, int clear,
335 char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200336{
337 zfcp_erp_port_block(port, clear);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100338 zfcp_scsi_schedule_rport_block(port);
Christof Schmitt287ac012008-07-02 10:56:40 +0200339
340 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED)
341 return;
342
343 zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT_FORCED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100344 port->adapter, port, NULL, id, 0);
Christof Schmitt287ac012008-07-02 10:56:40 +0200345}
346
347/**
348 * zfcp_erp_port_forced_reopen - Forced close of port and open again
349 * @port: Port to force close and to reopen.
Swen Schilligea4a3a62010-12-02 15:16:16 +0100350 * @clear: Status flags to clear.
Christof Schmitt287ac012008-07-02 10:56:40 +0200351 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200352 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100353void zfcp_erp_port_forced_reopen(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200354{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 unsigned long flags;
356 struct zfcp_adapter *adapter = port->adapter;
357
Swen Schilligecf0c772009-11-24 16:53:58 +0100358 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100359 _zfcp_erp_port_forced_reopen(port, clear, id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100360 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200361}
362
Swen Schilligea4a3a62010-12-02 15:16:16 +0100363static int _zfcp_erp_port_reopen(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200364{
365 zfcp_erp_port_block(port, clear);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100366 zfcp_scsi_schedule_rport_block(port);
Christof Schmitt287ac012008-07-02 10:56:40 +0200367
368 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
369 /* ensure propagation of failed status to new devices */
Swen Schilligedaed852010-09-08 14:40:01 +0200370 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt287ac012008-07-02 10:56:40 +0200371 return -EIO;
372 }
373
374 return zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100375 port->adapter, port, NULL, id, 0);
Christof Schmitt287ac012008-07-02 10:56:40 +0200376}
377
378/**
379 * zfcp_erp_port_reopen - trigger remote port recovery
380 * @port: port to recover
381 * @clear_mask: flags in port status to be cleared
Swen Schilligea4a3a62010-12-02 15:16:16 +0100382 * @id: Id for debug trace event.
Christof Schmitt287ac012008-07-02 10:56:40 +0200383 *
384 * Returns 0 if recovery has been triggered, < 0 if not.
385 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100386int zfcp_erp_port_reopen(struct zfcp_port *port, int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200387{
Christof Schmitt287ac012008-07-02 10:56:40 +0200388 int retval;
Swen Schilligecf0c772009-11-24 16:53:58 +0100389 unsigned long flags;
Christof Schmitt287ac012008-07-02 10:56:40 +0200390 struct zfcp_adapter *adapter = port->adapter;
391
Swen Schilligecf0c772009-11-24 16:53:58 +0100392 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100393 retval = _zfcp_erp_port_reopen(port, clear, id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100394 write_unlock_irqrestore(&adapter->erp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 return retval;
397}
398
Christof Schmittb62a8d92010-09-08 14:39:55 +0200399static void zfcp_erp_lun_block(struct scsi_device *sdev, int clear_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Swen Schilligedaed852010-09-08 14:40:01 +0200401 zfcp_erp_clear_lun_status(sdev,
402 ZFCP_STATUS_COMMON_UNBLOCKED | clear_mask);
Christof Schmitt287ac012008-07-02 10:56:40 +0200403}
404
Christof Schmittb62a8d92010-09-08 14:39:55 +0200405static void _zfcp_erp_lun_reopen(struct scsi_device *sdev, int clear, char *id,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100406 u32 act_status)
Christof Schmitt287ac012008-07-02 10:56:40 +0200407{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200408 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
409 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Christof Schmittb62a8d92010-09-08 14:39:55 +0200411 zfcp_erp_lun_block(sdev, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Christof Schmittb62a8d92010-09-08 14:39:55 +0200413 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_ERP_FAILED)
Christof Schmitt287ac012008-07-02 10:56:40 +0200414 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Christof Schmittb62a8d92010-09-08 14:39:55 +0200416 zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_LUN, adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100417 zfcp_sdev->port, sdev, id, act_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200421 * zfcp_erp_lun_reopen - initiate reopen of a LUN
422 * @sdev: SCSI device / LUN to be reopened
423 * @clear_mask: specifies flags in LUN status to be cleared
Swen Schilligea4a3a62010-12-02 15:16:16 +0100424 * @id: Id for debug trace event.
425 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * Return: 0 on success, < 0 on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100428void zfcp_erp_lun_reopen(struct scsi_device *sdev, int clear, char *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 unsigned long flags;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200431 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
432 struct zfcp_port *port = zfcp_sdev->port;
Christof Schmitt287ac012008-07-02 10:56:40 +0200433 struct zfcp_adapter *adapter = port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Swen Schilligecf0c772009-11-24 16:53:58 +0100435 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100436 _zfcp_erp_lun_reopen(sdev, clear, id, 0);
Swen Schilligecf0c772009-11-24 16:53:58 +0100437 write_unlock_irqrestore(&adapter->erp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200440/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200441 * zfcp_erp_lun_shutdown - Shutdown LUN
442 * @sdev: SCSI device / LUN to shut down.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200443 * @clear: Status flags to clear.
444 * @id: Id for debug trace event.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200445 */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100446void zfcp_erp_lun_shutdown(struct scsi_device *sdev, int clear, char *id)
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200447{
448 int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100449 zfcp_erp_lun_reopen(sdev, clear | flags, id);
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200450}
451
452/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200453 * zfcp_erp_lun_shutdown_wait - Shutdown LUN and wait for erp completion
454 * @sdev: SCSI device / LUN to shut down.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200455 * @id: Id for debug trace event.
456 *
Christof Schmittb62a8d92010-09-08 14:39:55 +0200457 * Do not acquire a reference for the LUN when creating the ERP
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200458 * action. It is safe, because this function waits for the ERP to
Christof Schmittb62a8d92010-09-08 14:39:55 +0200459 * complete first. This allows to shutdown the LUN, even when the SCSI
460 * device is in the state SDEV_DEL when scsi_device_get will fail.
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200461 */
Christof Schmittb62a8d92010-09-08 14:39:55 +0200462void zfcp_erp_lun_shutdown_wait(struct scsi_device *sdev, char *id)
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200463{
464 unsigned long flags;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200465 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
466 struct zfcp_port *port = zfcp_sdev->port;
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200467 struct zfcp_adapter *adapter = port->adapter;
468 int clear = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED;
469
470 write_lock_irqsave(&adapter->erp_lock, flags);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100471 _zfcp_erp_lun_reopen(sdev, clear, id, ZFCP_STATUS_ERP_NO_REF);
Christof Schmittfdbd1c52010-09-08 14:39:54 +0200472 write_unlock_irqrestore(&adapter->erp_lock, flags);
473
474 zfcp_erp_wait(adapter);
475}
476
Christof Schmitt287ac012008-07-02 10:56:40 +0200477static int status_change_set(unsigned long mask, atomic_t *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Christof Schmitt287ac012008-07-02 10:56:40 +0200479 return (atomic_read(status) ^ mask) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200482static void zfcp_erp_adapter_unblock(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Christof Schmitt287ac012008-07-02 10:56:40 +0200484 if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &adapter->status))
Swen Schilligae0904f2010-12-02 15:16:12 +0100485 zfcp_dbf_rec_run("eraubl1", &adapter->erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200486 atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Christof Schmitt287ac012008-07-02 10:56:40 +0200489static void zfcp_erp_port_unblock(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Christof Schmitt287ac012008-07-02 10:56:40 +0200491 if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &port->status))
Swen Schilligae0904f2010-12-02 15:16:12 +0100492 zfcp_dbf_rec_run("erpubl1", &port->erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200493 atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Christof Schmittb62a8d92010-09-08 14:39:55 +0200496static void zfcp_erp_lun_unblock(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200498 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
499
500 if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &zfcp_sdev->status))
Swen Schilligae0904f2010-12-02 15:16:12 +0100501 zfcp_dbf_rec_run("erlubl1", &sdev_to_zfcp(sdev)->erp_action);
Christof Schmittb62a8d92010-09-08 14:39:55 +0200502 atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Christof Schmitt287ac012008-07-02 10:56:40 +0200505static void zfcp_erp_action_to_running(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Christof Schmitt287ac012008-07-02 10:56:40 +0200507 list_move(&erp_action->list, &erp_action->adapter->erp_running_head);
Swen Schilligae0904f2010-12-02 15:16:12 +0100508 zfcp_dbf_rec_run("erator1", erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Christof Schmitt287ac012008-07-02 10:56:40 +0200511static void zfcp_erp_strategy_check_fsfreq(struct zfcp_erp_action *act)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Christof Schmitt287ac012008-07-02 10:56:40 +0200513 struct zfcp_adapter *adapter = act->adapter;
Christof Schmitte60a6d62010-02-17 11:18:49 +0100514 struct zfcp_fsf_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Christof Schmitte60a6d62010-02-17 11:18:49 +0100516 if (!act->fsf_req_id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200517 return;
518
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100519 spin_lock(&adapter->req_list->lock);
520 req = _zfcp_reqlist_find(adapter->req_list, act->fsf_req_id);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100521 if (req && req->erp_action == act) {
Christof Schmitt287ac012008-07-02 10:56:40 +0200522 if (act->status & (ZFCP_STATUS_ERP_DISMISSED |
523 ZFCP_STATUS_ERP_TIMEDOUT)) {
Christof Schmitte60a6d62010-02-17 11:18:49 +0100524 req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
Swen Schilligae0904f2010-12-02 15:16:12 +0100525 zfcp_dbf_rec_run("erscf_1", act);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100526 req->erp_action = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200528 if (act->status & ZFCP_STATUS_ERP_TIMEDOUT)
Swen Schilligae0904f2010-12-02 15:16:12 +0100529 zfcp_dbf_rec_run("erscf_2", act);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100530 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED)
531 act->fsf_req_id = 0;
Christof Schmitt287ac012008-07-02 10:56:40 +0200532 } else
Christof Schmitte60a6d62010-02-17 11:18:49 +0100533 act->fsf_req_id = 0;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100534 spin_unlock(&adapter->req_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200537/**
Christof Schmitt287ac012008-07-02 10:56:40 +0200538 * zfcp_erp_notify - Trigger ERP action.
539 * @erp_action: ERP action to continue.
540 * @set_mask: ERP action status flags to set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Christof Schmitt287ac012008-07-02 10:56:40 +0200542void zfcp_erp_notify(struct zfcp_erp_action *erp_action, unsigned long set_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 struct zfcp_adapter *adapter = erp_action->adapter;
545 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 write_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200548 if (zfcp_erp_action_exists(erp_action) == ZFCP_ERP_ACTION_RUNNING) {
549 erp_action->status |= set_mask;
550 zfcp_erp_action_ready(erp_action);
551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 write_unlock_irqrestore(&adapter->erp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +0200555/**
Christof Schmitt287ac012008-07-02 10:56:40 +0200556 * zfcp_erp_timeout_handler - Trigger ERP action from timed out ERP request
557 * @data: ERP action (from timer data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
Christof Schmitt287ac012008-07-02 10:56:40 +0200559void zfcp_erp_timeout_handler(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Christof Schmitt287ac012008-07-02 10:56:40 +0200561 struct zfcp_erp_action *act = (struct zfcp_erp_action *) data;
562 zfcp_erp_notify(act, ZFCP_STATUS_ERP_TIMEDOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Christof Schmitt287ac012008-07-02 10:56:40 +0200565static void zfcp_erp_memwait_handler(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Christof Schmitt287ac012008-07-02 10:56:40 +0200567 zfcp_erp_notify((struct zfcp_erp_action *)data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Christof Schmitt287ac012008-07-02 10:56:40 +0200570static void zfcp_erp_strategy_memwait(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 init_timer(&erp_action->timer);
573 erp_action->timer.function = zfcp_erp_memwait_handler;
574 erp_action->timer.data = (unsigned long) erp_action;
Christof Schmitt287ac012008-07-02 10:56:40 +0200575 erp_action->timer.expires = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 add_timer(&erp_action->timer);
Christof Schmitt287ac012008-07-02 10:56:40 +0200577}
578
579static void _zfcp_erp_port_reopen_all(struct zfcp_adapter *adapter,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100580 int clear, char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200581{
582 struct zfcp_port *port;
583
Swen Schilligecf0c772009-11-24 16:53:58 +0100584 read_lock(&adapter->port_list_lock);
585 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligea4a3a62010-12-02 15:16:16 +0100586 _zfcp_erp_port_reopen(port, clear, id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100587 read_unlock(&adapter->port_list_lock);
Christof Schmitt287ac012008-07-02 10:56:40 +0200588}
589
Christof Schmittb62a8d92010-09-08 14:39:55 +0200590static void _zfcp_erp_lun_reopen_all(struct zfcp_port *port, int clear,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100591 char *id)
Christof Schmitt287ac012008-07-02 10:56:40 +0200592{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200593 struct scsi_device *sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +0200594
Christof Schmittb62a8d92010-09-08 14:39:55 +0200595 shost_for_each_device(sdev, port->adapter->scsi_host)
596 if (sdev_to_zfcp(sdev)->port == port)
Swen Schilligea4a3a62010-12-02 15:16:16 +0100597 _zfcp_erp_lun_reopen(sdev, clear, id, 0);
Christof Schmitt287ac012008-07-02 10:56:40 +0200598}
599
Christof Schmitt85600f72009-07-13 15:06:09 +0200600static void zfcp_erp_strategy_followup_failed(struct zfcp_erp_action *act)
Christof Schmitt287ac012008-07-02 10:56:40 +0200601{
Christof Schmitt287ac012008-07-02 10:56:40 +0200602 switch (act->action) {
Christof Schmitt287ac012008-07-02 10:56:40 +0200603 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100604 _zfcp_erp_adapter_reopen(act->adapter, 0, "ersff_1");
Christof Schmitt287ac012008-07-02 10:56:40 +0200605 break;
Christof Schmitt287ac012008-07-02 10:56:40 +0200606 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100607 _zfcp_erp_port_forced_reopen(act->port, 0, "ersff_2");
Christof Schmitt287ac012008-07-02 10:56:40 +0200608 break;
Christof Schmitt287ac012008-07-02 10:56:40 +0200609 case ZFCP_ERP_ACTION_REOPEN_PORT:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100610 _zfcp_erp_port_reopen(act->port, 0, "ersff_3");
Christof Schmitt287ac012008-07-02 10:56:40 +0200611 break;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200612 case ZFCP_ERP_ACTION_REOPEN_LUN:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100613 _zfcp_erp_lun_reopen(act->sdev, 0, "ersff_4", 0);
Christof Schmitt85600f72009-07-13 15:06:09 +0200614 break;
615 }
616}
617
618static void zfcp_erp_strategy_followup_success(struct zfcp_erp_action *act)
619{
620 switch (act->action) {
621 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100622 _zfcp_erp_port_reopen_all(act->adapter, 0, "ersfs_1");
Christof Schmitt85600f72009-07-13 15:06:09 +0200623 break;
624 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100625 _zfcp_erp_port_reopen(act->port, 0, "ersfs_2");
Christof Schmitt85600f72009-07-13 15:06:09 +0200626 break;
627 case ZFCP_ERP_ACTION_REOPEN_PORT:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100628 _zfcp_erp_lun_reopen_all(act->port, 0, "ersfs_3");
Christof Schmitt287ac012008-07-02 10:56:40 +0200629 break;
630 }
631}
632
633static void zfcp_erp_wakeup(struct zfcp_adapter *adapter)
634{
635 unsigned long flags;
636
Swen Schilligecf0c772009-11-24 16:53:58 +0100637 read_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200638 if (list_empty(&adapter->erp_ready_head) &&
639 list_empty(&adapter->erp_running_head)) {
640 atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING,
641 &adapter->status);
642 wake_up(&adapter->erp_done_wqh);
643 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100644 read_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +0200645}
646
647static int zfcp_erp_adapter_strategy_open_qdio(struct zfcp_erp_action *act)
648{
Swen Schillig564e1c82009-08-18 15:43:19 +0200649 struct zfcp_qdio *qdio = act->adapter->qdio;
650
651 if (zfcp_qdio_open(qdio))
Christof Schmitt287ac012008-07-02 10:56:40 +0200652 return ZFCP_ERP_FAILED;
Swen Schillig564e1c82009-08-18 15:43:19 +0200653 init_waitqueue_head(&qdio->req_q_wq);
Christof Schmitt287ac012008-07-02 10:56:40 +0200654 atomic_set_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &act->adapter->status);
655 return ZFCP_ERP_SUCCEEDED;
656}
657
658static void zfcp_erp_enqueue_ptp_port(struct zfcp_adapter *adapter)
659{
660 struct zfcp_port *port;
661 port = zfcp_port_enqueue(adapter, adapter->peer_wwpn, 0,
662 adapter->peer_d_id);
663 if (IS_ERR(port)) /* error or port already attached */
664 return;
Swen Schilligea4a3a62010-12-02 15:16:16 +0100665 _zfcp_erp_port_reopen(port, 0, "ereptp1");
Christof Schmitt287ac012008-07-02 10:56:40 +0200666}
667
668static int zfcp_erp_adapter_strat_fsf_xconf(struct zfcp_erp_action *erp_action)
669{
670 int retries;
671 int sleep = 1;
672 struct zfcp_adapter *adapter = erp_action->adapter;
673
674 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK, &adapter->status);
675
676 for (retries = 7; retries; retries--) {
677 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
678 &adapter->status);
679 write_lock_irq(&adapter->erp_lock);
680 zfcp_erp_action_to_running(erp_action);
681 write_unlock_irq(&adapter->erp_lock);
682 if (zfcp_fsf_exchange_config_data(erp_action)) {
683 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
684 &adapter->status);
685 return ZFCP_ERP_FAILED;
686 }
687
Christof Schmitt347c6a92009-08-18 15:43:25 +0200688 wait_event(adapter->erp_ready_wq,
689 !list_empty(&adapter->erp_ready_head));
Christof Schmitt287ac012008-07-02 10:56:40 +0200690 if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT)
691 break;
692
693 if (!(atomic_read(&adapter->status) &
694 ZFCP_STATUS_ADAPTER_HOST_CON_INIT))
695 break;
696
697 ssleep(sleep);
698 sleep *= 2;
699 }
700
701 atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
702 &adapter->status);
703
704 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_XCONFIG_OK))
705 return ZFCP_ERP_FAILED;
706
707 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP)
708 zfcp_erp_enqueue_ptp_port(adapter);
709
710 return ZFCP_ERP_SUCCEEDED;
711}
712
713static int zfcp_erp_adapter_strategy_open_fsf_xport(struct zfcp_erp_action *act)
714{
715 int ret;
716 struct zfcp_adapter *adapter = act->adapter;
717
Christof Schmitt287ac012008-07-02 10:56:40 +0200718 write_lock_irq(&adapter->erp_lock);
719 zfcp_erp_action_to_running(act);
720 write_unlock_irq(&adapter->erp_lock);
721
722 ret = zfcp_fsf_exchange_port_data(act);
723 if (ret == -EOPNOTSUPP)
724 return ZFCP_ERP_SUCCEEDED;
725 if (ret)
726 return ZFCP_ERP_FAILED;
727
Swen Schilligae0904f2010-12-02 15:16:12 +0100728 zfcp_dbf_rec_run("erasox1", act);
Christof Schmitt347c6a92009-08-18 15:43:25 +0200729 wait_event(adapter->erp_ready_wq,
730 !list_empty(&adapter->erp_ready_head));
Swen Schilligae0904f2010-12-02 15:16:12 +0100731 zfcp_dbf_rec_run("erasox2", act);
Christof Schmitt287ac012008-07-02 10:56:40 +0200732 if (act->status & ZFCP_STATUS_ERP_TIMEDOUT)
733 return ZFCP_ERP_FAILED;
734
735 return ZFCP_ERP_SUCCEEDED;
736}
737
738static int zfcp_erp_adapter_strategy_open_fsf(struct zfcp_erp_action *act)
739{
740 if (zfcp_erp_adapter_strat_fsf_xconf(act) == ZFCP_ERP_FAILED)
741 return ZFCP_ERP_FAILED;
742
743 if (zfcp_erp_adapter_strategy_open_fsf_xport(act) == ZFCP_ERP_FAILED)
744 return ZFCP_ERP_FAILED;
745
Christof Schmitt8d88cf32010-06-21 10:11:33 +0200746 if (mempool_resize(act->adapter->pool.status_read_data,
747 act->adapter->stat_read_buf_num, GFP_KERNEL))
748 return ZFCP_ERP_FAILED;
749
750 if (mempool_resize(act->adapter->pool.status_read_req,
751 act->adapter->stat_read_buf_num, GFP_KERNEL))
752 return ZFCP_ERP_FAILED;
753
Christof Schmitt64deb6e2010-04-30 18:09:36 +0200754 atomic_set(&act->adapter->stat_miss, act->adapter->stat_read_buf_num);
Christof Schmitt287ac012008-07-02 10:56:40 +0200755 if (zfcp_status_read_refill(act->adapter))
756 return ZFCP_ERP_FAILED;
757
758 return ZFCP_ERP_SUCCEEDED;
759}
760
Swen Schilligcf13c082009-03-02 13:09:03 +0100761static void zfcp_erp_adapter_strategy_close(struct zfcp_erp_action *act)
Christof Schmitt287ac012008-07-02 10:56:40 +0200762{
Christof Schmitt287ac012008-07-02 10:56:40 +0200763 struct zfcp_adapter *adapter = act->adapter;
764
Christof Schmitt287ac012008-07-02 10:56:40 +0200765 /* close queues to ensure that buffers are not accessed by adapter */
Swen Schillig564e1c82009-08-18 15:43:19 +0200766 zfcp_qdio_close(adapter->qdio);
Christof Schmitt287ac012008-07-02 10:56:40 +0200767 zfcp_fsf_req_dismiss_all(adapter);
768 adapter->fsf_req_seq_no = 0;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200769 zfcp_fc_wka_ports_force_offline(adapter->gs);
Christof Schmittb62a8d92010-09-08 14:39:55 +0200770 /* all ports and LUNs are closed */
Swen Schilligedaed852010-09-08 14:40:01 +0200771 zfcp_erp_clear_adapter_status(adapter, ZFCP_STATUS_COMMON_OPEN);
Swen Schilligcf13c082009-03-02 13:09:03 +0100772
Christof Schmitt287ac012008-07-02 10:56:40 +0200773 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK |
Swen Schilligcf13c082009-03-02 13:09:03 +0100774 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
775}
776
777static int zfcp_erp_adapter_strategy_open(struct zfcp_erp_action *act)
778{
779 struct zfcp_adapter *adapter = act->adapter;
780
781 if (zfcp_erp_adapter_strategy_open_qdio(act)) {
782 atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK |
783 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED,
784 &adapter->status);
785 return ZFCP_ERP_FAILED;
786 }
787
788 if (zfcp_erp_adapter_strategy_open_fsf(act)) {
789 zfcp_erp_adapter_strategy_close(act);
790 return ZFCP_ERP_FAILED;
791 }
792
793 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &adapter->status);
794
795 return ZFCP_ERP_SUCCEEDED;
Christof Schmitt287ac012008-07-02 10:56:40 +0200796}
797
798static int zfcp_erp_adapter_strategy(struct zfcp_erp_action *act)
799{
Swen Schilligcf13c082009-03-02 13:09:03 +0100800 struct zfcp_adapter *adapter = act->adapter;
Christof Schmitt287ac012008-07-02 10:56:40 +0200801
Swen Schilligcf13c082009-03-02 13:09:03 +0100802 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN) {
803 zfcp_erp_adapter_strategy_close(act);
804 if (act->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
805 return ZFCP_ERP_EXIT;
806 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200807
Swen Schilligcf13c082009-03-02 13:09:03 +0100808 if (zfcp_erp_adapter_strategy_open(act)) {
Christof Schmitt287ac012008-07-02 10:56:40 +0200809 ssleep(8);
Swen Schilligcf13c082009-03-02 13:09:03 +0100810 return ZFCP_ERP_FAILED;
811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Swen Schilligcf13c082009-03-02 13:09:03 +0100813 return ZFCP_ERP_SUCCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Christof Schmitt287ac012008-07-02 10:56:40 +0200816static int zfcp_erp_port_forced_strategy_close(struct zfcp_erp_action *act)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Christof Schmitt287ac012008-07-02 10:56:40 +0200818 int retval;
819
820 retval = zfcp_fsf_close_physical_port(act);
821 if (retval == -ENOMEM)
822 return ZFCP_ERP_NOMEM;
823 act->step = ZFCP_ERP_STEP_PHYS_PORT_CLOSING;
824 if (retval)
825 return ZFCP_ERP_FAILED;
826
827 return ZFCP_ERP_CONTINUES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Christof Schmitt287ac012008-07-02 10:56:40 +0200830static void zfcp_erp_port_strategy_clearstati(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100832 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED, &port->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200833}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Christof Schmitt287ac012008-07-02 10:56:40 +0200835static int zfcp_erp_port_forced_strategy(struct zfcp_erp_action *erp_action)
836{
837 struct zfcp_port *port = erp_action->port;
838 int status = atomic_read(&port->status);
839
840 switch (erp_action->step) {
841 case ZFCP_ERP_STEP_UNINITIALIZED:
842 zfcp_erp_port_strategy_clearstati(port);
843 if ((status & ZFCP_STATUS_PORT_PHYS_OPEN) &&
844 (status & ZFCP_STATUS_COMMON_OPEN))
845 return zfcp_erp_port_forced_strategy_close(erp_action);
846 else
847 return ZFCP_ERP_FAILED;
848
849 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING:
Christof Schmittddb3e0c2009-07-13 15:06:08 +0200850 if (!(status & ZFCP_STATUS_PORT_PHYS_OPEN))
Christof Schmitt287ac012008-07-02 10:56:40 +0200851 return ZFCP_ERP_SUCCEEDED;
852 }
853 return ZFCP_ERP_FAILED;
854}
855
856static int zfcp_erp_port_strategy_close(struct zfcp_erp_action *erp_action)
857{
858 int retval;
859
860 retval = zfcp_fsf_close_port(erp_action);
861 if (retval == -ENOMEM)
862 return ZFCP_ERP_NOMEM;
863 erp_action->step = ZFCP_ERP_STEP_PORT_CLOSING;
864 if (retval)
865 return ZFCP_ERP_FAILED;
866 return ZFCP_ERP_CONTINUES;
867}
868
869static int zfcp_erp_port_strategy_open_port(struct zfcp_erp_action *erp_action)
870{
871 int retval;
872
873 retval = zfcp_fsf_open_port(erp_action);
874 if (retval == -ENOMEM)
875 return ZFCP_ERP_NOMEM;
876 erp_action->step = ZFCP_ERP_STEP_PORT_OPENING;
877 if (retval)
878 return ZFCP_ERP_FAILED;
879 return ZFCP_ERP_CONTINUES;
880}
881
Christof Schmitt287ac012008-07-02 10:56:40 +0200882static int zfcp_erp_open_ptp_port(struct zfcp_erp_action *act)
883{
884 struct zfcp_adapter *adapter = act->adapter;
885 struct zfcp_port *port = act->port;
886
887 if (port->wwpn != adapter->peer_wwpn) {
Swen Schilligedaed852010-09-08 14:40:01 +0200888 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt287ac012008-07-02 10:56:40 +0200889 return ZFCP_ERP_FAILED;
890 }
891 port->d_id = adapter->peer_d_id;
Christof Schmitt287ac012008-07-02 10:56:40 +0200892 return zfcp_erp_port_strategy_open_port(act);
893}
894
895static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *act)
896{
897 struct zfcp_adapter *adapter = act->adapter;
898 struct zfcp_port *port = act->port;
Christof Schmitt287ac012008-07-02 10:56:40 +0200899 int p_status = atomic_read(&port->status);
900
901 switch (act->step) {
902 case ZFCP_ERP_STEP_UNINITIALIZED:
903 case ZFCP_ERP_STEP_PHYS_PORT_CLOSING:
904 case ZFCP_ERP_STEP_PORT_CLOSING:
905 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP)
906 return zfcp_erp_open_ptp_port(act);
Christof Schmittb98478d2008-12-19 16:56:59 +0100907 if (!port->d_id) {
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200908 zfcp_fc_trigger_did_lookup(port);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200909 return ZFCP_ERP_EXIT;
Christof Schmitt287ac012008-07-02 10:56:40 +0200910 }
Christof Schmitt287ac012008-07-02 10:56:40 +0200911 return zfcp_erp_port_strategy_open_port(act);
912
913 case ZFCP_ERP_STEP_PORT_OPENING:
914 /* D_ID might have changed during open */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200915 if (p_status & ZFCP_STATUS_COMMON_OPEN) {
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200916 if (!port->d_id) {
917 zfcp_fc_trigger_did_lookup(port);
918 return ZFCP_ERP_EXIT;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200919 }
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200920 return ZFCP_ERP_SUCCEEDED;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200921 }
Swen Schilligea460a82009-05-15 13:18:20 +0200922 if (port->d_id && !(p_status & ZFCP_STATUS_COMMON_NOESC)) {
923 port->d_id = 0;
Christof Schmittf7bd7c32010-07-08 09:53:10 +0200924 return ZFCP_ERP_FAILED;
Swen Schilligea460a82009-05-15 13:18:20 +0200925 }
926 /* fall through otherwise */
Christof Schmitt287ac012008-07-02 10:56:40 +0200927 }
928 return ZFCP_ERP_FAILED;
929}
930
Christof Schmitt287ac012008-07-02 10:56:40 +0200931static int zfcp_erp_port_strategy(struct zfcp_erp_action *erp_action)
932{
933 struct zfcp_port *port = erp_action->port;
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200934 int p_status = atomic_read(&port->status);
Christof Schmitt287ac012008-07-02 10:56:40 +0200935
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200936 if ((p_status & ZFCP_STATUS_COMMON_NOESC) &&
937 !(p_status & ZFCP_STATUS_COMMON_OPEN))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200938 goto close_init_done;
939
Christof Schmitt287ac012008-07-02 10:56:40 +0200940 switch (erp_action->step) {
941 case ZFCP_ERP_STEP_UNINITIALIZED:
942 zfcp_erp_port_strategy_clearstati(port);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200943 if (p_status & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +0200944 return zfcp_erp_port_strategy_close(erp_action);
945 break;
946
947 case ZFCP_ERP_STEP_PORT_CLOSING:
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200948 if (p_status & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +0200949 return ZFCP_ERP_FAILED;
950 break;
951 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200952
953close_init_done:
Christof Schmitt287ac012008-07-02 10:56:40 +0200954 if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
955 return ZFCP_ERP_EXIT;
Christof Schmitt287ac012008-07-02 10:56:40 +0200956
Swen Schillig5ab944f2008-10-01 12:42:17 +0200957 return zfcp_erp_port_strategy_open_common(erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Christof Schmittb62a8d92010-09-08 14:39:55 +0200960static void zfcp_erp_lun_strategy_clearstati(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200962 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
963
Swen Schillig44cc76f2008-10-01 12:42:16 +0200964 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
Christof Schmittb62a8d92010-09-08 14:39:55 +0200965 ZFCP_STATUS_LUN_SHARED | ZFCP_STATUS_LUN_READONLY,
966 &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Christof Schmittb62a8d92010-09-08 14:39:55 +0200969static int zfcp_erp_lun_strategy_close(struct zfcp_erp_action *erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200970{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200971 int retval = zfcp_fsf_close_lun(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200972 if (retval == -ENOMEM)
973 return ZFCP_ERP_NOMEM;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200974 erp_action->step = ZFCP_ERP_STEP_LUN_CLOSING;
Christof Schmitt287ac012008-07-02 10:56:40 +0200975 if (retval)
976 return ZFCP_ERP_FAILED;
977 return ZFCP_ERP_CONTINUES;
978}
979
Christof Schmittb62a8d92010-09-08 14:39:55 +0200980static int zfcp_erp_lun_strategy_open(struct zfcp_erp_action *erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200981{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200982 int retval = zfcp_fsf_open_lun(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +0200983 if (retval == -ENOMEM)
984 return ZFCP_ERP_NOMEM;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200985 erp_action->step = ZFCP_ERP_STEP_LUN_OPENING;
Christof Schmitt287ac012008-07-02 10:56:40 +0200986 if (retval)
987 return ZFCP_ERP_FAILED;
988 return ZFCP_ERP_CONTINUES;
989}
990
Christof Schmittb62a8d92010-09-08 14:39:55 +0200991static int zfcp_erp_lun_strategy(struct zfcp_erp_action *erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200992{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200993 struct scsi_device *sdev = erp_action->sdev;
994 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +0200995
996 switch (erp_action->step) {
997 case ZFCP_ERP_STEP_UNINITIALIZED:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200998 zfcp_erp_lun_strategy_clearstati(sdev);
999 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_OPEN)
1000 return zfcp_erp_lun_strategy_close(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +02001001 /* already closed, fall through */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001002 case ZFCP_ERP_STEP_LUN_CLOSING:
1003 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +02001004 return ZFCP_ERP_FAILED;
1005 if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY)
1006 return ZFCP_ERP_EXIT;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001007 return zfcp_erp_lun_strategy_open(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +02001008
Christof Schmittb62a8d92010-09-08 14:39:55 +02001009 case ZFCP_ERP_STEP_LUN_OPENING:
1010 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_OPEN)
Christof Schmitt287ac012008-07-02 10:56:40 +02001011 return ZFCP_ERP_SUCCEEDED;
1012 }
1013 return ZFCP_ERP_FAILED;
1014}
1015
Christof Schmittb62a8d92010-09-08 14:39:55 +02001016static int zfcp_erp_strategy_check_lun(struct scsi_device *sdev, int result)
Christof Schmitt287ac012008-07-02 10:56:40 +02001017{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001018 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
1019
Christof Schmitt287ac012008-07-02 10:56:40 +02001020 switch (result) {
1021 case ZFCP_ERP_SUCCEEDED :
Christof Schmittb62a8d92010-09-08 14:39:55 +02001022 atomic_set(&zfcp_sdev->erp_counter, 0);
1023 zfcp_erp_lun_unblock(sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +02001024 break;
1025 case ZFCP_ERP_FAILED :
Christof Schmittb62a8d92010-09-08 14:39:55 +02001026 atomic_inc(&zfcp_sdev->erp_counter);
1027 if (atomic_read(&zfcp_sdev->erp_counter) > ZFCP_MAX_ERPS) {
1028 dev_err(&zfcp_sdev->port->adapter->ccw_device->dev,
1029 "ERP failed for LUN 0x%016Lx on "
Christof Schmittff3b24f2008-10-01 12:42:15 +02001030 "port 0x%016Lx\n",
Christof Schmittb62a8d92010-09-08 14:39:55 +02001031 (unsigned long long)zfcp_scsi_dev_lun(sdev),
1032 (unsigned long long)zfcp_sdev->port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001033 zfcp_erp_set_lun_status(sdev,
1034 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001035 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001036 break;
1037 }
1038
Christof Schmittb62a8d92010-09-08 14:39:55 +02001039 if (atomic_read(&zfcp_sdev->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
1040 zfcp_erp_lun_block(sdev, 0);
Christof Schmitt287ac012008-07-02 10:56:40 +02001041 result = ZFCP_ERP_EXIT;
1042 }
1043 return result;
1044}
1045
1046static int zfcp_erp_strategy_check_port(struct zfcp_port *port, int result)
1047{
1048 switch (result) {
1049 case ZFCP_ERP_SUCCEEDED :
1050 atomic_set(&port->erp_counter, 0);
1051 zfcp_erp_port_unblock(port);
1052 break;
1053
1054 case ZFCP_ERP_FAILED :
1055 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC) {
1056 zfcp_erp_port_block(port, 0);
1057 result = ZFCP_ERP_EXIT;
1058 }
1059 atomic_inc(&port->erp_counter);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001060 if (atomic_read(&port->erp_counter) > ZFCP_MAX_ERPS) {
1061 dev_err(&port->adapter->ccw_device->dev,
1062 "ERP failed for remote port 0x%016Lx\n",
Swen Schillig7ba58c92008-10-01 12:42:18 +02001063 (unsigned long long)port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001064 zfcp_erp_set_port_status(port,
1065 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001066 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001067 break;
1068 }
1069
1070 if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
1071 zfcp_erp_port_block(port, 0);
1072 result = ZFCP_ERP_EXIT;
1073 }
1074 return result;
1075}
1076
1077static int zfcp_erp_strategy_check_adapter(struct zfcp_adapter *adapter,
1078 int result)
1079{
1080 switch (result) {
1081 case ZFCP_ERP_SUCCEEDED :
1082 atomic_set(&adapter->erp_counter, 0);
1083 zfcp_erp_adapter_unblock(adapter);
1084 break;
1085
1086 case ZFCP_ERP_FAILED :
1087 atomic_inc(&adapter->erp_counter);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001088 if (atomic_read(&adapter->erp_counter) > ZFCP_MAX_ERPS) {
1089 dev_err(&adapter->ccw_device->dev,
1090 "ERP cannot recover an error "
1091 "on the FCP device\n");
Swen Schilligedaed852010-09-08 14:40:01 +02001092 zfcp_erp_set_adapter_status(adapter,
1093 ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmittff3b24f2008-10-01 12:42:15 +02001094 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001095 break;
1096 }
1097
1098 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED) {
1099 zfcp_erp_adapter_block(adapter, 0);
1100 result = ZFCP_ERP_EXIT;
1101 }
1102 return result;
1103}
1104
1105static int zfcp_erp_strategy_check_target(struct zfcp_erp_action *erp_action,
1106 int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
1108 struct zfcp_adapter *adapter = erp_action->adapter;
1109 struct zfcp_port *port = erp_action->port;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001110 struct scsi_device *sdev = erp_action->sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 switch (erp_action->action) {
1113
Christof Schmittb62a8d92010-09-08 14:39:55 +02001114 case ZFCP_ERP_ACTION_REOPEN_LUN:
1115 result = zfcp_erp_strategy_check_lun(sdev, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 break;
1117
1118 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1119 case ZFCP_ERP_ACTION_REOPEN_PORT:
1120 result = zfcp_erp_strategy_check_port(port, result);
1121 break;
1122
1123 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1124 result = zfcp_erp_strategy_check_adapter(adapter, result);
1125 break;
1126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return result;
1128}
1129
Christof Schmitt287ac012008-07-02 10:56:40 +02001130static int zfcp_erp_strat_change_det(atomic_t *target_status, u32 erp_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Christof Schmitt287ac012008-07-02 10:56:40 +02001132 int status = atomic_read(target_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Christof Schmitt287ac012008-07-02 10:56:40 +02001134 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
1135 (erp_status & ZFCP_STATUS_ERP_CLOSE_ONLY))
1136 return 1; /* take it online */
1137
1138 if (!(status & ZFCP_STATUS_COMMON_RUNNING) &&
1139 !(erp_status & ZFCP_STATUS_ERP_CLOSE_ONLY))
1140 return 1; /* take it offline */
1141
1142 return 0;
1143}
1144
1145static int zfcp_erp_strategy_statechange(struct zfcp_erp_action *act, int ret)
1146{
1147 int action = act->action;
1148 struct zfcp_adapter *adapter = act->adapter;
1149 struct zfcp_port *port = act->port;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001150 struct scsi_device *sdev = act->sdev;
1151 struct zfcp_scsi_dev *zfcp_sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +02001152 u32 erp_status = act->status;
1153
1154 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Christof Schmitt287ac012008-07-02 10:56:40 +02001156 if (zfcp_erp_strat_change_det(&adapter->status, erp_status)) {
1157 _zfcp_erp_adapter_reopen(adapter,
1158 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001159 "ersscg1");
Christof Schmitt287ac012008-07-02 10:56:40 +02001160 return ZFCP_ERP_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 break;
1163
1164 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1165 case ZFCP_ERP_ACTION_REOPEN_PORT:
Christof Schmitt287ac012008-07-02 10:56:40 +02001166 if (zfcp_erp_strat_change_det(&port->status, erp_status)) {
1167 _zfcp_erp_port_reopen(port,
1168 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001169 "ersscg2");
Christof Schmitt287ac012008-07-02 10:56:40 +02001170 return ZFCP_ERP_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172 break;
1173
Christof Schmittb62a8d92010-09-08 14:39:55 +02001174 case ZFCP_ERP_ACTION_REOPEN_LUN:
1175 zfcp_sdev = sdev_to_zfcp(sdev);
1176 if (zfcp_erp_strat_change_det(&zfcp_sdev->status, erp_status)) {
1177 _zfcp_erp_lun_reopen(sdev,
1178 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001179 "ersscg3", 0);
Christof Schmitt287ac012008-07-02 10:56:40 +02001180 return ZFCP_ERP_EXIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182 break;
1183 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001184 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
Christof Schmitt287ac012008-07-02 10:56:40 +02001187static void zfcp_erp_action_dequeue(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Christof Schmitt287ac012008-07-02 10:56:40 +02001189 struct zfcp_adapter *adapter = erp_action->adapter;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001190 struct zfcp_scsi_dev *zfcp_sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Christof Schmitt287ac012008-07-02 10:56:40 +02001192 adapter->erp_total_count--;
1193 if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) {
1194 adapter->erp_low_mem_count--;
1195 erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197
Christof Schmitt287ac012008-07-02 10:56:40 +02001198 list_del(&erp_action->list);
Swen Schilligae0904f2010-12-02 15:16:12 +01001199 zfcp_dbf_rec_run("eractd1", erp_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Christof Schmitt287ac012008-07-02 10:56:40 +02001201 switch (erp_action->action) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001202 case ZFCP_ERP_ACTION_REOPEN_LUN:
1203 zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
Christof Schmitt287ac012008-07-02 10:56:40 +02001204 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
Christof Schmittb62a8d92010-09-08 14:39:55 +02001205 &zfcp_sdev->status);
Christof Schmitt287ac012008-07-02 10:56:40 +02001206 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Christof Schmitt287ac012008-07-02 10:56:40 +02001208 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1209 case ZFCP_ERP_ACTION_REOPEN_PORT:
1210 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
1211 &erp_action->port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 break;
Christof Schmitt287ac012008-07-02 10:56:40 +02001213
1214 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1215 atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE,
1216 &erp_action->adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 break;
1218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Christof Schmitt287ac012008-07-02 10:56:40 +02001221static void zfcp_erp_action_cleanup(struct zfcp_erp_action *act, int result)
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001222{
Christof Schmitt287ac012008-07-02 10:56:40 +02001223 struct zfcp_adapter *adapter = act->adapter;
1224 struct zfcp_port *port = act->port;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001225 struct scsi_device *sdev = act->sdev;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +02001226
Christof Schmitt287ac012008-07-02 10:56:40 +02001227 switch (act->action) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001228 case ZFCP_ERP_ACTION_REOPEN_LUN:
Christof Schmittfdbd1c52010-09-08 14:39:54 +02001229 if (!(act->status & ZFCP_STATUS_ERP_NO_REF))
Christof Schmittb62a8d92010-09-08 14:39:55 +02001230 scsi_device_put(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 break;
Christof Schmitt287ac012008-07-02 10:56:40 +02001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 case ZFCP_ERP_ACTION_REOPEN_PORT:
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01001234 if (result == ZFCP_ERP_SUCCEEDED)
1235 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt57676202010-07-08 09:53:05 +02001236 /* fall through */
1237 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
Christof Schmitt615f59e2010-02-17 11:18:56 +01001238 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 break;
Christof Schmitt287ac012008-07-02 10:56:40 +02001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01001242 if (result == ZFCP_ERP_SUCCEEDED) {
Christof Schmittbd43a42b72008-12-25 13:38:50 +01001243 register_service_level(&adapter->service_level);
Swen Schillig9eae07e2009-11-24 16:54:06 +01001244 queue_work(adapter->work_queue, &adapter->scan_work);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01001245 } else
1246 unregister_service_level(&adapter->service_level);
Swen Schilligf3450c72009-11-24 16:53:59 +01001247 kref_put(&adapter->ref, zfcp_adapter_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250}
1251
Christof Schmitt287ac012008-07-02 10:56:40 +02001252static int zfcp_erp_strategy_do_action(struct zfcp_erp_action *erp_action)
1253{
1254 switch (erp_action->action) {
1255 case ZFCP_ERP_ACTION_REOPEN_ADAPTER:
1256 return zfcp_erp_adapter_strategy(erp_action);
1257 case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED:
1258 return zfcp_erp_port_forced_strategy(erp_action);
1259 case ZFCP_ERP_ACTION_REOPEN_PORT:
1260 return zfcp_erp_port_strategy(erp_action);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001261 case ZFCP_ERP_ACTION_REOPEN_LUN:
1262 return zfcp_erp_lun_strategy(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +02001263 }
1264 return ZFCP_ERP_FAILED;
1265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Christof Schmitt287ac012008-07-02 10:56:40 +02001267static int zfcp_erp_strategy(struct zfcp_erp_action *erp_action)
1268{
1269 int retval;
Christof Schmitt287ac012008-07-02 10:56:40 +02001270 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +01001271 struct zfcp_adapter *adapter = erp_action->adapter;
Christof Schmitt287ac012008-07-02 10:56:40 +02001272
Swen Schilligf3450c72009-11-24 16:53:59 +01001273 kref_get(&adapter->ref);
Christof Schmitt287ac012008-07-02 10:56:40 +02001274
Swen Schilligf3450c72009-11-24 16:53:59 +01001275 write_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001276 zfcp_erp_strategy_check_fsfreq(erp_action);
1277
1278 if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED) {
1279 zfcp_erp_action_dequeue(erp_action);
1280 retval = ZFCP_ERP_DISMISSED;
1281 goto unlock;
1282 }
1283
Christof Schmitt9c785d92010-07-08 09:53:09 +02001284 if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT) {
1285 retval = ZFCP_ERP_FAILED;
1286 goto check_target;
1287 }
1288
Christof Schmitt287ac012008-07-02 10:56:40 +02001289 zfcp_erp_action_to_running(erp_action);
1290
1291 /* no lock to allow for blocking operations */
Swen Schilligecf0c772009-11-24 16:53:58 +01001292 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001293 retval = zfcp_erp_strategy_do_action(erp_action);
Swen Schilligecf0c772009-11-24 16:53:58 +01001294 write_lock_irqsave(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001295
1296 if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED)
1297 retval = ZFCP_ERP_CONTINUES;
1298
1299 switch (retval) {
1300 case ZFCP_ERP_NOMEM:
1301 if (!(erp_action->status & ZFCP_STATUS_ERP_LOWMEM)) {
1302 ++adapter->erp_low_mem_count;
1303 erp_action->status |= ZFCP_STATUS_ERP_LOWMEM;
1304 }
1305 if (adapter->erp_total_count == adapter->erp_low_mem_count)
Swen Schilligea4a3a62010-12-02 15:16:16 +01001306 _zfcp_erp_adapter_reopen(adapter, 0, "erstgy1");
Christof Schmitt287ac012008-07-02 10:56:40 +02001307 else {
1308 zfcp_erp_strategy_memwait(erp_action);
1309 retval = ZFCP_ERP_CONTINUES;
1310 }
1311 goto unlock;
1312
1313 case ZFCP_ERP_CONTINUES:
1314 if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) {
1315 --adapter->erp_low_mem_count;
1316 erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM;
1317 }
1318 goto unlock;
1319 }
1320
Christof Schmitt9c785d92010-07-08 09:53:09 +02001321check_target:
Christof Schmitt287ac012008-07-02 10:56:40 +02001322 retval = zfcp_erp_strategy_check_target(erp_action, retval);
1323 zfcp_erp_action_dequeue(erp_action);
1324 retval = zfcp_erp_strategy_statechange(erp_action, retval);
1325 if (retval == ZFCP_ERP_EXIT)
1326 goto unlock;
Christof Schmitt85600f72009-07-13 15:06:09 +02001327 if (retval == ZFCP_ERP_SUCCEEDED)
1328 zfcp_erp_strategy_followup_success(erp_action);
1329 if (retval == ZFCP_ERP_FAILED)
1330 zfcp_erp_strategy_followup_failed(erp_action);
Christof Schmitt287ac012008-07-02 10:56:40 +02001331
1332 unlock:
Swen Schilligecf0c772009-11-24 16:53:58 +01001333 write_unlock_irqrestore(&adapter->erp_lock, flags);
Christof Schmitt287ac012008-07-02 10:56:40 +02001334
1335 if (retval != ZFCP_ERP_CONTINUES)
1336 zfcp_erp_action_cleanup(erp_action, retval);
1337
Swen Schilligf3450c72009-11-24 16:53:59 +01001338 kref_put(&adapter->ref, zfcp_adapter_release);
Christof Schmitt287ac012008-07-02 10:56:40 +02001339 return retval;
1340}
1341
1342static int zfcp_erp_thread(void *data)
1343{
1344 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
1345 struct list_head *next;
1346 struct zfcp_erp_action *act;
1347 unsigned long flags;
1348
Christof Schmitt347c6a92009-08-18 15:43:25 +02001349 for (;;) {
Christof Schmitt347c6a92009-08-18 15:43:25 +02001350 wait_event_interruptible(adapter->erp_ready_wq,
1351 !list_empty(&adapter->erp_ready_head) ||
1352 kthread_should_stop());
Swen Schillig94ab4b32009-04-17 15:08:06 +02001353
Christof Schmitt347c6a92009-08-18 15:43:25 +02001354 if (kthread_should_stop())
1355 break;
1356
Christof Schmitt287ac012008-07-02 10:56:40 +02001357 write_lock_irqsave(&adapter->erp_lock, flags);
1358 next = adapter->erp_ready_head.next;
1359 write_unlock_irqrestore(&adapter->erp_lock, flags);
1360
1361 if (next != &adapter->erp_ready_head) {
1362 act = list_entry(next, struct zfcp_erp_action, list);
1363
1364 /* there is more to come after dismission, no notify */
1365 if (zfcp_erp_strategy(act) != ZFCP_ERP_DISMISSED)
1366 zfcp_erp_wakeup(adapter);
1367 }
Christof Schmitt287ac012008-07-02 10:56:40 +02001368 }
1369
Christof Schmitt287ac012008-07-02 10:56:40 +02001370 return 0;
1371}
1372
1373/**
1374 * zfcp_erp_thread_setup - Start ERP thread for adapter
1375 * @adapter: Adapter to start the ERP thread for
1376 *
1377 * Returns 0 on success or error code from kernel_thread()
1378 */
1379int zfcp_erp_thread_setup(struct zfcp_adapter *adapter)
1380{
Christof Schmitt347c6a92009-08-18 15:43:25 +02001381 struct task_struct *thread;
Christof Schmitt287ac012008-07-02 10:56:40 +02001382
Christof Schmitt347c6a92009-08-18 15:43:25 +02001383 thread = kthread_run(zfcp_erp_thread, adapter, "zfcperp%s",
1384 dev_name(&adapter->ccw_device->dev));
1385 if (IS_ERR(thread)) {
Christof Schmitt287ac012008-07-02 10:56:40 +02001386 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001387 "Creating an ERP thread for the FCP device failed.\n");
Christof Schmitt347c6a92009-08-18 15:43:25 +02001388 return PTR_ERR(thread);
Christof Schmitt287ac012008-07-02 10:56:40 +02001389 }
Christof Schmitt347c6a92009-08-18 15:43:25 +02001390
1391 adapter->erp_thread = thread;
Christof Schmitt287ac012008-07-02 10:56:40 +02001392 return 0;
1393}
1394
1395/**
1396 * zfcp_erp_thread_kill - Stop ERP thread.
1397 * @adapter: Adapter where the ERP thread should be stopped.
1398 *
1399 * The caller of this routine ensures that the specified adapter has
1400 * been shut down and that this operation has been completed. Thus,
1401 * there are no pending erp_actions which would need to be handled
1402 * here.
1403 */
1404void zfcp_erp_thread_kill(struct zfcp_adapter *adapter)
1405{
Christof Schmitt347c6a92009-08-18 15:43:25 +02001406 kthread_stop(adapter->erp_thread);
1407 adapter->erp_thread = NULL;
Christof Schmitt143bb6b2009-08-18 15:43:27 +02001408 WARN_ON(!list_empty(&adapter->erp_ready_head));
1409 WARN_ON(!list_empty(&adapter->erp_running_head));
Christof Schmitt287ac012008-07-02 10:56:40 +02001410}
1411
1412/**
Christof Schmitt287ac012008-07-02 10:56:40 +02001413 * zfcp_erp_wait - wait for completion of error recovery on an adapter
1414 * @adapter: adapter for which to wait for completion of its error recovery
1415 */
1416void zfcp_erp_wait(struct zfcp_adapter *adapter)
1417{
1418 wait_event(adapter->erp_done_wqh,
1419 !(atomic_read(&adapter->status) &
1420 ZFCP_STATUS_ADAPTER_ERP_PENDING));
1421}
1422
1423/**
Swen Schilligedaed852010-09-08 14:40:01 +02001424 * zfcp_erp_set_adapter_status - set adapter status bits
Christof Schmitt287ac012008-07-02 10:56:40 +02001425 * @adapter: adapter to change the status
Christof Schmitt287ac012008-07-02 10:56:40 +02001426 * @mask: status bits to change
Christof Schmitt287ac012008-07-02 10:56:40 +02001427 *
Christof Schmittb62a8d92010-09-08 14:39:55 +02001428 * Changes in common status bits are propagated to attached ports and LUNs.
Christof Schmitt287ac012008-07-02 10:56:40 +02001429 */
Swen Schilligedaed852010-09-08 14:40:01 +02001430void zfcp_erp_set_adapter_status(struct zfcp_adapter *adapter, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 struct zfcp_port *port;
Swen Schilligedaed852010-09-08 14:40:01 +02001433 struct scsi_device *sdev;
Swen Schilligecf0c772009-11-24 16:53:58 +01001434 unsigned long flags;
Christof Schmitt287ac012008-07-02 10:56:40 +02001435 u32 common_mask = mask & ZFCP_COMMON_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Swen Schilligedaed852010-09-08 14:40:01 +02001437 atomic_set_mask(mask, &adapter->status);
Christof Schmitt287ac012008-07-02 10:56:40 +02001438
Swen Schilligedaed852010-09-08 14:40:01 +02001439 if (!common_mask)
1440 return;
1441
1442 read_lock_irqsave(&adapter->port_list_lock, flags);
1443 list_for_each_entry(port, &adapter->port_list, list)
1444 atomic_set_mask(common_mask, &port->status);
1445 read_unlock_irqrestore(&adapter->port_list_lock, flags);
1446
1447 shost_for_each_device(sdev, adapter->scsi_host)
1448 atomic_set_mask(common_mask, &sdev_to_zfcp(sdev)->status);
1449}
1450
1451/**
1452 * zfcp_erp_clear_adapter_status - clear adapter status bits
1453 * @adapter: adapter to change the status
1454 * @mask: status bits to change
1455 *
1456 * Changes in common status bits are propagated to attached ports and LUNs.
1457 */
1458void zfcp_erp_clear_adapter_status(struct zfcp_adapter *adapter, u32 mask)
1459{
1460 struct zfcp_port *port;
1461 struct scsi_device *sdev;
1462 unsigned long flags;
1463 u32 common_mask = mask & ZFCP_COMMON_FLAGS;
1464 u32 clear_counter = mask & ZFCP_STATUS_COMMON_ERP_FAILED;
1465
1466 atomic_clear_mask(mask, &adapter->status);
1467
1468 if (!common_mask)
1469 return;
1470
1471 if (clear_counter)
1472 atomic_set(&adapter->erp_counter, 0);
1473
1474 read_lock_irqsave(&adapter->port_list_lock, flags);
1475 list_for_each_entry(port, &adapter->port_list, list) {
1476 atomic_clear_mask(common_mask, &port->status);
1477 if (clear_counter)
1478 atomic_set(&port->erp_counter, 0);
1479 }
1480 read_unlock_irqrestore(&adapter->port_list_lock, flags);
1481
1482 shost_for_each_device(sdev, adapter->scsi_host) {
1483 atomic_clear_mask(common_mask, &sdev_to_zfcp(sdev)->status);
1484 if (clear_counter)
1485 atomic_set(&sdev_to_zfcp(sdev)->erp_counter, 0);
Swen Schilligecf0c772009-11-24 16:53:58 +01001486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Christof Schmitt287ac012008-07-02 10:56:40 +02001489/**
Swen Schilligedaed852010-09-08 14:40:01 +02001490 * zfcp_erp_set_port_status - set port status bits
1491 * @port: port to change the status
Christof Schmitt287ac012008-07-02 10:56:40 +02001492 * @mask: status bits to change
Christof Schmitt287ac012008-07-02 10:56:40 +02001493 *
Christof Schmittb62a8d92010-09-08 14:39:55 +02001494 * Changes in common status bits are propagated to attached LUNs.
Christof Schmitt287ac012008-07-02 10:56:40 +02001495 */
Swen Schilligedaed852010-09-08 14:40:01 +02001496void zfcp_erp_set_port_status(struct zfcp_port *port, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001498 struct scsi_device *sdev;
Christof Schmitt287ac012008-07-02 10:56:40 +02001499 u32 common_mask = mask & ZFCP_COMMON_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
1506 shost_for_each_device(sdev, port->adapter->scsi_host)
1507 if (sdev_to_zfcp(sdev)->port == port)
1508 atomic_set_mask(common_mask,
1509 &sdev_to_zfcp(sdev)->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
Christof Schmitt287ac012008-07-02 10:56:40 +02001512/**
Swen Schilligedaed852010-09-08 14:40:01 +02001513 * zfcp_erp_clear_port_status - clear port status bits
1514 * @port: adapter to change the status
Christof Schmitt287ac012008-07-02 10:56:40 +02001515 * @mask: status bits to change
Swen Schilligedaed852010-09-08 14:40:01 +02001516 *
1517 * Changes in common status bits are propagated to attached LUNs.
Christof Schmitt287ac012008-07-02 10:56:40 +02001518 */
Swen Schilligedaed852010-09-08 14:40:01 +02001519void zfcp_erp_clear_port_status(struct zfcp_port *port, u32 mask)
1520{
1521 struct scsi_device *sdev;
1522 u32 common_mask = mask & ZFCP_COMMON_FLAGS;
1523 u32 clear_counter = mask & ZFCP_STATUS_COMMON_ERP_FAILED;
1524
1525 atomic_clear_mask(mask, &port->status);
1526
1527 if (!common_mask)
1528 return;
1529
1530 if (clear_counter)
1531 atomic_set(&port->erp_counter, 0);
1532
1533 shost_for_each_device(sdev, port->adapter->scsi_host)
1534 if (sdev_to_zfcp(sdev)->port == port) {
1535 atomic_clear_mask(common_mask,
1536 &sdev_to_zfcp(sdev)->status);
1537 if (clear_counter)
1538 atomic_set(&sdev_to_zfcp(sdev)->erp_counter, 0);
1539 }
1540}
1541
1542/**
1543 * zfcp_erp_set_lun_status - set lun status bits
1544 * @sdev: SCSI device / lun to set the status bits
1545 * @mask: status bits to change
1546 */
1547void zfcp_erp_set_lun_status(struct scsi_device *sdev, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001549 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
1550
Swen Schilligedaed852010-09-08 14:40:01 +02001551 atomic_set_mask(mask, &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
Christof Schmitt287ac012008-07-02 10:56:40 +02001554/**
Swen Schilligedaed852010-09-08 14:40:01 +02001555 * zfcp_erp_clear_lun_status - clear lun status bits
1556 * @sdev: SCSi device / lun to clear the status bits
1557 * @mask: status bits to change
Christof Schmitt287ac012008-07-02 10:56:40 +02001558 */
Swen Schilligedaed852010-09-08 14:40:01 +02001559void zfcp_erp_clear_lun_status(struct scsi_device *sdev, u32 mask)
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001560{
Swen Schilligedaed852010-09-08 14:40:01 +02001561 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
1562
1563 atomic_clear_mask(mask, &zfcp_sdev->status);
1564
1565 if (mask & ZFCP_STATUS_COMMON_ERP_FAILED)
1566 atomic_set(&zfcp_sdev->erp_counter, 0);
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001567}
1568