Swen Schillig | 41fa2ad | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 1 | /* |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 2 | * zfcp device driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 4 | * Error Recovery Procedures (ERP). |
Swen Schillig | 41fa2ad | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 5 | * |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 6 | * Copyright IBM Corporation 2002, 2009 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 9 | #define KMSG_COMPONENT "zfcp" |
| 10 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 11 | |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 12 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "zfcp_ext.h" |
| 14 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 15 | #define ZFCP_MAX_ERPS 3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 17 | enum zfcp_erp_act_flags { |
| 18 | ZFCP_STATUS_ERP_TIMEDOUT = 0x10000000, |
| 19 | ZFCP_STATUS_ERP_CLOSE_ONLY = 0x01000000, |
| 20 | ZFCP_STATUS_ERP_DISMISSING = 0x00100000, |
| 21 | ZFCP_STATUS_ERP_DISMISSED = 0x00200000, |
| 22 | ZFCP_STATUS_ERP_LOWMEM = 0x00400000, |
| 23 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 25 | enum zfcp_erp_steps { |
| 26 | ZFCP_ERP_STEP_UNINITIALIZED = 0x0000, |
| 27 | ZFCP_ERP_STEP_FSF_XCONFIG = 0x0001, |
| 28 | ZFCP_ERP_STEP_PHYS_PORT_CLOSING = 0x0010, |
| 29 | ZFCP_ERP_STEP_PORT_CLOSING = 0x0100, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 30 | ZFCP_ERP_STEP_PORT_OPENING = 0x0800, |
| 31 | ZFCP_ERP_STEP_UNIT_CLOSING = 0x1000, |
| 32 | ZFCP_ERP_STEP_UNIT_OPENING = 0x2000, |
| 33 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 35 | enum zfcp_erp_act_type { |
| 36 | ZFCP_ERP_ACTION_REOPEN_UNIT = 1, |
| 37 | ZFCP_ERP_ACTION_REOPEN_PORT = 2, |
| 38 | ZFCP_ERP_ACTION_REOPEN_PORT_FORCED = 3, |
| 39 | ZFCP_ERP_ACTION_REOPEN_ADAPTER = 4, |
| 40 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 42 | enum zfcp_erp_act_state { |
| 43 | ZFCP_ERP_ACTION_RUNNING = 1, |
| 44 | ZFCP_ERP_ACTION_READY = 2, |
| 45 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 47 | enum zfcp_erp_act_result { |
| 48 | ZFCP_ERP_SUCCEEDED = 0, |
| 49 | ZFCP_ERP_FAILED = 1, |
| 50 | ZFCP_ERP_CONTINUES = 2, |
| 51 | ZFCP_ERP_EXIT = 3, |
| 52 | ZFCP_ERP_DISMISSED = 4, |
| 53 | ZFCP_ERP_NOMEM = 5, |
| 54 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 56 | static void zfcp_erp_adapter_block(struct zfcp_adapter *adapter, int mask) |
Andreas Herrmann | 2abbe86 | 2006-09-18 22:29:56 +0200 | [diff] [blame] | 57 | { |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 58 | zfcp_erp_modify_adapter_status(adapter, "erablk1", NULL, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 59 | ZFCP_STATUS_COMMON_UNBLOCKED | mask, |
| 60 | ZFCP_CLEAR); |
Andreas Herrmann | 2abbe86 | 2006-09-18 22:29:56 +0200 | [diff] [blame] | 61 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 63 | static int zfcp_erp_action_exists(struct zfcp_erp_action *act) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 65 | struct zfcp_erp_action *curr_act; |
| 66 | |
| 67 | list_for_each_entry(curr_act, &act->adapter->erp_running_head, list) |
| 68 | if (act == curr_act) |
| 69 | return ZFCP_ERP_ACTION_RUNNING; |
| 70 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 73 | static void zfcp_erp_action_ready(struct zfcp_erp_action *act) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 75 | struct zfcp_adapter *adapter = act->adapter; |
| 76 | |
| 77 | list_move(&act->list, &act->adapter->erp_ready_head); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 78 | zfcp_dbf_rec_action("erardy1", act); |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 79 | wake_up(&adapter->erp_ready_wq); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 80 | zfcp_dbf_rec_thread("erardy2", adapter->dbf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 83 | static void zfcp_erp_action_dismiss(struct zfcp_erp_action *act) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 85 | act->status |= ZFCP_STATUS_ERP_DISMISSED; |
| 86 | if (zfcp_erp_action_exists(act) == ZFCP_ERP_ACTION_RUNNING) |
| 87 | zfcp_erp_action_ready(act); |
| 88 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 90 | static void zfcp_erp_action_dismiss_unit(struct zfcp_unit *unit) |
| 91 | { |
| 92 | if (atomic_read(&unit->status) & ZFCP_STATUS_COMMON_ERP_INUSE) |
| 93 | zfcp_erp_action_dismiss(&unit->erp_action); |
| 94 | } |
| 95 | |
| 96 | static void zfcp_erp_action_dismiss_port(struct zfcp_port *port) |
| 97 | { |
| 98 | struct zfcp_unit *unit; |
| 99 | |
| 100 | if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_INUSE) |
| 101 | zfcp_erp_action_dismiss(&port->erp_action); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 102 | else { |
| 103 | read_lock(&port->unit_list_lock); |
| 104 | list_for_each_entry(unit, &port->unit_list, list) |
| 105 | zfcp_erp_action_dismiss_unit(unit); |
| 106 | read_unlock(&port->unit_list_lock); |
| 107 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | static void zfcp_erp_action_dismiss_adapter(struct zfcp_adapter *adapter) |
| 111 | { |
| 112 | struct zfcp_port *port; |
| 113 | |
| 114 | if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_INUSE) |
| 115 | zfcp_erp_action_dismiss(&adapter->erp_action); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 116 | else { |
| 117 | read_lock(&adapter->port_list_lock); |
| 118 | list_for_each_entry(port, &adapter->port_list, list) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 119 | zfcp_erp_action_dismiss_port(port); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 120 | read_unlock(&adapter->port_list_lock); |
| 121 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static int zfcp_erp_required_act(int want, struct zfcp_adapter *adapter, |
| 125 | struct zfcp_port *port, |
| 126 | struct zfcp_unit *unit) |
| 127 | { |
| 128 | int need = want; |
| 129 | int u_status, p_status, a_status; |
| 130 | |
| 131 | switch (want) { |
| 132 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
| 133 | u_status = atomic_read(&unit->status); |
| 134 | if (u_status & ZFCP_STATUS_COMMON_ERP_INUSE) |
| 135 | return 0; |
| 136 | p_status = atomic_read(&port->status); |
| 137 | if (!(p_status & ZFCP_STATUS_COMMON_RUNNING) || |
| 138 | p_status & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 139 | return 0; |
| 140 | if (!(p_status & ZFCP_STATUS_COMMON_UNBLOCKED)) |
| 141 | need = ZFCP_ERP_ACTION_REOPEN_PORT; |
| 142 | /* fall through */ |
| 143 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
| 144 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
| 145 | p_status = atomic_read(&port->status); |
| 146 | if (p_status & ZFCP_STATUS_COMMON_ERP_INUSE) |
| 147 | return 0; |
| 148 | a_status = atomic_read(&adapter->status); |
| 149 | if (!(a_status & ZFCP_STATUS_COMMON_RUNNING) || |
| 150 | a_status & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 151 | return 0; |
| 152 | if (!(a_status & ZFCP_STATUS_COMMON_UNBLOCKED)) |
| 153 | need = ZFCP_ERP_ACTION_REOPEN_ADAPTER; |
| 154 | /* fall through */ |
| 155 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
| 156 | a_status = atomic_read(&adapter->status); |
| 157 | if (a_status & ZFCP_STATUS_COMMON_ERP_INUSE) |
| 158 | return 0; |
Christof Schmitt | 143bb6b | 2009-08-18 15:43:27 +0200 | [diff] [blame] | 159 | if (!(a_status & ZFCP_STATUS_COMMON_RUNNING) && |
| 160 | !(a_status & ZFCP_STATUS_COMMON_OPEN)) |
| 161 | return 0; /* shutdown requested for closed adapter */ |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | return need; |
| 165 | } |
| 166 | |
| 167 | static struct zfcp_erp_action *zfcp_erp_setup_act(int need, |
| 168 | struct zfcp_adapter *adapter, |
| 169 | struct zfcp_port *port, |
| 170 | struct zfcp_unit *unit) |
| 171 | { |
| 172 | struct zfcp_erp_action *erp_action; |
| 173 | u32 status = 0; |
| 174 | |
| 175 | switch (need) { |
| 176 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
Swen Schillig | 6b183334 | 2009-11-24 16:54:05 +0100 | [diff] [blame] | 177 | if (!get_device(&unit->sysfs_device)) |
| 178 | return NULL; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 179 | atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &unit->status); |
| 180 | erp_action = &unit->erp_action; |
| 181 | if (!(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_RUNNING)) |
| 182 | status = ZFCP_STATUS_ERP_CLOSE_ONLY; |
| 183 | break; |
| 184 | |
| 185 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
| 186 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
Swen Schillig | 6b183334 | 2009-11-24 16:54:05 +0100 | [diff] [blame] | 187 | if (!get_device(&port->sysfs_device)) |
| 188 | return NULL; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 189 | zfcp_erp_action_dismiss_port(port); |
| 190 | atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &port->status); |
| 191 | erp_action = &port->erp_action; |
| 192 | if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_RUNNING)) |
| 193 | status = ZFCP_STATUS_ERP_CLOSE_ONLY; |
| 194 | break; |
| 195 | |
| 196 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 197 | kref_get(&adapter->ref); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 198 | zfcp_erp_action_dismiss_adapter(adapter); |
| 199 | atomic_set_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &adapter->status); |
| 200 | erp_action = &adapter->erp_action; |
| 201 | if (!(atomic_read(&adapter->status) & |
| 202 | ZFCP_STATUS_COMMON_RUNNING)) |
| 203 | status = ZFCP_STATUS_ERP_CLOSE_ONLY; |
| 204 | break; |
| 205 | |
| 206 | default: |
| 207 | return NULL; |
| 208 | } |
| 209 | |
| 210 | memset(erp_action, 0, sizeof(struct zfcp_erp_action)); |
| 211 | erp_action->adapter = adapter; |
| 212 | erp_action->port = port; |
| 213 | erp_action->unit = unit; |
| 214 | erp_action->action = need; |
| 215 | erp_action->status = status; |
| 216 | |
| 217 | return erp_action; |
| 218 | } |
| 219 | |
| 220 | static int zfcp_erp_action_enqueue(int want, struct zfcp_adapter *adapter, |
| 221 | struct zfcp_port *port, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 222 | struct zfcp_unit *unit, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 223 | { |
| 224 | int retval = 1, need; |
| 225 | struct zfcp_erp_action *act = NULL; |
| 226 | |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 227 | if (!adapter->erp_thread) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 228 | return -EIO; |
| 229 | |
| 230 | need = zfcp_erp_required_act(want, adapter, port, unit); |
| 231 | if (!need) |
| 232 | goto out; |
| 233 | |
| 234 | atomic_set_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING, &adapter->status); |
| 235 | act = zfcp_erp_setup_act(need, adapter, port, unit); |
| 236 | if (!act) |
| 237 | goto out; |
| 238 | ++adapter->erp_total_count; |
| 239 | list_add_tail(&act->list, &adapter->erp_ready_head); |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 240 | wake_up(&adapter->erp_ready_wq); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 241 | zfcp_dbf_rec_thread("eracte1", adapter->dbf); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 242 | retval = 0; |
| 243 | out: |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 244 | zfcp_dbf_rec_trigger(id, ref, want, need, act, adapter, port, unit); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 245 | return retval; |
| 246 | } |
| 247 | |
| 248 | static int _zfcp_erp_adapter_reopen(struct zfcp_adapter *adapter, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 249 | int clear_mask, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 250 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | zfcp_erp_adapter_block(adapter, clear_mask); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 252 | zfcp_scsi_schedule_rports_block(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 254 | /* ensure propagation of failed status to new devices */ |
| 255 | if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED) { |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 256 | zfcp_erp_adapter_failed(adapter, "erareo1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 257 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 259 | return zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER, |
| 260 | adapter, NULL, NULL, id, ref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | /** |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 264 | * zfcp_erp_adapter_reopen - Reopen adapter. |
| 265 | * @adapter: Adapter to reopen. |
| 266 | * @clear: Status flags to clear. |
| 267 | * @id: Id for debug trace event. |
| 268 | * @ref: Reference for debug trace event. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | */ |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 270 | void zfcp_erp_adapter_reopen(struct zfcp_adapter *adapter, int clear, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 271 | char *id, void *ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 273 | unsigned long flags; |
| 274 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 275 | zfcp_erp_adapter_block(adapter, clear); |
| 276 | zfcp_scsi_schedule_rports_block(adapter); |
| 277 | |
| 278 | write_lock_irqsave(&adapter->erp_lock, flags); |
| 279 | if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 280 | zfcp_erp_adapter_failed(adapter, "erareo1", NULL); |
| 281 | else |
| 282 | zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_ADAPTER, adapter, |
| 283 | NULL, NULL, id, ref); |
| 284 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | /** |
| 288 | * zfcp_erp_adapter_shutdown - Shutdown adapter. |
| 289 | * @adapter: Adapter to shut down. |
| 290 | * @clear: Status flags to clear. |
| 291 | * @id: Id for debug trace event. |
| 292 | * @ref: Reference for debug trace event. |
| 293 | */ |
| 294 | void zfcp_erp_adapter_shutdown(struct zfcp_adapter *adapter, int clear, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 295 | char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 296 | { |
| 297 | int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED; |
| 298 | zfcp_erp_adapter_reopen(adapter, clear | flags, id, ref); |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * zfcp_erp_port_shutdown - Shutdown port |
| 303 | * @port: Port to shut down. |
| 304 | * @clear: Status flags to clear. |
| 305 | * @id: Id for debug trace event. |
| 306 | * @ref: Reference for debug trace event. |
| 307 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 308 | void zfcp_erp_port_shutdown(struct zfcp_port *port, int clear, char *id, |
| 309 | void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 310 | { |
| 311 | int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED; |
| 312 | zfcp_erp_port_reopen(port, clear | flags, id, ref); |
| 313 | } |
| 314 | |
| 315 | /** |
| 316 | * zfcp_erp_unit_shutdown - Shutdown unit |
| 317 | * @unit: Unit to shut down. |
| 318 | * @clear: Status flags to clear. |
| 319 | * @id: Id for debug trace event. |
| 320 | * @ref: Reference for debug trace event. |
| 321 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 322 | void zfcp_erp_unit_shutdown(struct zfcp_unit *unit, int clear, char *id, |
| 323 | void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 324 | { |
| 325 | int flags = ZFCP_STATUS_COMMON_RUNNING | ZFCP_STATUS_COMMON_ERP_FAILED; |
| 326 | zfcp_erp_unit_reopen(unit, clear | flags, id, ref); |
| 327 | } |
| 328 | |
| 329 | static void zfcp_erp_port_block(struct zfcp_port *port, int clear) |
| 330 | { |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 331 | zfcp_erp_modify_port_status(port, "erpblk1", NULL, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 332 | ZFCP_STATUS_COMMON_UNBLOCKED | clear, |
| 333 | ZFCP_CLEAR); |
| 334 | } |
| 335 | |
| 336 | static void _zfcp_erp_port_forced_reopen(struct zfcp_port *port, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 337 | int clear, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 338 | { |
| 339 | zfcp_erp_port_block(port, clear); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 340 | zfcp_scsi_schedule_rport_block(port); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 341 | |
| 342 | if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 343 | return; |
| 344 | |
| 345 | zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT_FORCED, |
| 346 | port->adapter, port, NULL, id, ref); |
| 347 | } |
| 348 | |
| 349 | /** |
| 350 | * zfcp_erp_port_forced_reopen - Forced close of port and open again |
| 351 | * @port: Port to force close and to reopen. |
| 352 | * @id: Id for debug trace event. |
| 353 | * @ref: Reference for debug trace event. |
| 354 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 355 | void zfcp_erp_port_forced_reopen(struct zfcp_port *port, int clear, char *id, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 356 | void *ref) |
| 357 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | unsigned long flags; |
| 359 | struct zfcp_adapter *adapter = port->adapter; |
| 360 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 361 | write_lock_irqsave(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 362 | _zfcp_erp_port_forced_reopen(port, clear, id, ref); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 363 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 364 | } |
| 365 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 366 | static int _zfcp_erp_port_reopen(struct zfcp_port *port, int clear, char *id, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 367 | void *ref) |
| 368 | { |
| 369 | zfcp_erp_port_block(port, clear); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 370 | zfcp_scsi_schedule_rport_block(port); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 371 | |
| 372 | if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED) { |
| 373 | /* ensure propagation of failed status to new devices */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 374 | zfcp_erp_port_failed(port, "erpreo1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 375 | return -EIO; |
| 376 | } |
| 377 | |
| 378 | return zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_PORT, |
| 379 | port->adapter, port, NULL, id, ref); |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * zfcp_erp_port_reopen - trigger remote port recovery |
| 384 | * @port: port to recover |
| 385 | * @clear_mask: flags in port status to be cleared |
| 386 | * |
| 387 | * Returns 0 if recovery has been triggered, < 0 if not. |
| 388 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 389 | int zfcp_erp_port_reopen(struct zfcp_port *port, int clear, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 390 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 391 | int retval; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 392 | unsigned long flags; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 393 | struct zfcp_adapter *adapter = port->adapter; |
| 394 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 395 | write_lock_irqsave(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 396 | retval = _zfcp_erp_port_reopen(port, clear, id, ref); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 397 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
| 399 | return retval; |
| 400 | } |
| 401 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 402 | static void zfcp_erp_unit_block(struct zfcp_unit *unit, int clear_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | { |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 404 | zfcp_erp_modify_unit_status(unit, "erublk1", NULL, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 405 | ZFCP_STATUS_COMMON_UNBLOCKED | clear_mask, |
| 406 | ZFCP_CLEAR); |
| 407 | } |
| 408 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 409 | static void _zfcp_erp_unit_reopen(struct zfcp_unit *unit, int clear, char *id, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 410 | void *ref) |
| 411 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | struct zfcp_adapter *adapter = unit->port->adapter; |
| 413 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 414 | zfcp_erp_unit_block(unit, clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 416 | if (atomic_read(&unit->status) & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 417 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 419 | zfcp_erp_action_enqueue(ZFCP_ERP_ACTION_REOPEN_UNIT, |
| 420 | adapter, unit->port, unit, id, ref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | /** |
| 424 | * zfcp_erp_unit_reopen - initiate reopen of a unit |
| 425 | * @unit: unit to be reopened |
| 426 | * @clear_mask: specifies flags in unit status to be cleared |
| 427 | * Return: 0 on success, < 0 on error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 429 | void zfcp_erp_unit_reopen(struct zfcp_unit *unit, int clear, char *id, |
| 430 | void *ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | unsigned long flags; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 433 | struct zfcp_port *port = unit->port; |
| 434 | struct zfcp_adapter *adapter = port->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 436 | write_lock_irqsave(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 437 | _zfcp_erp_unit_reopen(unit, clear, id, ref); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 438 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } |
| 440 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 441 | static int status_change_set(unsigned long mask, atomic_t *status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 443 | return (atomic_read(status) ^ mask) & mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
| 445 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 446 | static int status_change_clear(unsigned long mask, atomic_t *status) |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 447 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 448 | return atomic_read(status) & mask; |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 449 | } |
| 450 | |
Andreas Herrmann | f6c0e7a | 2006-08-02 11:05:52 +0200 | [diff] [blame] | 451 | static void zfcp_erp_adapter_unblock(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 453 | if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &adapter->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 454 | zfcp_dbf_rec_adapter("eraubl1", NULL, adapter->dbf); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 455 | atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &adapter->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 458 | static void zfcp_erp_port_unblock(struct zfcp_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 460 | if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &port->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 461 | zfcp_dbf_rec_port("erpubl1", NULL, port); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 462 | atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &port->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | } |
| 464 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 465 | static void zfcp_erp_unit_unblock(struct zfcp_unit *unit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 467 | if (status_change_set(ZFCP_STATUS_COMMON_UNBLOCKED, &unit->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 468 | zfcp_dbf_rec_unit("eruubl1", NULL, unit); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 469 | atomic_set_mask(ZFCP_STATUS_COMMON_UNBLOCKED, &unit->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } |
| 471 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 472 | static void zfcp_erp_action_to_running(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 474 | list_move(&erp_action->list, &erp_action->adapter->erp_running_head); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 475 | zfcp_dbf_rec_action("erator1", erp_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
| 477 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 478 | static void zfcp_erp_strategy_check_fsfreq(struct zfcp_erp_action *act) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 480 | struct zfcp_adapter *adapter = act->adapter; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame^] | 481 | struct zfcp_fsf_req *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame^] | 483 | if (!act->fsf_req_id) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 484 | return; |
| 485 | |
| 486 | spin_lock(&adapter->req_list_lock); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame^] | 487 | req = zfcp_reqlist_find(adapter, act->fsf_req_id); |
| 488 | if (req && req->erp_action == act) { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 489 | if (act->status & (ZFCP_STATUS_ERP_DISMISSED | |
| 490 | ZFCP_STATUS_ERP_TIMEDOUT)) { |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame^] | 491 | req->status |= ZFCP_STATUS_FSFREQ_DISMISSED; |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 492 | zfcp_dbf_rec_action("erscf_1", act); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame^] | 493 | req->erp_action = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 495 | if (act->status & ZFCP_STATUS_ERP_TIMEDOUT) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 496 | zfcp_dbf_rec_action("erscf_2", act); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame^] | 497 | if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) |
| 498 | act->fsf_req_id = 0; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 499 | } else |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame^] | 500 | act->fsf_req_id = 0; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 501 | spin_unlock(&adapter->req_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Andreas Herrmann | f6c0e7a | 2006-08-02 11:05:52 +0200 | [diff] [blame] | 504 | /** |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 505 | * zfcp_erp_notify - Trigger ERP action. |
| 506 | * @erp_action: ERP action to continue. |
| 507 | * @set_mask: ERP action status flags to set. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | */ |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 509 | void zfcp_erp_notify(struct zfcp_erp_action *erp_action, unsigned long set_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | { |
| 511 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 512 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
| 514 | write_lock_irqsave(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 515 | if (zfcp_erp_action_exists(erp_action) == ZFCP_ERP_ACTION_RUNNING) { |
| 516 | erp_action->status |= set_mask; |
| 517 | zfcp_erp_action_ready(erp_action); |
| 518 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Andreas Herrmann | f6c0e7a | 2006-08-02 11:05:52 +0200 | [diff] [blame] | 522 | /** |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 523 | * zfcp_erp_timeout_handler - Trigger ERP action from timed out ERP request |
| 524 | * @data: ERP action (from timer data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | */ |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 526 | void zfcp_erp_timeout_handler(unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 528 | struct zfcp_erp_action *act = (struct zfcp_erp_action *) data; |
| 529 | zfcp_erp_notify(act, ZFCP_STATUS_ERP_TIMEDOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | } |
| 531 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 532 | static void zfcp_erp_memwait_handler(unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 534 | zfcp_erp_notify((struct zfcp_erp_action *)data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | } |
| 536 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 537 | static void zfcp_erp_strategy_memwait(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | init_timer(&erp_action->timer); |
| 540 | erp_action->timer.function = zfcp_erp_memwait_handler; |
| 541 | erp_action->timer.data = (unsigned long) erp_action; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 542 | erp_action->timer.expires = jiffies + HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | add_timer(&erp_action->timer); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | static void _zfcp_erp_port_reopen_all(struct zfcp_adapter *adapter, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 547 | int clear, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 548 | { |
| 549 | struct zfcp_port *port; |
| 550 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 551 | read_lock(&adapter->port_list_lock); |
| 552 | list_for_each_entry(port, &adapter->port_list, list) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 553 | _zfcp_erp_port_reopen(port, clear, id, ref); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 554 | read_unlock(&adapter->port_list_lock); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 555 | } |
| 556 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 557 | static void _zfcp_erp_unit_reopen_all(struct zfcp_port *port, int clear, |
| 558 | char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 559 | { |
| 560 | struct zfcp_unit *unit; |
| 561 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 562 | read_lock(&port->unit_list_lock); |
| 563 | list_for_each_entry(unit, &port->unit_list, list) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 564 | _zfcp_erp_unit_reopen(unit, clear, id, ref); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 565 | read_unlock(&port->unit_list_lock); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 566 | } |
| 567 | |
Christof Schmitt | 85600f7 | 2009-07-13 15:06:09 +0200 | [diff] [blame] | 568 | static void zfcp_erp_strategy_followup_failed(struct zfcp_erp_action *act) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 569 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 570 | switch (act->action) { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 571 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
Christof Schmitt | 85600f7 | 2009-07-13 15:06:09 +0200 | [diff] [blame] | 572 | _zfcp_erp_adapter_reopen(act->adapter, 0, "ersff_1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 573 | break; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 574 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
Christof Schmitt | 85600f7 | 2009-07-13 15:06:09 +0200 | [diff] [blame] | 575 | _zfcp_erp_port_forced_reopen(act->port, 0, "ersff_2", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 576 | break; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 577 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
Christof Schmitt | 85600f7 | 2009-07-13 15:06:09 +0200 | [diff] [blame] | 578 | _zfcp_erp_port_reopen(act->port, 0, "ersff_3", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 579 | break; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 580 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
Christof Schmitt | 85600f7 | 2009-07-13 15:06:09 +0200 | [diff] [blame] | 581 | _zfcp_erp_unit_reopen(act->unit, 0, "ersff_4", NULL); |
| 582 | break; |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | static void zfcp_erp_strategy_followup_success(struct zfcp_erp_action *act) |
| 587 | { |
| 588 | switch (act->action) { |
| 589 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
| 590 | _zfcp_erp_port_reopen_all(act->adapter, 0, "ersfs_1", NULL); |
| 591 | break; |
| 592 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
| 593 | _zfcp_erp_port_reopen(act->port, 0, "ersfs_2", NULL); |
| 594 | break; |
| 595 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
| 596 | _zfcp_erp_unit_reopen_all(act->port, 0, "ersfs_3", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 597 | break; |
| 598 | } |
| 599 | } |
| 600 | |
| 601 | static void zfcp_erp_wakeup(struct zfcp_adapter *adapter) |
| 602 | { |
| 603 | unsigned long flags; |
| 604 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 605 | read_lock_irqsave(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 606 | if (list_empty(&adapter->erp_ready_head) && |
| 607 | list_empty(&adapter->erp_running_head)) { |
| 608 | atomic_clear_mask(ZFCP_STATUS_ADAPTER_ERP_PENDING, |
| 609 | &adapter->status); |
| 610 | wake_up(&adapter->erp_done_wqh); |
| 611 | } |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 612 | read_unlock_irqrestore(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | static int zfcp_erp_adapter_strategy_open_qdio(struct zfcp_erp_action *act) |
| 616 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 617 | struct zfcp_qdio *qdio = act->adapter->qdio; |
| 618 | |
| 619 | if (zfcp_qdio_open(qdio)) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 620 | return ZFCP_ERP_FAILED; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 621 | init_waitqueue_head(&qdio->req_q_wq); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 622 | atomic_set_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &act->adapter->status); |
| 623 | return ZFCP_ERP_SUCCEEDED; |
| 624 | } |
| 625 | |
| 626 | static void zfcp_erp_enqueue_ptp_port(struct zfcp_adapter *adapter) |
| 627 | { |
| 628 | struct zfcp_port *port; |
| 629 | port = zfcp_port_enqueue(adapter, adapter->peer_wwpn, 0, |
| 630 | adapter->peer_d_id); |
| 631 | if (IS_ERR(port)) /* error or port already attached */ |
| 632 | return; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 633 | _zfcp_erp_port_reopen(port, 0, "ereptp1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | static int zfcp_erp_adapter_strat_fsf_xconf(struct zfcp_erp_action *erp_action) |
| 637 | { |
| 638 | int retries; |
| 639 | int sleep = 1; |
| 640 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 641 | |
| 642 | atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK, &adapter->status); |
| 643 | |
| 644 | for (retries = 7; retries; retries--) { |
| 645 | atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT, |
| 646 | &adapter->status); |
| 647 | write_lock_irq(&adapter->erp_lock); |
| 648 | zfcp_erp_action_to_running(erp_action); |
| 649 | write_unlock_irq(&adapter->erp_lock); |
| 650 | if (zfcp_fsf_exchange_config_data(erp_action)) { |
| 651 | atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT, |
| 652 | &adapter->status); |
| 653 | return ZFCP_ERP_FAILED; |
| 654 | } |
| 655 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 656 | zfcp_dbf_rec_thread_lock("erasfx1", adapter->dbf); |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 657 | wait_event(adapter->erp_ready_wq, |
| 658 | !list_empty(&adapter->erp_ready_head)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 659 | zfcp_dbf_rec_thread_lock("erasfx2", adapter->dbf); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 660 | if (erp_action->status & ZFCP_STATUS_ERP_TIMEDOUT) |
| 661 | break; |
| 662 | |
| 663 | if (!(atomic_read(&adapter->status) & |
| 664 | ZFCP_STATUS_ADAPTER_HOST_CON_INIT)) |
| 665 | break; |
| 666 | |
| 667 | ssleep(sleep); |
| 668 | sleep *= 2; |
| 669 | } |
| 670 | |
| 671 | atomic_clear_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT, |
| 672 | &adapter->status); |
| 673 | |
| 674 | if (!(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_XCONFIG_OK)) |
| 675 | return ZFCP_ERP_FAILED; |
| 676 | |
| 677 | if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP) |
| 678 | zfcp_erp_enqueue_ptp_port(adapter); |
| 679 | |
| 680 | return ZFCP_ERP_SUCCEEDED; |
| 681 | } |
| 682 | |
| 683 | static int zfcp_erp_adapter_strategy_open_fsf_xport(struct zfcp_erp_action *act) |
| 684 | { |
| 685 | int ret; |
| 686 | struct zfcp_adapter *adapter = act->adapter; |
| 687 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 688 | write_lock_irq(&adapter->erp_lock); |
| 689 | zfcp_erp_action_to_running(act); |
| 690 | write_unlock_irq(&adapter->erp_lock); |
| 691 | |
| 692 | ret = zfcp_fsf_exchange_port_data(act); |
| 693 | if (ret == -EOPNOTSUPP) |
| 694 | return ZFCP_ERP_SUCCEEDED; |
| 695 | if (ret) |
| 696 | return ZFCP_ERP_FAILED; |
| 697 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 698 | zfcp_dbf_rec_thread_lock("erasox1", adapter->dbf); |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 699 | wait_event(adapter->erp_ready_wq, |
| 700 | !list_empty(&adapter->erp_ready_head)); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 701 | zfcp_dbf_rec_thread_lock("erasox2", adapter->dbf); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 702 | if (act->status & ZFCP_STATUS_ERP_TIMEDOUT) |
| 703 | return ZFCP_ERP_FAILED; |
| 704 | |
| 705 | return ZFCP_ERP_SUCCEEDED; |
| 706 | } |
| 707 | |
| 708 | static int zfcp_erp_adapter_strategy_open_fsf(struct zfcp_erp_action *act) |
| 709 | { |
| 710 | if (zfcp_erp_adapter_strat_fsf_xconf(act) == ZFCP_ERP_FAILED) |
| 711 | return ZFCP_ERP_FAILED; |
| 712 | |
| 713 | if (zfcp_erp_adapter_strategy_open_fsf_xport(act) == ZFCP_ERP_FAILED) |
| 714 | return ZFCP_ERP_FAILED; |
| 715 | |
| 716 | atomic_set(&act->adapter->stat_miss, 16); |
| 717 | if (zfcp_status_read_refill(act->adapter)) |
| 718 | return ZFCP_ERP_FAILED; |
| 719 | |
| 720 | return ZFCP_ERP_SUCCEEDED; |
| 721 | } |
| 722 | |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 723 | static void zfcp_erp_adapter_strategy_close(struct zfcp_erp_action *act) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 724 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 725 | struct zfcp_adapter *adapter = act->adapter; |
| 726 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 727 | /* close queues to ensure that buffers are not accessed by adapter */ |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 728 | zfcp_qdio_close(adapter->qdio); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 729 | zfcp_fsf_req_dismiss_all(adapter); |
| 730 | adapter->fsf_req_seq_no = 0; |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 731 | zfcp_fc_wka_ports_force_offline(adapter->gs); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 732 | /* all ports and units are closed */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 733 | zfcp_erp_modify_adapter_status(adapter, "erascl1", NULL, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 734 | ZFCP_STATUS_COMMON_OPEN, ZFCP_CLEAR); |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 735 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 736 | atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK | |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 737 | ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status); |
| 738 | } |
| 739 | |
| 740 | static int zfcp_erp_adapter_strategy_open(struct zfcp_erp_action *act) |
| 741 | { |
| 742 | struct zfcp_adapter *adapter = act->adapter; |
| 743 | |
| 744 | if (zfcp_erp_adapter_strategy_open_qdio(act)) { |
| 745 | atomic_clear_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK | |
| 746 | ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, |
| 747 | &adapter->status); |
| 748 | return ZFCP_ERP_FAILED; |
| 749 | } |
| 750 | |
| 751 | if (zfcp_erp_adapter_strategy_open_fsf(act)) { |
| 752 | zfcp_erp_adapter_strategy_close(act); |
| 753 | return ZFCP_ERP_FAILED; |
| 754 | } |
| 755 | |
| 756 | atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &adapter->status); |
| 757 | |
| 758 | return ZFCP_ERP_SUCCEEDED; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | static int zfcp_erp_adapter_strategy(struct zfcp_erp_action *act) |
| 762 | { |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 763 | struct zfcp_adapter *adapter = act->adapter; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 764 | |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 765 | if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN) { |
| 766 | zfcp_erp_adapter_strategy_close(act); |
| 767 | if (act->status & ZFCP_STATUS_ERP_CLOSE_ONLY) |
| 768 | return ZFCP_ERP_EXIT; |
| 769 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 770 | |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 771 | if (zfcp_erp_adapter_strategy_open(act)) { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 772 | ssleep(8); |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 773 | return ZFCP_ERP_FAILED; |
| 774 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
Swen Schillig | cf13c08 | 2009-03-02 13:09:03 +0100 | [diff] [blame] | 776 | return ZFCP_ERP_SUCCEEDED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | } |
| 778 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 779 | static int zfcp_erp_port_forced_strategy_close(struct zfcp_erp_action *act) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 781 | int retval; |
| 782 | |
| 783 | retval = zfcp_fsf_close_physical_port(act); |
| 784 | if (retval == -ENOMEM) |
| 785 | return ZFCP_ERP_NOMEM; |
| 786 | act->step = ZFCP_ERP_STEP_PHYS_PORT_CLOSING; |
| 787 | if (retval) |
| 788 | return ZFCP_ERP_FAILED; |
| 789 | |
| 790 | return ZFCP_ERP_CONTINUES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | } |
| 792 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 793 | static void zfcp_erp_port_strategy_clearstati(struct zfcp_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | { |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 795 | atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED, &port->status); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 796 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 798 | static int zfcp_erp_port_forced_strategy(struct zfcp_erp_action *erp_action) |
| 799 | { |
| 800 | struct zfcp_port *port = erp_action->port; |
| 801 | int status = atomic_read(&port->status); |
| 802 | |
| 803 | switch (erp_action->step) { |
| 804 | case ZFCP_ERP_STEP_UNINITIALIZED: |
| 805 | zfcp_erp_port_strategy_clearstati(port); |
| 806 | if ((status & ZFCP_STATUS_PORT_PHYS_OPEN) && |
| 807 | (status & ZFCP_STATUS_COMMON_OPEN)) |
| 808 | return zfcp_erp_port_forced_strategy_close(erp_action); |
| 809 | else |
| 810 | return ZFCP_ERP_FAILED; |
| 811 | |
| 812 | case ZFCP_ERP_STEP_PHYS_PORT_CLOSING: |
Christof Schmitt | ddb3e0c | 2009-07-13 15:06:08 +0200 | [diff] [blame] | 813 | if (!(status & ZFCP_STATUS_PORT_PHYS_OPEN)) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 814 | return ZFCP_ERP_SUCCEEDED; |
| 815 | } |
| 816 | return ZFCP_ERP_FAILED; |
| 817 | } |
| 818 | |
| 819 | static int zfcp_erp_port_strategy_close(struct zfcp_erp_action *erp_action) |
| 820 | { |
| 821 | int retval; |
| 822 | |
| 823 | retval = zfcp_fsf_close_port(erp_action); |
| 824 | if (retval == -ENOMEM) |
| 825 | return ZFCP_ERP_NOMEM; |
| 826 | erp_action->step = ZFCP_ERP_STEP_PORT_CLOSING; |
| 827 | if (retval) |
| 828 | return ZFCP_ERP_FAILED; |
| 829 | return ZFCP_ERP_CONTINUES; |
| 830 | } |
| 831 | |
| 832 | static int zfcp_erp_port_strategy_open_port(struct zfcp_erp_action *erp_action) |
| 833 | { |
| 834 | int retval; |
| 835 | |
| 836 | retval = zfcp_fsf_open_port(erp_action); |
| 837 | if (retval == -ENOMEM) |
| 838 | return ZFCP_ERP_NOMEM; |
| 839 | erp_action->step = ZFCP_ERP_STEP_PORT_OPENING; |
| 840 | if (retval) |
| 841 | return ZFCP_ERP_FAILED; |
| 842 | return ZFCP_ERP_CONTINUES; |
| 843 | } |
| 844 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 845 | static int zfcp_erp_open_ptp_port(struct zfcp_erp_action *act) |
| 846 | { |
| 847 | struct zfcp_adapter *adapter = act->adapter; |
| 848 | struct zfcp_port *port = act->port; |
| 849 | |
| 850 | if (port->wwpn != adapter->peer_wwpn) { |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 851 | zfcp_erp_port_failed(port, "eroptp1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 852 | return ZFCP_ERP_FAILED; |
| 853 | } |
| 854 | port->d_id = adapter->peer_d_id; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 855 | return zfcp_erp_port_strategy_open_port(act); |
| 856 | } |
| 857 | |
| 858 | static int zfcp_erp_port_strategy_open_common(struct zfcp_erp_action *act) |
| 859 | { |
| 860 | struct zfcp_adapter *adapter = act->adapter; |
| 861 | struct zfcp_port *port = act->port; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 862 | int p_status = atomic_read(&port->status); |
| 863 | |
| 864 | switch (act->step) { |
| 865 | case ZFCP_ERP_STEP_UNINITIALIZED: |
| 866 | case ZFCP_ERP_STEP_PHYS_PORT_CLOSING: |
| 867 | case ZFCP_ERP_STEP_PORT_CLOSING: |
| 868 | if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_PTP) |
| 869 | return zfcp_erp_open_ptp_port(act); |
Christof Schmitt | b98478d | 2008-12-19 16:56:59 +0100 | [diff] [blame] | 870 | if (!port->d_id) { |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 871 | zfcp_fc_trigger_did_lookup(port); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 872 | return ZFCP_ERP_EXIT; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 873 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 874 | return zfcp_erp_port_strategy_open_port(act); |
| 875 | |
| 876 | case ZFCP_ERP_STEP_PORT_OPENING: |
| 877 | /* D_ID might have changed during open */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 878 | if (p_status & ZFCP_STATUS_COMMON_OPEN) { |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 879 | if (!port->d_id) { |
| 880 | zfcp_fc_trigger_did_lookup(port); |
| 881 | return ZFCP_ERP_EXIT; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 882 | } |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 883 | return ZFCP_ERP_SUCCEEDED; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 884 | } |
Swen Schillig | ea460a8 | 2009-05-15 13:18:20 +0200 | [diff] [blame] | 885 | if (port->d_id && !(p_status & ZFCP_STATUS_COMMON_NOESC)) { |
| 886 | port->d_id = 0; |
| 887 | _zfcp_erp_port_reopen(port, 0, "erpsoc1", NULL); |
| 888 | return ZFCP_ERP_EXIT; |
| 889 | } |
| 890 | /* fall through otherwise */ |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 891 | } |
| 892 | return ZFCP_ERP_FAILED; |
| 893 | } |
| 894 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 895 | static int zfcp_erp_port_strategy(struct zfcp_erp_action *erp_action) |
| 896 | { |
| 897 | struct zfcp_port *port = erp_action->port; |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 898 | int p_status = atomic_read(&port->status); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 899 | |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 900 | if ((p_status & ZFCP_STATUS_COMMON_NOESC) && |
| 901 | !(p_status & ZFCP_STATUS_COMMON_OPEN)) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 902 | goto close_init_done; |
| 903 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 904 | switch (erp_action->step) { |
| 905 | case ZFCP_ERP_STEP_UNINITIALIZED: |
| 906 | zfcp_erp_port_strategy_clearstati(port); |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 907 | if (p_status & ZFCP_STATUS_COMMON_OPEN) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 908 | return zfcp_erp_port_strategy_close(erp_action); |
| 909 | break; |
| 910 | |
| 911 | case ZFCP_ERP_STEP_PORT_CLOSING: |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 912 | if (p_status & ZFCP_STATUS_COMMON_OPEN) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 913 | return ZFCP_ERP_FAILED; |
| 914 | break; |
| 915 | } |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 916 | |
| 917 | close_init_done: |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 918 | if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY) |
| 919 | return ZFCP_ERP_EXIT; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 920 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 921 | return zfcp_erp_port_strategy_open_common(erp_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | } |
| 923 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 924 | static void zfcp_erp_unit_strategy_clearstati(struct zfcp_unit *unit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 926 | atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 927 | ZFCP_STATUS_UNIT_SHARED | |
| 928 | ZFCP_STATUS_UNIT_READONLY, |
| 929 | &unit->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | } |
| 931 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 932 | static int zfcp_erp_unit_strategy_close(struct zfcp_erp_action *erp_action) |
| 933 | { |
| 934 | int retval = zfcp_fsf_close_unit(erp_action); |
| 935 | if (retval == -ENOMEM) |
| 936 | return ZFCP_ERP_NOMEM; |
| 937 | erp_action->step = ZFCP_ERP_STEP_UNIT_CLOSING; |
| 938 | if (retval) |
| 939 | return ZFCP_ERP_FAILED; |
| 940 | return ZFCP_ERP_CONTINUES; |
| 941 | } |
| 942 | |
| 943 | static int zfcp_erp_unit_strategy_open(struct zfcp_erp_action *erp_action) |
| 944 | { |
| 945 | int retval = zfcp_fsf_open_unit(erp_action); |
| 946 | if (retval == -ENOMEM) |
| 947 | return ZFCP_ERP_NOMEM; |
| 948 | erp_action->step = ZFCP_ERP_STEP_UNIT_OPENING; |
| 949 | if (retval) |
| 950 | return ZFCP_ERP_FAILED; |
| 951 | return ZFCP_ERP_CONTINUES; |
| 952 | } |
| 953 | |
| 954 | static int zfcp_erp_unit_strategy(struct zfcp_erp_action *erp_action) |
| 955 | { |
| 956 | struct zfcp_unit *unit = erp_action->unit; |
| 957 | |
| 958 | switch (erp_action->step) { |
| 959 | case ZFCP_ERP_STEP_UNINITIALIZED: |
| 960 | zfcp_erp_unit_strategy_clearstati(unit); |
| 961 | if (atomic_read(&unit->status) & ZFCP_STATUS_COMMON_OPEN) |
| 962 | return zfcp_erp_unit_strategy_close(erp_action); |
| 963 | /* already closed, fall through */ |
| 964 | case ZFCP_ERP_STEP_UNIT_CLOSING: |
| 965 | if (atomic_read(&unit->status) & ZFCP_STATUS_COMMON_OPEN) |
| 966 | return ZFCP_ERP_FAILED; |
| 967 | if (erp_action->status & ZFCP_STATUS_ERP_CLOSE_ONLY) |
| 968 | return ZFCP_ERP_EXIT; |
| 969 | return zfcp_erp_unit_strategy_open(erp_action); |
| 970 | |
| 971 | case ZFCP_ERP_STEP_UNIT_OPENING: |
| 972 | if (atomic_read(&unit->status) & ZFCP_STATUS_COMMON_OPEN) |
| 973 | return ZFCP_ERP_SUCCEEDED; |
| 974 | } |
| 975 | return ZFCP_ERP_FAILED; |
| 976 | } |
| 977 | |
| 978 | static int zfcp_erp_strategy_check_unit(struct zfcp_unit *unit, int result) |
| 979 | { |
| 980 | switch (result) { |
| 981 | case ZFCP_ERP_SUCCEEDED : |
| 982 | atomic_set(&unit->erp_counter, 0); |
| 983 | zfcp_erp_unit_unblock(unit); |
| 984 | break; |
| 985 | case ZFCP_ERP_FAILED : |
| 986 | atomic_inc(&unit->erp_counter); |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 987 | if (atomic_read(&unit->erp_counter) > ZFCP_MAX_ERPS) { |
| 988 | dev_err(&unit->port->adapter->ccw_device->dev, |
| 989 | "ERP failed for unit 0x%016Lx on " |
| 990 | "port 0x%016Lx\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 991 | (unsigned long long)unit->fcp_lun, |
| 992 | (unsigned long long)unit->port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 993 | zfcp_erp_unit_failed(unit, "erusck1", NULL); |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 994 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 995 | break; |
| 996 | } |
| 997 | |
| 998 | if (atomic_read(&unit->status) & ZFCP_STATUS_COMMON_ERP_FAILED) { |
| 999 | zfcp_erp_unit_block(unit, 0); |
| 1000 | result = ZFCP_ERP_EXIT; |
| 1001 | } |
| 1002 | return result; |
| 1003 | } |
| 1004 | |
| 1005 | static int zfcp_erp_strategy_check_port(struct zfcp_port *port, int result) |
| 1006 | { |
| 1007 | switch (result) { |
| 1008 | case ZFCP_ERP_SUCCEEDED : |
| 1009 | atomic_set(&port->erp_counter, 0); |
| 1010 | zfcp_erp_port_unblock(port); |
| 1011 | break; |
| 1012 | |
| 1013 | case ZFCP_ERP_FAILED : |
| 1014 | if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC) { |
| 1015 | zfcp_erp_port_block(port, 0); |
| 1016 | result = ZFCP_ERP_EXIT; |
| 1017 | } |
| 1018 | atomic_inc(&port->erp_counter); |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1019 | if (atomic_read(&port->erp_counter) > ZFCP_MAX_ERPS) { |
| 1020 | dev_err(&port->adapter->ccw_device->dev, |
| 1021 | "ERP failed for remote port 0x%016Lx\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1022 | (unsigned long long)port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1023 | zfcp_erp_port_failed(port, "erpsck1", NULL); |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1024 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1025 | break; |
| 1026 | } |
| 1027 | |
| 1028 | if (atomic_read(&port->status) & ZFCP_STATUS_COMMON_ERP_FAILED) { |
| 1029 | zfcp_erp_port_block(port, 0); |
| 1030 | result = ZFCP_ERP_EXIT; |
| 1031 | } |
| 1032 | return result; |
| 1033 | } |
| 1034 | |
| 1035 | static int zfcp_erp_strategy_check_adapter(struct zfcp_adapter *adapter, |
| 1036 | int result) |
| 1037 | { |
| 1038 | switch (result) { |
| 1039 | case ZFCP_ERP_SUCCEEDED : |
| 1040 | atomic_set(&adapter->erp_counter, 0); |
| 1041 | zfcp_erp_adapter_unblock(adapter); |
| 1042 | break; |
| 1043 | |
| 1044 | case ZFCP_ERP_FAILED : |
| 1045 | atomic_inc(&adapter->erp_counter); |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1046 | if (atomic_read(&adapter->erp_counter) > ZFCP_MAX_ERPS) { |
| 1047 | dev_err(&adapter->ccw_device->dev, |
| 1048 | "ERP cannot recover an error " |
| 1049 | "on the FCP device\n"); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1050 | zfcp_erp_adapter_failed(adapter, "erasck1", NULL); |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1051 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1052 | break; |
| 1053 | } |
| 1054 | |
| 1055 | if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED) { |
| 1056 | zfcp_erp_adapter_block(adapter, 0); |
| 1057 | result = ZFCP_ERP_EXIT; |
| 1058 | } |
| 1059 | return result; |
| 1060 | } |
| 1061 | |
| 1062 | static int zfcp_erp_strategy_check_target(struct zfcp_erp_action *erp_action, |
| 1063 | int result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | { |
| 1065 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1066 | struct zfcp_port *port = erp_action->port; |
| 1067 | struct zfcp_unit *unit = erp_action->unit; |
| 1068 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | switch (erp_action->action) { |
| 1070 | |
| 1071 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
| 1072 | result = zfcp_erp_strategy_check_unit(unit, result); |
| 1073 | break; |
| 1074 | |
| 1075 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
| 1076 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
| 1077 | result = zfcp_erp_strategy_check_port(port, result); |
| 1078 | break; |
| 1079 | |
| 1080 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
| 1081 | result = zfcp_erp_strategy_check_adapter(adapter, result); |
| 1082 | break; |
| 1083 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | return result; |
| 1085 | } |
| 1086 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1087 | static int zfcp_erp_strat_change_det(atomic_t *target_status, u32 erp_status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1089 | int status = atomic_read(target_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1091 | if ((status & ZFCP_STATUS_COMMON_RUNNING) && |
| 1092 | (erp_status & ZFCP_STATUS_ERP_CLOSE_ONLY)) |
| 1093 | return 1; /* take it online */ |
| 1094 | |
| 1095 | if (!(status & ZFCP_STATUS_COMMON_RUNNING) && |
| 1096 | !(erp_status & ZFCP_STATUS_ERP_CLOSE_ONLY)) |
| 1097 | return 1; /* take it offline */ |
| 1098 | |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
| 1102 | static int zfcp_erp_strategy_statechange(struct zfcp_erp_action *act, int ret) |
| 1103 | { |
| 1104 | int action = act->action; |
| 1105 | struct zfcp_adapter *adapter = act->adapter; |
| 1106 | struct zfcp_port *port = act->port; |
| 1107 | struct zfcp_unit *unit = act->unit; |
| 1108 | u32 erp_status = act->status; |
| 1109 | |
| 1110 | switch (action) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1112 | if (zfcp_erp_strat_change_det(&adapter->status, erp_status)) { |
| 1113 | _zfcp_erp_adapter_reopen(adapter, |
| 1114 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1115 | "ersscg1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1116 | return ZFCP_ERP_EXIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | } |
| 1118 | break; |
| 1119 | |
| 1120 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
| 1121 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1122 | if (zfcp_erp_strat_change_det(&port->status, erp_status)) { |
| 1123 | _zfcp_erp_port_reopen(port, |
| 1124 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1125 | "ersscg2", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1126 | return ZFCP_ERP_EXIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | break; |
| 1129 | |
| 1130 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1131 | if (zfcp_erp_strat_change_det(&unit->status, erp_status)) { |
| 1132 | _zfcp_erp_unit_reopen(unit, |
| 1133 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1134 | "ersscg3", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1135 | return ZFCP_ERP_EXIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | } |
| 1137 | break; |
| 1138 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1139 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | } |
| 1141 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1142 | static void zfcp_erp_action_dequeue(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1144 | struct zfcp_adapter *adapter = erp_action->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1146 | adapter->erp_total_count--; |
| 1147 | if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) { |
| 1148 | adapter->erp_low_mem_count--; |
| 1149 | erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | } |
| 1151 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1152 | list_del(&erp_action->list); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1153 | zfcp_dbf_rec_action("eractd1", erp_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1155 | switch (erp_action->action) { |
| 1156 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
| 1157 | atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE, |
| 1158 | &erp_action->unit->status); |
| 1159 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1161 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
| 1162 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
| 1163 | atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE, |
| 1164 | &erp_action->port->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | break; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1166 | |
| 1167 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
| 1168 | atomic_clear_mask(ZFCP_STATUS_COMMON_ERP_INUSE, |
| 1169 | &erp_action->adapter->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | break; |
| 1171 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | } |
| 1173 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1174 | static void zfcp_erp_action_cleanup(struct zfcp_erp_action *act, int result) |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 1175 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1176 | struct zfcp_adapter *adapter = act->adapter; |
| 1177 | struct zfcp_port *port = act->port; |
| 1178 | struct zfcp_unit *unit = act->unit; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 1179 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1180 | switch (act->action) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 1182 | if ((result == ZFCP_ERP_SUCCEEDED) && !unit->device) { |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1183 | get_device(&unit->sysfs_device); |
Swen Schillig | 92d5193 | 2009-04-17 15:08:04 +0200 | [diff] [blame] | 1184 | if (scsi_queue_work(unit->port->adapter->scsi_host, |
| 1185 | &unit->scsi_work) <= 0) |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1186 | put_device(&unit->sysfs_device); |
Andreas Herrmann | ad58f7d | 2006-03-10 00:56:16 +0100 | [diff] [blame] | 1187 | } |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1188 | put_device(&unit->sysfs_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | break; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
| 1192 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 1193 | if (result == ZFCP_ERP_SUCCEEDED) |
| 1194 | zfcp_scsi_schedule_rport_register(port); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1195 | put_device(&port->sysfs_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | break; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 1199 | if (result == ZFCP_ERP_SUCCEEDED) { |
Christof Schmitt | bd43a42b7 | 2008-12-25 13:38:50 +0100 | [diff] [blame] | 1200 | register_service_level(&adapter->service_level); |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 1201 | queue_work(adapter->work_queue, &adapter->scan_work); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 1202 | } else |
| 1203 | unregister_service_level(&adapter->service_level); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1204 | kref_put(&adapter->ref, zfcp_adapter_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | } |
| 1207 | } |
| 1208 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1209 | static int zfcp_erp_strategy_do_action(struct zfcp_erp_action *erp_action) |
| 1210 | { |
| 1211 | switch (erp_action->action) { |
| 1212 | case ZFCP_ERP_ACTION_REOPEN_ADAPTER: |
| 1213 | return zfcp_erp_adapter_strategy(erp_action); |
| 1214 | case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: |
| 1215 | return zfcp_erp_port_forced_strategy(erp_action); |
| 1216 | case ZFCP_ERP_ACTION_REOPEN_PORT: |
| 1217 | return zfcp_erp_port_strategy(erp_action); |
| 1218 | case ZFCP_ERP_ACTION_REOPEN_UNIT: |
| 1219 | return zfcp_erp_unit_strategy(erp_action); |
| 1220 | } |
| 1221 | return ZFCP_ERP_FAILED; |
| 1222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1224 | static int zfcp_erp_strategy(struct zfcp_erp_action *erp_action) |
| 1225 | { |
| 1226 | int retval; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1227 | unsigned long flags; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1228 | struct zfcp_adapter *adapter = erp_action->adapter; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1229 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1230 | kref_get(&adapter->ref); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1231 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1232 | write_lock_irqsave(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1233 | zfcp_erp_strategy_check_fsfreq(erp_action); |
| 1234 | |
| 1235 | if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED) { |
| 1236 | zfcp_erp_action_dequeue(erp_action); |
| 1237 | retval = ZFCP_ERP_DISMISSED; |
| 1238 | goto unlock; |
| 1239 | } |
| 1240 | |
| 1241 | zfcp_erp_action_to_running(erp_action); |
| 1242 | |
| 1243 | /* no lock to allow for blocking operations */ |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1244 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1245 | retval = zfcp_erp_strategy_do_action(erp_action); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1246 | write_lock_irqsave(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1247 | |
| 1248 | if (erp_action->status & ZFCP_STATUS_ERP_DISMISSED) |
| 1249 | retval = ZFCP_ERP_CONTINUES; |
| 1250 | |
| 1251 | switch (retval) { |
| 1252 | case ZFCP_ERP_NOMEM: |
| 1253 | if (!(erp_action->status & ZFCP_STATUS_ERP_LOWMEM)) { |
| 1254 | ++adapter->erp_low_mem_count; |
| 1255 | erp_action->status |= ZFCP_STATUS_ERP_LOWMEM; |
| 1256 | } |
| 1257 | if (adapter->erp_total_count == adapter->erp_low_mem_count) |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1258 | _zfcp_erp_adapter_reopen(adapter, 0, "erstgy1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1259 | else { |
| 1260 | zfcp_erp_strategy_memwait(erp_action); |
| 1261 | retval = ZFCP_ERP_CONTINUES; |
| 1262 | } |
| 1263 | goto unlock; |
| 1264 | |
| 1265 | case ZFCP_ERP_CONTINUES: |
| 1266 | if (erp_action->status & ZFCP_STATUS_ERP_LOWMEM) { |
| 1267 | --adapter->erp_low_mem_count; |
| 1268 | erp_action->status &= ~ZFCP_STATUS_ERP_LOWMEM; |
| 1269 | } |
| 1270 | goto unlock; |
| 1271 | } |
| 1272 | |
| 1273 | retval = zfcp_erp_strategy_check_target(erp_action, retval); |
| 1274 | zfcp_erp_action_dequeue(erp_action); |
| 1275 | retval = zfcp_erp_strategy_statechange(erp_action, retval); |
| 1276 | if (retval == ZFCP_ERP_EXIT) |
| 1277 | goto unlock; |
Christof Schmitt | 85600f7 | 2009-07-13 15:06:09 +0200 | [diff] [blame] | 1278 | if (retval == ZFCP_ERP_SUCCEEDED) |
| 1279 | zfcp_erp_strategy_followup_success(erp_action); |
| 1280 | if (retval == ZFCP_ERP_FAILED) |
| 1281 | zfcp_erp_strategy_followup_failed(erp_action); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1282 | |
| 1283 | unlock: |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1284 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1285 | |
| 1286 | if (retval != ZFCP_ERP_CONTINUES) |
| 1287 | zfcp_erp_action_cleanup(erp_action, retval); |
| 1288 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 1289 | kref_put(&adapter->ref, zfcp_adapter_release); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1290 | return retval; |
| 1291 | } |
| 1292 | |
| 1293 | static int zfcp_erp_thread(void *data) |
| 1294 | { |
| 1295 | struct zfcp_adapter *adapter = (struct zfcp_adapter *) data; |
| 1296 | struct list_head *next; |
| 1297 | struct zfcp_erp_action *act; |
| 1298 | unsigned long flags; |
| 1299 | |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1300 | for (;;) { |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1301 | zfcp_dbf_rec_thread_lock("erthrd1", adapter->dbf); |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1302 | wait_event_interruptible(adapter->erp_ready_wq, |
| 1303 | !list_empty(&adapter->erp_ready_head) || |
| 1304 | kthread_should_stop()); |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1305 | zfcp_dbf_rec_thread_lock("erthrd2", adapter->dbf); |
Swen Schillig | 94ab4b3 | 2009-04-17 15:08:06 +0200 | [diff] [blame] | 1306 | |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1307 | if (kthread_should_stop()) |
| 1308 | break; |
| 1309 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1310 | write_lock_irqsave(&adapter->erp_lock, flags); |
| 1311 | next = adapter->erp_ready_head.next; |
| 1312 | write_unlock_irqrestore(&adapter->erp_lock, flags); |
| 1313 | |
| 1314 | if (next != &adapter->erp_ready_head) { |
| 1315 | act = list_entry(next, struct zfcp_erp_action, list); |
| 1316 | |
| 1317 | /* there is more to come after dismission, no notify */ |
| 1318 | if (zfcp_erp_strategy(act) != ZFCP_ERP_DISMISSED) |
| 1319 | zfcp_erp_wakeup(adapter); |
| 1320 | } |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1321 | } |
| 1322 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1323 | return 0; |
| 1324 | } |
| 1325 | |
| 1326 | /** |
| 1327 | * zfcp_erp_thread_setup - Start ERP thread for adapter |
| 1328 | * @adapter: Adapter to start the ERP thread for |
| 1329 | * |
| 1330 | * Returns 0 on success or error code from kernel_thread() |
| 1331 | */ |
| 1332 | int zfcp_erp_thread_setup(struct zfcp_adapter *adapter) |
| 1333 | { |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1334 | struct task_struct *thread; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1335 | |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1336 | thread = kthread_run(zfcp_erp_thread, adapter, "zfcperp%s", |
| 1337 | dev_name(&adapter->ccw_device->dev)); |
| 1338 | if (IS_ERR(thread)) { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1339 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1340 | "Creating an ERP thread for the FCP device failed.\n"); |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1341 | return PTR_ERR(thread); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1342 | } |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1343 | |
| 1344 | adapter->erp_thread = thread; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1345 | return 0; |
| 1346 | } |
| 1347 | |
| 1348 | /** |
| 1349 | * zfcp_erp_thread_kill - Stop ERP thread. |
| 1350 | * @adapter: Adapter where the ERP thread should be stopped. |
| 1351 | * |
| 1352 | * The caller of this routine ensures that the specified adapter has |
| 1353 | * been shut down and that this operation has been completed. Thus, |
| 1354 | * there are no pending erp_actions which would need to be handled |
| 1355 | * here. |
| 1356 | */ |
| 1357 | void zfcp_erp_thread_kill(struct zfcp_adapter *adapter) |
| 1358 | { |
Christof Schmitt | 347c6a9 | 2009-08-18 15:43:25 +0200 | [diff] [blame] | 1359 | kthread_stop(adapter->erp_thread); |
| 1360 | adapter->erp_thread = NULL; |
Christof Schmitt | 143bb6b | 2009-08-18 15:43:27 +0200 | [diff] [blame] | 1361 | WARN_ON(!list_empty(&adapter->erp_ready_head)); |
| 1362 | WARN_ON(!list_empty(&adapter->erp_running_head)); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1363 | } |
| 1364 | |
| 1365 | /** |
| 1366 | * zfcp_erp_adapter_failed - Set adapter status to failed. |
| 1367 | * @adapter: Failed adapter. |
| 1368 | * @id: Event id for debug trace. |
| 1369 | * @ref: Reference for debug trace. |
| 1370 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1371 | void zfcp_erp_adapter_failed(struct zfcp_adapter *adapter, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1372 | { |
| 1373 | zfcp_erp_modify_adapter_status(adapter, id, ref, |
| 1374 | ZFCP_STATUS_COMMON_ERP_FAILED, ZFCP_SET); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1375 | } |
| 1376 | |
| 1377 | /** |
| 1378 | * zfcp_erp_port_failed - Set port status to failed. |
| 1379 | * @port: Failed port. |
| 1380 | * @id: Event id for debug trace. |
| 1381 | * @ref: Reference for debug trace. |
| 1382 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1383 | void zfcp_erp_port_failed(struct zfcp_port *port, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1384 | { |
| 1385 | zfcp_erp_modify_port_status(port, id, ref, |
| 1386 | ZFCP_STATUS_COMMON_ERP_FAILED, ZFCP_SET); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1387 | } |
| 1388 | |
| 1389 | /** |
| 1390 | * zfcp_erp_unit_failed - Set unit status to failed. |
| 1391 | * @unit: Failed unit. |
| 1392 | * @id: Event id for debug trace. |
| 1393 | * @ref: Reference for debug trace. |
| 1394 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1395 | void zfcp_erp_unit_failed(struct zfcp_unit *unit, char *id, void *ref) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1396 | { |
| 1397 | zfcp_erp_modify_unit_status(unit, id, ref, |
| 1398 | ZFCP_STATUS_COMMON_ERP_FAILED, ZFCP_SET); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1399 | } |
| 1400 | |
| 1401 | /** |
| 1402 | * zfcp_erp_wait - wait for completion of error recovery on an adapter |
| 1403 | * @adapter: adapter for which to wait for completion of its error recovery |
| 1404 | */ |
| 1405 | void zfcp_erp_wait(struct zfcp_adapter *adapter) |
| 1406 | { |
| 1407 | wait_event(adapter->erp_done_wqh, |
| 1408 | !(atomic_read(&adapter->status) & |
| 1409 | ZFCP_STATUS_ADAPTER_ERP_PENDING)); |
| 1410 | } |
| 1411 | |
| 1412 | /** |
| 1413 | * zfcp_erp_modify_adapter_status - change adapter status bits |
| 1414 | * @adapter: adapter to change the status |
| 1415 | * @id: id for the debug trace |
| 1416 | * @ref: reference for the debug trace |
| 1417 | * @mask: status bits to change |
| 1418 | * @set_or_clear: ZFCP_SET or ZFCP_CLEAR |
| 1419 | * |
| 1420 | * Changes in common status bits are propagated to attached ports and units. |
| 1421 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1422 | void zfcp_erp_modify_adapter_status(struct zfcp_adapter *adapter, char *id, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1423 | void *ref, u32 mask, int set_or_clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | struct zfcp_port *port; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1426 | unsigned long flags; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1427 | u32 common_mask = mask & ZFCP_COMMON_FLAGS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1429 | if (set_or_clear == ZFCP_SET) { |
| 1430 | if (status_change_set(mask, &adapter->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1431 | zfcp_dbf_rec_adapter(id, ref, adapter->dbf); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1432 | atomic_set_mask(mask, &adapter->status); |
| 1433 | } else { |
| 1434 | if (status_change_clear(mask, &adapter->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1435 | zfcp_dbf_rec_adapter(id, ref, adapter->dbf); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1436 | atomic_clear_mask(mask, &adapter->status); |
| 1437 | if (mask & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 1438 | atomic_set(&adapter->erp_counter, 0); |
| 1439 | } |
| 1440 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1441 | if (common_mask) { |
| 1442 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 1443 | list_for_each_entry(port, &adapter->port_list, list) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1444 | zfcp_erp_modify_port_status(port, id, ref, common_mask, |
| 1445 | set_or_clear); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1446 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
| 1447 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | } |
| 1449 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1450 | /** |
| 1451 | * zfcp_erp_modify_port_status - change port status bits |
| 1452 | * @port: port to change the status bits |
| 1453 | * @id: id for the debug trace |
| 1454 | * @ref: reference for the debug trace |
| 1455 | * @mask: status bits to change |
| 1456 | * @set_or_clear: ZFCP_SET or ZFCP_CLEAR |
| 1457 | * |
| 1458 | * Changes in common status bits are propagated to attached units. |
| 1459 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1460 | void zfcp_erp_modify_port_status(struct zfcp_port *port, char *id, void *ref, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1461 | u32 mask, int set_or_clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | struct zfcp_unit *unit; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1464 | unsigned long flags; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1465 | u32 common_mask = mask & ZFCP_COMMON_FLAGS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1467 | if (set_or_clear == ZFCP_SET) { |
| 1468 | if (status_change_set(mask, &port->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1469 | zfcp_dbf_rec_port(id, ref, port); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1470 | atomic_set_mask(mask, &port->status); |
| 1471 | } else { |
| 1472 | if (status_change_clear(mask, &port->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1473 | zfcp_dbf_rec_port(id, ref, port); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1474 | atomic_clear_mask(mask, &port->status); |
| 1475 | if (mask & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 1476 | atomic_set(&port->erp_counter, 0); |
| 1477 | } |
| 1478 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1479 | if (common_mask) { |
| 1480 | read_lock_irqsave(&port->unit_list_lock, flags); |
| 1481 | list_for_each_entry(unit, &port->unit_list, list) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1482 | zfcp_erp_modify_unit_status(unit, id, ref, common_mask, |
| 1483 | set_or_clear); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1484 | read_unlock_irqrestore(&port->unit_list_lock, flags); |
| 1485 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | } |
| 1487 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1488 | /** |
| 1489 | * zfcp_erp_modify_unit_status - change unit status bits |
| 1490 | * @unit: unit to change the status bits |
| 1491 | * @id: id for the debug trace |
| 1492 | * @ref: reference for the debug trace |
| 1493 | * @mask: status bits to change |
| 1494 | * @set_or_clear: ZFCP_SET or ZFCP_CLEAR |
| 1495 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1496 | void zfcp_erp_modify_unit_status(struct zfcp_unit *unit, char *id, void *ref, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1497 | u32 mask, int set_or_clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | { |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1499 | if (set_or_clear == ZFCP_SET) { |
| 1500 | if (status_change_set(mask, &unit->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1501 | zfcp_dbf_rec_unit(id, ref, unit); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1502 | atomic_set_mask(mask, &unit->status); |
| 1503 | } else { |
| 1504 | if (status_change_clear(mask, &unit->status)) |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 1505 | zfcp_dbf_rec_unit(id, ref, unit); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1506 | atomic_clear_mask(mask, &unit->status); |
| 1507 | if (mask & ZFCP_STATUS_COMMON_ERP_FAILED) { |
| 1508 | atomic_set(&unit->erp_counter, 0); |
| 1509 | } |
| 1510 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1513 | /** |
| 1514 | * zfcp_erp_port_boxed - Mark port as "boxed" and start ERP |
| 1515 | * @port: The "boxed" port. |
| 1516 | * @id: The debug trace id. |
| 1517 | * @id: Reference for the debug trace. |
| 1518 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1519 | void zfcp_erp_port_boxed(struct zfcp_port *port, char *id, void *ref) |
Andreas Herrmann | d736a27b | 2005-06-13 13:23:57 +0200 | [diff] [blame] | 1520 | { |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 1521 | zfcp_erp_modify_port_status(port, id, ref, |
| 1522 | ZFCP_STATUS_COMMON_ACCESS_BOXED, ZFCP_SET); |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1523 | zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref); |
Andreas Herrmann | d736a27b | 2005-06-13 13:23:57 +0200 | [diff] [blame] | 1524 | } |
| 1525 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1526 | /** |
| 1527 | * zfcp_erp_unit_boxed - Mark unit as "boxed" and start ERP |
| 1528 | * @port: The "boxed" unit. |
| 1529 | * @id: The debug trace id. |
| 1530 | * @id: Reference for the debug trace. |
| 1531 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1532 | void zfcp_erp_unit_boxed(struct zfcp_unit *unit, char *id, void *ref) |
Andreas Herrmann | d736a27b | 2005-06-13 13:23:57 +0200 | [diff] [blame] | 1533 | { |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 1534 | zfcp_erp_modify_unit_status(unit, id, ref, |
| 1535 | ZFCP_STATUS_COMMON_ACCESS_BOXED, ZFCP_SET); |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1536 | zfcp_erp_unit_reopen(unit, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref); |
Andreas Herrmann | d736a27b | 2005-06-13 13:23:57 +0200 | [diff] [blame] | 1537 | } |
| 1538 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1539 | /** |
| 1540 | * zfcp_erp_port_access_denied - Adapter denied access to port. |
| 1541 | * @port: port where access has been denied |
| 1542 | * @id: id for debug trace |
| 1543 | * @ref: reference for debug trace |
| 1544 | * |
| 1545 | * Since the adapter has denied access, stop using the port and the |
| 1546 | * attached units. |
| 1547 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1548 | void zfcp_erp_port_access_denied(struct zfcp_port *port, char *id, void *ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | { |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 1550 | zfcp_erp_modify_port_status(port, id, ref, |
| 1551 | ZFCP_STATUS_COMMON_ERP_FAILED | |
| 1552 | ZFCP_STATUS_COMMON_ACCESS_DENIED, ZFCP_SET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | } |
| 1554 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1555 | /** |
| 1556 | * zfcp_erp_unit_access_denied - Adapter denied access to unit. |
| 1557 | * @unit: unit where access has been denied |
| 1558 | * @id: id for debug trace |
| 1559 | * @ref: reference for debug trace |
| 1560 | * |
| 1561 | * Since the adapter has denied access, stop using the unit. |
| 1562 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1563 | void zfcp_erp_unit_access_denied(struct zfcp_unit *unit, char *id, void *ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | { |
Martin Peschke | 698ec016 | 2008-03-27 14:22:02 +0100 | [diff] [blame] | 1565 | zfcp_erp_modify_unit_status(unit, id, ref, |
| 1566 | ZFCP_STATUS_COMMON_ERP_FAILED | |
| 1567 | ZFCP_STATUS_COMMON_ACCESS_DENIED, ZFCP_SET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | } |
| 1569 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1570 | static void zfcp_erp_unit_access_changed(struct zfcp_unit *unit, char *id, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1571 | void *ref) |
| 1572 | { |
| 1573 | int status = atomic_read(&unit->status); |
| 1574 | if (!(status & (ZFCP_STATUS_COMMON_ACCESS_DENIED | |
| 1575 | ZFCP_STATUS_COMMON_ACCESS_BOXED))) |
| 1576 | return; |
| 1577 | |
| 1578 | zfcp_erp_unit_reopen(unit, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref); |
| 1579 | } |
| 1580 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1581 | static void zfcp_erp_port_access_changed(struct zfcp_port *port, char *id, |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1582 | void *ref) |
| 1583 | { |
| 1584 | struct zfcp_unit *unit; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1585 | unsigned long flags; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1586 | int status = atomic_read(&port->status); |
| 1587 | |
| 1588 | if (!(status & (ZFCP_STATUS_COMMON_ACCESS_DENIED | |
| 1589 | ZFCP_STATUS_COMMON_ACCESS_BOXED))) { |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1590 | read_lock_irqsave(&port->unit_list_lock, flags); |
| 1591 | list_for_each_entry(unit, &port->unit_list, list) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1592 | zfcp_erp_unit_access_changed(unit, id, ref); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1593 | read_unlock_irqrestore(&port->unit_list_lock, flags); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1594 | return; |
| 1595 | } |
| 1596 | |
| 1597 | zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, id, ref); |
| 1598 | } |
| 1599 | |
| 1600 | /** |
| 1601 | * zfcp_erp_adapter_access_changed - Process change in adapter ACT |
| 1602 | * @adapter: Adapter where the Access Control Table (ACT) changed |
| 1603 | * @id: Id for debug trace |
| 1604 | * @ref: Reference for debug trace |
| 1605 | */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1606 | void zfcp_erp_adapter_access_changed(struct zfcp_adapter *adapter, char *id, |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 1607 | void *ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | unsigned long flags; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1610 | struct zfcp_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 1612 | if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) |
| 1613 | return; |
| 1614 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1615 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 1616 | list_for_each_entry(port, &adapter->port_list, list) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1617 | zfcp_erp_port_access_changed(port, id, ref); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1618 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | } |