Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * zfcp device driver |
| 3 | * |
| 4 | * Fibre Channel related functions for the zfcp device driver. |
| 5 | * |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 6 | * Copyright IBM Corp. 2008, 2010 |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [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 | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 12 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Christof Schmitt | 038d944 | 2011-02-22 19:54:48 +0100 | [diff] [blame] | 14 | #include <linux/utsname.h> |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 15 | #include <linux/random.h> |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 16 | #include <scsi/fc/fc_els.h> |
| 17 | #include <scsi/libfc.h> |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 18 | #include "zfcp_ext.h" |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 19 | #include "zfcp_fc.h" |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 20 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 21 | struct kmem_cache *zfcp_fc_req_cache; |
| 22 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 23 | static u32 zfcp_fc_rscn_range_mask[] = { |
| 24 | [ELS_ADDR_FMT_PORT] = 0xFFFFFF, |
| 25 | [ELS_ADDR_FMT_AREA] = 0xFFFF00, |
| 26 | [ELS_ADDR_FMT_DOM] = 0xFF0000, |
| 27 | [ELS_ADDR_FMT_FAB] = 0x000000, |
Christof Schmitt | e0d7fcb | 2008-12-19 16:56:58 +0100 | [diff] [blame] | 28 | }; |
| 29 | |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 30 | static bool no_auto_port_rescan; |
| 31 | module_param_named(no_auto_port_rescan, no_auto_port_rescan, bool, 0600); |
| 32 | MODULE_PARM_DESC(no_auto_port_rescan, |
| 33 | "no automatic port_rescan (default off)"); |
| 34 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 35 | static unsigned int port_scan_backoff = 500; |
| 36 | module_param(port_scan_backoff, uint, 0600); |
| 37 | MODULE_PARM_DESC(port_scan_backoff, |
| 38 | "upper limit of port scan random backoff in msecs (default 500)"); |
| 39 | |
| 40 | static unsigned int port_scan_ratelimit = 60000; |
| 41 | module_param(port_scan_ratelimit, uint, 0600); |
| 42 | MODULE_PARM_DESC(port_scan_ratelimit, |
| 43 | "minimum interval between port scans in msecs (default 60000)"); |
| 44 | |
| 45 | unsigned int zfcp_fc_port_scan_backoff(void) |
| 46 | { |
| 47 | if (!port_scan_backoff) |
| 48 | return 0; |
| 49 | return get_random_int() % port_scan_backoff; |
| 50 | } |
| 51 | |
| 52 | static void zfcp_fc_port_scan_time(struct zfcp_adapter *adapter) |
| 53 | { |
| 54 | unsigned long interval = msecs_to_jiffies(port_scan_ratelimit); |
| 55 | unsigned long backoff = msecs_to_jiffies(zfcp_fc_port_scan_backoff()); |
| 56 | |
| 57 | adapter->next_port_scan = jiffies + interval + backoff; |
| 58 | } |
| 59 | |
| 60 | static void zfcp_fc_port_scan(struct zfcp_adapter *adapter) |
| 61 | { |
| 62 | unsigned long now = jiffies; |
| 63 | unsigned long next = adapter->next_port_scan; |
| 64 | unsigned long delay = 0, max; |
| 65 | |
| 66 | /* delay only needed within waiting period */ |
| 67 | if (time_before(now, next)) { |
| 68 | delay = next - now; |
| 69 | /* paranoia: never ever delay scans longer than specified */ |
| 70 | max = msecs_to_jiffies(port_scan_ratelimit + port_scan_backoff); |
| 71 | delay = min(delay, max); |
| 72 | } |
| 73 | |
| 74 | queue_delayed_work(adapter->work_queue, &adapter->scan_work, delay); |
| 75 | } |
| 76 | |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 77 | void zfcp_fc_conditional_port_scan(struct zfcp_adapter *adapter) |
| 78 | { |
| 79 | if (no_auto_port_rescan) |
| 80 | return; |
| 81 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 82 | zfcp_fc_port_scan(adapter); |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | void zfcp_fc_inverse_conditional_port_scan(struct zfcp_adapter *adapter) |
| 86 | { |
| 87 | if (!no_auto_port_rescan) |
| 88 | return; |
| 89 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 90 | zfcp_fc_port_scan(adapter); |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 91 | } |
| 92 | |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 93 | /** |
| 94 | * zfcp_fc_post_event - post event to userspace via fc_transport |
| 95 | * @work: work struct with enqueued events |
| 96 | */ |
| 97 | void zfcp_fc_post_event(struct work_struct *work) |
| 98 | { |
| 99 | struct zfcp_fc_event *event = NULL, *tmp = NULL; |
| 100 | LIST_HEAD(tmp_lh); |
| 101 | struct zfcp_fc_events *events = container_of(work, |
| 102 | struct zfcp_fc_events, work); |
| 103 | struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter, |
| 104 | events); |
| 105 | |
| 106 | spin_lock_bh(&events->list_lock); |
| 107 | list_splice_init(&events->list, &tmp_lh); |
| 108 | spin_unlock_bh(&events->list_lock); |
| 109 | |
| 110 | list_for_each_entry_safe(event, tmp, &tmp_lh, list) { |
| 111 | fc_host_post_event(adapter->scsi_host, fc_get_event_number(), |
| 112 | event->code, event->data); |
| 113 | list_del(&event->list); |
| 114 | kfree(event); |
| 115 | } |
| 116 | |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context |
| 121 | * @adapter: The adapter where to enqueue the event |
| 122 | * @event_code: The event code (as defined in fc_host_event_code in |
| 123 | * scsi_transport_fc.h) |
| 124 | * @event_data: The event data (e.g. n_port page in case of els) |
| 125 | */ |
| 126 | void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter, |
| 127 | enum fc_host_event_code event_code, u32 event_data) |
| 128 | { |
| 129 | struct zfcp_fc_event *event; |
| 130 | |
| 131 | event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC); |
| 132 | if (!event) |
| 133 | return; |
| 134 | |
| 135 | event->code = event_code; |
| 136 | event->data = event_data; |
| 137 | |
| 138 | spin_lock(&adapter->events.list_lock); |
| 139 | list_add_tail(&event->list, &adapter->events.list); |
| 140 | spin_unlock(&adapter->events.list_lock); |
| 141 | |
| 142 | queue_work(adapter->work_queue, &adapter->events.work); |
| 143 | } |
| 144 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 145 | static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 146 | { |
| 147 | if (mutex_lock_interruptible(&wka_port->mutex)) |
| 148 | return -ERESTARTSYS; |
| 149 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 150 | if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE || |
| 151 | wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) { |
| 152 | wka_port->status = ZFCP_FC_WKA_PORT_OPENING; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 153 | if (zfcp_fsf_open_wka_port(wka_port)) |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 154 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | mutex_unlock(&wka_port->mutex); |
| 158 | |
Swen Schillig | 27f492c | 2009-07-13 15:06:13 +0200 | [diff] [blame] | 159 | wait_event(wka_port->completion_wq, |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 160 | wka_port->status == ZFCP_FC_WKA_PORT_ONLINE || |
| 161 | wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 162 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 163 | if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 164 | atomic_inc(&wka_port->refcount); |
| 165 | return 0; |
| 166 | } |
| 167 | return -EIO; |
| 168 | } |
| 169 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 170 | static void zfcp_fc_wka_port_offline(struct work_struct *work) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 171 | { |
Jean Delvare | bf6aede | 2009-04-02 16:56:54 -0700 | [diff] [blame] | 172 | struct delayed_work *dw = to_delayed_work(work); |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 173 | struct zfcp_fc_wka_port *wka_port = |
| 174 | container_of(dw, struct zfcp_fc_wka_port, work); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 175 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 176 | mutex_lock(&wka_port->mutex); |
| 177 | if ((atomic_read(&wka_port->refcount) != 0) || |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 178 | (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE)) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 179 | goto out; |
| 180 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 181 | wka_port->status = ZFCP_FC_WKA_PORT_CLOSING; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 182 | if (zfcp_fsf_close_wka_port(wka_port)) { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 183 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 184 | wake_up(&wka_port->completion_wq); |
| 185 | } |
| 186 | out: |
| 187 | mutex_unlock(&wka_port->mutex); |
| 188 | } |
| 189 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 190 | static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 191 | { |
| 192 | if (atomic_dec_return(&wka_port->refcount) != 0) |
| 193 | return; |
Martin Olsson | 19af5cd | 2009-04-23 11:37:37 +0200 | [diff] [blame] | 194 | /* wait 10 milliseconds, other reqs might pop in */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 195 | schedule_delayed_work(&wka_port->work, HZ / 100); |
| 196 | } |
| 197 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 198 | static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id, |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 199 | struct zfcp_adapter *adapter) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 200 | { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 201 | init_waitqueue_head(&wka_port->completion_wq); |
| 202 | |
| 203 | wka_port->adapter = adapter; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 204 | wka_port->d_id = d_id; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 205 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 206 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 207 | atomic_set(&wka_port->refcount, 0); |
| 208 | mutex_init(&wka_port->mutex); |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 209 | INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 210 | } |
| 211 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 212 | static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka) |
Swen Schillig | 828bc12 | 2009-04-17 15:08:05 +0200 | [diff] [blame] | 213 | { |
| 214 | cancel_delayed_work_sync(&wka->work); |
| 215 | mutex_lock(&wka->mutex); |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 216 | wka->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 828bc12 | 2009-04-17 15:08:05 +0200 | [diff] [blame] | 217 | mutex_unlock(&wka->mutex); |
| 218 | } |
| 219 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 220 | void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs) |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 221 | { |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 222 | if (!gs) |
| 223 | return; |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 224 | zfcp_fc_wka_port_force_offline(&gs->ms); |
| 225 | zfcp_fc_wka_port_force_offline(&gs->ts); |
| 226 | zfcp_fc_wka_port_force_offline(&gs->ds); |
| 227 | zfcp_fc_wka_port_force_offline(&gs->as); |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 228 | } |
| 229 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 230 | static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range, |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 231 | struct fc_els_rscn_page *page) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 232 | { |
| 233 | unsigned long flags; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 234 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 235 | struct zfcp_port *port; |
| 236 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 237 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 238 | list_for_each_entry(port, &adapter->port_list, list) { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 239 | if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range)) |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 240 | zfcp_fc_test_link(port); |
Swen Schillig | ea460a8 | 2009-05-15 13:18:20 +0200 | [diff] [blame] | 241 | if (!port->d_id) |
| 242 | zfcp_erp_port_reopen(port, |
| 243 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 244 | "fcrscn1"); |
Swen Schillig | ea460a8 | 2009-05-15 13:18:20 +0200 | [diff] [blame] | 245 | } |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 246 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req) |
| 250 | { |
| 251 | struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 252 | struct fc_els_rscn *head; |
| 253 | struct fc_els_rscn_page *page; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 254 | u16 i; |
| 255 | u16 no_entries; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 256 | unsigned int afmt; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 257 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 258 | head = (struct fc_els_rscn *) status_buffer->payload.data; |
| 259 | page = (struct fc_els_rscn_page *) head; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 260 | |
| 261 | /* see FC-FS */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 262 | no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 263 | |
| 264 | for (i = 1; i < no_entries; i++) { |
| 265 | /* skip head and start with 1st element */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 266 | page++; |
| 267 | afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK; |
| 268 | _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt], |
| 269 | page); |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 270 | zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN, |
| 271 | *(u32 *)page); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 272 | } |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 273 | zfcp_fc_conditional_port_scan(fsf_req->adapter); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 274 | } |
| 275 | |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 276 | static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 277 | { |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 278 | unsigned long flags; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 279 | struct zfcp_adapter *adapter = req->adapter; |
| 280 | struct zfcp_port *port; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 281 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 282 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 283 | list_for_each_entry(port, &adapter->port_list, list) |
| 284 | if (port->wwpn == wwpn) { |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 285 | zfcp_erp_port_forced_reopen(port, 0, "fciwwp1"); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 286 | break; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 287 | } |
| 288 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req) |
| 292 | { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 293 | struct fsf_status_read_buffer *status_buffer; |
| 294 | struct fc_els_flogi *plogi; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 295 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 296 | status_buffer = (struct fsf_status_read_buffer *) req->data; |
| 297 | plogi = (struct fc_els_flogi *) status_buffer->payload.data; |
| 298 | zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req) |
| 302 | { |
| 303 | struct fsf_status_read_buffer *status_buffer = |
| 304 | (struct fsf_status_read_buffer *)req->data; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 305 | struct fc_els_logo *logo = |
| 306 | (struct fc_els_logo *) status_buffer->payload.data; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 307 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 308 | zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | /** |
| 312 | * zfcp_fc_incoming_els - handle incoming ELS |
| 313 | * @fsf_req - request which contains incoming ELS |
| 314 | */ |
| 315 | void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req) |
| 316 | { |
| 317 | struct fsf_status_read_buffer *status_buffer = |
| 318 | (struct fsf_status_read_buffer *) fsf_req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 319 | unsigned int els_type = status_buffer->payload.data[0]; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 320 | |
Swen Schillig | 2c55b75 | 2010-12-02 15:16:13 +0100 | [diff] [blame] | 321 | zfcp_dbf_san_in_els("fciels1", fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 322 | if (els_type == ELS_PLOGI) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 323 | zfcp_fc_incoming_plogi(fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 324 | else if (els_type == ELS_LOGO) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 325 | zfcp_fc_incoming_logo(fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 326 | else if (els_type == ELS_RSCN) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 327 | zfcp_fc_incoming_rscn(fsf_req); |
| 328 | } |
| 329 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 330 | static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 331 | { |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 332 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 333 | struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 334 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 335 | if (ct_els->status) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 336 | return; |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 337 | if (gid_pn_rsp->ct_hdr.ct_cmd != FC_FS_ACC) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 338 | return; |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 339 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 340 | /* looks like a valid d_id */ |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 341 | ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 342 | } |
| 343 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 344 | static void zfcp_fc_complete(void *data) |
| 345 | { |
| 346 | complete(data); |
| 347 | } |
| 348 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 349 | static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size) |
| 350 | { |
| 351 | ct_hdr->ct_rev = FC_CT_REV; |
| 352 | ct_hdr->ct_fs_type = FC_FST_DIR; |
| 353 | ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE; |
| 354 | ct_hdr->ct_cmd = cmd; |
| 355 | ct_hdr->ct_mr_size = mr_size / 4; |
| 356 | } |
| 357 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 358 | static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port, |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 359 | struct zfcp_fc_req *fc_req) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 360 | { |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 361 | struct zfcp_adapter *adapter = port->adapter; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 362 | DECLARE_COMPLETION_ONSTACK(completion); |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 363 | struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req; |
| 364 | struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 365 | int ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 366 | |
| 367 | /* setup parameters for send generic command */ |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 368 | fc_req->ct_els.port = port; |
| 369 | fc_req->ct_els.handler = zfcp_fc_complete; |
| 370 | fc_req->ct_els.handler_data = &completion; |
| 371 | fc_req->ct_els.req = &fc_req->sg_req; |
| 372 | fc_req->ct_els.resp = &fc_req->sg_rsp; |
| 373 | sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req)); |
| 374 | sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 375 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 376 | zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr, |
| 377 | FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE); |
| 378 | gid_pn_req->gid_pn.fn_wwpn = port->wwpn; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 379 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 380 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 381 | adapter->pool.gid_pn_req, |
| 382 | ZFCP_FC_CTELS_TMO); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 383 | if (!ret) { |
| 384 | wait_for_completion(&completion); |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 385 | zfcp_fc_ns_gid_pn_eval(fc_req); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 386 | } |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 387 | return ret; |
| 388 | } |
| 389 | |
| 390 | /** |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 391 | * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 392 | * @port: port where GID_PN request is needed |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 393 | * return: -ENOMEM on error, 0 otherwise |
| 394 | */ |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 395 | static int zfcp_fc_ns_gid_pn(struct zfcp_port *port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 396 | { |
| 397 | int ret; |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 398 | struct zfcp_fc_req *fc_req; |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 399 | struct zfcp_adapter *adapter = port->adapter; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 400 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 401 | fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC); |
| 402 | if (!fc_req) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 403 | return -ENOMEM; |
| 404 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 405 | memset(fc_req, 0, sizeof(*fc_req)); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 406 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 407 | ret = zfcp_fc_wka_port_get(&adapter->gs->ds); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 408 | if (ret) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 409 | goto out; |
| 410 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 411 | ret = zfcp_fc_ns_gid_pn_request(port, fc_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 412 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 413 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 414 | out: |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 415 | mempool_free(fc_req, adapter->pool.gid_pn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 416 | return ret; |
| 417 | } |
| 418 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 419 | void zfcp_fc_port_did_lookup(struct work_struct *work) |
| 420 | { |
| 421 | int ret; |
| 422 | struct zfcp_port *port = container_of(work, struct zfcp_port, |
| 423 | gid_pn_work); |
| 424 | |
| 425 | ret = zfcp_fc_ns_gid_pn(port); |
| 426 | if (ret) { |
| 427 | /* could not issue gid_pn for some reason */ |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 428 | zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1"); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 429 | goto out; |
| 430 | } |
| 431 | |
| 432 | if (!port->d_id) { |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 433 | zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 434 | goto out; |
| 435 | } |
| 436 | |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 437 | zfcp_erp_port_reopen(port, 0, "fcgpn_3"); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 438 | out: |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 439 | put_device(&port->dev); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 440 | } |
| 441 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 442 | /** |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 443 | * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request |
| 444 | * @port: The zfcp_port to lookup the d_id for. |
| 445 | */ |
| 446 | void zfcp_fc_trigger_did_lookup(struct zfcp_port *port) |
| 447 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 448 | get_device(&port->dev); |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 449 | if (!queue_work(port->adapter->work_queue, &port->gid_pn_work)) |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 450 | put_device(&port->dev); |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | /** |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 454 | * zfcp_fc_plogi_evaluate - evaluate PLOGI playload |
| 455 | * @port: zfcp_port structure |
| 456 | * @plogi: plogi payload |
| 457 | * |
| 458 | * Evaluate PLOGI playload and copy important fields into zfcp_port structure |
| 459 | */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 460 | void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 461 | { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 462 | if (plogi->fl_wwpn != port->wwpn) { |
| 463 | port->d_id = 0; |
| 464 | dev_warn(&port->adapter->ccw_device->dev, |
| 465 | "A port opened with WWPN 0x%016Lx returned data that " |
| 466 | "identifies it as WWPN 0x%016Lx\n", |
| 467 | (unsigned long long) port->wwpn, |
| 468 | (unsigned long long) plogi->fl_wwpn); |
| 469 | return; |
| 470 | } |
| 471 | |
| 472 | port->wwnn = plogi->fl_wwnn; |
| 473 | port->maxframe_size = plogi->fl_csp.sp_bb_data; |
| 474 | |
| 475 | if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 476 | port->supported_classes |= FC_COS_CLASS1; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 477 | if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 478 | port->supported_classes |= FC_COS_CLASS2; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 479 | if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 480 | port->supported_classes |= FC_COS_CLASS3; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 481 | if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 482 | port->supported_classes |= FC_COS_CLASS4; |
| 483 | } |
| 484 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 485 | static void zfcp_fc_adisc_handler(void *data) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 486 | { |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 487 | struct zfcp_fc_req *fc_req = data; |
| 488 | struct zfcp_port *port = fc_req->ct_els.port; |
| 489 | struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 490 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 491 | if (fc_req->ct_els.status) { |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 492 | /* request rejected or timed out */ |
Swen Schillig | 5b43e71 | 2009-04-17 15:08:10 +0200 | [diff] [blame] | 493 | zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 494 | "fcadh_1"); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 495 | goto out; |
| 496 | } |
| 497 | |
| 498 | if (!port->wwnn) |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 499 | port->wwnn = adisc_resp->adisc_wwnn; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 500 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 501 | if ((port->wwpn != adisc_resp->adisc_wwpn) || |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 502 | !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) { |
Swen Schillig | 2409549 | 2009-03-02 13:09:07 +0100 | [diff] [blame] | 503 | zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 504 | "fcadh_2"); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 505 | goto out; |
| 506 | } |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 507 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 508 | /* port is good, unblock rport without going through erp */ |
| 509 | zfcp_scsi_schedule_rport_register(port); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 510 | out: |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 511 | atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 512 | put_device(&port->dev); |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 513 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | static int zfcp_fc_adisc(struct zfcp_port *port) |
| 517 | { |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 518 | struct zfcp_fc_req *fc_req; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 519 | struct zfcp_adapter *adapter = port->adapter; |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 520 | struct Scsi_Host *shost = adapter->scsi_host; |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 521 | int ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 522 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 523 | fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC); |
| 524 | if (!fc_req) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 525 | return -ENOMEM; |
| 526 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 527 | fc_req->ct_els.port = port; |
| 528 | fc_req->ct_els.req = &fc_req->sg_req; |
| 529 | fc_req->ct_els.resp = &fc_req->sg_rsp; |
| 530 | sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req, |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 531 | sizeof(struct fc_els_adisc)); |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 532 | sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp, |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 533 | sizeof(struct fc_els_adisc)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 534 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 535 | fc_req->ct_els.handler = zfcp_fc_adisc_handler; |
| 536 | fc_req->ct_els.handler_data = fc_req; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 537 | |
| 538 | /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports |
| 539 | without FC-AL-2 capability, so we don't set it */ |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 540 | fc_req->u.adisc.req.adisc_wwpn = fc_host_port_name(shost); |
| 541 | fc_req->u.adisc.req.adisc_wwnn = fc_host_node_name(shost); |
| 542 | fc_req->u.adisc.req.adisc_cmd = ELS_ADISC; |
| 543 | hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 544 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 545 | ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 546 | ZFCP_FC_CTELS_TMO); |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 547 | if (ret) |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 548 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 549 | |
| 550 | return ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 551 | } |
| 552 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 553 | void zfcp_fc_link_test_work(struct work_struct *work) |
| 554 | { |
| 555 | struct zfcp_port *port = |
| 556 | container_of(work, struct zfcp_port, test_link_work); |
| 557 | int retval; |
| 558 | |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 559 | get_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 560 | port->rport_task = RPORT_DEL; |
| 561 | zfcp_scsi_rport_work(&port->rport_work); |
| 562 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 563 | /* only issue one test command at one time per port */ |
| 564 | if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST) |
| 565 | goto out; |
| 566 | |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 567 | atomic_or(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 568 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 569 | retval = zfcp_fc_adisc(port); |
| 570 | if (retval == 0) |
| 571 | return; |
| 572 | |
| 573 | /* send of ADISC was not possible */ |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 574 | atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 575 | zfcp_erp_port_forced_reopen(port, 0, "fcltwk1"); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 576 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 577 | out: |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 578 | put_device(&port->dev); |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 579 | } |
| 580 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 581 | /** |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 582 | * zfcp_fc_test_link - lightweight link test procedure |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 583 | * @port: port to be tested |
| 584 | * |
| 585 | * Test status of a link to a remote port using the ELS command ADISC. |
| 586 | * If there is a problem with the remote port, error recovery steps |
| 587 | * will be triggered. |
| 588 | */ |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 589 | void zfcp_fc_test_link(struct zfcp_port *port) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 590 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 591 | get_device(&port->dev); |
Swen Schillig | 4544683 | 2009-08-18 15:43:17 +0200 | [diff] [blame] | 592 | if (!queue_work(port->adapter->work_queue, &port->test_link_work)) |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 593 | put_device(&port->dev); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 594 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 595 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 596 | static struct zfcp_fc_req *zfcp_alloc_sg_env(int buf_num) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 597 | { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 598 | struct zfcp_fc_req *fc_req; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 599 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 600 | fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL); |
| 601 | if (!fc_req) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 602 | return NULL; |
| 603 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 604 | if (zfcp_sg_setup_table(&fc_req->sg_rsp, buf_num)) { |
| 605 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
| 606 | return NULL; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 607 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 608 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 609 | sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req, |
| 610 | sizeof(struct zfcp_fc_gpn_ft_req)); |
| 611 | |
| 612 | return fc_req; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 613 | } |
| 614 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 615 | static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req, |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 616 | struct zfcp_adapter *adapter, int max_bytes) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 617 | { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 618 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 619 | struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 620 | DECLARE_COMPLETION_ONSTACK(completion); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 621 | int ret; |
| 622 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 623 | zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes); |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 624 | req->gpn_ft.fn_fc4_type = FC_TYPE_FCP; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 625 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 626 | ct_els->handler = zfcp_fc_complete; |
| 627 | ct_els->handler_data = &completion; |
| 628 | ct_els->req = &fc_req->sg_req; |
| 629 | ct_els->resp = &fc_req->sg_rsp; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 630 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 631 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 632 | ZFCP_FC_CTELS_TMO); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 633 | if (!ret) |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 634 | wait_for_completion(&completion); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 635 | return ret; |
| 636 | } |
| 637 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 638 | static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 639 | { |
Martin Petermann | 6ab35c0 | 2009-04-17 15:08:13 +0200 | [diff] [blame] | 640 | if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC)) |
| 641 | return; |
| 642 | |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 643 | atomic_andnot(ZFCP_STATUS_COMMON_NOESC, &port->status); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 644 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 645 | if ((port->supported_classes != 0) || |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 646 | !list_empty(&port->unit_list)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 647 | return; |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 648 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 649 | list_move_tail(&port->list, lh); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 650 | } |
| 651 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 652 | static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req, |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 653 | struct zfcp_adapter *adapter, int max_entries) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 654 | { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 655 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 656 | struct scatterlist *sg = &fc_req->sg_rsp; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 657 | struct fc_ct_hdr *hdr = sg_virt(sg); |
| 658 | struct fc_gpn_ft_resp *acc = sg_virt(sg); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 659 | struct zfcp_port *port, *tmp; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 660 | unsigned long flags; |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 661 | LIST_HEAD(remove_lh); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 662 | u32 d_id; |
Christof Schmitt | 47f7bba | 2008-08-21 13:43:33 +0200 | [diff] [blame] | 663 | int ret = 0, x, last = 0; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 664 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 665 | if (ct_els->status) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 666 | return -EIO; |
| 667 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 668 | if (hdr->ct_cmd != FC_FS_ACC) { |
| 669 | if (hdr->ct_reason == FC_BA_RJT_UNABLE) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 670 | return -EAGAIN; /* might be a temporary condition */ |
| 671 | return -EIO; |
| 672 | } |
| 673 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 674 | if (hdr->ct_mr_size) { |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 675 | dev_warn(&adapter->ccw_device->dev, |
| 676 | "The name server reported %d words residual data\n", |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 677 | hdr->ct_mr_size); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 678 | return -E2BIG; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 679 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 680 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 681 | /* first entry is the header */ |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 682 | for (x = 1; x < max_entries && !last; x++) { |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 683 | if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 684 | acc++; |
| 685 | else |
| 686 | acc = sg_virt(++sg); |
| 687 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 688 | last = acc->fp_flags & FC_NS_FID_LAST; |
| 689 | d_id = ntoh24(acc->fp_fid); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 690 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 691 | /* don't attach ports with a well known address */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 692 | if (d_id >= FC_FID_WELL_KNOWN_BASE) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 693 | continue; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 694 | /* skip the adapter's port and known remote ports */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 695 | if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 696 | continue; |
| 697 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 698 | port = zfcp_port_enqueue(adapter, acc->fp_wwpn, |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 699 | ZFCP_STATUS_COMMON_NOESC, d_id); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 700 | if (!IS_ERR(port)) |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 701 | zfcp_erp_port_reopen(port, 0, "fcegpf1"); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 702 | else if (PTR_ERR(port) != -EEXIST) |
| 703 | ret = PTR_ERR(port); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | zfcp_erp_wait(adapter); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 707 | write_lock_irqsave(&adapter->port_list_lock, flags); |
| 708 | list_for_each_entry_safe(port, tmp, &adapter->port_list, list) |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 709 | zfcp_fc_validate_port(port, &remove_lh); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 710 | write_unlock_irqrestore(&adapter->port_list_lock, flags); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 711 | |
| 712 | list_for_each_entry_safe(port, tmp, &remove_lh, list) { |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 713 | zfcp_erp_port_shutdown(port, 0, "fcegpf2"); |
Sebastian Ott | 83d4e1c | 2013-04-26 16:13:48 +0200 | [diff] [blame] | 714 | device_unregister(&port->dev); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 715 | } |
| 716 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 717 | return ret; |
| 718 | } |
| 719 | |
| 720 | /** |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 721 | * zfcp_fc_scan_ports - scan remote ports and attach new ports |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 722 | * @work: reference to scheduled work |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 723 | */ |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 724 | void zfcp_fc_scan_ports(struct work_struct *work) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 725 | { |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 726 | struct delayed_work *dw = to_delayed_work(work); |
| 727 | struct zfcp_adapter *adapter = container_of(dw, struct zfcp_adapter, |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 728 | scan_work); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 729 | int ret, i; |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 730 | struct zfcp_fc_req *fc_req; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 731 | int chain, max_entries, buf_num, max_bytes; |
| 732 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 733 | zfcp_fc_port_scan_time(adapter); |
| 734 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 735 | chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 736 | buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1; |
| 737 | max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE; |
| 738 | max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 739 | |
Swen Schillig | 306b6ed | 2009-04-17 15:08:02 +0200 | [diff] [blame] | 740 | if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT && |
| 741 | fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 742 | return; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 743 | |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 744 | if (zfcp_fc_wka_port_get(&adapter->gs->ds)) |
| 745 | return; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 746 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 747 | fc_req = zfcp_alloc_sg_env(buf_num); |
| 748 | if (!fc_req) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 749 | goto out; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 750 | |
| 751 | for (i = 0; i < 3; i++) { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 752 | ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 753 | if (!ret) { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 754 | ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 755 | if (ret == -EAGAIN) |
| 756 | ssleep(1); |
| 757 | else |
| 758 | break; |
| 759 | } |
| 760 | } |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 761 | zfcp_sg_free_table(&fc_req->sg_rsp, buf_num); |
| 762 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 763 | out: |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 764 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 765 | } |
| 766 | |
Christof Schmitt | 038d944 | 2011-02-22 19:54:48 +0100 | [diff] [blame] | 767 | static int zfcp_fc_gspn(struct zfcp_adapter *adapter, |
| 768 | struct zfcp_fc_req *fc_req) |
| 769 | { |
| 770 | DECLARE_COMPLETION_ONSTACK(completion); |
| 771 | char devno[] = "DEVNO:"; |
| 772 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 773 | struct zfcp_fc_gspn_req *gspn_req = &fc_req->u.gspn.req; |
| 774 | struct zfcp_fc_gspn_rsp *gspn_rsp = &fc_req->u.gspn.rsp; |
| 775 | int ret; |
| 776 | |
| 777 | zfcp_fc_ct_ns_init(&gspn_req->ct_hdr, FC_NS_GSPN_ID, |
| 778 | FC_SYMBOLIC_NAME_SIZE); |
| 779 | hton24(gspn_req->gspn.fp_fid, fc_host_port_id(adapter->scsi_host)); |
| 780 | |
| 781 | sg_init_one(&fc_req->sg_req, gspn_req, sizeof(*gspn_req)); |
| 782 | sg_init_one(&fc_req->sg_rsp, gspn_rsp, sizeof(*gspn_rsp)); |
| 783 | |
| 784 | ct_els->handler = zfcp_fc_complete; |
| 785 | ct_els->handler_data = &completion; |
| 786 | ct_els->req = &fc_req->sg_req; |
| 787 | ct_els->resp = &fc_req->sg_rsp; |
| 788 | |
| 789 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, |
| 790 | ZFCP_FC_CTELS_TMO); |
| 791 | if (ret) |
| 792 | return ret; |
| 793 | |
| 794 | wait_for_completion(&completion); |
| 795 | if (ct_els->status) |
| 796 | return ct_els->status; |
| 797 | |
| 798 | if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_NPIV && |
| 799 | !(strstr(gspn_rsp->gspn.fp_name, devno))) |
| 800 | snprintf(fc_host_symbolic_name(adapter->scsi_host), |
| 801 | FC_SYMBOLIC_NAME_SIZE, "%s%s %s NAME: %s", |
| 802 | gspn_rsp->gspn.fp_name, devno, |
| 803 | dev_name(&adapter->ccw_device->dev), |
| 804 | init_utsname()->nodename); |
| 805 | else |
| 806 | strlcpy(fc_host_symbolic_name(adapter->scsi_host), |
| 807 | gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE); |
| 808 | |
| 809 | return 0; |
| 810 | } |
| 811 | |
| 812 | static void zfcp_fc_rspn(struct zfcp_adapter *adapter, |
| 813 | struct zfcp_fc_req *fc_req) |
| 814 | { |
| 815 | DECLARE_COMPLETION_ONSTACK(completion); |
| 816 | struct Scsi_Host *shost = adapter->scsi_host; |
| 817 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 818 | struct zfcp_fc_rspn_req *rspn_req = &fc_req->u.rspn.req; |
| 819 | struct fc_ct_hdr *rspn_rsp = &fc_req->u.rspn.rsp; |
| 820 | int ret, len; |
| 821 | |
| 822 | zfcp_fc_ct_ns_init(&rspn_req->ct_hdr, FC_NS_RSPN_ID, |
| 823 | FC_SYMBOLIC_NAME_SIZE); |
| 824 | hton24(rspn_req->rspn.fr_fid.fp_fid, fc_host_port_id(shost)); |
| 825 | len = strlcpy(rspn_req->rspn.fr_name, fc_host_symbolic_name(shost), |
| 826 | FC_SYMBOLIC_NAME_SIZE); |
| 827 | rspn_req->rspn.fr_name_len = len; |
| 828 | |
| 829 | sg_init_one(&fc_req->sg_req, rspn_req, sizeof(*rspn_req)); |
| 830 | sg_init_one(&fc_req->sg_rsp, rspn_rsp, sizeof(*rspn_rsp)); |
| 831 | |
| 832 | ct_els->handler = zfcp_fc_complete; |
| 833 | ct_els->handler_data = &completion; |
| 834 | ct_els->req = &fc_req->sg_req; |
| 835 | ct_els->resp = &fc_req->sg_rsp; |
| 836 | |
| 837 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, |
| 838 | ZFCP_FC_CTELS_TMO); |
| 839 | if (!ret) |
| 840 | wait_for_completion(&completion); |
| 841 | } |
| 842 | |
| 843 | /** |
| 844 | * zfcp_fc_sym_name_update - Retrieve and update the symbolic port name |
| 845 | * @work: ns_up_work of the adapter where to update the symbolic port name |
| 846 | * |
| 847 | * Retrieve the current symbolic port name that may have been set by |
| 848 | * the hardware using the GSPN request and update the fc_host |
| 849 | * symbolic_name sysfs attribute. When running in NPIV mode (and hence |
| 850 | * the port name is unique for this system), update the symbolic port |
| 851 | * name to add Linux specific information and update the FC nameserver |
| 852 | * using the RSPN request. |
| 853 | */ |
| 854 | void zfcp_fc_sym_name_update(struct work_struct *work) |
| 855 | { |
| 856 | struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter, |
| 857 | ns_up_work); |
| 858 | int ret; |
| 859 | struct zfcp_fc_req *fc_req; |
| 860 | |
| 861 | if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT && |
| 862 | fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
| 863 | return; |
| 864 | |
| 865 | fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL); |
| 866 | if (!fc_req) |
| 867 | return; |
| 868 | |
| 869 | ret = zfcp_fc_wka_port_get(&adapter->gs->ds); |
| 870 | if (ret) |
| 871 | goto out_free; |
| 872 | |
| 873 | ret = zfcp_fc_gspn(adapter, fc_req); |
| 874 | if (ret || fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
| 875 | goto out_ds_put; |
| 876 | |
| 877 | memset(fc_req, 0, sizeof(*fc_req)); |
| 878 | zfcp_fc_rspn(adapter, fc_req); |
| 879 | |
| 880 | out_ds_put: |
| 881 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
| 882 | out_free: |
| 883 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
| 884 | } |
| 885 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 886 | static void zfcp_fc_ct_els_job_handler(void *data) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 887 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 888 | struct fc_bsg_job *job = data; |
| 889 | struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data; |
Swen Schillig | 7dec9cf | 2010-01-26 17:49:19 +0100 | [diff] [blame] | 890 | struct fc_bsg_reply *jr = job->reply; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 891 | |
Swen Schillig | 7dec9cf | 2010-01-26 17:49:19 +0100 | [diff] [blame] | 892 | jr->reply_payload_rcv_len = job->reply_payload.payload_len; |
| 893 | jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK; |
| 894 | jr->result = zfcp_ct_els->status ? -EIO : 0; |
Johannes Thumshirn | 1abaede | 2016-11-17 10:31:13 +0100 | [diff] [blame] | 895 | fc_bsg_jobdone(job, jr->result, jr->reply_payload_rcv_len); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 896 | } |
| 897 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 898 | static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job) |
| 899 | { |
| 900 | u32 preamble_word1; |
| 901 | u8 gs_type; |
| 902 | struct zfcp_adapter *adapter; |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 903 | struct fc_bsg_request *bsg_request = job->request; |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame^] | 904 | struct fc_rport *rport = fc_bsg_to_rport(job); |
Johannes Thumshirn | cd21c60 | 2016-11-17 10:31:14 +0100 | [diff] [blame] | 905 | struct Scsi_Host *shost; |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 906 | |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 907 | preamble_word1 = bsg_request->rqst_data.r_ct.preamble_word1; |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 908 | gs_type = (preamble_word1 & 0xff000000) >> 24; |
| 909 | |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame^] | 910 | shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job); |
Johannes Thumshirn | cd21c60 | 2016-11-17 10:31:14 +0100 | [diff] [blame] | 911 | adapter = (struct zfcp_adapter *) shost->hostdata[0]; |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 912 | |
| 913 | switch (gs_type) { |
| 914 | case FC_FST_ALIAS: |
| 915 | return &adapter->gs->as; |
| 916 | case FC_FST_MGMT: |
| 917 | return &adapter->gs->ms; |
| 918 | case FC_FST_TIME: |
| 919 | return &adapter->gs->ts; |
| 920 | break; |
| 921 | case FC_FST_DIR: |
| 922 | return &adapter->gs->ds; |
| 923 | break; |
| 924 | default: |
| 925 | return NULL; |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | static void zfcp_fc_ct_job_handler(void *data) |
| 930 | { |
| 931 | struct fc_bsg_job *job = data; |
| 932 | struct zfcp_fc_wka_port *wka_port; |
| 933 | |
| 934 | wka_port = zfcp_fc_job_wka_port(job); |
| 935 | zfcp_fc_wka_port_put(wka_port); |
| 936 | |
| 937 | zfcp_fc_ct_els_job_handler(data); |
| 938 | } |
| 939 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 940 | static int zfcp_fc_exec_els_job(struct fc_bsg_job *job, |
| 941 | struct zfcp_adapter *adapter) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 942 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 943 | struct zfcp_fsf_ct_els *els = job->dd_data; |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame^] | 944 | struct fc_rport *rport = fc_bsg_to_rport(job); |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 945 | struct fc_bsg_request *bsg_request = job->request; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 946 | struct zfcp_port *port; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 947 | u32 d_id; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 948 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 949 | if (rport) { |
Swen Schillig | ea945ff | 2009-08-18 15:43:24 +0200 | [diff] [blame] | 950 | port = zfcp_get_port_by_wwpn(adapter, rport->port_name); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 951 | if (!port) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 952 | return -EINVAL; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 953 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 954 | d_id = port->d_id; |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 955 | put_device(&port->dev); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 956 | } else |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 957 | d_id = ntoh24(bsg_request->rqst_data.h_els.port_id); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 958 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 959 | els->handler = zfcp_fc_ct_els_job_handler; |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 960 | return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 961 | } |
| 962 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 963 | static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job, |
| 964 | struct zfcp_adapter *adapter) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 965 | { |
| 966 | int ret; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 967 | struct zfcp_fsf_ct_els *ct = job->dd_data; |
| 968 | struct zfcp_fc_wka_port *wka_port; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 969 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 970 | wka_port = zfcp_fc_job_wka_port(job); |
| 971 | if (!wka_port) |
| 972 | return -EINVAL; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 973 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 974 | ret = zfcp_fc_wka_port_get(wka_port); |
| 975 | if (ret) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 976 | return ret; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 977 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 978 | ct->handler = zfcp_fc_ct_job_handler; |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 979 | ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 980 | if (ret) |
| 981 | zfcp_fc_wka_port_put(wka_port); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 982 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 983 | return ret; |
| 984 | } |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 985 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 986 | int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job) |
| 987 | { |
| 988 | struct Scsi_Host *shost; |
| 989 | struct zfcp_adapter *adapter; |
| 990 | struct zfcp_fsf_ct_els *ct_els = job->dd_data; |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 991 | struct fc_bsg_request *bsg_request = job->request; |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame^] | 992 | struct fc_rport *rport = fc_bsg_to_rport(job); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 993 | |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame^] | 994 | shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 995 | adapter = (struct zfcp_adapter *)shost->hostdata[0]; |
| 996 | |
| 997 | if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN)) |
| 998 | return -EINVAL; |
| 999 | |
| 1000 | ct_els->req = job->request_payload.sg_list; |
| 1001 | ct_els->resp = job->reply_payload.sg_list; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1002 | ct_els->handler_data = job; |
| 1003 | |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 1004 | switch (bsg_request->msgcode) { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1005 | case FC_BSG_RPT_ELS: |
| 1006 | case FC_BSG_HST_ELS_NOLOGIN: |
| 1007 | return zfcp_fc_exec_els_job(job, adapter); |
| 1008 | case FC_BSG_RPT_CT: |
| 1009 | case FC_BSG_HST_CT: |
| 1010 | return zfcp_fc_exec_ct_job(job, adapter); |
| 1011 | default: |
| 1012 | return -EINVAL; |
| 1013 | } |
| 1014 | } |
| 1015 | |
Swen Schillig | 491ca44 | 2010-01-14 17:19:01 +0100 | [diff] [blame] | 1016 | int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job) |
| 1017 | { |
| 1018 | /* hardware tracks timeout, reset bsg timeout to not interfere */ |
| 1019 | return -EAGAIN; |
| 1020 | } |
| 1021 | |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1022 | int zfcp_fc_gs_setup(struct zfcp_adapter *adapter) |
| 1023 | { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1024 | struct zfcp_fc_wka_ports *wka_ports; |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1025 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1026 | wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL); |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1027 | if (!wka_ports) |
| 1028 | return -ENOMEM; |
| 1029 | |
| 1030 | adapter->gs = wka_ports; |
| 1031 | zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter); |
| 1032 | zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter); |
| 1033 | zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter); |
| 1034 | zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter); |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1035 | |
| 1036 | return 0; |
| 1037 | } |
| 1038 | |
| 1039 | void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter) |
| 1040 | { |
| 1041 | kfree(adapter->gs); |
| 1042 | adapter->gs = NULL; |
| 1043 | } |
| 1044 | |