blob: 6162cf57a20af5226b9a6abfd82b1f329b1026d6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christof Schmitt24073b42008-06-10 18:20:54 +02002/*
3 * zfcp device driver
4 *
5 * Fibre Channel related functions for the zfcp device driver.
6 *
Steffen Maierab8ab4b2017-07-28 12:30:59 +02007 * Copyright IBM Corp. 2008, 2017
Christof Schmitt24073b42008-06-10 18:20:54 +02008 */
9
Christof Schmittecf39d42008-12-25 13:39:53 +010010#define KMSG_COMPONENT "zfcp"
11#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
Christof Schmitt9d05ce22009-11-24 16:54:09 +010013#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Christof Schmitt038d9442011-02-22 19:54:48 +010015#include <linux/utsname.h>
Martin Peschke18f87a62014-11-13 14:59:48 +010016#include <linux/random.h>
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +010017#include <linux/bsg-lib.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010018#include <scsi/fc/fc_els.h>
19#include <scsi/libfc.h>
Christof Schmitt24073b42008-06-10 18:20:54 +020020#include "zfcp_ext.h"
Christof Schmitt9d05ce22009-11-24 16:54:09 +010021#include "zfcp_fc.h"
Christof Schmitt24073b42008-06-10 18:20:54 +020022
Christof Schmitt087897e2011-02-22 19:54:41 +010023struct kmem_cache *zfcp_fc_req_cache;
24
Christof Schmitt9d05ce22009-11-24 16:54:09 +010025static u32 zfcp_fc_rscn_range_mask[] = {
26 [ELS_ADDR_FMT_PORT] = 0xFFFFFF,
27 [ELS_ADDR_FMT_AREA] = 0xFFFF00,
28 [ELS_ADDR_FMT_DOM] = 0xFF0000,
29 [ELS_ADDR_FMT_FAB] = 0x000000,
Christof Schmitte0d7fcb2008-12-19 16:56:58 +010030};
31
Steffen Maier43f60cb2012-09-04 15:23:35 +020032static bool no_auto_port_rescan;
Martin Peschkeb096ef82017-07-28 12:31:07 +020033module_param(no_auto_port_rescan, bool, 0600);
Steffen Maier43f60cb2012-09-04 15:23:35 +020034MODULE_PARM_DESC(no_auto_port_rescan,
35 "no automatic port_rescan (default off)");
36
Martin Peschke18f87a62014-11-13 14:59:48 +010037static unsigned int port_scan_backoff = 500;
38module_param(port_scan_backoff, uint, 0600);
39MODULE_PARM_DESC(port_scan_backoff,
40 "upper limit of port scan random backoff in msecs (default 500)");
41
42static unsigned int port_scan_ratelimit = 60000;
43module_param(port_scan_ratelimit, uint, 0600);
44MODULE_PARM_DESC(port_scan_ratelimit,
45 "minimum interval between port scans in msecs (default 60000)");
46
47unsigned int zfcp_fc_port_scan_backoff(void)
48{
49 if (!port_scan_backoff)
50 return 0;
51 return get_random_int() % port_scan_backoff;
52}
53
54static void zfcp_fc_port_scan_time(struct zfcp_adapter *adapter)
55{
56 unsigned long interval = msecs_to_jiffies(port_scan_ratelimit);
57 unsigned long backoff = msecs_to_jiffies(zfcp_fc_port_scan_backoff());
58
59 adapter->next_port_scan = jiffies + interval + backoff;
60}
61
62static void zfcp_fc_port_scan(struct zfcp_adapter *adapter)
63{
64 unsigned long now = jiffies;
65 unsigned long next = adapter->next_port_scan;
66 unsigned long delay = 0, max;
67
68 /* delay only needed within waiting period */
69 if (time_before(now, next)) {
70 delay = next - now;
71 /* paranoia: never ever delay scans longer than specified */
72 max = msecs_to_jiffies(port_scan_ratelimit + port_scan_backoff);
73 delay = min(delay, max);
74 }
75
76 queue_delayed_work(adapter->work_queue, &adapter->scan_work, delay);
77}
78
Steffen Maier43f60cb2012-09-04 15:23:35 +020079void zfcp_fc_conditional_port_scan(struct zfcp_adapter *adapter)
80{
81 if (no_auto_port_rescan)
82 return;
83
Martin Peschke18f87a62014-11-13 14:59:48 +010084 zfcp_fc_port_scan(adapter);
Steffen Maier43f60cb2012-09-04 15:23:35 +020085}
86
87void zfcp_fc_inverse_conditional_port_scan(struct zfcp_adapter *adapter)
88{
89 if (!no_auto_port_rescan)
90 return;
91
Martin Peschke18f87a62014-11-13 14:59:48 +010092 zfcp_fc_port_scan(adapter);
Steffen Maier43f60cb2012-09-04 15:23:35 +020093}
94
Sven Schuetz2d1e5472010-07-16 15:37:39 +020095/**
96 * zfcp_fc_post_event - post event to userspace via fc_transport
97 * @work: work struct with enqueued events
98 */
99void zfcp_fc_post_event(struct work_struct *work)
100{
101 struct zfcp_fc_event *event = NULL, *tmp = NULL;
102 LIST_HEAD(tmp_lh);
103 struct zfcp_fc_events *events = container_of(work,
104 struct zfcp_fc_events, work);
105 struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter,
106 events);
107
108 spin_lock_bh(&events->list_lock);
109 list_splice_init(&events->list, &tmp_lh);
110 spin_unlock_bh(&events->list_lock);
111
112 list_for_each_entry_safe(event, tmp, &tmp_lh, list) {
113 fc_host_post_event(adapter->scsi_host, fc_get_event_number(),
114 event->code, event->data);
115 list_del(&event->list);
116 kfree(event);
117 }
118
119}
120
121/**
122 * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context
123 * @adapter: The adapter where to enqueue the event
124 * @event_code: The event code (as defined in fc_host_event_code in
125 * scsi_transport_fc.h)
126 * @event_data: The event data (e.g. n_port page in case of els)
127 */
128void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter,
129 enum fc_host_event_code event_code, u32 event_data)
130{
131 struct zfcp_fc_event *event;
132
133 event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC);
134 if (!event)
135 return;
136
137 event->code = event_code;
138 event->data = event_data;
139
140 spin_lock(&adapter->events.list_lock);
141 list_add_tail(&event->list, &adapter->events.list);
142 spin_unlock(&adapter->events.list_lock);
143
144 queue_work(adapter->work_queue, &adapter->events.work);
145}
146
Christof Schmittbd0072e2009-11-24 16:54:11 +0100147static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200148{
149 if (mutex_lock_interruptible(&wka_port->mutex))
150 return -ERESTARTSYS;
151
Christof Schmittbd0072e2009-11-24 16:54:11 +0100152 if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
153 wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
154 wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200155 if (zfcp_fsf_open_wka_port(wka_port))
Christof Schmittbd0072e2009-11-24 16:54:11 +0100156 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200157 }
158
159 mutex_unlock(&wka_port->mutex);
160
Swen Schillig27f492c2009-07-13 15:06:13 +0200161 wait_event(wka_port->completion_wq,
Christof Schmittbd0072e2009-11-24 16:54:11 +0100162 wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
163 wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200164
Christof Schmittbd0072e2009-11-24 16:54:11 +0100165 if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
Swen Schillig5ab944f2008-10-01 12:42:17 +0200166 atomic_inc(&wka_port->refcount);
167 return 0;
168 }
169 return -EIO;
170}
171
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200172static void zfcp_fc_wka_port_offline(struct work_struct *work)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200173{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700174 struct delayed_work *dw = to_delayed_work(work);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100175 struct zfcp_fc_wka_port *wka_port =
176 container_of(dw, struct zfcp_fc_wka_port, work);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200177
Swen Schillig5ab944f2008-10-01 12:42:17 +0200178 mutex_lock(&wka_port->mutex);
179 if ((atomic_read(&wka_port->refcount) != 0) ||
Christof Schmittbd0072e2009-11-24 16:54:11 +0100180 (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200181 goto out;
182
Christof Schmittbd0072e2009-11-24 16:54:11 +0100183 wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200184 if (zfcp_fsf_close_wka_port(wka_port)) {
Christof Schmittbd0072e2009-11-24 16:54:11 +0100185 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200186 wake_up(&wka_port->completion_wq);
187 }
188out:
189 mutex_unlock(&wka_port->mutex);
190}
191
Christof Schmittbd0072e2009-11-24 16:54:11 +0100192static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200193{
194 if (atomic_dec_return(&wka_port->refcount) != 0)
195 return;
Martin Olsson19af5cd2009-04-23 11:37:37 +0200196 /* wait 10 milliseconds, other reqs might pop in */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200197 schedule_delayed_work(&wka_port->work, HZ / 100);
198}
199
Christof Schmittbd0072e2009-11-24 16:54:11 +0100200static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
Sven Schuetz9d544f22009-04-06 18:31:47 +0200201 struct zfcp_adapter *adapter)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200202{
Swen Schillig5ab944f2008-10-01 12:42:17 +0200203 init_waitqueue_head(&wka_port->completion_wq);
204
205 wka_port->adapter = adapter;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200206 wka_port->d_id = d_id;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200207
Christof Schmittbd0072e2009-11-24 16:54:11 +0100208 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200209 atomic_set(&wka_port->refcount, 0);
210 mutex_init(&wka_port->mutex);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200211 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200212}
213
Christof Schmittbd0072e2009-11-24 16:54:11 +0100214static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
Swen Schillig828bc122009-04-17 15:08:05 +0200215{
216 cancel_delayed_work_sync(&wka->work);
217 mutex_lock(&wka->mutex);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100218 wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig828bc122009-04-17 15:08:05 +0200219 mutex_unlock(&wka->mutex);
220}
221
Christof Schmittbd0072e2009-11-24 16:54:11 +0100222void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
Christof Schmitt55c770f2009-08-18 15:43:12 +0200223{
Swen Schilligf3450c72009-11-24 16:53:59 +0100224 if (!gs)
225 return;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200226 zfcp_fc_wka_port_force_offline(&gs->ms);
227 zfcp_fc_wka_port_force_offline(&gs->ts);
228 zfcp_fc_wka_port_force_offline(&gs->ds);
229 zfcp_fc_wka_port_force_offline(&gs->as);
Christof Schmitt55c770f2009-08-18 15:43:12 +0200230}
231
Christof Schmitt24073b42008-06-10 18:20:54 +0200232static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100233 struct fc_els_rscn_page *page)
Christof Schmitt24073b42008-06-10 18:20:54 +0200234{
235 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +0100236 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmitt24073b42008-06-10 18:20:54 +0200237 struct zfcp_port *port;
238
Swen Schilligecf0c772009-11-24 16:53:58 +0100239 read_lock_irqsave(&adapter->port_list_lock, flags);
240 list_for_each_entry(port, &adapter->port_list, list) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100241 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200242 zfcp_fc_test_link(port);
Swen Schilligea460a82009-05-15 13:18:20 +0200243 if (!port->d_id)
244 zfcp_erp_port_reopen(port,
245 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100246 "fcrscn1");
Swen Schilligea460a82009-05-15 13:18:20 +0200247 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100248 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200249}
250
251static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
252{
253 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100254 struct fc_els_rscn *head;
255 struct fc_els_rscn_page *page;
Christof Schmitt24073b42008-06-10 18:20:54 +0200256 u16 i;
257 u16 no_entries;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100258 unsigned int afmt;
Christof Schmitt24073b42008-06-10 18:20:54 +0200259
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100260 head = (struct fc_els_rscn *) status_buffer->payload.data;
261 page = (struct fc_els_rscn_page *) head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200262
263 /* see FC-FS */
Steffen Maier9d464fc2017-07-28 12:31:02 +0200264 no_entries = be16_to_cpu(head->rscn_plen) /
265 sizeof(struct fc_els_rscn_page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200266
267 for (i = 1; i < no_entries; i++) {
268 /* skip head and start with 1st element */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100269 page++;
270 afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
271 _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
272 page);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200273 zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN,
274 *(u32 *)page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200275 }
Steffen Maier43f60cb2012-09-04 15:23:35 +0200276 zfcp_fc_conditional_port_scan(fsf_req->adapter);
Christof Schmitt24073b42008-06-10 18:20:54 +0200277}
278
Swen Schillig7ba58c92008-10-01 12:42:18 +0200279static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200280{
Swen Schilligecf0c772009-11-24 16:53:58 +0100281 unsigned long flags;
Christof Schmitt24073b42008-06-10 18:20:54 +0200282 struct zfcp_adapter *adapter = req->adapter;
283 struct zfcp_port *port;
Christof Schmitt24073b42008-06-10 18:20:54 +0200284
Swen Schilligecf0c772009-11-24 16:53:58 +0100285 read_lock_irqsave(&adapter->port_list_lock, flags);
286 list_for_each_entry(port, &adapter->port_list, list)
287 if (port->wwpn == wwpn) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100288 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200289 break;
Swen Schilligecf0c772009-11-24 16:53:58 +0100290 }
291 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200292}
293
294static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
295{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100296 struct fsf_status_read_buffer *status_buffer;
297 struct fc_els_flogi *plogi;
Christof Schmitt24073b42008-06-10 18:20:54 +0200298
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100299 status_buffer = (struct fsf_status_read_buffer *) req->data;
300 plogi = (struct fc_els_flogi *) status_buffer->payload.data;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200301 zfcp_fc_incoming_wwpn(req, be64_to_cpu(plogi->fl_wwpn));
Christof Schmitt24073b42008-06-10 18:20:54 +0200302}
303
304static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
305{
306 struct fsf_status_read_buffer *status_buffer =
307 (struct fsf_status_read_buffer *)req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100308 struct fc_els_logo *logo =
309 (struct fc_els_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200310
Steffen Maier9d464fc2017-07-28 12:31:02 +0200311 zfcp_fc_incoming_wwpn(req, be64_to_cpu(logo->fl_n_port_wwn));
Christof Schmitt24073b42008-06-10 18:20:54 +0200312}
313
314/**
315 * zfcp_fc_incoming_els - handle incoming ELS
316 * @fsf_req - request which contains incoming ELS
317 */
318void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
319{
320 struct fsf_status_read_buffer *status_buffer =
321 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200322 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200323
Swen Schillig2c55b752010-12-02 15:16:13 +0100324 zfcp_dbf_san_in_els("fciels1", fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100325 if (els_type == ELS_PLOGI)
Christof Schmitt24073b42008-06-10 18:20:54 +0200326 zfcp_fc_incoming_plogi(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100327 else if (els_type == ELS_LOGO)
Christof Schmitt24073b42008-06-10 18:20:54 +0200328 zfcp_fc_incoming_logo(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100329 else if (els_type == ELS_RSCN)
Christof Schmitt24073b42008-06-10 18:20:54 +0200330 zfcp_fc_incoming_rscn(fsf_req);
331}
332
Christof Schmittfcf7e612011-02-22 19:54:42 +0100333static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200334{
Christof Schmittfcf7e612011-02-22 19:54:42 +0100335 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
336 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200337
Christof Schmittfcf7e612011-02-22 19:54:42 +0100338 if (ct_els->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200339 return;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200340 if (gid_pn_rsp->ct_hdr.ct_cmd != cpu_to_be16(FC_FS_ACC))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200341 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100342
Christof Schmitt24073b42008-06-10 18:20:54 +0200343 /* looks like a valid d_id */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100344 ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid);
Christof Schmitt24073b42008-06-10 18:20:54 +0200345}
346
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100347static void zfcp_fc_complete(void *data)
348{
349 complete(data);
350}
351
Christof Schmittfcf7e612011-02-22 19:54:42 +0100352static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size)
353{
354 ct_hdr->ct_rev = FC_CT_REV;
355 ct_hdr->ct_fs_type = FC_FST_DIR;
356 ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200357 ct_hdr->ct_cmd = cpu_to_be16(cmd);
358 ct_hdr->ct_mr_size = cpu_to_be16(mr_size / 4);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100359}
360
Christof Schmitt799b76d2009-08-18 15:43:20 +0200361static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
Christof Schmittfcf7e612011-02-22 19:54:42 +0100362 struct zfcp_fc_req *fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200363{
Christof Schmitt799b76d2009-08-18 15:43:20 +0200364 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100365 DECLARE_COMPLETION_ONSTACK(completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100366 struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req;
367 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200368 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200369
370 /* setup parameters for send generic command */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100371 fc_req->ct_els.port = port;
372 fc_req->ct_els.handler = zfcp_fc_complete;
373 fc_req->ct_els.handler_data = &completion;
374 fc_req->ct_els.req = &fc_req->sg_req;
375 fc_req->ct_els.resp = &fc_req->sg_rsp;
376 sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req));
377 sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp));
Christof Schmitt24073b42008-06-10 18:20:54 +0200378
Christof Schmittfcf7e612011-02-22 19:54:42 +0100379 zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr,
380 FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE);
Steffen Maier9d464fc2017-07-28 12:31:02 +0200381 gid_pn_req->gid_pn.fn_wwpn = cpu_to_be64(port->wwpn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200382
Christof Schmittfcf7e612011-02-22 19:54:42 +0100383 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100384 adapter->pool.gid_pn_req,
385 ZFCP_FC_CTELS_TMO);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100386 if (!ret) {
387 wait_for_completion(&completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100388 zfcp_fc_ns_gid_pn_eval(fc_req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100389 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200390 return ret;
391}
392
393/**
Christof Schmittfcf7e612011-02-22 19:54:42 +0100394 * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request
Christof Schmitt799b76d2009-08-18 15:43:20 +0200395 * @port: port where GID_PN request is needed
Swen Schillig5ab944f2008-10-01 12:42:17 +0200396 * return: -ENOMEM on error, 0 otherwise
397 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200398static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200399{
400 int ret;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100401 struct zfcp_fc_req *fc_req;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200402 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200403
Christof Schmittfcf7e612011-02-22 19:54:42 +0100404 fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
405 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200406 return -ENOMEM;
407
Christof Schmittfcf7e612011-02-22 19:54:42 +0100408 memset(fc_req, 0, sizeof(*fc_req));
Swen Schillig5ab944f2008-10-01 12:42:17 +0200409
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200410 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
Christof Schmitt24073b42008-06-10 18:20:54 +0200411 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200412 goto out;
413
Christof Schmittfcf7e612011-02-22 19:54:42 +0100414 ret = zfcp_fc_ns_gid_pn_request(port, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200415
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200416 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200417out:
Christof Schmittfcf7e612011-02-22 19:54:42 +0100418 mempool_free(fc_req, adapter->pool.gid_pn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200419 return ret;
420}
421
Christof Schmitt799b76d2009-08-18 15:43:20 +0200422void zfcp_fc_port_did_lookup(struct work_struct *work)
423{
424 int ret;
425 struct zfcp_port *port = container_of(work, struct zfcp_port,
426 gid_pn_work);
427
428 ret = zfcp_fc_ns_gid_pn(port);
429 if (ret) {
430 /* could not issue gid_pn for some reason */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100431 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200432 goto out;
433 }
434
435 if (!port->d_id) {
Swen Schilligedaed852010-09-08 14:40:01 +0200436 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200437 goto out;
438 }
439
Swen Schilligea4a3a62010-12-02 15:16:16 +0100440 zfcp_erp_port_reopen(port, 0, "fcgpn_3");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200441out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100442 put_device(&port->dev);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200443}
444
Christof Schmitt24073b42008-06-10 18:20:54 +0200445/**
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200446 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
447 * @port: The zfcp_port to lookup the d_id for.
448 */
449void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
450{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100451 get_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200452 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100453 put_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200454}
455
456/**
Christof Schmitt24073b42008-06-10 18:20:54 +0200457 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
458 * @port: zfcp_port structure
459 * @plogi: plogi payload
460 *
461 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
462 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100463void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
Christof Schmitt24073b42008-06-10 18:20:54 +0200464{
Steffen Maier9d464fc2017-07-28 12:31:02 +0200465 if (be64_to_cpu(plogi->fl_wwpn) != port->wwpn) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100466 port->d_id = 0;
467 dev_warn(&port->adapter->ccw_device->dev,
468 "A port opened with WWPN 0x%016Lx returned data that "
469 "identifies it as WWPN 0x%016Lx\n",
470 (unsigned long long) port->wwpn,
Steffen Maier9d464fc2017-07-28 12:31:02 +0200471 (unsigned long long) be64_to_cpu(plogi->fl_wwpn));
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100472 return;
473 }
474
Steffen Maier9d464fc2017-07-28 12:31:02 +0200475 port->wwnn = be64_to_cpu(plogi->fl_wwnn);
476 port->maxframe_size = be16_to_cpu(plogi->fl_csp.sp_bb_data);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100477
Steffen Maier9d464fc2017-07-28 12:31:02 +0200478 if (plogi->fl_cssp[0].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200479 port->supported_classes |= FC_COS_CLASS1;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200480 if (plogi->fl_cssp[1].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200481 port->supported_classes |= FC_COS_CLASS2;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200482 if (plogi->fl_cssp[2].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200483 port->supported_classes |= FC_COS_CLASS3;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200484 if (plogi->fl_cssp[3].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200485 port->supported_classes |= FC_COS_CLASS4;
486}
487
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100488static void zfcp_fc_adisc_handler(void *data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200489{
Christof Schmitt087897e2011-02-22 19:54:41 +0100490 struct zfcp_fc_req *fc_req = data;
491 struct zfcp_port *port = fc_req->ct_els.port;
492 struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200493
Christof Schmitt087897e2011-02-22 19:54:41 +0100494 if (fc_req->ct_els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200495 /* request rejected or timed out */
Swen Schillig5b43e712009-04-17 15:08:10 +0200496 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100497 "fcadh_1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200498 goto out;
499 }
500
501 if (!port->wwnn)
Steffen Maier9d464fc2017-07-28 12:31:02 +0200502 port->wwnn = be64_to_cpu(adisc_resp->adisc_wwnn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200503
Steffen Maier9d464fc2017-07-28 12:31:02 +0200504 if ((port->wwpn != be64_to_cpu(adisc_resp->adisc_wwpn)) ||
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100505 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
Swen Schillig24095492009-03-02 13:09:07 +0100506 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100507 "fcadh_2");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100508 goto out;
509 }
Christof Schmitt24073b42008-06-10 18:20:54 +0200510
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100511 /* port is good, unblock rport without going through erp */
512 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200513 out:
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200514 atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt615f59e2010-02-17 11:18:56 +0100515 put_device(&port->dev);
Christof Schmitt087897e2011-02-22 19:54:41 +0100516 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200517}
518
519static int zfcp_fc_adisc(struct zfcp_port *port)
520{
Christof Schmitt087897e2011-02-22 19:54:41 +0100521 struct zfcp_fc_req *fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200522 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt087897e2011-02-22 19:54:41 +0100523 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmittee744622009-11-24 16:54:14 +0100524 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200525
Christof Schmitt087897e2011-02-22 19:54:41 +0100526 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC);
527 if (!fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200528 return -ENOMEM;
529
Christof Schmitt087897e2011-02-22 19:54:41 +0100530 fc_req->ct_els.port = port;
531 fc_req->ct_els.req = &fc_req->sg_req;
532 fc_req->ct_els.resp = &fc_req->sg_rsp;
533 sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100534 sizeof(struct fc_els_adisc));
Christof Schmitt087897e2011-02-22 19:54:41 +0100535 sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100536 sizeof(struct fc_els_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200537
Christof Schmitt087897e2011-02-22 19:54:41 +0100538 fc_req->ct_els.handler = zfcp_fc_adisc_handler;
539 fc_req->ct_els.handler_data = fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200540
541 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
542 without FC-AL-2 capability, so we don't set it */
Steffen Maier9d464fc2017-07-28 12:31:02 +0200543 fc_req->u.adisc.req.adisc_wwpn = cpu_to_be64(fc_host_port_name(shost));
544 fc_req->u.adisc.req.adisc_wwnn = cpu_to_be64(fc_host_node_name(shost));
Christof Schmitt087897e2011-02-22 19:54:41 +0100545 fc_req->u.adisc.req.adisc_cmd = ELS_ADISC;
546 hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost));
Christof Schmitt24073b42008-06-10 18:20:54 +0200547
Christof Schmitt087897e2011-02-22 19:54:41 +0100548 ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100549 ZFCP_FC_CTELS_TMO);
Christof Schmittee744622009-11-24 16:54:14 +0100550 if (ret)
Christof Schmitt087897e2011-02-22 19:54:41 +0100551 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmittee744622009-11-24 16:54:14 +0100552
553 return ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200554}
555
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100556void zfcp_fc_link_test_work(struct work_struct *work)
557{
558 struct zfcp_port *port =
559 container_of(work, struct zfcp_port, test_link_work);
560 int retval;
561
Christof Schmitt615f59e2010-02-17 11:18:56 +0100562 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100563 port->rport_task = RPORT_DEL;
564 zfcp_scsi_rport_work(&port->rport_work);
565
Christof Schmitt14e242e2009-08-18 15:43:11 +0200566 /* only issue one test command at one time per port */
567 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
568 goto out;
569
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200570 atomic_or(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt14e242e2009-08-18 15:43:11 +0200571
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100572 retval = zfcp_fc_adisc(port);
573 if (retval == 0)
574 return;
575
576 /* send of ADISC was not possible */
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200577 atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100578 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100579
Christof Schmitt14e242e2009-08-18 15:43:11 +0200580out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100581 put_device(&port->dev);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100582}
583
Christof Schmitt24073b42008-06-10 18:20:54 +0200584/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200585 * zfcp_fc_test_link - lightweight link test procedure
Christof Schmitt24073b42008-06-10 18:20:54 +0200586 * @port: port to be tested
587 *
588 * Test status of a link to a remote port using the ELS command ADISC.
589 * If there is a problem with the remote port, error recovery steps
590 * will be triggered.
591 */
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200592void zfcp_fc_test_link(struct zfcp_port *port)
Christof Schmitt24073b42008-06-10 18:20:54 +0200593{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100594 get_device(&port->dev);
Swen Schillig45446832009-08-18 15:43:17 +0200595 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100596 put_device(&port->dev);
Christof Schmitt24073b42008-06-10 18:20:54 +0200597}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200598
Christof Schmittf9773222011-02-22 19:54:43 +0100599static struct zfcp_fc_req *zfcp_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200600{
Christof Schmittf9773222011-02-22 19:54:43 +0100601 struct zfcp_fc_req *fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200602
Christof Schmittf9773222011-02-22 19:54:43 +0100603 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
604 if (!fc_req)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200605 return NULL;
606
Christof Schmittf9773222011-02-22 19:54:43 +0100607 if (zfcp_sg_setup_table(&fc_req->sg_rsp, buf_num)) {
608 kmem_cache_free(zfcp_fc_req_cache, fc_req);
609 return NULL;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200610 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200611
Christof Schmittf9773222011-02-22 19:54:43 +0100612 sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req,
613 sizeof(struct zfcp_fc_gpn_ft_req));
614
615 return fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200616}
617
Christof Schmittf9773222011-02-22 19:54:43 +0100618static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req,
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200619 struct zfcp_adapter *adapter, int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200620{
Christof Schmittf9773222011-02-22 19:54:43 +0100621 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
622 struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100623 DECLARE_COMPLETION_ONSTACK(completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200624 int ret;
625
Christof Schmittf9773222011-02-22 19:54:43 +0100626 zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes);
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100627 req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200628
Christof Schmittf9773222011-02-22 19:54:43 +0100629 ct_els->handler = zfcp_fc_complete;
630 ct_els->handler_data = &completion;
631 ct_els->req = &fc_req->sg_req;
632 ct_els->resp = &fc_req->sg_rsp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200633
Christof Schmittf9773222011-02-22 19:54:43 +0100634 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
Swen Schillig51375ee2010-01-14 17:19:02 +0100635 ZFCP_FC_CTELS_TMO);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200636 if (!ret)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100637 wait_for_completion(&completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200638 return ret;
639}
640
Swen Schilligf3450c72009-11-24 16:53:59 +0100641static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200642{
Martin Petermann6ab35c02009-04-17 15:08:13 +0200643 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
644 return;
645
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200646 atomic_andnot(ZFCP_STATUS_COMMON_NOESC, &port->status);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200647
Christof Schmitt04062892008-10-01 12:42:20 +0200648 if ((port->supported_classes != 0) ||
Swen Schilligf3450c72009-11-24 16:53:59 +0100649 !list_empty(&port->unit_list))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200650 return;
Swen Schilligf3450c72009-11-24 16:53:59 +0100651
Swen Schilligf3450c72009-11-24 16:53:59 +0100652 list_move_tail(&port->list, lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200653}
654
Christof Schmittf9773222011-02-22 19:54:43 +0100655static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100656 struct zfcp_adapter *adapter, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200657{
Christof Schmittf9773222011-02-22 19:54:43 +0100658 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
659 struct scatterlist *sg = &fc_req->sg_rsp;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100660 struct fc_ct_hdr *hdr = sg_virt(sg);
661 struct fc_gpn_ft_resp *acc = sg_virt(sg);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200662 struct zfcp_port *port, *tmp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100663 unsigned long flags;
Swen Schilligf3450c72009-11-24 16:53:59 +0100664 LIST_HEAD(remove_lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200665 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200666 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200667
Christof Schmittf9773222011-02-22 19:54:43 +0100668 if (ct_els->status)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200669 return -EIO;
670
Steffen Maier9d464fc2017-07-28 12:31:02 +0200671 if (hdr->ct_cmd != cpu_to_be16(FC_FS_ACC)) {
Steffen Maierab8ab4b2017-07-28 12:30:59 +0200672 if (hdr->ct_reason == FC_FS_RJT_UNABL)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200673 return -EAGAIN; /* might be a temporary condition */
674 return -EIO;
675 }
676
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100677 if (hdr->ct_mr_size) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100678 dev_warn(&adapter->ccw_device->dev,
679 "The name server reported %d words residual data\n",
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100680 hdr->ct_mr_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200681 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100682 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200683
Swen Schilligcc8c2822008-06-10 18:21:00 +0200684 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100685 for (x = 1; x < max_entries && !last; x++) {
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100686 if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200687 acc++;
688 else
689 acc = sg_virt(++sg);
690
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100691 last = acc->fp_flags & FC_NS_FID_LAST;
692 d_id = ntoh24(acc->fp_fid);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200693
Swen Schillig5ab944f2008-10-01 12:42:17 +0200694 /* don't attach ports with a well known address */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100695 if (d_id >= FC_FID_WELL_KNOWN_BASE)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200696 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200697 /* skip the adapter's port and known remote ports */
Steffen Maier9d464fc2017-07-28 12:31:02 +0200698 if (be64_to_cpu(acc->fp_wwpn) ==
699 fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200700 continue;
701
Steffen Maier9d464fc2017-07-28 12:31:02 +0200702 port = zfcp_port_enqueue(adapter, be64_to_cpu(acc->fp_wwpn),
Swen Schilligcc8c2822008-06-10 18:21:00 +0200703 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100704 if (!IS_ERR(port))
Swen Schilligea4a3a62010-12-02 15:16:16 +0100705 zfcp_erp_port_reopen(port, 0, "fcegpf1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100706 else if (PTR_ERR(port) != -EEXIST)
707 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200708 }
709
710 zfcp_erp_wait(adapter);
Swen Schilligecf0c772009-11-24 16:53:58 +0100711 write_lock_irqsave(&adapter->port_list_lock, flags);
712 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100713 zfcp_fc_validate_port(port, &remove_lh);
Swen Schilligecf0c772009-11-24 16:53:58 +0100714 write_unlock_irqrestore(&adapter->port_list_lock, flags);
Swen Schilligf3450c72009-11-24 16:53:59 +0100715
716 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100717 zfcp_erp_port_shutdown(port, 0, "fcegpf2");
Sebastian Ott83d4e1c2013-04-26 16:13:48 +0200718 device_unregister(&port->dev);
Swen Schilligf3450c72009-11-24 16:53:59 +0100719 }
720
Swen Schilligcc8c2822008-06-10 18:21:00 +0200721 return ret;
722}
723
724/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200725 * zfcp_fc_scan_ports - scan remote ports and attach new ports
Swen Schillig9eae07e2009-11-24 16:54:06 +0100726 * @work: reference to scheduled work
Swen Schilligcc8c2822008-06-10 18:21:00 +0200727 */
Swen Schillig9eae07e2009-11-24 16:54:06 +0100728void zfcp_fc_scan_ports(struct work_struct *work)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200729{
Martin Peschke18f87a62014-11-13 14:59:48 +0100730 struct delayed_work *dw = to_delayed_work(work);
731 struct zfcp_adapter *adapter = container_of(dw, struct zfcp_adapter,
Swen Schillig9eae07e2009-11-24 16:54:06 +0100732 scan_work);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200733 int ret, i;
Christof Schmittf9773222011-02-22 19:54:43 +0100734 struct zfcp_fc_req *fc_req;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100735 int chain, max_entries, buf_num, max_bytes;
736
Martin Peschke18f87a62014-11-13 14:59:48 +0100737 zfcp_fc_port_scan_time(adapter);
738
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100739 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100740 buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
741 max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
742 max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200743
Swen Schillig306b6ed2009-04-17 15:08:02 +0200744 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
745 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100746 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200747
Swen Schillig9eae07e2009-11-24 16:54:06 +0100748 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
749 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200750
Christof Schmittf9773222011-02-22 19:54:43 +0100751 fc_req = zfcp_alloc_sg_env(buf_num);
752 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200753 goto out;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200754
755 for (i = 0; i < 3; i++) {
Christof Schmittf9773222011-02-22 19:54:43 +0100756 ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200757 if (!ret) {
Christof Schmittf9773222011-02-22 19:54:43 +0100758 ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200759 if (ret == -EAGAIN)
760 ssleep(1);
761 else
762 break;
763 }
764 }
Christof Schmittf9773222011-02-22 19:54:43 +0100765 zfcp_sg_free_table(&fc_req->sg_rsp, buf_num);
766 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200767out:
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200768 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200769}
770
Christof Schmitt038d9442011-02-22 19:54:48 +0100771static int zfcp_fc_gspn(struct zfcp_adapter *adapter,
772 struct zfcp_fc_req *fc_req)
773{
774 DECLARE_COMPLETION_ONSTACK(completion);
775 char devno[] = "DEVNO:";
776 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
777 struct zfcp_fc_gspn_req *gspn_req = &fc_req->u.gspn.req;
778 struct zfcp_fc_gspn_rsp *gspn_rsp = &fc_req->u.gspn.rsp;
779 int ret;
780
781 zfcp_fc_ct_ns_init(&gspn_req->ct_hdr, FC_NS_GSPN_ID,
782 FC_SYMBOLIC_NAME_SIZE);
783 hton24(gspn_req->gspn.fp_fid, fc_host_port_id(adapter->scsi_host));
784
785 sg_init_one(&fc_req->sg_req, gspn_req, sizeof(*gspn_req));
786 sg_init_one(&fc_req->sg_rsp, gspn_rsp, sizeof(*gspn_rsp));
787
788 ct_els->handler = zfcp_fc_complete;
789 ct_els->handler_data = &completion;
790 ct_els->req = &fc_req->sg_req;
791 ct_els->resp = &fc_req->sg_rsp;
792
793 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
794 ZFCP_FC_CTELS_TMO);
795 if (ret)
796 return ret;
797
798 wait_for_completion(&completion);
799 if (ct_els->status)
800 return ct_els->status;
801
802 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_NPIV &&
803 !(strstr(gspn_rsp->gspn.fp_name, devno)))
804 snprintf(fc_host_symbolic_name(adapter->scsi_host),
805 FC_SYMBOLIC_NAME_SIZE, "%s%s %s NAME: %s",
806 gspn_rsp->gspn.fp_name, devno,
807 dev_name(&adapter->ccw_device->dev),
808 init_utsname()->nodename);
809 else
810 strlcpy(fc_host_symbolic_name(adapter->scsi_host),
811 gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE);
812
813 return 0;
814}
815
816static void zfcp_fc_rspn(struct zfcp_adapter *adapter,
817 struct zfcp_fc_req *fc_req)
818{
819 DECLARE_COMPLETION_ONSTACK(completion);
820 struct Scsi_Host *shost = adapter->scsi_host;
821 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
822 struct zfcp_fc_rspn_req *rspn_req = &fc_req->u.rspn.req;
823 struct fc_ct_hdr *rspn_rsp = &fc_req->u.rspn.rsp;
824 int ret, len;
825
826 zfcp_fc_ct_ns_init(&rspn_req->ct_hdr, FC_NS_RSPN_ID,
827 FC_SYMBOLIC_NAME_SIZE);
828 hton24(rspn_req->rspn.fr_fid.fp_fid, fc_host_port_id(shost));
829 len = strlcpy(rspn_req->rspn.fr_name, fc_host_symbolic_name(shost),
830 FC_SYMBOLIC_NAME_SIZE);
831 rspn_req->rspn.fr_name_len = len;
832
833 sg_init_one(&fc_req->sg_req, rspn_req, sizeof(*rspn_req));
834 sg_init_one(&fc_req->sg_rsp, rspn_rsp, sizeof(*rspn_rsp));
835
836 ct_els->handler = zfcp_fc_complete;
837 ct_els->handler_data = &completion;
838 ct_els->req = &fc_req->sg_req;
839 ct_els->resp = &fc_req->sg_rsp;
840
841 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
842 ZFCP_FC_CTELS_TMO);
843 if (!ret)
844 wait_for_completion(&completion);
845}
846
847/**
848 * zfcp_fc_sym_name_update - Retrieve and update the symbolic port name
849 * @work: ns_up_work of the adapter where to update the symbolic port name
850 *
851 * Retrieve the current symbolic port name that may have been set by
852 * the hardware using the GSPN request and update the fc_host
853 * symbolic_name sysfs attribute. When running in NPIV mode (and hence
854 * the port name is unique for this system), update the symbolic port
855 * name to add Linux specific information and update the FC nameserver
856 * using the RSPN request.
857 */
858void zfcp_fc_sym_name_update(struct work_struct *work)
859{
860 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
861 ns_up_work);
862 int ret;
863 struct zfcp_fc_req *fc_req;
864
865 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
866 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
867 return;
868
869 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
870 if (!fc_req)
871 return;
872
873 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
874 if (ret)
875 goto out_free;
876
877 ret = zfcp_fc_gspn(adapter, fc_req);
878 if (ret || fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
879 goto out_ds_put;
880
881 memset(fc_req, 0, sizeof(*fc_req));
882 zfcp_fc_rspn(adapter, fc_req);
883
884out_ds_put:
885 zfcp_fc_wka_port_put(&adapter->gs->ds);
886out_free:
887 kmem_cache_free(zfcp_fc_req_cache, fc_req);
888}
889
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100890static void zfcp_fc_ct_els_job_handler(void *data)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200891{
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100892 struct bsg_job *job = data;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100893 struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data;
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100894 struct fc_bsg_reply *jr = job->reply;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200895
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100896 jr->reply_payload_rcv_len = job->reply_payload.payload_len;
897 jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
898 jr->result = zfcp_ct_els->status ? -EIO : 0;
Johannes Thumshirn06548162016-11-17 10:31:22 +0100899 bsg_job_done(job, jr->result, jr->reply_payload_rcv_len);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200900}
901
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100902static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct bsg_job *job)
Christof Schmittf09d5452010-01-13 17:52:36 +0100903{
904 u32 preamble_word1;
905 u8 gs_type;
906 struct zfcp_adapter *adapter;
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100907 struct fc_bsg_request *bsg_request = job->request;
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100908 struct fc_rport *rport = fc_bsg_to_rport(job);
Johannes Thumshirncd21c602016-11-17 10:31:14 +0100909 struct Scsi_Host *shost;
Christof Schmittf09d5452010-01-13 17:52:36 +0100910
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100911 preamble_word1 = bsg_request->rqst_data.r_ct.preamble_word1;
Christof Schmittf09d5452010-01-13 17:52:36 +0100912 gs_type = (preamble_word1 & 0xff000000) >> 24;
913
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100914 shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job);
Johannes Thumshirncd21c602016-11-17 10:31:14 +0100915 adapter = (struct zfcp_adapter *) shost->hostdata[0];
Christof Schmittf09d5452010-01-13 17:52:36 +0100916
917 switch (gs_type) {
918 case FC_FST_ALIAS:
919 return &adapter->gs->as;
920 case FC_FST_MGMT:
921 return &adapter->gs->ms;
922 case FC_FST_TIME:
923 return &adapter->gs->ts;
924 break;
925 case FC_FST_DIR:
926 return &adapter->gs->ds;
927 break;
928 default:
929 return NULL;
930 }
931}
932
933static void zfcp_fc_ct_job_handler(void *data)
934{
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100935 struct bsg_job *job = data;
Christof Schmittf09d5452010-01-13 17:52:36 +0100936 struct zfcp_fc_wka_port *wka_port;
937
938 wka_port = zfcp_fc_job_wka_port(job);
939 zfcp_fc_wka_port_put(wka_port);
940
941 zfcp_fc_ct_els_job_handler(data);
942}
943
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100944static int zfcp_fc_exec_els_job(struct bsg_job *job,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100945 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200946{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100947 struct zfcp_fsf_ct_els *els = job->dd_data;
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100948 struct fc_rport *rport = fc_bsg_to_rport(job);
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100949 struct fc_bsg_request *bsg_request = job->request;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200950 struct zfcp_port *port;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100951 u32 d_id;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200952
Sven Schuetz9d544f22009-04-06 18:31:47 +0200953 if (rport) {
Swen Schilligea945ff2009-08-18 15:43:24 +0200954 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100955 if (!port)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200956 return -EINVAL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100957
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100958 d_id = port->d_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +0100959 put_device(&port->dev);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100960 } else
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100961 d_id = ntoh24(bsg_request->rqst_data.h_els.port_id);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200962
Christof Schmittf09d5452010-01-13 17:52:36 +0100963 els->handler = zfcp_fc_ct_els_job_handler;
Christoph Hellwig31156ec2018-03-13 17:28:39 +0100964 return zfcp_fsf_send_els(adapter, d_id, els, job->timeout / HZ);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200965}
966
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100967static int zfcp_fc_exec_ct_job(struct bsg_job *job,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100968 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200969{
970 int ret;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100971 struct zfcp_fsf_ct_els *ct = job->dd_data;
972 struct zfcp_fc_wka_port *wka_port;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200973
Christof Schmittf09d5452010-01-13 17:52:36 +0100974 wka_port = zfcp_fc_job_wka_port(job);
975 if (!wka_port)
976 return -EINVAL;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200977
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100978 ret = zfcp_fc_wka_port_get(wka_port);
979 if (ret)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200980 return ret;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200981
Christof Schmittf09d5452010-01-13 17:52:36 +0100982 ct->handler = zfcp_fc_ct_job_handler;
Christoph Hellwig31156ec2018-03-13 17:28:39 +0100983 ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->timeout / HZ);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100984 if (ret)
985 zfcp_fc_wka_port_put(wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200986
Sven Schuetz9d544f22009-04-06 18:31:47 +0200987 return ret;
988}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200989
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100990int zfcp_fc_exec_bsg_job(struct bsg_job *job)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100991{
992 struct Scsi_Host *shost;
993 struct zfcp_adapter *adapter;
994 struct zfcp_fsf_ct_els *ct_els = job->dd_data;
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100995 struct fc_bsg_request *bsg_request = job->request;
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100996 struct fc_rport *rport = fc_bsg_to_rport(job);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100997
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100998 shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100999 adapter = (struct zfcp_adapter *)shost->hostdata[0];
1000
1001 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
1002 return -EINVAL;
1003
1004 ct_els->req = job->request_payload.sg_list;
1005 ct_els->resp = job->reply_payload.sg_list;
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001006 ct_els->handler_data = job;
1007
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001008 switch (bsg_request->msgcode) {
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001009 case FC_BSG_RPT_ELS:
1010 case FC_BSG_HST_ELS_NOLOGIN:
1011 return zfcp_fc_exec_els_job(job, adapter);
1012 case FC_BSG_RPT_CT:
1013 case FC_BSG_HST_CT:
1014 return zfcp_fc_exec_ct_job(job, adapter);
1015 default:
1016 return -EINVAL;
1017 }
1018}
1019
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +01001020int zfcp_fc_timeout_bsg_job(struct bsg_job *job)
Swen Schillig491ca442010-01-14 17:19:01 +01001021{
1022 /* hardware tracks timeout, reset bsg timeout to not interfere */
1023 return -EAGAIN;
1024}
1025
Swen Schilligd5a282a2009-08-18 15:43:22 +02001026int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
1027{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001028 struct zfcp_fc_wka_ports *wka_ports;
Swen Schilligd5a282a2009-08-18 15:43:22 +02001029
Christof Schmittbd0072e2009-11-24 16:54:11 +01001030 wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
Swen Schilligd5a282a2009-08-18 15:43:22 +02001031 if (!wka_ports)
1032 return -ENOMEM;
1033
1034 adapter->gs = wka_ports;
1035 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
1036 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
1037 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
1038 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
Swen Schilligd5a282a2009-08-18 15:43:22 +02001039
1040 return 0;
1041}
1042
1043void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
1044{
1045 kfree(adapter->gs);
1046 adapter->gs = NULL;
1047}
1048