blob: f7f328f952a5cff91be5b8d2d831cd5d4a512647 [file] [log] [blame]
Robert Love42e9a922008-12-09 15:10:17 -08001/*
2 * Copyright(c) 2007 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16 *
17 * Maintained at www.Open-FCoE.org
18 */
19
20/*
21 * PORT LOCKING NOTES
22 *
23 * These comments only apply to the 'port code' which consists of the lport,
24 * disc and rport blocks.
25 *
26 * MOTIVATION
27 *
28 * The lport, disc and rport blocks all have mutexes that are used to protect
29 * those objects. The main motivation for these locks is to prevent from
30 * having an lport reset just before we send a frame. In that scenario the
31 * lport's FID would get set to zero and then we'd send a frame with an
32 * invalid SID. We also need to ensure that states don't change unexpectedly
33 * while processing another state.
34 *
35 * HEIRARCHY
36 *
37 * The following heirarchy defines the locking rules. A greater lock
38 * may be held before acquiring a lesser lock, but a lesser lock should never
39 * be held while attempting to acquire a greater lock. Here is the heirarchy-
40 *
41 * lport > disc, lport > rport, disc > rport
42 *
43 * CALLBACKS
44 *
45 * The callbacks cause complications with this scheme. There is a callback
46 * from the rport (to either lport or disc) and a callback from disc
47 * (to the lport).
48 *
49 * As rports exit the rport state machine a callback is made to the owner of
50 * the rport to notify success or failure. Since the callback is likely to
51 * cause the lport or disc to grab its lock we cannot hold the rport lock
52 * while making the callback. To ensure that the rport is not free'd while
53 * processing the callback the rport callbacks are serialized through a
54 * single-threaded workqueue. An rport would never be free'd while in a
55 * callback handler becuase no other rport work in this queue can be executed
56 * at the same time.
57 *
58 * When discovery succeeds or fails a callback is made to the lport as
59 * notification. Currently, succesful discovery causes the lport to take no
60 * action. A failure will cause the lport to reset. There is likely a circular
61 * locking problem with this implementation.
62 */
63
64/*
65 * LPORT LOCKING
66 *
67 * The critical sections protected by the lport's mutex are quite broad and
68 * may be improved upon in the future. The lport code and its locking doesn't
69 * influence the I/O path, so excessive locking doesn't penalize I/O
70 * performance.
71 *
72 * The strategy is to lock whenever processing a request or response. Note
73 * that every _enter_* function corresponds to a state change. They generally
74 * change the lports state and then send a request out on the wire. We lock
75 * before calling any of these functions to protect that state change. This
76 * means that the entry points into the lport block manage the locks while
77 * the state machine can transition between states (i.e. _enter_* functions)
78 * while always staying protected.
79 *
80 * When handling responses we also hold the lport mutex broadly. When the
81 * lport receives the response frame it locks the mutex and then calls the
82 * appropriate handler for the particuar response. Generally a response will
83 * trigger a state change and so the lock must already be held.
84 *
85 * Retries also have to consider the locking. The retries occur from a work
86 * context and the work function will lock the lport and then retry the state
87 * (i.e. _enter_* function).
88 */
89
90#include <linux/timer.h>
91#include <asm/unaligned.h>
92
93#include <scsi/fc/fc_gs.h>
94
95#include <scsi/libfc.h>
96#include <scsi/fc_encode.h>
97
98/* Fabric IDs to use for point-to-point mode, chosen on whims. */
99#define FC_LOCAL_PTP_FID_LO 0x010101
100#define FC_LOCAL_PTP_FID_HI 0x010102
101
102#define DNS_DELAY 3 /* Discovery delay after RSCN (in seconds)*/
103
Robert Love42e9a922008-12-09 15:10:17 -0800104static void fc_lport_error(struct fc_lport *, struct fc_frame *);
105
106static void fc_lport_enter_reset(struct fc_lport *);
107static void fc_lport_enter_flogi(struct fc_lport *);
108static void fc_lport_enter_dns(struct fc_lport *);
109static void fc_lport_enter_rpn_id(struct fc_lport *);
110static void fc_lport_enter_rft_id(struct fc_lport *);
111static void fc_lport_enter_scr(struct fc_lport *);
112static void fc_lport_enter_ready(struct fc_lport *);
113static void fc_lport_enter_logo(struct fc_lport *);
114
115static const char *fc_lport_state_names[] = {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -0700116 [LPORT_ST_DISABLED] = "disabled",
Robert Love42e9a922008-12-09 15:10:17 -0800117 [LPORT_ST_FLOGI] = "FLOGI",
118 [LPORT_ST_DNS] = "dNS",
119 [LPORT_ST_RPN_ID] = "RPN_ID",
120 [LPORT_ST_RFT_ID] = "RFT_ID",
121 [LPORT_ST_SCR] = "SCR",
122 [LPORT_ST_READY] = "Ready",
123 [LPORT_ST_LOGO] = "LOGO",
124 [LPORT_ST_RESET] = "reset",
125};
126
127static int fc_frame_drop(struct fc_lport *lport, struct fc_frame *fp)
128{
129 fc_frame_free(fp);
130 return 0;
131}
132
133/**
Robert Love34f42a02009-02-27 10:55:45 -0800134 * fc_lport_rport_callback() - Event handler for rport events
Robert Love42e9a922008-12-09 15:10:17 -0800135 * @lport: The lport which is receiving the event
136 * @rport: The rport which the event has occured on
137 * @event: The event that occured
138 *
139 * Locking Note: The rport lock should not be held when calling
140 * this function.
141 */
142static void fc_lport_rport_callback(struct fc_lport *lport,
143 struct fc_rport *rport,
144 enum fc_rport_event event)
145{
Robert Love74147052009-06-10 15:31:10 -0700146 FC_LPORT_DBG(lport, "Received a %d event for port (%6x)\n", event,
147 rport->port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800148
149 switch (event) {
150 case RPORT_EV_CREATED:
151 if (rport->port_id == FC_FID_DIR_SERV) {
152 mutex_lock(&lport->lp_mutex);
153 if (lport->state == LPORT_ST_DNS) {
154 lport->dns_rp = rport;
155 fc_lport_enter_rpn_id(lport);
156 } else {
Robert Love74147052009-06-10 15:31:10 -0700157 FC_LPORT_DBG(lport, "Received an CREATED event "
158 "on port (%6x) for the directory "
159 "server, but the lport is not "
160 "in the DNS state, it's in the "
161 "%d state", rport->port_id,
162 lport->state);
Robert Love42e9a922008-12-09 15:10:17 -0800163 lport->tt.rport_logoff(rport);
164 }
165 mutex_unlock(&lport->lp_mutex);
166 } else
Robert Love74147052009-06-10 15:31:10 -0700167 FC_LPORT_DBG(lport, "Received an event for port (%6x) "
168 "which is not the directory server\n",
169 rport->port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800170 break;
171 case RPORT_EV_LOGO:
172 case RPORT_EV_FAILED:
173 case RPORT_EV_STOP:
174 if (rport->port_id == FC_FID_DIR_SERV) {
175 mutex_lock(&lport->lp_mutex);
176 lport->dns_rp = NULL;
177 mutex_unlock(&lport->lp_mutex);
178
179 } else
Robert Love74147052009-06-10 15:31:10 -0700180 FC_LPORT_DBG(lport, "Received an event for port (%6x) "
181 "which is not the directory server\n",
182 rport->port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800183 break;
184 case RPORT_EV_NONE:
185 break;
186 }
187}
188
189/**
Robert Love34f42a02009-02-27 10:55:45 -0800190 * fc_lport_state() - Return a string which represents the lport's state
Robert Love42e9a922008-12-09 15:10:17 -0800191 * @lport: The lport whose state is to converted to a string
192 */
193static const char *fc_lport_state(struct fc_lport *lport)
194{
195 const char *cp;
196
197 cp = fc_lport_state_names[lport->state];
198 if (!cp)
199 cp = "unknown";
200 return cp;
201}
202
203/**
Robert Love34f42a02009-02-27 10:55:45 -0800204 * fc_lport_ptp_setup() - Create an rport for point-to-point mode
Robert Love42e9a922008-12-09 15:10:17 -0800205 * @lport: The lport to attach the ptp rport to
206 * @fid: The FID of the ptp rport
207 * @remote_wwpn: The WWPN of the ptp rport
208 * @remote_wwnn: The WWNN of the ptp rport
209 */
210static void fc_lport_ptp_setup(struct fc_lport *lport,
211 u32 remote_fid, u64 remote_wwpn,
212 u64 remote_wwnn)
213{
214 struct fc_disc_port dp;
215
216 dp.lp = lport;
217 dp.ids.port_id = remote_fid;
218 dp.ids.port_name = remote_wwpn;
219 dp.ids.node_name = remote_wwnn;
220 dp.ids.roles = FC_RPORT_ROLE_UNKNOWN;
221
222 if (lport->ptp_rp) {
223 lport->tt.rport_logoff(lport->ptp_rp);
224 lport->ptp_rp = NULL;
225 }
226
Robert Love5101ff92009-02-27 10:55:18 -0800227 lport->ptp_rp = lport->tt.rport_create(&dp);
Robert Love42e9a922008-12-09 15:10:17 -0800228
229 lport->tt.rport_login(lport->ptp_rp);
230
231 fc_lport_enter_ready(lport);
232}
233
234void fc_get_host_port_type(struct Scsi_Host *shost)
235{
236 /* TODO - currently just NPORT */
237 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
238}
239EXPORT_SYMBOL(fc_get_host_port_type);
240
241void fc_get_host_port_state(struct Scsi_Host *shost)
242{
243 struct fc_lport *lp = shost_priv(shost);
244
Vasu Devbc0e17f2009-02-27 10:54:57 -0800245 if (lp->link_up)
Robert Love42e9a922008-12-09 15:10:17 -0800246 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
247 else
248 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
249}
250EXPORT_SYMBOL(fc_get_host_port_state);
251
252void fc_get_host_speed(struct Scsi_Host *shost)
253{
254 struct fc_lport *lport = shost_priv(shost);
255
256 fc_host_speed(shost) = lport->link_speed;
257}
258EXPORT_SYMBOL(fc_get_host_speed);
259
260struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *shost)
261{
Robert Love42e9a922008-12-09 15:10:17 -0800262 struct fc_host_statistics *fcoe_stats;
263 struct fc_lport *lp = shost_priv(shost);
264 struct timespec v0, v1;
Robert Love582b45b2009-03-31 15:51:50 -0700265 unsigned int cpu;
Robert Love42e9a922008-12-09 15:10:17 -0800266
267 fcoe_stats = &lp->host_stats;
268 memset(fcoe_stats, 0, sizeof(struct fc_host_statistics));
269
270 jiffies_to_timespec(jiffies, &v0);
271 jiffies_to_timespec(lp->boot_time, &v1);
272 fcoe_stats->seconds_since_last_reset = (v0.tv_sec - v1.tv_sec);
273
Robert Love582b45b2009-03-31 15:51:50 -0700274 for_each_possible_cpu(cpu) {
275 struct fcoe_dev_stats *stats;
276
277 stats = per_cpu_ptr(lp->dev_stats, cpu);
278
Robert Love42e9a922008-12-09 15:10:17 -0800279 fcoe_stats->tx_frames += stats->TxFrames;
280 fcoe_stats->tx_words += stats->TxWords;
281 fcoe_stats->rx_frames += stats->RxFrames;
282 fcoe_stats->rx_words += stats->RxWords;
283 fcoe_stats->error_frames += stats->ErrorFrames;
284 fcoe_stats->invalid_crc_count += stats->InvalidCRCCount;
285 fcoe_stats->fcp_input_requests += stats->InputRequests;
286 fcoe_stats->fcp_output_requests += stats->OutputRequests;
287 fcoe_stats->fcp_control_requests += stats->ControlRequests;
288 fcoe_stats->fcp_input_megabytes += stats->InputMegabytes;
289 fcoe_stats->fcp_output_megabytes += stats->OutputMegabytes;
290 fcoe_stats->link_failure_count += stats->LinkFailureCount;
291 }
292 fcoe_stats->lip_count = -1;
293 fcoe_stats->nos_count = -1;
294 fcoe_stats->loss_of_sync_count = -1;
295 fcoe_stats->loss_of_signal_count = -1;
296 fcoe_stats->prim_seq_protocol_err_count = -1;
297 fcoe_stats->dumped_frames = -1;
298 return fcoe_stats;
299}
300EXPORT_SYMBOL(fc_get_host_stats);
301
302/*
303 * Fill in FLOGI command for request.
304 */
305static void
306fc_lport_flogi_fill(struct fc_lport *lport, struct fc_els_flogi *flogi,
307 unsigned int op)
308{
309 struct fc_els_csp *sp;
310 struct fc_els_cssp *cp;
311
312 memset(flogi, 0, sizeof(*flogi));
313 flogi->fl_cmd = (u8) op;
314 put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn);
315 put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn);
316 sp = &flogi->fl_csp;
317 sp->sp_hi_ver = 0x20;
318 sp->sp_lo_ver = 0x20;
319 sp->sp_bb_cred = htons(10); /* this gets set by gateway */
320 sp->sp_bb_data = htons((u16) lport->mfs);
321 cp = &flogi->fl_cssp[3 - 1]; /* class 3 parameters */
322 cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
323 if (op != ELS_FLOGI) {
324 sp->sp_features = htons(FC_SP_FT_CIRO);
325 sp->sp_tot_seq = htons(255); /* seq. we accept */
326 sp->sp_rel_off = htons(0x1f);
327 sp->sp_e_d_tov = htonl(lport->e_d_tov);
328
329 cp->cp_rdfs = htons((u16) lport->mfs);
330 cp->cp_con_seq = htons(255);
331 cp->cp_open_seq = 1;
332 }
333}
334
335/*
336 * Add a supported FC-4 type.
337 */
338static void fc_lport_add_fc4_type(struct fc_lport *lport, enum fc_fh_type type)
339{
340 __be32 *mp;
341
342 mp = &lport->fcts.ff_type_map[type / FC_NS_BPW];
343 *mp = htonl(ntohl(*mp) | 1UL << (type % FC_NS_BPW));
344}
345
346/**
Robert Love34f42a02009-02-27 10:55:45 -0800347 * fc_lport_recv_rlir_req() - Handle received Registered Link Incident Report.
Robert Love42e9a922008-12-09 15:10:17 -0800348 * @lport: Fibre Channel local port recieving the RLIR
349 * @sp: current sequence in the RLIR exchange
350 * @fp: RLIR request frame
351 *
352 * Locking Note: The lport lock is exected to be held before calling
353 * this function.
354 */
355static void fc_lport_recv_rlir_req(struct fc_seq *sp, struct fc_frame *fp,
356 struct fc_lport *lport)
357{
Robert Love74147052009-06-10 15:31:10 -0700358 FC_LPORT_DBG(lport, "Received RLIR request while in state %s\n",
359 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800360
361 lport->tt.seq_els_rsp_send(sp, ELS_LS_ACC, NULL);
362 fc_frame_free(fp);
363}
364
365/**
Robert Love34f42a02009-02-27 10:55:45 -0800366 * fc_lport_recv_echo_req() - Handle received ECHO request
Robert Love42e9a922008-12-09 15:10:17 -0800367 * @lport: Fibre Channel local port recieving the ECHO
368 * @sp: current sequence in the ECHO exchange
369 * @fp: ECHO request frame
370 *
371 * Locking Note: The lport lock is exected to be held before calling
372 * this function.
373 */
374static void fc_lport_recv_echo_req(struct fc_seq *sp, struct fc_frame *in_fp,
375 struct fc_lport *lport)
376{
377 struct fc_frame *fp;
378 struct fc_exch *ep = fc_seq_exch(sp);
379 unsigned int len;
380 void *pp;
381 void *dp;
382 u32 f_ctl;
383
Robert Love74147052009-06-10 15:31:10 -0700384 FC_LPORT_DBG(lport, "Received RLIR request while in state %s\n",
385 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800386
387 len = fr_len(in_fp) - sizeof(struct fc_frame_header);
388 pp = fc_frame_payload_get(in_fp, len);
389
390 if (len < sizeof(__be32))
391 len = sizeof(__be32);
392
393 fp = fc_frame_alloc(lport, len);
394 if (fp) {
395 dp = fc_frame_payload_get(fp, len);
396 memcpy(dp, pp, len);
397 *((u32 *)dp) = htonl(ELS_LS_ACC << 24);
398 sp = lport->tt.seq_start_next(sp);
399 f_ctl = FC_FC_EX_CTX | FC_FC_LAST_SEQ | FC_FC_END_SEQ;
400 fc_fill_fc_hdr(fp, FC_RCTL_ELS_REP, ep->did, ep->sid,
401 FC_TYPE_ELS, f_ctl, 0);
402 lport->tt.seq_send(lport, sp, fp);
403 }
404 fc_frame_free(in_fp);
405}
406
407/**
Robert Love34f42a02009-02-27 10:55:45 -0800408 * fc_lport_recv_echo_req() - Handle received Request Node ID data request
Robert Love42e9a922008-12-09 15:10:17 -0800409 * @lport: Fibre Channel local port recieving the RNID
410 * @sp: current sequence in the RNID exchange
411 * @fp: RNID request frame
412 *
413 * Locking Note: The lport lock is exected to be held before calling
414 * this function.
415 */
416static void fc_lport_recv_rnid_req(struct fc_seq *sp, struct fc_frame *in_fp,
417 struct fc_lport *lport)
418{
419 struct fc_frame *fp;
420 struct fc_exch *ep = fc_seq_exch(sp);
421 struct fc_els_rnid *req;
422 struct {
423 struct fc_els_rnid_resp rnid;
424 struct fc_els_rnid_cid cid;
425 struct fc_els_rnid_gen gen;
426 } *rp;
427 struct fc_seq_els_data rjt_data;
428 u8 fmt;
429 size_t len;
430 u32 f_ctl;
431
Robert Love74147052009-06-10 15:31:10 -0700432 FC_LPORT_DBG(lport, "Received RNID request while in state %s\n",
433 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800434
435 req = fc_frame_payload_get(in_fp, sizeof(*req));
436 if (!req) {
437 rjt_data.fp = NULL;
438 rjt_data.reason = ELS_RJT_LOGIC;
439 rjt_data.explan = ELS_EXPL_NONE;
440 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data);
441 } else {
442 fmt = req->rnid_fmt;
443 len = sizeof(*rp);
444 if (fmt != ELS_RNIDF_GEN ||
445 ntohl(lport->rnid_gen.rnid_atype) == 0) {
446 fmt = ELS_RNIDF_NONE; /* nothing to provide */
447 len -= sizeof(rp->gen);
448 }
449 fp = fc_frame_alloc(lport, len);
450 if (fp) {
451 rp = fc_frame_payload_get(fp, len);
452 memset(rp, 0, len);
453 rp->rnid.rnid_cmd = ELS_LS_ACC;
454 rp->rnid.rnid_fmt = fmt;
455 rp->rnid.rnid_cid_len = sizeof(rp->cid);
456 rp->cid.rnid_wwpn = htonll(lport->wwpn);
457 rp->cid.rnid_wwnn = htonll(lport->wwnn);
458 if (fmt == ELS_RNIDF_GEN) {
459 rp->rnid.rnid_sid_len = sizeof(rp->gen);
460 memcpy(&rp->gen, &lport->rnid_gen,
461 sizeof(rp->gen));
462 }
463 sp = lport->tt.seq_start_next(sp);
464 f_ctl = FC_FC_EX_CTX | FC_FC_LAST_SEQ;
465 f_ctl |= FC_FC_END_SEQ | FC_FC_SEQ_INIT;
466 fc_fill_fc_hdr(fp, FC_RCTL_ELS_REP, ep->did, ep->sid,
467 FC_TYPE_ELS, f_ctl, 0);
468 lport->tt.seq_send(lport, sp, fp);
469 }
470 }
471 fc_frame_free(in_fp);
472}
473
474/**
Robert Love34f42a02009-02-27 10:55:45 -0800475 * fc_lport_recv_adisc_req() - Handle received Address Discovery Request
Robert Love42e9a922008-12-09 15:10:17 -0800476 * @lport: Fibre Channel local port recieving the ADISC
477 * @sp: current sequence in the ADISC exchange
478 * @fp: ADISC request frame
479 *
480 * Locking Note: The lport lock is expected to be held before calling
481 * this function.
482 */
483static void fc_lport_recv_adisc_req(struct fc_seq *sp, struct fc_frame *in_fp,
484 struct fc_lport *lport)
485{
486 struct fc_frame *fp;
487 struct fc_exch *ep = fc_seq_exch(sp);
488 struct fc_els_adisc *req, *rp;
489 struct fc_seq_els_data rjt_data;
490 size_t len;
491 u32 f_ctl;
492
Robert Love74147052009-06-10 15:31:10 -0700493 FC_LPORT_DBG(lport, "Received ADISC request while in state %s\n",
494 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800495
496 req = fc_frame_payload_get(in_fp, sizeof(*req));
497 if (!req) {
498 rjt_data.fp = NULL;
499 rjt_data.reason = ELS_RJT_LOGIC;
500 rjt_data.explan = ELS_EXPL_NONE;
501 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data);
502 } else {
503 len = sizeof(*rp);
504 fp = fc_frame_alloc(lport, len);
505 if (fp) {
506 rp = fc_frame_payload_get(fp, len);
507 memset(rp, 0, len);
508 rp->adisc_cmd = ELS_LS_ACC;
509 rp->adisc_wwpn = htonll(lport->wwpn);
510 rp->adisc_wwnn = htonll(lport->wwnn);
511 hton24(rp->adisc_port_id,
512 fc_host_port_id(lport->host));
513 sp = lport->tt.seq_start_next(sp);
514 f_ctl = FC_FC_EX_CTX | FC_FC_LAST_SEQ;
515 f_ctl |= FC_FC_END_SEQ | FC_FC_SEQ_INIT;
516 fc_fill_fc_hdr(fp, FC_RCTL_ELS_REP, ep->did, ep->sid,
517 FC_TYPE_ELS, f_ctl, 0);
518 lport->tt.seq_send(lport, sp, fp);
519 }
520 }
521 fc_frame_free(in_fp);
522}
523
524/**
Robert Love34f42a02009-02-27 10:55:45 -0800525 * fc_lport_recv_logo_req() - Handle received fabric LOGO request
Robert Love42e9a922008-12-09 15:10:17 -0800526 * @lport: Fibre Channel local port recieving the LOGO
527 * @sp: current sequence in the LOGO exchange
528 * @fp: LOGO request frame
529 *
530 * Locking Note: The lport lock is exected to be held before calling
531 * this function.
532 */
533static void fc_lport_recv_logo_req(struct fc_seq *sp, struct fc_frame *fp,
534 struct fc_lport *lport)
535{
536 lport->tt.seq_els_rsp_send(sp, ELS_LS_ACC, NULL);
537 fc_lport_enter_reset(lport);
538 fc_frame_free(fp);
539}
540
541/**
Robert Love34f42a02009-02-27 10:55:45 -0800542 * fc_fabric_login() - Start the lport state machine
Robert Love42e9a922008-12-09 15:10:17 -0800543 * @lport: The lport that should log into the fabric
544 *
545 * Locking Note: This function should not be called
546 * with the lport lock held.
547 */
548int fc_fabric_login(struct fc_lport *lport)
549{
550 int rc = -1;
551
552 mutex_lock(&lport->lp_mutex);
Joe Eykholtb1d9fd52009-07-29 17:04:22 -0700553 if (lport->state == LPORT_ST_DISABLED) {
Robert Love42e9a922008-12-09 15:10:17 -0800554 fc_lport_enter_reset(lport);
555 rc = 0;
556 }
557 mutex_unlock(&lport->lp_mutex);
558
559 return rc;
560}
561EXPORT_SYMBOL(fc_fabric_login);
562
563/**
Robert Love34f42a02009-02-27 10:55:45 -0800564 * fc_linkup() - Handler for transport linkup events
Robert Love42e9a922008-12-09 15:10:17 -0800565 * @lport: The lport whose link is up
566 */
567void fc_linkup(struct fc_lport *lport)
568{
Robert Love74147052009-06-10 15:31:10 -0700569 printk(KERN_INFO "libfc: Link up on port (%6x)\n",
570 fc_host_port_id(lport->host));
Robert Love42e9a922008-12-09 15:10:17 -0800571
572 mutex_lock(&lport->lp_mutex);
Vasu Devbc0e17f2009-02-27 10:54:57 -0800573 if (!lport->link_up) {
574 lport->link_up = 1;
Robert Love42e9a922008-12-09 15:10:17 -0800575
576 if (lport->state == LPORT_ST_RESET)
577 fc_lport_enter_flogi(lport);
578 }
579 mutex_unlock(&lport->lp_mutex);
580}
581EXPORT_SYMBOL(fc_linkup);
582
583/**
Robert Love34f42a02009-02-27 10:55:45 -0800584 * fc_linkdown() - Handler for transport linkdown events
Robert Love42e9a922008-12-09 15:10:17 -0800585 * @lport: The lport whose link is down
586 */
587void fc_linkdown(struct fc_lport *lport)
588{
589 mutex_lock(&lport->lp_mutex);
Robert Love74147052009-06-10 15:31:10 -0700590 printk(KERN_INFO "libfc: Link down on port (%6x)\n",
591 fc_host_port_id(lport->host));
Robert Love42e9a922008-12-09 15:10:17 -0800592
Vasu Devbc0e17f2009-02-27 10:54:57 -0800593 if (lport->link_up) {
594 lport->link_up = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800595 fc_lport_enter_reset(lport);
596 lport->tt.fcp_cleanup(lport);
597 }
598 mutex_unlock(&lport->lp_mutex);
599}
600EXPORT_SYMBOL(fc_linkdown);
601
602/**
Robert Love34f42a02009-02-27 10:55:45 -0800603 * fc_fabric_logoff() - Logout of the fabric
Robert Love42e9a922008-12-09 15:10:17 -0800604 * @lport: fc_lport pointer to logoff the fabric
605 *
606 * Return value:
607 * 0 for success, -1 for failure
Robert Love34f42a02009-02-27 10:55:45 -0800608 */
Robert Love42e9a922008-12-09 15:10:17 -0800609int fc_fabric_logoff(struct fc_lport *lport)
610{
611 lport->tt.disc_stop_final(lport);
612 mutex_lock(&lport->lp_mutex);
Abhijeet Joglekara0fd2e42009-04-21 16:27:09 -0700613 if (lport->dns_rp)
614 lport->tt.rport_logoff(lport->dns_rp);
615 mutex_unlock(&lport->lp_mutex);
616 lport->tt.rport_flush_queue();
617 mutex_lock(&lport->lp_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800618 fc_lport_enter_logo(lport);
619 mutex_unlock(&lport->lp_mutex);
Steve Maf7db2c12009-02-27 10:55:13 -0800620 cancel_delayed_work_sync(&lport->retry_work);
Robert Love42e9a922008-12-09 15:10:17 -0800621 return 0;
622}
623EXPORT_SYMBOL(fc_fabric_logoff);
624
625/**
Robert Love34f42a02009-02-27 10:55:45 -0800626 * fc_lport_destroy() - unregister a fc_lport
Robert Love42e9a922008-12-09 15:10:17 -0800627 * @lport: fc_lport pointer to unregister
628 *
629 * Return value:
630 * None
631 * Note:
632 * exit routine for fc_lport instance
633 * clean-up all the allocated memory
634 * and free up other system resources.
635 *
Robert Love34f42a02009-02-27 10:55:45 -0800636 */
Robert Love42e9a922008-12-09 15:10:17 -0800637int fc_lport_destroy(struct fc_lport *lport)
638{
Abhijeet Joglekarbbf15662009-04-21 16:27:14 -0700639 mutex_lock(&lport->lp_mutex);
Joe Eykholtb1d9fd52009-07-29 17:04:22 -0700640 lport->state = LPORT_ST_DISABLED;
Abhijeet Joglekarbbf15662009-04-21 16:27:14 -0700641 lport->link_up = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800642 lport->tt.frame_send = fc_frame_drop;
Abhijeet Joglekarbbf15662009-04-21 16:27:14 -0700643 mutex_unlock(&lport->lp_mutex);
644
Robert Love42e9a922008-12-09 15:10:17 -0800645 lport->tt.fcp_abort_io(lport);
Joe Eykholte9ba8b42009-07-29 17:04:33 -0700646 lport->tt.disc_stop_final(lport);
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -0800647 lport->tt.exch_mgr_reset(lport, 0, 0);
Robert Love42e9a922008-12-09 15:10:17 -0800648 return 0;
649}
650EXPORT_SYMBOL(fc_lport_destroy);
651
652/**
Robert Love34f42a02009-02-27 10:55:45 -0800653 * fc_set_mfs() - sets up the mfs for the corresponding fc_lport
Robert Love42e9a922008-12-09 15:10:17 -0800654 * @lport: fc_lport pointer to unregister
655 * @mfs: the new mfs for fc_lport
656 *
657 * Set mfs for the given fc_lport to the new mfs.
658 *
659 * Return: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -0800660 */
Robert Love42e9a922008-12-09 15:10:17 -0800661int fc_set_mfs(struct fc_lport *lport, u32 mfs)
662{
663 unsigned int old_mfs;
664 int rc = -EINVAL;
665
666 mutex_lock(&lport->lp_mutex);
667
668 old_mfs = lport->mfs;
669
670 if (mfs >= FC_MIN_MAX_FRAME) {
671 mfs &= ~3;
672 if (mfs > FC_MAX_FRAME)
673 mfs = FC_MAX_FRAME;
674 mfs -= sizeof(struct fc_frame_header);
675 lport->mfs = mfs;
676 rc = 0;
677 }
678
679 if (!rc && mfs < old_mfs)
680 fc_lport_enter_reset(lport);
681
682 mutex_unlock(&lport->lp_mutex);
683
684 return rc;
685}
686EXPORT_SYMBOL(fc_set_mfs);
687
688/**
Robert Love34f42a02009-02-27 10:55:45 -0800689 * fc_lport_disc_callback() - Callback for discovery events
Robert Love42e9a922008-12-09 15:10:17 -0800690 * @lport: FC local port
691 * @event: The discovery event
692 */
693void fc_lport_disc_callback(struct fc_lport *lport, enum fc_disc_event event)
694{
695 switch (event) {
696 case DISC_EV_SUCCESS:
Robert Love74147052009-06-10 15:31:10 -0700697 FC_LPORT_DBG(lport, "Discovery succeeded\n");
Robert Love42e9a922008-12-09 15:10:17 -0800698 break;
699 case DISC_EV_FAILED:
Robert Love74147052009-06-10 15:31:10 -0700700 printk(KERN_ERR "libfc: Discovery failed for port (%6x)\n",
701 fc_host_port_id(lport->host));
Robert Love42e9a922008-12-09 15:10:17 -0800702 mutex_lock(&lport->lp_mutex);
703 fc_lport_enter_reset(lport);
704 mutex_unlock(&lport->lp_mutex);
705 break;
706 case DISC_EV_NONE:
707 WARN_ON(1);
708 break;
709 }
710}
711
712/**
Robert Love34f42a02009-02-27 10:55:45 -0800713 * fc_rport_enter_ready() - Enter the ready state and start discovery
Robert Love42e9a922008-12-09 15:10:17 -0800714 * @lport: Fibre Channel local port that is ready
715 *
716 * Locking Note: The lport lock is expected to be held before calling
717 * this routine.
718 */
719static void fc_lport_enter_ready(struct fc_lport *lport)
720{
Robert Love74147052009-06-10 15:31:10 -0700721 FC_LPORT_DBG(lport, "Entered READY from state %s\n",
722 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800723
724 fc_lport_state_enter(lport, LPORT_ST_READY);
725
726 lport->tt.disc_start(fc_lport_disc_callback, lport);
727}
728
729/**
Robert Love34f42a02009-02-27 10:55:45 -0800730 * fc_lport_recv_flogi_req() - Receive a FLOGI request
Robert Love42e9a922008-12-09 15:10:17 -0800731 * @sp_in: The sequence the FLOGI is on
732 * @rx_fp: The frame the FLOGI is in
733 * @lport: The lport that recieved the request
734 *
735 * A received FLOGI request indicates a point-to-point connection.
736 * Accept it with the common service parameters indicating our N port.
737 * Set up to do a PLOGI if we have the higher-number WWPN.
738 *
739 * Locking Note: The lport lock is exected to be held before calling
740 * this function.
741 */
742static void fc_lport_recv_flogi_req(struct fc_seq *sp_in,
743 struct fc_frame *rx_fp,
744 struct fc_lport *lport)
745{
746 struct fc_frame *fp;
747 struct fc_frame_header *fh;
748 struct fc_seq *sp;
749 struct fc_exch *ep;
750 struct fc_els_flogi *flp;
751 struct fc_els_flogi *new_flp;
752 u64 remote_wwpn;
753 u32 remote_fid;
754 u32 local_fid;
755 u32 f_ctl;
756
Robert Love74147052009-06-10 15:31:10 -0700757 FC_LPORT_DBG(lport, "Received FLOGI request while in state %s\n",
758 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800759
760 fh = fc_frame_header_get(rx_fp);
761 remote_fid = ntoh24(fh->fh_s_id);
762 flp = fc_frame_payload_get(rx_fp, sizeof(*flp));
763 if (!flp)
764 goto out;
765 remote_wwpn = get_unaligned_be64(&flp->fl_wwpn);
766 if (remote_wwpn == lport->wwpn) {
Robert Love74147052009-06-10 15:31:10 -0700767 printk(KERN_WARNING "libfc: Received FLOGI from port "
768 "with same WWPN %llx\n", remote_wwpn);
Robert Love42e9a922008-12-09 15:10:17 -0800769 goto out;
770 }
Robert Love74147052009-06-10 15:31:10 -0700771 FC_LPORT_DBG(lport, "FLOGI from port WWPN %llx\n", remote_wwpn);
Robert Love42e9a922008-12-09 15:10:17 -0800772
773 /*
774 * XXX what is the right thing to do for FIDs?
775 * The originator might expect our S_ID to be 0xfffffe.
776 * But if so, both of us could end up with the same FID.
777 */
778 local_fid = FC_LOCAL_PTP_FID_LO;
779 if (remote_wwpn < lport->wwpn) {
780 local_fid = FC_LOCAL_PTP_FID_HI;
781 if (!remote_fid || remote_fid == local_fid)
782 remote_fid = FC_LOCAL_PTP_FID_LO;
783 } else if (!remote_fid) {
784 remote_fid = FC_LOCAL_PTP_FID_HI;
785 }
786
787 fc_host_port_id(lport->host) = local_fid;
788
789 fp = fc_frame_alloc(lport, sizeof(*flp));
790 if (fp) {
791 sp = lport->tt.seq_start_next(fr_seq(rx_fp));
792 new_flp = fc_frame_payload_get(fp, sizeof(*flp));
793 fc_lport_flogi_fill(lport, new_flp, ELS_FLOGI);
794 new_flp->fl_cmd = (u8) ELS_LS_ACC;
795
796 /*
797 * Send the response. If this fails, the originator should
798 * repeat the sequence.
799 */
800 f_ctl = FC_FC_EX_CTX | FC_FC_LAST_SEQ | FC_FC_END_SEQ;
801 ep = fc_seq_exch(sp);
802 fc_fill_fc_hdr(fp, FC_RCTL_ELS_REP, ep->did, ep->sid,
803 FC_TYPE_ELS, f_ctl, 0);
804 lport->tt.seq_send(lport, sp, fp);
805
806 } else {
807 fc_lport_error(lport, fp);
808 }
809 fc_lport_ptp_setup(lport, remote_fid, remote_wwpn,
810 get_unaligned_be64(&flp->fl_wwnn));
811
812 lport->tt.disc_start(fc_lport_disc_callback, lport);
813
814out:
815 sp = fr_seq(rx_fp);
816 fc_frame_free(rx_fp);
817}
818
819/**
Robert Love34f42a02009-02-27 10:55:45 -0800820 * fc_lport_recv_req() - The generic lport request handler
Robert Love42e9a922008-12-09 15:10:17 -0800821 * @lport: The lport that received the request
822 * @sp: The sequence the request is on
823 * @fp: The frame the request is in
824 *
825 * This function will see if the lport handles the request or
826 * if an rport should handle the request.
827 *
828 * Locking Note: This function should not be called with the lport
829 * lock held becuase it will grab the lock.
830 */
831static void fc_lport_recv_req(struct fc_lport *lport, struct fc_seq *sp,
832 struct fc_frame *fp)
833{
834 struct fc_frame_header *fh = fc_frame_header_get(fp);
835 void (*recv) (struct fc_seq *, struct fc_frame *, struct fc_lport *);
836 struct fc_rport *rport;
837 u32 s_id;
838 u32 d_id;
839 struct fc_seq_els_data rjt_data;
840
841 mutex_lock(&lport->lp_mutex);
842
843 /*
844 * Handle special ELS cases like FLOGI, LOGO, and
845 * RSCN here. These don't require a session.
846 * Even if we had a session, it might not be ready.
847 */
Joe Eykholte9ba8b42009-07-29 17:04:33 -0700848 if (!lport->link_up)
849 fc_frame_free(fp);
850 else if (fh->fh_type == FC_TYPE_ELS &&
851 fh->fh_r_ctl == FC_RCTL_ELS_REQ) {
Robert Love42e9a922008-12-09 15:10:17 -0800852 /*
853 * Check opcode.
854 */
855 recv = NULL;
856 switch (fc_frame_payload_op(fp)) {
857 case ELS_FLOGI:
858 recv = fc_lport_recv_flogi_req;
859 break;
860 case ELS_LOGO:
861 fh = fc_frame_header_get(fp);
862 if (ntoh24(fh->fh_s_id) == FC_FID_FLOGI)
863 recv = fc_lport_recv_logo_req;
864 break;
865 case ELS_RSCN:
866 recv = lport->tt.disc_recv_req;
867 break;
868 case ELS_ECHO:
869 recv = fc_lport_recv_echo_req;
870 break;
871 case ELS_RLIR:
872 recv = fc_lport_recv_rlir_req;
873 break;
874 case ELS_RNID:
875 recv = fc_lport_recv_rnid_req;
876 break;
877 case ELS_ADISC:
878 recv = fc_lport_recv_adisc_req;
879 break;
880 }
881
882 if (recv)
883 recv(sp, fp, lport);
884 else {
885 /*
886 * Find session.
887 * If this is a new incoming PLOGI, we won't find it.
888 */
889 s_id = ntoh24(fh->fh_s_id);
890 d_id = ntoh24(fh->fh_d_id);
891
892 rport = lport->tt.rport_lookup(lport, s_id);
893 if (rport)
894 lport->tt.rport_recv_req(sp, fp, rport);
895 else {
896 rjt_data.fp = NULL;
897 rjt_data.reason = ELS_RJT_UNAB;
898 rjt_data.explan = ELS_EXPL_NONE;
899 lport->tt.seq_els_rsp_send(sp,
900 ELS_LS_RJT,
901 &rjt_data);
902 fc_frame_free(fp);
903 }
904 }
905 } else {
Robert Love74147052009-06-10 15:31:10 -0700906 FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)\n",
907 fr_eof(fp));
Robert Love42e9a922008-12-09 15:10:17 -0800908 fc_frame_free(fp);
909 }
910 mutex_unlock(&lport->lp_mutex);
911
912 /*
913 * The common exch_done for all request may not be good
914 * if any request requires longer hold on exhange. XXX
915 */
916 lport->tt.exch_done(sp);
917}
918
919/**
Robert Love34f42a02009-02-27 10:55:45 -0800920 * fc_lport_reset() - Reset an lport
Robert Love42e9a922008-12-09 15:10:17 -0800921 * @lport: The lport which should be reset
922 *
923 * Locking Note: This functions should not be called with the
924 * lport lock held.
925 */
926int fc_lport_reset(struct fc_lport *lport)
927{
Steve Maf7db2c12009-02-27 10:55:13 -0800928 cancel_delayed_work_sync(&lport->retry_work);
Robert Love42e9a922008-12-09 15:10:17 -0800929 mutex_lock(&lport->lp_mutex);
930 fc_lport_enter_reset(lport);
931 mutex_unlock(&lport->lp_mutex);
932 return 0;
933}
934EXPORT_SYMBOL(fc_lport_reset);
935
936/**
Joe Eykholt1190d922009-07-29 17:04:27 -0700937 * fc_lport_reset_locked() - Reset the local port
Robert Love42e9a922008-12-09 15:10:17 -0800938 * @lport: Fibre Channel local port to be reset
939 *
940 * Locking Note: The lport lock is expected to be held before calling
941 * this routine.
942 */
Joe Eykholt1190d922009-07-29 17:04:27 -0700943static void fc_lport_reset_locked(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -0800944{
Robert Love42e9a922008-12-09 15:10:17 -0800945 if (lport->dns_rp)
946 lport->tt.rport_logoff(lport->dns_rp);
947
948 if (lport->ptp_rp) {
949 lport->tt.rport_logoff(lport->ptp_rp);
950 lport->ptp_rp = NULL;
951 }
952
953 lport->tt.disc_stop(lport);
954
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -0800955 lport->tt.exch_mgr_reset(lport, 0, 0);
Robert Love42e9a922008-12-09 15:10:17 -0800956 fc_host_fabric_name(lport->host) = 0;
957 fc_host_port_id(lport->host) = 0;
Joe Eykholt1190d922009-07-29 17:04:27 -0700958}
Robert Love42e9a922008-12-09 15:10:17 -0800959
Joe Eykholt1190d922009-07-29 17:04:27 -0700960/**
961 * fc_lport_enter_reset() - Reset the local port
962 * @lport: Fibre Channel local port to be reset
963 *
964 * Locking Note: The lport lock is expected to be held before calling
965 * this routine.
966 */
967static void fc_lport_enter_reset(struct fc_lport *lport)
968{
969 FC_LPORT_DBG(lport, "Entered RESET state from %s state\n",
970 fc_lport_state(lport));
971
972 fc_lport_state_enter(lport, LPORT_ST_RESET);
973 fc_lport_reset_locked(lport);
Vasu Devbc0e17f2009-02-27 10:54:57 -0800974 if (lport->link_up)
Robert Love42e9a922008-12-09 15:10:17 -0800975 fc_lport_enter_flogi(lport);
976}
977
978/**
Joe Eykholt1190d922009-07-29 17:04:27 -0700979 * fc_lport_enter_disabled() - disable the local port
980 * @lport: Fibre Channel local port to be reset
981 *
982 * Locking Note: The lport lock is expected to be held before calling
983 * this routine.
984 */
985static void fc_lport_enter_disabled(struct fc_lport *lport)
986{
987 FC_LPORT_DBG(lport, "Entered disabled state from %s state\n",
988 fc_lport_state(lport));
989
990 fc_lport_state_enter(lport, LPORT_ST_DISABLED);
991 fc_lport_reset_locked(lport);
992}
993
994/**
Robert Love34f42a02009-02-27 10:55:45 -0800995 * fc_lport_error() - Handler for any errors
Robert Love42e9a922008-12-09 15:10:17 -0800996 * @lport: The fc_lport object
997 * @fp: The frame pointer
998 *
999 * If the error was caused by a resource allocation failure
1000 * then wait for half a second and retry, otherwise retry
1001 * after the e_d_tov time.
1002 */
1003static void fc_lport_error(struct fc_lport *lport, struct fc_frame *fp)
1004{
1005 unsigned long delay = 0;
Robert Love74147052009-06-10 15:31:10 -07001006 FC_LPORT_DBG(lport, "Error %ld in state %s, retries %d\n",
1007 PTR_ERR(fp), fc_lport_state(lport),
1008 lport->retry_count);
Robert Love42e9a922008-12-09 15:10:17 -08001009
1010 if (!fp || PTR_ERR(fp) == -FC_EX_TIMEOUT) {
1011 /*
1012 * Memory allocation failure, or the exchange timed out.
1013 * Retry after delay
1014 */
1015 if (lport->retry_count < lport->max_retry_count) {
1016 lport->retry_count++;
1017 if (!fp)
1018 delay = msecs_to_jiffies(500);
1019 else
1020 delay = msecs_to_jiffies(lport->e_d_tov);
1021
1022 schedule_delayed_work(&lport->retry_work, delay);
1023 } else {
1024 switch (lport->state) {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -07001025 case LPORT_ST_DISABLED:
Robert Love42e9a922008-12-09 15:10:17 -08001026 case LPORT_ST_READY:
1027 case LPORT_ST_RESET:
1028 case LPORT_ST_RPN_ID:
1029 case LPORT_ST_RFT_ID:
1030 case LPORT_ST_SCR:
1031 case LPORT_ST_DNS:
1032 case LPORT_ST_FLOGI:
1033 case LPORT_ST_LOGO:
1034 fc_lport_enter_reset(lport);
1035 break;
1036 }
1037 }
1038 }
1039}
1040
1041/**
Robert Love34f42a02009-02-27 10:55:45 -08001042 * fc_lport_rft_id_resp() - Handle response to Register Fibre
1043 * Channel Types by ID (RPN_ID) request
Robert Love42e9a922008-12-09 15:10:17 -08001044 * @sp: current sequence in RPN_ID exchange
1045 * @fp: response frame
1046 * @lp_arg: Fibre Channel host port instance
1047 *
1048 * Locking Note: This function will be called without the lport lock
1049 * held, but it will lock, call an _enter_* function or fc_lport_error
1050 * and then unlock the lport.
1051 */
1052static void fc_lport_rft_id_resp(struct fc_seq *sp, struct fc_frame *fp,
1053 void *lp_arg)
1054{
1055 struct fc_lport *lport = lp_arg;
1056 struct fc_frame_header *fh;
1057 struct fc_ct_hdr *ct;
1058
1059 if (fp == ERR_PTR(-FC_EX_CLOSED))
1060 return;
1061
1062 mutex_lock(&lport->lp_mutex);
1063
Robert Love74147052009-06-10 15:31:10 -07001064 FC_LPORT_DBG(lport, "Received a RFT_ID response\n");
Robert Love42e9a922008-12-09 15:10:17 -08001065
1066 if (lport->state != LPORT_ST_RFT_ID) {
Robert Love74147052009-06-10 15:31:10 -07001067 FC_LPORT_DBG(lport, "Received a RFT_ID response, but in state "
1068 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001069 if (IS_ERR(fp))
1070 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001071 goto out;
1072 }
1073
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001074 if (IS_ERR(fp)) {
1075 fc_lport_error(lport, fp);
1076 goto err;
1077 }
1078
Robert Love42e9a922008-12-09 15:10:17 -08001079 fh = fc_frame_header_get(fp);
1080 ct = fc_frame_payload_get(fp, sizeof(*ct));
1081
1082 if (fh && ct && fh->fh_type == FC_TYPE_CT &&
1083 ct->ct_fs_type == FC_FST_DIR &&
1084 ct->ct_fs_subtype == FC_NS_SUBTYPE &&
1085 ntohs(ct->ct_cmd) == FC_FS_ACC)
1086 fc_lport_enter_scr(lport);
1087 else
1088 fc_lport_error(lport, fp);
1089out:
1090 fc_frame_free(fp);
1091err:
1092 mutex_unlock(&lport->lp_mutex);
1093}
1094
1095/**
Robert Love34f42a02009-02-27 10:55:45 -08001096 * fc_lport_rpn_id_resp() - Handle response to Register Port
1097 * Name by ID (RPN_ID) request
Robert Love42e9a922008-12-09 15:10:17 -08001098 * @sp: current sequence in RPN_ID exchange
1099 * @fp: response frame
1100 * @lp_arg: Fibre Channel host port instance
1101 *
1102 * Locking Note: This function will be called without the lport lock
1103 * held, but it will lock, call an _enter_* function or fc_lport_error
1104 * and then unlock the lport.
1105 */
1106static void fc_lport_rpn_id_resp(struct fc_seq *sp, struct fc_frame *fp,
1107 void *lp_arg)
1108{
1109 struct fc_lport *lport = lp_arg;
1110 struct fc_frame_header *fh;
1111 struct fc_ct_hdr *ct;
1112
1113 if (fp == ERR_PTR(-FC_EX_CLOSED))
1114 return;
1115
1116 mutex_lock(&lport->lp_mutex);
1117
Robert Love74147052009-06-10 15:31:10 -07001118 FC_LPORT_DBG(lport, "Received a RPN_ID response\n");
Robert Love42e9a922008-12-09 15:10:17 -08001119
1120 if (lport->state != LPORT_ST_RPN_ID) {
Robert Love74147052009-06-10 15:31:10 -07001121 FC_LPORT_DBG(lport, "Received a RPN_ID response, but in state "
1122 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001123 if (IS_ERR(fp))
1124 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001125 goto out;
1126 }
1127
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001128 if (IS_ERR(fp)) {
1129 fc_lport_error(lport, fp);
1130 goto err;
1131 }
1132
Robert Love42e9a922008-12-09 15:10:17 -08001133 fh = fc_frame_header_get(fp);
1134 ct = fc_frame_payload_get(fp, sizeof(*ct));
1135 if (fh && ct && fh->fh_type == FC_TYPE_CT &&
1136 ct->ct_fs_type == FC_FST_DIR &&
1137 ct->ct_fs_subtype == FC_NS_SUBTYPE &&
1138 ntohs(ct->ct_cmd) == FC_FS_ACC)
1139 fc_lport_enter_rft_id(lport);
1140 else
1141 fc_lport_error(lport, fp);
1142
1143out:
1144 fc_frame_free(fp);
1145err:
1146 mutex_unlock(&lport->lp_mutex);
1147}
1148
1149/**
Robert Love34f42a02009-02-27 10:55:45 -08001150 * fc_lport_scr_resp() - Handle response to State Change Register (SCR) request
Robert Love42e9a922008-12-09 15:10:17 -08001151 * @sp: current sequence in SCR exchange
1152 * @fp: response frame
1153 * @lp_arg: Fibre Channel lport port instance that sent the registration request
1154 *
1155 * Locking Note: This function will be called without the lport lock
1156 * held, but it will lock, call an _enter_* function or fc_lport_error
1157 * and then unlock the lport.
1158 */
1159static void fc_lport_scr_resp(struct fc_seq *sp, struct fc_frame *fp,
1160 void *lp_arg)
1161{
1162 struct fc_lport *lport = lp_arg;
1163 u8 op;
1164
1165 if (fp == ERR_PTR(-FC_EX_CLOSED))
1166 return;
1167
1168 mutex_lock(&lport->lp_mutex);
1169
Robert Love74147052009-06-10 15:31:10 -07001170 FC_LPORT_DBG(lport, "Received a SCR response\n");
Robert Love42e9a922008-12-09 15:10:17 -08001171
1172 if (lport->state != LPORT_ST_SCR) {
Robert Love74147052009-06-10 15:31:10 -07001173 FC_LPORT_DBG(lport, "Received a SCR response, but in state "
1174 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001175 if (IS_ERR(fp))
1176 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001177 goto out;
1178 }
1179
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001180 if (IS_ERR(fp)) {
1181 fc_lport_error(lport, fp);
1182 goto err;
1183 }
1184
Robert Love42e9a922008-12-09 15:10:17 -08001185 op = fc_frame_payload_op(fp);
1186 if (op == ELS_LS_ACC)
1187 fc_lport_enter_ready(lport);
1188 else
1189 fc_lport_error(lport, fp);
1190
1191out:
1192 fc_frame_free(fp);
1193err:
1194 mutex_unlock(&lport->lp_mutex);
1195}
1196
1197/**
Robert Love34f42a02009-02-27 10:55:45 -08001198 * fc_lport_enter_scr() - Send a State Change Register (SCR) request
Robert Love42e9a922008-12-09 15:10:17 -08001199 * @lport: Fibre Channel local port to register for state changes
1200 *
1201 * Locking Note: The lport lock is expected to be held before calling
1202 * this routine.
1203 */
1204static void fc_lport_enter_scr(struct fc_lport *lport)
1205{
1206 struct fc_frame *fp;
1207
Robert Love74147052009-06-10 15:31:10 -07001208 FC_LPORT_DBG(lport, "Entered SCR state from %s state\n",
1209 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001210
1211 fc_lport_state_enter(lport, LPORT_ST_SCR);
1212
1213 fp = fc_frame_alloc(lport, sizeof(struct fc_els_scr));
1214 if (!fp) {
1215 fc_lport_error(lport, fp);
1216 return;
1217 }
1218
1219 if (!lport->tt.elsct_send(lport, NULL, fp, ELS_SCR,
1220 fc_lport_scr_resp, lport, lport->e_d_tov))
1221 fc_lport_error(lport, fp);
1222}
1223
1224/**
Robert Love34f42a02009-02-27 10:55:45 -08001225 * fc_lport_enter_rft_id() - Register FC4-types with the name server
Robert Love42e9a922008-12-09 15:10:17 -08001226 * @lport: Fibre Channel local port to register
1227 *
1228 * Locking Note: The lport lock is expected to be held before calling
1229 * this routine.
1230 */
1231static void fc_lport_enter_rft_id(struct fc_lport *lport)
1232{
1233 struct fc_frame *fp;
1234 struct fc_ns_fts *lps;
1235 int i;
1236
Robert Love74147052009-06-10 15:31:10 -07001237 FC_LPORT_DBG(lport, "Entered RFT_ID state from %s state\n",
1238 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001239
1240 fc_lport_state_enter(lport, LPORT_ST_RFT_ID);
1241
1242 lps = &lport->fcts;
1243 i = sizeof(lps->ff_type_map) / sizeof(lps->ff_type_map[0]);
1244 while (--i >= 0)
1245 if (ntohl(lps->ff_type_map[i]) != 0)
1246 break;
1247 if (i < 0) {
1248 /* nothing to register, move on to SCR */
1249 fc_lport_enter_scr(lport);
1250 return;
1251 }
1252
1253 fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) +
1254 sizeof(struct fc_ns_rft));
1255 if (!fp) {
1256 fc_lport_error(lport, fp);
1257 return;
1258 }
1259
1260 if (!lport->tt.elsct_send(lport, NULL, fp, FC_NS_RFT_ID,
1261 fc_lport_rft_id_resp,
1262 lport, lport->e_d_tov))
1263 fc_lport_error(lport, fp);
1264}
1265
1266/**
Robert Love34f42a02009-02-27 10:55:45 -08001267 * fc_rport_enter_rft_id() - Register port name with the name server
Robert Love42e9a922008-12-09 15:10:17 -08001268 * @lport: Fibre Channel local port to register
1269 *
1270 * Locking Note: The lport lock is expected to be held before calling
1271 * this routine.
1272 */
1273static void fc_lport_enter_rpn_id(struct fc_lport *lport)
1274{
1275 struct fc_frame *fp;
1276
Robert Love74147052009-06-10 15:31:10 -07001277 FC_LPORT_DBG(lport, "Entered RPN_ID state from %s state\n",
1278 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001279
1280 fc_lport_state_enter(lport, LPORT_ST_RPN_ID);
1281
1282 fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) +
1283 sizeof(struct fc_ns_rn_id));
1284 if (!fp) {
1285 fc_lport_error(lport, fp);
1286 return;
1287 }
1288
1289 if (!lport->tt.elsct_send(lport, NULL, fp, FC_NS_RPN_ID,
1290 fc_lport_rpn_id_resp,
1291 lport, lport->e_d_tov))
1292 fc_lport_error(lport, fp);
1293}
1294
1295static struct fc_rport_operations fc_lport_rport_ops = {
1296 .event_callback = fc_lport_rport_callback,
1297};
1298
1299/**
Robert Love34f42a02009-02-27 10:55:45 -08001300 * fc_rport_enter_dns() - Create a rport to the name server
Robert Love42e9a922008-12-09 15:10:17 -08001301 * @lport: Fibre Channel local port requesting a rport for the name server
1302 *
1303 * Locking Note: The lport lock is expected to be held before calling
1304 * this routine.
1305 */
1306static void fc_lport_enter_dns(struct fc_lport *lport)
1307{
1308 struct fc_rport *rport;
Joe Eykholtab28f1f2009-08-25 14:00:34 -07001309 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -08001310 struct fc_disc_port dp;
1311
1312 dp.ids.port_id = FC_FID_DIR_SERV;
1313 dp.ids.port_name = -1;
1314 dp.ids.node_name = -1;
1315 dp.ids.roles = FC_RPORT_ROLE_UNKNOWN;
1316 dp.lp = lport;
1317
Robert Love74147052009-06-10 15:31:10 -07001318 FC_LPORT_DBG(lport, "Entered DNS state from %s state\n",
1319 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001320
1321 fc_lport_state_enter(lport, LPORT_ST_DNS);
1322
Robert Love5101ff92009-02-27 10:55:18 -08001323 rport = lport->tt.rport_create(&dp);
Robert Love42e9a922008-12-09 15:10:17 -08001324 if (!rport)
1325 goto err;
1326
1327 rdata = rport->dd_data;
1328 rdata->ops = &fc_lport_rport_ops;
1329 lport->tt.rport_login(rport);
1330 return;
1331
1332err:
1333 fc_lport_error(lport, NULL);
1334}
1335
1336/**
Robert Love34f42a02009-02-27 10:55:45 -08001337 * fc_lport_timeout() - Handler for the retry_work timer.
Robert Love42e9a922008-12-09 15:10:17 -08001338 * @work: The work struct of the fc_lport
1339 */
1340static void fc_lport_timeout(struct work_struct *work)
1341{
1342 struct fc_lport *lport =
1343 container_of(work, struct fc_lport,
1344 retry_work.work);
1345
1346 mutex_lock(&lport->lp_mutex);
1347
1348 switch (lport->state) {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -07001349 case LPORT_ST_DISABLED:
Robert Love42e9a922008-12-09 15:10:17 -08001350 case LPORT_ST_READY:
1351 case LPORT_ST_RESET:
1352 WARN_ON(1);
1353 break;
1354 case LPORT_ST_FLOGI:
1355 fc_lport_enter_flogi(lport);
1356 break;
1357 case LPORT_ST_DNS:
1358 fc_lport_enter_dns(lport);
1359 break;
1360 case LPORT_ST_RPN_ID:
1361 fc_lport_enter_rpn_id(lport);
1362 break;
1363 case LPORT_ST_RFT_ID:
1364 fc_lport_enter_rft_id(lport);
1365 break;
1366 case LPORT_ST_SCR:
1367 fc_lport_enter_scr(lport);
1368 break;
1369 case LPORT_ST_LOGO:
1370 fc_lport_enter_logo(lport);
1371 break;
1372 }
1373
1374 mutex_unlock(&lport->lp_mutex);
1375}
1376
1377/**
Robert Love34f42a02009-02-27 10:55:45 -08001378 * fc_lport_logo_resp() - Handle response to LOGO request
Robert Love42e9a922008-12-09 15:10:17 -08001379 * @sp: current sequence in LOGO exchange
1380 * @fp: response frame
1381 * @lp_arg: Fibre Channel lport port instance that sent the LOGO request
1382 *
1383 * Locking Note: This function will be called without the lport lock
1384 * held, but it will lock, call an _enter_* function or fc_lport_error
1385 * and then unlock the lport.
1386 */
1387static void fc_lport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
1388 void *lp_arg)
1389{
1390 struct fc_lport *lport = lp_arg;
1391 u8 op;
1392
1393 if (fp == ERR_PTR(-FC_EX_CLOSED))
1394 return;
1395
1396 mutex_lock(&lport->lp_mutex);
1397
Robert Love74147052009-06-10 15:31:10 -07001398 FC_LPORT_DBG(lport, "Received a LOGO response\n");
Robert Love42e9a922008-12-09 15:10:17 -08001399
1400 if (lport->state != LPORT_ST_LOGO) {
Robert Love74147052009-06-10 15:31:10 -07001401 FC_LPORT_DBG(lport, "Received a LOGO response, but in state "
1402 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001403 if (IS_ERR(fp))
1404 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001405 goto out;
1406 }
1407
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001408 if (IS_ERR(fp)) {
1409 fc_lport_error(lport, fp);
1410 goto err;
1411 }
1412
Robert Love42e9a922008-12-09 15:10:17 -08001413 op = fc_frame_payload_op(fp);
1414 if (op == ELS_LS_ACC)
Joe Eykholt1190d922009-07-29 17:04:27 -07001415 fc_lport_enter_disabled(lport);
Robert Love42e9a922008-12-09 15:10:17 -08001416 else
1417 fc_lport_error(lport, fp);
1418
1419out:
1420 fc_frame_free(fp);
1421err:
1422 mutex_unlock(&lport->lp_mutex);
1423}
1424
1425/**
Robert Love34f42a02009-02-27 10:55:45 -08001426 * fc_rport_enter_logo() - Logout of the fabric
Robert Love42e9a922008-12-09 15:10:17 -08001427 * @lport: Fibre Channel local port to be logged out
1428 *
1429 * Locking Note: The lport lock is expected to be held before calling
1430 * this routine.
1431 */
1432static void fc_lport_enter_logo(struct fc_lport *lport)
1433{
1434 struct fc_frame *fp;
1435 struct fc_els_logo *logo;
1436
Robert Love74147052009-06-10 15:31:10 -07001437 FC_LPORT_DBG(lport, "Entered LOGO state from %s state\n",
1438 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001439
1440 fc_lport_state_enter(lport, LPORT_ST_LOGO);
1441
Robert Love42e9a922008-12-09 15:10:17 -08001442 fp = fc_frame_alloc(lport, sizeof(*logo));
1443 if (!fp) {
1444 fc_lport_error(lport, fp);
1445 return;
1446 }
1447
1448 if (!lport->tt.elsct_send(lport, NULL, fp, ELS_LOGO, fc_lport_logo_resp,
1449 lport, lport->e_d_tov))
1450 fc_lport_error(lport, fp);
1451}
1452
1453/**
Robert Love34f42a02009-02-27 10:55:45 -08001454 * fc_lport_flogi_resp() - Handle response to FLOGI request
Robert Love42e9a922008-12-09 15:10:17 -08001455 * @sp: current sequence in FLOGI exchange
1456 * @fp: response frame
1457 * @lp_arg: Fibre Channel lport port instance that sent the FLOGI request
1458 *
1459 * Locking Note: This function will be called without the lport lock
1460 * held, but it will lock, call an _enter_* function or fc_lport_error
1461 * and then unlock the lport.
1462 */
1463static void fc_lport_flogi_resp(struct fc_seq *sp, struct fc_frame *fp,
1464 void *lp_arg)
1465{
1466 struct fc_lport *lport = lp_arg;
1467 struct fc_frame_header *fh;
1468 struct fc_els_flogi *flp;
1469 u32 did;
1470 u16 csp_flags;
1471 unsigned int r_a_tov;
1472 unsigned int e_d_tov;
1473 u16 mfs;
1474
1475 if (fp == ERR_PTR(-FC_EX_CLOSED))
1476 return;
1477
1478 mutex_lock(&lport->lp_mutex);
1479
Robert Love74147052009-06-10 15:31:10 -07001480 FC_LPORT_DBG(lport, "Received a FLOGI response\n");
Robert Love42e9a922008-12-09 15:10:17 -08001481
1482 if (lport->state != LPORT_ST_FLOGI) {
Robert Love74147052009-06-10 15:31:10 -07001483 FC_LPORT_DBG(lport, "Received a FLOGI response, but in state "
1484 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001485 if (IS_ERR(fp))
1486 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001487 goto out;
1488 }
1489
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001490 if (IS_ERR(fp)) {
1491 fc_lport_error(lport, fp);
1492 goto err;
1493 }
1494
Robert Love42e9a922008-12-09 15:10:17 -08001495 fh = fc_frame_header_get(fp);
1496 did = ntoh24(fh->fh_d_id);
1497 if (fc_frame_payload_op(fp) == ELS_LS_ACC && did != 0) {
1498
Robert Love74147052009-06-10 15:31:10 -07001499 printk(KERN_INFO "libfc: Assigned FID (%6x) in FLOGI response\n",
1500 did);
Robert Love42e9a922008-12-09 15:10:17 -08001501 fc_host_port_id(lport->host) = did;
1502
1503 flp = fc_frame_payload_get(fp, sizeof(*flp));
1504 if (flp) {
1505 mfs = ntohs(flp->fl_csp.sp_bb_data) &
1506 FC_SP_BB_DATA_MASK;
1507 if (mfs >= FC_SP_MIN_MAX_PAYLOAD &&
1508 mfs < lport->mfs)
1509 lport->mfs = mfs;
1510 csp_flags = ntohs(flp->fl_csp.sp_features);
1511 r_a_tov = ntohl(flp->fl_csp.sp_r_a_tov);
1512 e_d_tov = ntohl(flp->fl_csp.sp_e_d_tov);
1513 if (csp_flags & FC_SP_FT_EDTR)
1514 e_d_tov /= 1000000;
1515 if ((csp_flags & FC_SP_FT_FPORT) == 0) {
1516 if (e_d_tov > lport->e_d_tov)
1517 lport->e_d_tov = e_d_tov;
1518 lport->r_a_tov = 2 * e_d_tov;
Robert Love74147052009-06-10 15:31:10 -07001519 printk(KERN_INFO "libfc: Port (%6x) entered "
1520 "point to point mode\n", did);
Robert Love42e9a922008-12-09 15:10:17 -08001521 fc_lport_ptp_setup(lport, ntoh24(fh->fh_s_id),
1522 get_unaligned_be64(
1523 &flp->fl_wwpn),
1524 get_unaligned_be64(
1525 &flp->fl_wwnn));
1526 } else {
1527 lport->e_d_tov = e_d_tov;
1528 lport->r_a_tov = r_a_tov;
1529 fc_host_fabric_name(lport->host) =
1530 get_unaligned_be64(&flp->fl_wwnn);
1531 fc_lport_enter_dns(lport);
1532 }
1533 }
1534
1535 if (flp) {
1536 csp_flags = ntohs(flp->fl_csp.sp_features);
1537 if ((csp_flags & FC_SP_FT_FPORT) == 0) {
1538 lport->tt.disc_start(fc_lport_disc_callback,
1539 lport);
1540 }
1541 }
1542 } else {
Robert Love74147052009-06-10 15:31:10 -07001543 FC_LPORT_DBG(lport, "Bad FLOGI response\n");
Robert Love42e9a922008-12-09 15:10:17 -08001544 }
1545
1546out:
1547 fc_frame_free(fp);
1548err:
1549 mutex_unlock(&lport->lp_mutex);
1550}
1551
1552/**
Robert Love34f42a02009-02-27 10:55:45 -08001553 * fc_rport_enter_flogi() - Send a FLOGI request to the fabric manager
Robert Love42e9a922008-12-09 15:10:17 -08001554 * @lport: Fibre Channel local port to be logged in to the fabric
1555 *
1556 * Locking Note: The lport lock is expected to be held before calling
1557 * this routine.
1558 */
1559void fc_lport_enter_flogi(struct fc_lport *lport)
1560{
1561 struct fc_frame *fp;
1562
Robert Love74147052009-06-10 15:31:10 -07001563 FC_LPORT_DBG(lport, "Entered FLOGI state from %s state\n",
1564 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001565
1566 fc_lport_state_enter(lport, LPORT_ST_FLOGI);
1567
1568 fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
1569 if (!fp)
1570 return fc_lport_error(lport, fp);
1571
1572 if (!lport->tt.elsct_send(lport, NULL, fp, ELS_FLOGI,
1573 fc_lport_flogi_resp, lport, lport->e_d_tov))
1574 fc_lport_error(lport, fp);
1575}
1576
1577/* Configure a fc_lport */
1578int fc_lport_config(struct fc_lport *lport)
1579{
1580 INIT_DELAYED_WORK(&lport->retry_work, fc_lport_timeout);
1581 mutex_init(&lport->lp_mutex);
1582
Joe Eykholtb1d9fd52009-07-29 17:04:22 -07001583 fc_lport_state_enter(lport, LPORT_ST_DISABLED);
Robert Love42e9a922008-12-09 15:10:17 -08001584
1585 fc_lport_add_fc4_type(lport, FC_TYPE_FCP);
1586 fc_lport_add_fc4_type(lport, FC_TYPE_CT);
1587
1588 return 0;
1589}
1590EXPORT_SYMBOL(fc_lport_config);
1591
1592int fc_lport_init(struct fc_lport *lport)
1593{
1594 if (!lport->tt.lport_recv)
1595 lport->tt.lport_recv = fc_lport_recv_req;
1596
1597 if (!lport->tt.lport_reset)
1598 lport->tt.lport_reset = fc_lport_reset;
1599
1600 fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
1601 fc_host_node_name(lport->host) = lport->wwnn;
1602 fc_host_port_name(lport->host) = lport->wwpn;
1603 fc_host_supported_classes(lport->host) = FC_COS_CLASS3;
1604 memset(fc_host_supported_fc4s(lport->host), 0,
1605 sizeof(fc_host_supported_fc4s(lport->host)));
1606 fc_host_supported_fc4s(lport->host)[2] = 1;
1607 fc_host_supported_fc4s(lport->host)[7] = 1;
1608
1609 /* This value is also unchanging */
1610 memset(fc_host_active_fc4s(lport->host), 0,
1611 sizeof(fc_host_active_fc4s(lport->host)));
1612 fc_host_active_fc4s(lport->host)[2] = 1;
1613 fc_host_active_fc4s(lport->host)[7] = 1;
1614 fc_host_maxframe_size(lport->host) = lport->mfs;
1615 fc_host_supported_speeds(lport->host) = 0;
1616 if (lport->link_supported_speeds & FC_PORTSPEED_1GBIT)
1617 fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_1GBIT;
1618 if (lport->link_supported_speeds & FC_PORTSPEED_10GBIT)
1619 fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_10GBIT;
1620
Vasu Dev96316092009-07-29 17:05:00 -07001621 INIT_LIST_HEAD(&lport->ema_list);
Robert Love42e9a922008-12-09 15:10:17 -08001622 return 0;
1623}
1624EXPORT_SYMBOL(fc_lport_init);