]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/scsi/fcoe/fcoe.c
c30fa27402d9eb1fb73b9aac5d37a1c22e0d0fa7
[karo-tx-linux.git] / drivers / scsi / fcoe / fcoe.c
1 /*
2  * Copyright(c) 2007 - 2009 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 #include <linux/module.h>
21 #include <linux/version.h>
22 #include <linux/spinlock.h>
23 #include <linux/netdevice.h>
24 #include <linux/etherdevice.h>
25 #include <linux/ethtool.h>
26 #include <linux/if_ether.h>
27 #include <linux/if_vlan.h>
28 #include <linux/crc32.h>
29 #include <linux/slab.h>
30 #include <linux/cpu.h>
31 #include <linux/fs.h>
32 #include <linux/sysfs.h>
33 #include <linux/ctype.h>
34 #include <linux/workqueue.h>
35 #include <scsi/scsi_tcq.h>
36 #include <scsi/scsicam.h>
37 #include <scsi/scsi_transport.h>
38 #include <scsi/scsi_transport_fc.h>
39 #include <net/rtnetlink.h>
40
41 #include <scsi/fc/fc_encaps.h>
42 #include <scsi/fc/fc_fip.h>
43
44 #include <scsi/libfc.h>
45 #include <scsi/fc_frame.h>
46 #include <scsi/libfcoe.h>
47
48 #include "fcoe.h"
49
50 MODULE_AUTHOR("Open-FCoE.org");
51 MODULE_DESCRIPTION("FCoE");
52 MODULE_LICENSE("GPL v2");
53
54 /* Performance tuning parameters for fcoe */
55 static unsigned int fcoe_ddp_min;
56 module_param_named(ddp_min, fcoe_ddp_min, uint, S_IRUGO | S_IWUSR);
57 MODULE_PARM_DESC(ddp_min, "Minimum I/O size in bytes for "      \
58                  "Direct Data Placement (DDP).");
59
60 DEFINE_MUTEX(fcoe_config_mutex);
61
62 static struct workqueue_struct *fcoe_wq;
63
64 /* fcoe_percpu_clean completion.  Waiter protected by fcoe_create_mutex */
65 static DECLARE_COMPLETION(fcoe_flush_completion);
66
67 /* fcoe host list */
68 /* must only by accessed under the RTNL mutex */
69 LIST_HEAD(fcoe_hostlist);
70 DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
71
72 /* Function Prototypes */
73 static int fcoe_reset(struct Scsi_Host *);
74 static int fcoe_xmit(struct fc_lport *, struct fc_frame *);
75 static int fcoe_rcv(struct sk_buff *, struct net_device *,
76                     struct packet_type *, struct net_device *);
77 static int fcoe_percpu_receive_thread(void *);
78 static void fcoe_percpu_clean(struct fc_lport *);
79 static int fcoe_link_speed_update(struct fc_lport *);
80 static int fcoe_link_ok(struct fc_lport *);
81
82 static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *);
83 static int fcoe_hostlist_add(const struct fc_lport *);
84
85 static int fcoe_device_notification(struct notifier_block *, ulong, void *);
86 static void fcoe_dev_setup(void);
87 static void fcoe_dev_cleanup(void);
88 static struct fcoe_interface
89 *fcoe_hostlist_lookup_port(const struct net_device *);
90
91 static int fcoe_fip_recv(struct sk_buff *, struct net_device *,
92                          struct packet_type *, struct net_device *);
93
94 static void fcoe_fip_send(struct fcoe_ctlr *, struct sk_buff *);
95 static void fcoe_update_src_mac(struct fc_lport *, u8 *);
96 static u8 *fcoe_get_src_mac(struct fc_lport *);
97 static void fcoe_destroy_work(struct work_struct *);
98
99 static int fcoe_ddp_setup(struct fc_lport *, u16, struct scatterlist *,
100                           unsigned int);
101 static int fcoe_ddp_done(struct fc_lport *, u16);
102 static int fcoe_ddp_target(struct fc_lport *, u16, struct scatterlist *,
103                            unsigned int);
104 static int fcoe_cpu_callback(struct notifier_block *, unsigned long, void *);
105
106 static bool fcoe_match(struct net_device *netdev);
107 static int fcoe_create(struct net_device *netdev, enum fip_state fip_mode);
108 static int fcoe_destroy(struct net_device *netdev);
109 static int fcoe_enable(struct net_device *netdev);
110 static int fcoe_disable(struct net_device *netdev);
111
112 static struct fc_seq *fcoe_elsct_send(struct fc_lport *,
113                                       u32 did, struct fc_frame *,
114                                       unsigned int op,
115                                       void (*resp)(struct fc_seq *,
116                                                    struct fc_frame *,
117                                                    void *),
118                                       void *, u32 timeout);
119 static void fcoe_recv_frame(struct sk_buff *skb);
120
121 static void fcoe_get_lesb(struct fc_lport *, struct fc_els_lesb *);
122
123 /* notification function for packets from net device */
124 static struct notifier_block fcoe_notifier = {
125         .notifier_call = fcoe_device_notification,
126 };
127
128 /* notification function for CPU hotplug events */
129 static struct notifier_block fcoe_cpu_notifier = {
130         .notifier_call = fcoe_cpu_callback,
131 };
132
133 static struct scsi_transport_template *fcoe_nport_scsi_transport;
134 static struct scsi_transport_template *fcoe_vport_scsi_transport;
135
136 static int fcoe_vport_destroy(struct fc_vport *);
137 static int fcoe_vport_create(struct fc_vport *, bool disabled);
138 static int fcoe_vport_disable(struct fc_vport *, bool disable);
139 static void fcoe_set_vport_symbolic_name(struct fc_vport *);
140 static void fcoe_set_port_id(struct fc_lport *, u32, struct fc_frame *);
141
142 static struct libfc_function_template fcoe_libfc_fcn_templ = {
143         .frame_send = fcoe_xmit,
144         .ddp_setup = fcoe_ddp_setup,
145         .ddp_done = fcoe_ddp_done,
146         .ddp_target = fcoe_ddp_target,
147         .elsct_send = fcoe_elsct_send,
148         .get_lesb = fcoe_get_lesb,
149         .lport_set_port_id = fcoe_set_port_id,
150 };
151
152 struct fc_function_template fcoe_nport_fc_functions = {
153         .show_host_node_name = 1,
154         .show_host_port_name = 1,
155         .show_host_supported_classes = 1,
156         .show_host_supported_fc4s = 1,
157         .show_host_active_fc4s = 1,
158         .show_host_maxframe_size = 1,
159
160         .show_host_port_id = 1,
161         .show_host_supported_speeds = 1,
162         .get_host_speed = fc_get_host_speed,
163         .show_host_speed = 1,
164         .show_host_port_type = 1,
165         .get_host_port_state = fc_get_host_port_state,
166         .show_host_port_state = 1,
167         .show_host_symbolic_name = 1,
168
169         .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
170         .show_rport_maxframe_size = 1,
171         .show_rport_supported_classes = 1,
172
173         .show_host_fabric_name = 1,
174         .show_starget_node_name = 1,
175         .show_starget_port_name = 1,
176         .show_starget_port_id = 1,
177         .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
178         .show_rport_dev_loss_tmo = 1,
179         .get_fc_host_stats = fc_get_host_stats,
180         .issue_fc_host_lip = fcoe_reset,
181
182         .terminate_rport_io = fc_rport_terminate_io,
183
184         .vport_create = fcoe_vport_create,
185         .vport_delete = fcoe_vport_destroy,
186         .vport_disable = fcoe_vport_disable,
187         .set_vport_symbolic_name = fcoe_set_vport_symbolic_name,
188
189         .bsg_request = fc_lport_bsg_request,
190 };
191
192 struct fc_function_template fcoe_vport_fc_functions = {
193         .show_host_node_name = 1,
194         .show_host_port_name = 1,
195         .show_host_supported_classes = 1,
196         .show_host_supported_fc4s = 1,
197         .show_host_active_fc4s = 1,
198         .show_host_maxframe_size = 1,
199
200         .show_host_port_id = 1,
201         .show_host_supported_speeds = 1,
202         .get_host_speed = fc_get_host_speed,
203         .show_host_speed = 1,
204         .show_host_port_type = 1,
205         .get_host_port_state = fc_get_host_port_state,
206         .show_host_port_state = 1,
207         .show_host_symbolic_name = 1,
208
209         .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
210         .show_rport_maxframe_size = 1,
211         .show_rport_supported_classes = 1,
212
213         .show_host_fabric_name = 1,
214         .show_starget_node_name = 1,
215         .show_starget_port_name = 1,
216         .show_starget_port_id = 1,
217         .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
218         .show_rport_dev_loss_tmo = 1,
219         .get_fc_host_stats = fc_get_host_stats,
220         .issue_fc_host_lip = fcoe_reset,
221
222         .terminate_rport_io = fc_rport_terminate_io,
223
224         .bsg_request = fc_lport_bsg_request,
225 };
226
227 static struct scsi_host_template fcoe_shost_template = {
228         .module = THIS_MODULE,
229         .name = "FCoE Driver",
230         .proc_name = FCOE_NAME,
231         .queuecommand = fc_queuecommand,
232         .eh_abort_handler = fc_eh_abort,
233         .eh_device_reset_handler = fc_eh_device_reset,
234         .eh_host_reset_handler = fc_eh_host_reset,
235         .slave_alloc = fc_slave_alloc,
236         .change_queue_depth = fc_change_queue_depth,
237         .change_queue_type = fc_change_queue_type,
238         .this_id = -1,
239         .cmd_per_lun = 3,
240         .can_queue = FCOE_MAX_OUTSTANDING_COMMANDS,
241         .use_clustering = ENABLE_CLUSTERING,
242         .sg_tablesize = SG_ALL,
243         .max_sectors = 0xffff,
244 };
245
246 /**
247  * fcoe_interface_setup() - Setup a FCoE interface
248  * @fcoe:   The new FCoE interface
249  * @netdev: The net device that the fcoe interface is on
250  *
251  * Returns : 0 for success
252  * Locking: must be called with the RTNL mutex held
253  */
254 static int fcoe_interface_setup(struct fcoe_interface *fcoe,
255                                 struct net_device *netdev)
256 {
257         struct fcoe_ctlr *fip = &fcoe->ctlr;
258         struct netdev_hw_addr *ha;
259         struct net_device *real_dev;
260         u8 flogi_maddr[ETH_ALEN];
261         const struct net_device_ops *ops;
262
263         fcoe->netdev = netdev;
264
265         /* Let LLD initialize for FCoE */
266         ops = netdev->netdev_ops;
267         if (ops->ndo_fcoe_enable) {
268                 if (ops->ndo_fcoe_enable(netdev))
269                         FCOE_NETDEV_DBG(netdev, "Failed to enable FCoE"
270                                         " specific feature for LLD.\n");
271         }
272
273         /* Do not support for bonding device */
274         if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) {
275                 FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n");
276                 return -EOPNOTSUPP;
277         }
278
279         /* look for SAN MAC address, if multiple SAN MACs exist, only
280          * use the first one for SPMA */
281         real_dev = (netdev->priv_flags & IFF_802_1Q_VLAN) ?
282                 vlan_dev_real_dev(netdev) : netdev;
283         rcu_read_lock();
284         for_each_dev_addr(real_dev, ha) {
285                 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
286                     (is_valid_ether_addr(ha->addr))) {
287                         memcpy(fip->ctl_src_addr, ha->addr, ETH_ALEN);
288                         fip->spma = 1;
289                         break;
290                 }
291         }
292         rcu_read_unlock();
293
294         /* setup Source Mac Address */
295         if (!fip->spma)
296                 memcpy(fip->ctl_src_addr, netdev->dev_addr, netdev->addr_len);
297
298         /*
299          * Add FCoE MAC address as second unicast MAC address
300          * or enter promiscuous mode if not capable of listening
301          * for multiple unicast MACs.
302          */
303         memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
304         dev_uc_add(netdev, flogi_maddr);
305         if (fip->spma)
306                 dev_uc_add(netdev, fip->ctl_src_addr);
307         if (fip->mode == FIP_MODE_VN2VN) {
308                 dev_mc_add(netdev, FIP_ALL_VN2VN_MACS);
309                 dev_mc_add(netdev, FIP_ALL_P2P_MACS);
310         } else
311                 dev_mc_add(netdev, FIP_ALL_ENODE_MACS);
312
313         /*
314          * setup the receive function from ethernet driver
315          * on the ethertype for the given device
316          */
317         fcoe->fcoe_packet_type.func = fcoe_rcv;
318         fcoe->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
319         fcoe->fcoe_packet_type.dev = netdev;
320         dev_add_pack(&fcoe->fcoe_packet_type);
321
322         fcoe->fip_packet_type.func = fcoe_fip_recv;
323         fcoe->fip_packet_type.type = htons(ETH_P_FIP);
324         fcoe->fip_packet_type.dev = netdev;
325         dev_add_pack(&fcoe->fip_packet_type);
326
327         return 0;
328 }
329
330 /**
331  * fcoe_interface_create() - Create a FCoE interface on a net device
332  * @netdev: The net device to create the FCoE interface on
333  * @fip_mode: The mode to use for FIP
334  *
335  * Returns: pointer to a struct fcoe_interface or NULL on error
336  */
337 static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev,
338                                                     enum fip_state fip_mode)
339 {
340         struct fcoe_interface *fcoe;
341         int err;
342
343         if (!try_module_get(THIS_MODULE)) {
344                 FCOE_NETDEV_DBG(netdev,
345                                 "Could not get a reference to the module\n");
346                 fcoe = ERR_PTR(-EBUSY);
347                 goto out;
348         }
349
350         fcoe = kzalloc(sizeof(*fcoe), GFP_KERNEL);
351         if (!fcoe) {
352                 FCOE_NETDEV_DBG(netdev, "Could not allocate fcoe structure\n");
353                 fcoe = ERR_PTR(-ENOMEM);
354                 goto out_nomod;
355         }
356
357         dev_hold(netdev);
358         kref_init(&fcoe->kref);
359
360         /*
361          * Initialize FIP.
362          */
363         fcoe_ctlr_init(&fcoe->ctlr, fip_mode);
364         fcoe->ctlr.send = fcoe_fip_send;
365         fcoe->ctlr.update_mac = fcoe_update_src_mac;
366         fcoe->ctlr.get_src_addr = fcoe_get_src_mac;
367
368         err = fcoe_interface_setup(fcoe, netdev);
369         if (err) {
370                 fcoe_ctlr_destroy(&fcoe->ctlr);
371                 kfree(fcoe);
372                 dev_put(netdev);
373                 fcoe = ERR_PTR(err);
374                 goto out_nomod;
375         }
376
377         goto out;
378
379 out_nomod:
380         module_put(THIS_MODULE);
381 out:
382         return fcoe;
383 }
384
385 /**
386  * fcoe_interface_release() - fcoe_port kref release function
387  * @kref: Embedded reference count in an fcoe_interface struct
388  */
389 static void fcoe_interface_release(struct kref *kref)
390 {
391         struct fcoe_interface *fcoe;
392         struct net_device *netdev;
393
394         fcoe = container_of(kref, struct fcoe_interface, kref);
395         netdev = fcoe->netdev;
396         /* tear-down the FCoE controller */
397         fcoe_ctlr_destroy(&fcoe->ctlr);
398         kfree(fcoe);
399         dev_put(netdev);
400         module_put(THIS_MODULE);
401 }
402
403 /**
404  * fcoe_interface_get() - Get a reference to a FCoE interface
405  * @fcoe: The FCoE interface to be held
406  */
407 static inline void fcoe_interface_get(struct fcoe_interface *fcoe)
408 {
409         kref_get(&fcoe->kref);
410 }
411
412 /**
413  * fcoe_interface_put() - Put a reference to a FCoE interface
414  * @fcoe: The FCoE interface to be released
415  */
416 static inline void fcoe_interface_put(struct fcoe_interface *fcoe)
417 {
418         kref_put(&fcoe->kref, fcoe_interface_release);
419 }
420
421 /**
422  * fcoe_interface_cleanup() - Clean up a FCoE interface
423  * @fcoe: The FCoE interface to be cleaned up
424  *
425  * Caller must be holding the RTNL mutex
426  */
427 void fcoe_interface_cleanup(struct fcoe_interface *fcoe)
428 {
429         struct net_device *netdev = fcoe->netdev;
430         struct fcoe_ctlr *fip = &fcoe->ctlr;
431         u8 flogi_maddr[ETH_ALEN];
432         const struct net_device_ops *ops;
433
434         /*
435          * Don't listen for Ethernet packets anymore.
436          * synchronize_net() ensures that the packet handlers are not running
437          * on another CPU. dev_remove_pack() would do that, this calls the
438          * unsyncronized version __dev_remove_pack() to avoid multiple delays.
439          */
440         __dev_remove_pack(&fcoe->fcoe_packet_type);
441         __dev_remove_pack(&fcoe->fip_packet_type);
442         synchronize_net();
443
444         /* Delete secondary MAC addresses */
445         memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
446         dev_uc_del(netdev, flogi_maddr);
447         if (fip->spma)
448                 dev_uc_del(netdev, fip->ctl_src_addr);
449         if (fip->mode == FIP_MODE_VN2VN) {
450                 dev_mc_del(netdev, FIP_ALL_VN2VN_MACS);
451                 dev_mc_del(netdev, FIP_ALL_P2P_MACS);
452         } else
453                 dev_mc_del(netdev, FIP_ALL_ENODE_MACS);
454
455         /* Tell the LLD we are done w/ FCoE */
456         ops = netdev->netdev_ops;
457         if (ops->ndo_fcoe_disable) {
458                 if (ops->ndo_fcoe_disable(netdev))
459                         FCOE_NETDEV_DBG(netdev, "Failed to disable FCoE"
460                                         " specific feature for LLD.\n");
461         }
462
463         /* Release the self-reference taken during fcoe_interface_create() */
464         fcoe_interface_put(fcoe);
465 }
466
467 /**
468  * fcoe_fip_recv() - Handler for received FIP frames
469  * @skb:      The receive skb
470  * @netdev:   The associated net device
471  * @ptype:    The packet_type structure which was used to register this handler
472  * @orig_dev: The original net_device the the skb was received on.
473  *            (in case dev is a bond)
474  *
475  * Returns: 0 for success
476  */
477 static int fcoe_fip_recv(struct sk_buff *skb, struct net_device *netdev,
478                          struct packet_type *ptype,
479                          struct net_device *orig_dev)
480 {
481         struct fcoe_interface *fcoe;
482
483         fcoe = container_of(ptype, struct fcoe_interface, fip_packet_type);
484         fcoe_ctlr_recv(&fcoe->ctlr, skb);
485         return 0;
486 }
487
488 /**
489  * fcoe_port_send() - Send an Ethernet-encapsulated FIP/FCoE frame
490  * @port: The FCoE port
491  * @skb: The FIP/FCoE packet to be sent
492  */
493 static void fcoe_port_send(struct fcoe_port *port, struct sk_buff *skb)
494 {
495         if (port->fcoe_pending_queue.qlen)
496                 fcoe_check_wait_queue(port->lport, skb);
497         else if (fcoe_start_io(skb))
498                 fcoe_check_wait_queue(port->lport, skb);
499 }
500
501 /**
502  * fcoe_fip_send() - Send an Ethernet-encapsulated FIP frame
503  * @fip: The FCoE controller
504  * @skb: The FIP packet to be sent
505  */
506 static void fcoe_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
507 {
508         skb->dev = fcoe_from_ctlr(fip)->netdev;
509         fcoe_port_send(lport_priv(fip->lp), skb);
510 }
511
512 /**
513  * fcoe_update_src_mac() - Update the Ethernet MAC filters
514  * @lport: The local port to update the source MAC on
515  * @addr:  Unicast MAC address to add
516  *
517  * Remove any previously-set unicast MAC filter.
518  * Add secondary FCoE MAC address filter for our OUI.
519  */
520 static void fcoe_update_src_mac(struct fc_lport *lport, u8 *addr)
521 {
522         struct fcoe_port *port = lport_priv(lport);
523         struct fcoe_interface *fcoe = port->priv;
524
525         rtnl_lock();
526         if (!is_zero_ether_addr(port->data_src_addr))
527                 dev_uc_del(fcoe->netdev, port->data_src_addr);
528         if (!is_zero_ether_addr(addr))
529                 dev_uc_add(fcoe->netdev, addr);
530         memcpy(port->data_src_addr, addr, ETH_ALEN);
531         rtnl_unlock();
532 }
533
534 /**
535  * fcoe_get_src_mac() - return the Ethernet source address for an lport
536  * @lport: libfc lport
537  */
538 static u8 *fcoe_get_src_mac(struct fc_lport *lport)
539 {
540         struct fcoe_port *port = lport_priv(lport);
541
542         return port->data_src_addr;
543 }
544
545 /**
546  * fcoe_lport_config() - Set up a local port
547  * @lport: The local port to be setup
548  *
549  * Returns: 0 for success
550  */
551 static int fcoe_lport_config(struct fc_lport *lport)
552 {
553         lport->link_up = 0;
554         lport->qfull = 0;
555         lport->max_retry_count = 3;
556         lport->max_rport_retry_count = 3;
557         lport->e_d_tov = 2 * 1000;      /* FC-FS default */
558         lport->r_a_tov = 2 * 2 * 1000;
559         lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
560                                  FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
561         lport->does_npiv = 1;
562
563         fc_lport_init_stats(lport);
564
565         /* lport fc_lport related configuration */
566         fc_lport_config(lport);
567
568         /* offload related configuration */
569         lport->crc_offload = 0;
570         lport->seq_offload = 0;
571         lport->lro_enabled = 0;
572         lport->lro_xid = 0;
573         lport->lso_max = 0;
574
575         return 0;
576 }
577
578 /**
579  * fcoe_netdev_features_change - Updates the lport's offload flags based
580  * on the LLD netdev's FCoE feature flags
581  */
582 static void fcoe_netdev_features_change(struct fc_lport *lport,
583                                         struct net_device *netdev)
584 {
585         mutex_lock(&lport->lp_mutex);
586
587         if (netdev->features & NETIF_F_SG)
588                 lport->sg_supp = 1;
589         else
590                 lport->sg_supp = 0;
591
592         if (netdev->features & NETIF_F_FCOE_CRC) {
593                 lport->crc_offload = 1;
594                 FCOE_NETDEV_DBG(netdev, "Supports FCCRC offload\n");
595         } else {
596                 lport->crc_offload = 0;
597         }
598
599         if (netdev->features & NETIF_F_FSO) {
600                 lport->seq_offload = 1;
601                 lport->lso_max = netdev->gso_max_size;
602                 FCOE_NETDEV_DBG(netdev, "Supports LSO for max len 0x%x\n",
603                                 lport->lso_max);
604         } else {
605                 lport->seq_offload = 0;
606                 lport->lso_max = 0;
607         }
608
609         if (netdev->fcoe_ddp_xid) {
610                 lport->lro_enabled = 1;
611                 lport->lro_xid = netdev->fcoe_ddp_xid;
612                 FCOE_NETDEV_DBG(netdev, "Supports LRO for max xid 0x%x\n",
613                                 lport->lro_xid);
614         } else {
615                 lport->lro_enabled = 0;
616                 lport->lro_xid = 0;
617         }
618
619         mutex_unlock(&lport->lp_mutex);
620 }
621
622 /**
623  * fcoe_netdev_config() - Set up net devive for SW FCoE
624  * @lport:  The local port that is associated with the net device
625  * @netdev: The associated net device
626  *
627  * Must be called after fcoe_lport_config() as it will use local port mutex
628  *
629  * Returns: 0 for success
630  */
631 static int fcoe_netdev_config(struct fc_lport *lport, struct net_device *netdev)
632 {
633         u32 mfs;
634         u64 wwnn, wwpn;
635         struct fcoe_interface *fcoe;
636         struct fcoe_port *port;
637
638         /* Setup lport private data to point to fcoe softc */
639         port = lport_priv(lport);
640         fcoe = port->priv;
641
642         /*
643          * Determine max frame size based on underlying device and optional
644          * user-configured limit.  If the MFS is too low, fcoe_link_ok()
645          * will return 0, so do this first.
646          */
647         mfs = netdev->mtu;
648         if (netdev->features & NETIF_F_FCOE_MTU) {
649                 mfs = FCOE_MTU;
650                 FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs);
651         }
652         mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof));
653         if (fc_set_mfs(lport, mfs))
654                 return -EINVAL;
655
656         /* offload features support */
657         fcoe_netdev_features_change(lport, netdev);
658
659         skb_queue_head_init(&port->fcoe_pending_queue);
660         port->fcoe_pending_queue_active = 0;
661         setup_timer(&port->timer, fcoe_queue_timer, (unsigned long)lport);
662
663         fcoe_link_speed_update(lport);
664
665         if (!lport->vport) {
666                 if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN))
667                         wwnn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr, 1, 0);
668                 fc_set_wwnn(lport, wwnn);
669                 if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN))
670                         wwpn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr,
671                                                  2, 0);
672                 fc_set_wwpn(lport, wwpn);
673         }
674
675         return 0;
676 }
677
678 /**
679  * fcoe_shost_config() - Set up the SCSI host associated with a local port
680  * @lport: The local port
681  * @dev:   The device associated with the SCSI host
682  *
683  * Must be called after fcoe_lport_config() and fcoe_netdev_config()
684  *
685  * Returns: 0 for success
686  */
687 static int fcoe_shost_config(struct fc_lport *lport, struct device *dev)
688 {
689         int rc = 0;
690
691         /* lport scsi host config */
692         lport->host->max_lun = FCOE_MAX_LUN;
693         lport->host->max_id = FCOE_MAX_FCP_TARGET;
694         lport->host->max_channel = 0;
695         lport->host->max_cmd_len = FCOE_MAX_CMD_LEN;
696
697         if (lport->vport)
698                 lport->host->transportt = fcoe_vport_scsi_transport;
699         else
700                 lport->host->transportt = fcoe_nport_scsi_transport;
701
702         /* add the new host to the SCSI-ml */
703         rc = scsi_add_host(lport->host, dev);
704         if (rc) {
705                 FCOE_NETDEV_DBG(fcoe_netdev(lport), "fcoe_shost_config: "
706                                 "error on scsi_add_host\n");
707                 return rc;
708         }
709
710         if (!lport->vport)
711                 fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
712
713         snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
714                  "%s v%s over %s", FCOE_NAME, FCOE_VERSION,
715                  fcoe_netdev(lport)->name);
716
717         return 0;
718 }
719
720 /**
721  * fcoe_oem_match() - The match routine for the offloaded exchange manager
722  * @fp: The I/O frame
723  *
724  * This routine will be associated with an exchange manager (EM). When
725  * the libfc exchange handling code is looking for an EM to use it will
726  * call this routine and pass it the frame that it wishes to send. This
727  * routine will return True if the associated EM is to be used and False
728  * if the echange code should continue looking for an EM.
729  *
730  * The offload EM that this routine is associated with will handle any
731  * packets that are for SCSI read requests.
732  *
733  * This has been enhanced to work when FCoE stack is operating in target
734  * mode.
735  *
736  * Returns: True for read types I/O, otherwise returns false.
737  */
738 bool fcoe_oem_match(struct fc_frame *fp)
739 {
740         struct fc_frame_header *fh = fc_frame_header_get(fp);
741         struct fcp_cmnd *fcp;
742
743         if (fc_fcp_is_read(fr_fsp(fp)) &&
744             (fr_fsp(fp)->data_len > fcoe_ddp_min))
745                 return true;
746         else if (!(ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)) {
747                 fcp = fc_frame_payload_get(fp, sizeof(*fcp));
748                 if (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN &&
749                     fcp && (ntohl(fcp->fc_dl) > fcoe_ddp_min) &&
750                     (fcp->fc_flags & FCP_CFL_WRDATA))
751                         return true;
752         }
753         return false;
754 }
755
756 /**
757  * fcoe_em_config() - Allocate and configure an exchange manager
758  * @lport: The local port that the new EM will be associated with
759  *
760  * Returns: 0 on success
761  */
762 static inline int fcoe_em_config(struct fc_lport *lport)
763 {
764         struct fcoe_port *port = lport_priv(lport);
765         struct fcoe_interface *fcoe = port->priv;
766         struct fcoe_interface *oldfcoe = NULL;
767         struct net_device *old_real_dev, *cur_real_dev;
768         u16 min_xid = FCOE_MIN_XID;
769         u16 max_xid = FCOE_MAX_XID;
770
771         /*
772          * Check if need to allocate an em instance for
773          * offload exchange ids to be shared across all VN_PORTs/lport.
774          */
775         if (!lport->lro_enabled || !lport->lro_xid ||
776             (lport->lro_xid >= max_xid)) {
777                 lport->lro_xid = 0;
778                 goto skip_oem;
779         }
780
781         /*
782          * Reuse existing offload em instance in case
783          * it is already allocated on real eth device
784          */
785         if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
786                 cur_real_dev = vlan_dev_real_dev(fcoe->netdev);
787         else
788                 cur_real_dev = fcoe->netdev;
789
790         list_for_each_entry(oldfcoe, &fcoe_hostlist, list) {
791                 if (oldfcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
792                         old_real_dev = vlan_dev_real_dev(oldfcoe->netdev);
793                 else
794                         old_real_dev = oldfcoe->netdev;
795
796                 if (cur_real_dev == old_real_dev) {
797                         fcoe->oem = oldfcoe->oem;
798                         break;
799                 }
800         }
801
802         if (fcoe->oem) {
803                 if (!fc_exch_mgr_add(lport, fcoe->oem, fcoe_oem_match)) {
804                         printk(KERN_ERR "fcoe_em_config: failed to add "
805                                "offload em:%p on interface:%s\n",
806                                fcoe->oem, fcoe->netdev->name);
807                         return -ENOMEM;
808                 }
809         } else {
810                 fcoe->oem = fc_exch_mgr_alloc(lport, FC_CLASS_3,
811                                               FCOE_MIN_XID, lport->lro_xid,
812                                               fcoe_oem_match);
813                 if (!fcoe->oem) {
814                         printk(KERN_ERR "fcoe_em_config: failed to allocate "
815                                "em for offload exches on interface:%s\n",
816                                fcoe->netdev->name);
817                         return -ENOMEM;
818                 }
819         }
820
821         /*
822          * Exclude offload EM xid range from next EM xid range.
823          */
824         min_xid += lport->lro_xid + 1;
825
826 skip_oem:
827         if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, min_xid, max_xid, NULL)) {
828                 printk(KERN_ERR "fcoe_em_config: failed to "
829                        "allocate em on interface %s\n", fcoe->netdev->name);
830                 return -ENOMEM;
831         }
832
833         return 0;
834 }
835
836 /**
837  * fcoe_if_destroy() - Tear down a SW FCoE instance
838  * @lport: The local port to be destroyed
839  *
840  */
841 static void fcoe_if_destroy(struct fc_lport *lport)
842 {
843         struct fcoe_port *port = lport_priv(lport);
844         struct fcoe_interface *fcoe = port->priv;
845         struct net_device *netdev = fcoe->netdev;
846
847         FCOE_NETDEV_DBG(netdev, "Destroying interface\n");
848
849         /* Logout of the fabric */
850         fc_fabric_logoff(lport);
851
852         /* Cleanup the fc_lport */
853         fc_lport_destroy(lport);
854
855         /* Stop the transmit retry timer */
856         del_timer_sync(&port->timer);
857
858         /* Free existing transmit skbs */
859         fcoe_clean_pending_queue(lport);
860
861         rtnl_lock();
862         if (!is_zero_ether_addr(port->data_src_addr))
863                 dev_uc_del(netdev, port->data_src_addr);
864         rtnl_unlock();
865
866         /* Release reference held in fcoe_if_create() */
867         fcoe_interface_put(fcoe);
868
869         /* Free queued packets for the per-CPU receive threads */
870         fcoe_percpu_clean(lport);
871
872         /* Detach from the scsi-ml */
873         fc_remove_host(lport->host);
874         scsi_remove_host(lport->host);
875
876         /* Destroy lport scsi_priv */
877         fc_fcp_destroy(lport);
878
879         /* There are no more rports or I/O, free the EM */
880         fc_exch_mgr_free(lport);
881
882         /* Free memory used by statistical counters */
883         fc_lport_free_stats(lport);
884
885         /* Release the Scsi_Host */
886         scsi_host_put(lport->host);
887 }
888
889 /**
890  * fcoe_ddp_setup() - Call a LLD's ddp_setup through the net device
891  * @lport: The local port to setup DDP for
892  * @xid:   The exchange ID for this DDP transfer
893  * @sgl:   The scatterlist describing this transfer
894  * @sgc:   The number of sg items
895  *
896  * Returns: 0 if the DDP context was not configured
897  */
898 static int fcoe_ddp_setup(struct fc_lport *lport, u16 xid,
899                           struct scatterlist *sgl, unsigned int sgc)
900 {
901         struct net_device *netdev = fcoe_netdev(lport);
902
903         if (netdev->netdev_ops->ndo_fcoe_ddp_setup)
904                 return netdev->netdev_ops->ndo_fcoe_ddp_setup(netdev,
905                                                               xid, sgl,
906                                                               sgc);
907
908         return 0;
909 }
910
911 /**
912  * fcoe_ddp_target() - Call a LLD's ddp_target through the net device
913  * @lport: The local port to setup DDP for
914  * @xid:   The exchange ID for this DDP transfer
915  * @sgl:   The scatterlist describing this transfer
916  * @sgc:   The number of sg items
917  *
918  * Returns: 0 if the DDP context was not configured
919  */
920 static int fcoe_ddp_target(struct fc_lport *lport, u16 xid,
921                            struct scatterlist *sgl, unsigned int sgc)
922 {
923         struct net_device *netdev = fcoe_netdev(lport);
924
925         if (netdev->netdev_ops->ndo_fcoe_ddp_target)
926                 return netdev->netdev_ops->ndo_fcoe_ddp_target(netdev, xid,
927                                                                sgl, sgc);
928
929         return 0;
930 }
931
932
933 /**
934  * fcoe_ddp_done() - Call a LLD's ddp_done through the net device
935  * @lport: The local port to complete DDP on
936  * @xid:   The exchange ID for this DDP transfer
937  *
938  * Returns: the length of data that have been completed by DDP
939  */
940 static int fcoe_ddp_done(struct fc_lport *lport, u16 xid)
941 {
942         struct net_device *netdev = fcoe_netdev(lport);
943
944         if (netdev->netdev_ops->ndo_fcoe_ddp_done)
945                 return netdev->netdev_ops->ndo_fcoe_ddp_done(netdev, xid);
946         return 0;
947 }
948
949 /**
950  * fcoe_if_create() - Create a FCoE instance on an interface
951  * @fcoe:   The FCoE interface to create a local port on
952  * @parent: The device pointer to be the parent in sysfs for the SCSI host
953  * @npiv:   Indicates if the port is a vport or not
954  *
955  * Creates a fc_lport instance and a Scsi_Host instance and configure them.
956  *
957  * Returns: The allocated fc_lport or an error pointer
958  */
959 static struct fc_lport *fcoe_if_create(struct fcoe_interface *fcoe,
960                                        struct device *parent, int npiv)
961 {
962         struct net_device *netdev = fcoe->netdev;
963         struct fc_lport *lport, *n_port;
964         struct fcoe_port *port;
965         struct Scsi_Host *shost;
966         int rc;
967         /*
968          * parent is only a vport if npiv is 1,
969          * but we'll only use vport in that case so go ahead and set it
970          */
971         struct fc_vport *vport = dev_to_vport(parent);
972
973         FCOE_NETDEV_DBG(netdev, "Create Interface\n");
974
975         if (!npiv)
976                 lport = libfc_host_alloc(&fcoe_shost_template, sizeof(*port));
977         else
978                 lport = libfc_vport_create(vport, sizeof(*port));
979
980         if (!lport) {
981                 FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n");
982                 rc = -ENOMEM;
983                 goto out;
984         }
985         port = lport_priv(lport);
986         port->lport = lport;
987         port->priv = fcoe;
988         port->max_queue_depth = FCOE_MAX_QUEUE_DEPTH;
989         port->min_queue_depth = FCOE_MIN_QUEUE_DEPTH;
990         INIT_WORK(&port->destroy_work, fcoe_destroy_work);
991
992         /* configure a fc_lport including the exchange manager */
993         rc = fcoe_lport_config(lport);
994         if (rc) {
995                 FCOE_NETDEV_DBG(netdev, "Could not configure lport for the "
996                                 "interface\n");
997                 goto out_host_put;
998         }
999
1000         if (npiv) {
1001                 FCOE_NETDEV_DBG(netdev, "Setting vport names, "
1002                                 "%16.16llx %16.16llx\n",
1003                                 vport->node_name, vport->port_name);
1004                 fc_set_wwnn(lport, vport->node_name);
1005                 fc_set_wwpn(lport, vport->port_name);
1006         }
1007
1008         /* configure lport network properties */
1009         rc = fcoe_netdev_config(lport, netdev);
1010         if (rc) {
1011                 FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the "
1012                                 "interface\n");
1013                 goto out_lp_destroy;
1014         }
1015
1016         /* configure lport scsi host properties */
1017         rc = fcoe_shost_config(lport, parent);
1018         if (rc) {
1019                 FCOE_NETDEV_DBG(netdev, "Could not configure shost for the "
1020                                 "interface\n");
1021                 goto out_lp_destroy;
1022         }
1023
1024         /* Initialize the library */
1025         rc = fcoe_libfc_config(lport, &fcoe->ctlr, &fcoe_libfc_fcn_templ, 1);
1026         if (rc) {
1027                 FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the "
1028                                 "interface\n");
1029                 goto out_lp_destroy;
1030         }
1031
1032         /*
1033          * fcoe_em_alloc() and fcoe_hostlist_add() both
1034          * need to be atomic with respect to other changes to the
1035          * hostlist since fcoe_em_alloc() looks for an existing EM
1036          * instance on host list updated by fcoe_hostlist_add().
1037          *
1038          * This is currently handled through the fcoe_config_mutex
1039          * begin held.
1040          */
1041         if (!npiv)
1042                 /* lport exch manager allocation */
1043                 rc = fcoe_em_config(lport);
1044         else {
1045                 shost = vport_to_shost(vport);
1046                 n_port = shost_priv(shost);
1047                 rc = fc_exch_mgr_list_clone(n_port, lport);
1048         }
1049
1050         if (rc) {
1051                 FCOE_NETDEV_DBG(netdev, "Could not configure the EM\n");
1052                 goto out_lp_destroy;
1053         }
1054
1055         fcoe_interface_get(fcoe);
1056         return lport;
1057
1058 out_lp_destroy:
1059         fc_exch_mgr_free(lport);
1060 out_host_put:
1061         scsi_host_put(lport->host);
1062 out:
1063         return ERR_PTR(rc);
1064 }
1065
1066 /**
1067  * fcoe_if_init() - Initialization routine for fcoe.ko
1068  *
1069  * Attaches the SW FCoE transport to the FC transport
1070  *
1071  * Returns: 0 on success
1072  */
1073 static int __init fcoe_if_init(void)
1074 {
1075         /* attach to scsi transport */
1076         fcoe_nport_scsi_transport =
1077                 fc_attach_transport(&fcoe_nport_fc_functions);
1078         fcoe_vport_scsi_transport =
1079                 fc_attach_transport(&fcoe_vport_fc_functions);
1080
1081         if (!fcoe_nport_scsi_transport) {
1082                 printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n");
1083                 return -ENODEV;
1084         }
1085
1086         return 0;
1087 }
1088
1089 /**
1090  * fcoe_if_exit() - Tear down fcoe.ko
1091  *
1092  * Detaches the SW FCoE transport from the FC transport
1093  *
1094  * Returns: 0 on success
1095  */
1096 int __exit fcoe_if_exit(void)
1097 {
1098         fc_release_transport(fcoe_nport_scsi_transport);
1099         fc_release_transport(fcoe_vport_scsi_transport);
1100         fcoe_nport_scsi_transport = NULL;
1101         fcoe_vport_scsi_transport = NULL;
1102         return 0;
1103 }
1104
1105 /**
1106  * fcoe_percpu_thread_create() - Create a receive thread for an online CPU
1107  * @cpu: The CPU index of the CPU to create a receive thread for
1108  */
1109 static void fcoe_percpu_thread_create(unsigned int cpu)
1110 {
1111         struct fcoe_percpu_s *p;
1112         struct task_struct *thread;
1113
1114         p = &per_cpu(fcoe_percpu, cpu);
1115
1116         thread = kthread_create(fcoe_percpu_receive_thread,
1117                                 (void *)p, "fcoethread/%d", cpu);
1118
1119         if (likely(!IS_ERR(thread))) {
1120                 kthread_bind(thread, cpu);
1121                 wake_up_process(thread);
1122
1123                 spin_lock_bh(&p->fcoe_rx_list.lock);
1124                 p->thread = thread;
1125                 spin_unlock_bh(&p->fcoe_rx_list.lock);
1126         }
1127 }
1128
1129 /**
1130  * fcoe_percpu_thread_destroy() - Remove the receive thread of a CPU
1131  * @cpu: The CPU index of the CPU whose receive thread is to be destroyed
1132  *
1133  * Destroys a per-CPU Rx thread. Any pending skbs are moved to the
1134  * current CPU's Rx thread. If the thread being destroyed is bound to
1135  * the CPU processing this context the skbs will be freed.
1136  */
1137 static void fcoe_percpu_thread_destroy(unsigned int cpu)
1138 {
1139         struct fcoe_percpu_s *p;
1140         struct task_struct *thread;
1141         struct page *crc_eof;
1142         struct sk_buff *skb;
1143 #ifdef CONFIG_SMP
1144         struct fcoe_percpu_s *p0;
1145         unsigned targ_cpu = get_cpu();
1146 #endif /* CONFIG_SMP */
1147
1148         FCOE_DBG("Destroying receive thread for CPU %d\n", cpu);
1149
1150         /* Prevent any new skbs from being queued for this CPU. */
1151         p = &per_cpu(fcoe_percpu, cpu);
1152         spin_lock_bh(&p->fcoe_rx_list.lock);
1153         thread = p->thread;
1154         p->thread = NULL;
1155         crc_eof = p->crc_eof_page;
1156         p->crc_eof_page = NULL;
1157         p->crc_eof_offset = 0;
1158         spin_unlock_bh(&p->fcoe_rx_list.lock);
1159
1160 #ifdef CONFIG_SMP
1161         /*
1162          * Don't bother moving the skb's if this context is running
1163          * on the same CPU that is having its thread destroyed. This
1164          * can easily happen when the module is removed.
1165          */
1166         if (cpu != targ_cpu) {
1167                 p0 = &per_cpu(fcoe_percpu, targ_cpu);
1168                 spin_lock_bh(&p0->fcoe_rx_list.lock);
1169                 if (p0->thread) {
1170                         FCOE_DBG("Moving frames from CPU %d to CPU %d\n",
1171                                  cpu, targ_cpu);
1172
1173                         while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1174                                 __skb_queue_tail(&p0->fcoe_rx_list, skb);
1175                         spin_unlock_bh(&p0->fcoe_rx_list.lock);
1176                 } else {
1177                         /*
1178                          * The targeted CPU is not initialized and cannot accept
1179                          * new  skbs. Unlock the targeted CPU and drop the skbs
1180                          * on the CPU that is going offline.
1181                          */
1182                         while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1183                                 kfree_skb(skb);
1184                         spin_unlock_bh(&p0->fcoe_rx_list.lock);
1185                 }
1186         } else {
1187                 /*
1188                  * This scenario occurs when the module is being removed
1189                  * and all threads are being destroyed. skbs will continue
1190                  * to be shifted from the CPU thread that is being removed
1191                  * to the CPU thread associated with the CPU that is processing
1192                  * the module removal. Once there is only one CPU Rx thread it
1193                  * will reach this case and we will drop all skbs and later
1194                  * stop the thread.
1195                  */
1196                 spin_lock_bh(&p->fcoe_rx_list.lock);
1197                 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1198                         kfree_skb(skb);
1199                 spin_unlock_bh(&p->fcoe_rx_list.lock);
1200         }
1201         put_cpu();
1202 #else
1203         /*
1204          * This a non-SMP scenario where the singular Rx thread is
1205          * being removed. Free all skbs and stop the thread.
1206          */
1207         spin_lock_bh(&p->fcoe_rx_list.lock);
1208         while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1209                 kfree_skb(skb);
1210         spin_unlock_bh(&p->fcoe_rx_list.lock);
1211 #endif
1212
1213         if (thread)
1214                 kthread_stop(thread);
1215
1216         if (crc_eof)
1217                 put_page(crc_eof);
1218 }
1219
1220 /**
1221  * fcoe_cpu_callback() - Handler for CPU hotplug events
1222  * @nfb:    The callback data block
1223  * @action: The event triggering the callback
1224  * @hcpu:   The index of the CPU that the event is for
1225  *
1226  * This creates or destroys per-CPU data for fcoe
1227  *
1228  * Returns NOTIFY_OK always.
1229  */
1230 static int fcoe_cpu_callback(struct notifier_block *nfb,
1231                              unsigned long action, void *hcpu)
1232 {
1233         unsigned cpu = (unsigned long)hcpu;
1234
1235         switch (action) {
1236         case CPU_ONLINE:
1237         case CPU_ONLINE_FROZEN:
1238                 FCOE_DBG("CPU %x online: Create Rx thread\n", cpu);
1239                 fcoe_percpu_thread_create(cpu);
1240                 break;
1241         case CPU_DEAD:
1242         case CPU_DEAD_FROZEN:
1243                 FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu);
1244                 fcoe_percpu_thread_destroy(cpu);
1245                 break;
1246         default:
1247                 break;
1248         }
1249         return NOTIFY_OK;
1250 }
1251
1252 /**
1253  * fcoe_select_cpu() - Selects CPU to handle post-processing of incoming
1254  *                      command.
1255  *
1256  * This routine selects next CPU based on cpumask to distribute
1257  * incoming requests in round robin.
1258  *
1259  * Returns: int CPU number
1260  */
1261 static inline unsigned int fcoe_select_cpu(void)
1262 {
1263         static unsigned int selected_cpu;
1264
1265         selected_cpu = cpumask_next(selected_cpu, cpu_online_mask);
1266         if (selected_cpu >= nr_cpu_ids)
1267                 selected_cpu = cpumask_first(cpu_online_mask);
1268
1269         return selected_cpu;
1270 }
1271
1272 /**
1273  * fcoe_rcv() - Receive packets from a net device
1274  * @skb:    The received packet
1275  * @netdev: The net device that the packet was received on
1276  * @ptype:  The packet type context
1277  * @olddev: The last device net device
1278  *
1279  * This routine is called by NET_RX_SOFTIRQ. It receives a packet, builds a
1280  * FC frame and passes the frame to libfc.
1281  *
1282  * Returns: 0 for success
1283  */
1284 int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev,
1285              struct packet_type *ptype, struct net_device *olddev)
1286 {
1287         struct fc_lport *lport;
1288         struct fcoe_rcv_info *fr;
1289         struct fcoe_interface *fcoe;
1290         struct fc_frame_header *fh;
1291         struct fcoe_percpu_s *fps;
1292         struct ethhdr *eh;
1293         unsigned int cpu;
1294
1295         fcoe = container_of(ptype, struct fcoe_interface, fcoe_packet_type);
1296         lport = fcoe->ctlr.lp;
1297         if (unlikely(!lport)) {
1298                 FCOE_NETDEV_DBG(netdev, "Cannot find hba structure");
1299                 goto err2;
1300         }
1301         if (!lport->link_up)
1302                 goto err2;
1303
1304         FCOE_NETDEV_DBG(netdev, "skb_info: len:%d data_len:%d head:%p "
1305                         "data:%p tail:%p end:%p sum:%d dev:%s",
1306                         skb->len, skb->data_len, skb->head, skb->data,
1307                         skb_tail_pointer(skb), skb_end_pointer(skb),
1308                         skb->csum, skb->dev ? skb->dev->name : "<NULL>");
1309
1310         eh = eth_hdr(skb);
1311
1312         if (is_fip_mode(&fcoe->ctlr) &&
1313             compare_ether_addr(eh->h_source, fcoe->ctlr.dest_addr)) {
1314                 FCOE_NETDEV_DBG(netdev, "wrong source mac address:%pM\n",
1315                                 eh->h_source);
1316                 goto err;
1317         }
1318
1319         /*
1320          * Check for minimum frame length, and make sure required FCoE
1321          * and FC headers are pulled into the linear data area.
1322          */
1323         if (unlikely((skb->len < FCOE_MIN_FRAME) ||
1324                      !pskb_may_pull(skb, FCOE_HEADER_LEN)))
1325                 goto err;
1326
1327         skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
1328         fh = (struct fc_frame_header *) skb_transport_header(skb);
1329
1330         if (ntoh24(&eh->h_dest[3]) != ntoh24(fh->fh_d_id)) {
1331                 FCOE_NETDEV_DBG(netdev, "FC frame d_id mismatch with MAC:%pM\n",
1332                                 eh->h_dest);
1333                 goto err;
1334         }
1335
1336         fr = fcoe_dev_from_skb(skb);
1337         fr->fr_dev = lport;
1338
1339         /*
1340          * In case the incoming frame's exchange is originated from
1341          * the initiator, then received frame's exchange id is ANDed
1342          * with fc_cpu_mask bits to get the same cpu on which exchange
1343          * was originated, otherwise select cpu using rx exchange id
1344          * or fcoe_select_cpu().
1345          */
1346         if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
1347                 cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
1348         else {
1349                 if (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN)
1350                         cpu = fcoe_select_cpu();
1351                 else
1352                         cpu = ntohs(fh->fh_rx_id) & fc_cpu_mask;
1353         }
1354
1355         if (cpu >= nr_cpu_ids)
1356                 goto err;
1357
1358         fps = &per_cpu(fcoe_percpu, cpu);
1359         spin_lock_bh(&fps->fcoe_rx_list.lock);
1360         if (unlikely(!fps->thread)) {
1361                 /*
1362                  * The targeted CPU is not ready, let's target
1363                  * the first CPU now. For non-SMP systems this
1364                  * will check the same CPU twice.
1365                  */
1366                 FCOE_NETDEV_DBG(netdev, "CPU is online, but no receive thread "
1367                                 "ready for incoming skb- using first online "
1368                                 "CPU.\n");
1369
1370                 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1371                 cpu = cpumask_first(cpu_online_mask);
1372                 fps = &per_cpu(fcoe_percpu, cpu);
1373                 spin_lock_bh(&fps->fcoe_rx_list.lock);
1374                 if (!fps->thread) {
1375                         spin_unlock_bh(&fps->fcoe_rx_list.lock);
1376                         goto err;
1377                 }
1378         }
1379
1380         /*
1381          * We now have a valid CPU that we're targeting for
1382          * this skb. We also have this receive thread locked,
1383          * so we're free to queue skbs into it's queue.
1384          */
1385
1386         /* If this is a SCSI-FCP frame, and this is already executing on the
1387          * correct CPU, and the queue for this CPU is empty, then go ahead
1388          * and process the frame directly in the softirq context.
1389          * This lets us process completions without context switching from the
1390          * NET_RX softirq, to our receive processing thread, and then back to
1391          * BLOCK softirq context.
1392          */
1393         if (fh->fh_type == FC_TYPE_FCP &&
1394             cpu == smp_processor_id() &&
1395             skb_queue_empty(&fps->fcoe_rx_list)) {
1396                 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1397                 fcoe_recv_frame(skb);
1398         } else {
1399                 __skb_queue_tail(&fps->fcoe_rx_list, skb);
1400                 if (fps->fcoe_rx_list.qlen == 1)
1401                         wake_up_process(fps->thread);
1402                 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1403         }
1404
1405         return 0;
1406 err:
1407         per_cpu_ptr(lport->dev_stats, get_cpu())->ErrorFrames++;
1408         put_cpu();
1409 err2:
1410         kfree_skb(skb);
1411         return -1;
1412 }
1413
1414 /**
1415  * fcoe_alloc_paged_crc_eof() - Allocate a page to be used for the trailer CRC
1416  * @skb:  The packet to be transmitted
1417  * @tlen: The total length of the trailer
1418  *
1419  * Returns: 0 for success
1420  */
1421 static int fcoe_alloc_paged_crc_eof(struct sk_buff *skb, int tlen)
1422 {
1423         struct fcoe_percpu_s *fps;
1424         int rc;
1425
1426         fps = &get_cpu_var(fcoe_percpu);
1427         rc = fcoe_get_paged_crc_eof(skb, tlen, fps);
1428         put_cpu_var(fcoe_percpu);
1429
1430         return rc;
1431 }
1432
1433 /**
1434  * fcoe_xmit() - Transmit a FCoE frame
1435  * @lport: The local port that the frame is to be transmitted for
1436  * @fp:    The frame to be transmitted
1437  *
1438  * Return: 0 for success
1439  */
1440 int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp)
1441 {
1442         int wlen;
1443         u32 crc;
1444         struct ethhdr *eh;
1445         struct fcoe_crc_eof *cp;
1446         struct sk_buff *skb;
1447         struct fcoe_dev_stats *stats;
1448         struct fc_frame_header *fh;
1449         unsigned int hlen;              /* header length implies the version */
1450         unsigned int tlen;              /* trailer length */
1451         unsigned int elen;              /* eth header, may include vlan */
1452         struct fcoe_port *port = lport_priv(lport);
1453         struct fcoe_interface *fcoe = port->priv;
1454         u8 sof, eof;
1455         struct fcoe_hdr *hp;
1456
1457         WARN_ON((fr_len(fp) % sizeof(u32)) != 0);
1458
1459         fh = fc_frame_header_get(fp);
1460         skb = fp_skb(fp);
1461         wlen = skb->len / FCOE_WORD_TO_BYTE;
1462
1463         if (!lport->link_up) {
1464                 kfree_skb(skb);
1465                 return 0;
1466         }
1467
1468         if (unlikely(fh->fh_type == FC_TYPE_ELS) &&
1469             fcoe_ctlr_els_send(&fcoe->ctlr, lport, skb))
1470                 return 0;
1471
1472         sof = fr_sof(fp);
1473         eof = fr_eof(fp);
1474
1475         elen = sizeof(struct ethhdr);
1476         hlen = sizeof(struct fcoe_hdr);
1477         tlen = sizeof(struct fcoe_crc_eof);
1478         wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
1479
1480         /* crc offload */
1481         if (likely(lport->crc_offload)) {
1482                 skb->ip_summed = CHECKSUM_PARTIAL;
1483                 skb->csum_start = skb_headroom(skb);
1484                 skb->csum_offset = skb->len;
1485                 crc = 0;
1486         } else {
1487                 skb->ip_summed = CHECKSUM_NONE;
1488                 crc = fcoe_fc_crc(fp);
1489         }
1490
1491         /* copy port crc and eof to the skb buff */
1492         if (skb_is_nonlinear(skb)) {
1493                 skb_frag_t *frag;
1494                 if (fcoe_alloc_paged_crc_eof(skb, tlen)) {
1495                         kfree_skb(skb);
1496                         return -ENOMEM;
1497                 }
1498                 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
1499                 cp = kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ)
1500                         + frag->page_offset;
1501         } else {
1502                 cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
1503         }
1504
1505         memset(cp, 0, sizeof(*cp));
1506         cp->fcoe_eof = eof;
1507         cp->fcoe_crc32 = cpu_to_le32(~crc);
1508
1509         if (skb_is_nonlinear(skb)) {
1510                 kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ);
1511                 cp = NULL;
1512         }
1513
1514         /* adjust skb network/transport offsets to match mac/fcoe/port */
1515         skb_push(skb, elen + hlen);
1516         skb_reset_mac_header(skb);
1517         skb_reset_network_header(skb);
1518         skb->mac_len = elen;
1519         skb->protocol = htons(ETH_P_FCOE);
1520         skb->dev = fcoe->netdev;
1521
1522         /* fill up mac and fcoe headers */
1523         eh = eth_hdr(skb);
1524         eh->h_proto = htons(ETH_P_FCOE);
1525         memcpy(eh->h_dest, fcoe->ctlr.dest_addr, ETH_ALEN);
1526         if (fcoe->ctlr.map_dest)
1527                 memcpy(eh->h_dest + 3, fh->fh_d_id, 3);
1528
1529         if (unlikely(fcoe->ctlr.flogi_oxid != FC_XID_UNKNOWN))
1530                 memcpy(eh->h_source, fcoe->ctlr.ctl_src_addr, ETH_ALEN);
1531         else
1532                 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
1533
1534         hp = (struct fcoe_hdr *)(eh + 1);
1535         memset(hp, 0, sizeof(*hp));
1536         if (FC_FCOE_VER)
1537                 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
1538         hp->fcoe_sof = sof;
1539
1540         /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
1541         if (lport->seq_offload && fr_max_payload(fp)) {
1542                 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
1543                 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
1544         } else {
1545                 skb_shinfo(skb)->gso_type = 0;
1546                 skb_shinfo(skb)->gso_size = 0;
1547         }
1548         /* update tx stats: regardless if LLD fails */
1549         stats = per_cpu_ptr(lport->dev_stats, get_cpu());
1550         stats->TxFrames++;
1551         stats->TxWords += wlen;
1552         put_cpu();
1553
1554         /* send down to lld */
1555         fr_dev(fp) = lport;
1556         fcoe_port_send(port, skb);
1557         return 0;
1558 }
1559
1560 /**
1561  * fcoe_percpu_flush_done() - Indicate per-CPU queue flush completion
1562  * @skb: The completed skb (argument required by destructor)
1563  */
1564 static void fcoe_percpu_flush_done(struct sk_buff *skb)
1565 {
1566         complete(&fcoe_flush_completion);
1567 }
1568
1569 /**
1570  * fcoe_filter_frames() - filter out bad fcoe frames, i.e. bad CRC
1571  * @lport: The local port the frame was received on
1572  * @fp:    The received frame
1573  *
1574  * Return: 0 on passing filtering checks
1575  */
1576 static inline int fcoe_filter_frames(struct fc_lport *lport,
1577                                      struct fc_frame *fp)
1578 {
1579         struct fcoe_interface *fcoe;
1580         struct fc_frame_header *fh;
1581         struct sk_buff *skb = (struct sk_buff *)fp;
1582         struct fcoe_dev_stats *stats;
1583
1584         /*
1585          * We only check CRC if no offload is available and if it is
1586          * it's solicited data, in which case, the FCP layer would
1587          * check it during the copy.
1588          */
1589         if (lport->crc_offload && skb->ip_summed == CHECKSUM_UNNECESSARY)
1590                 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1591         else
1592                 fr_flags(fp) |= FCPHF_CRC_UNCHECKED;
1593
1594         fh = (struct fc_frame_header *) skb_transport_header(skb);
1595         fh = fc_frame_header_get(fp);
1596         if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA && fh->fh_type == FC_TYPE_FCP)
1597                 return 0;
1598
1599         fcoe = ((struct fcoe_port *)lport_priv(lport))->priv;
1600         if (is_fip_mode(&fcoe->ctlr) && fc_frame_payload_op(fp) == ELS_LOGO &&
1601             ntoh24(fh->fh_s_id) == FC_FID_FLOGI) {
1602                 FCOE_DBG("fcoe: dropping FCoE lport LOGO in fip mode\n");
1603                 return -EINVAL;
1604         }
1605
1606         if (!(fr_flags(fp) & FCPHF_CRC_UNCHECKED) ||
1607             le32_to_cpu(fr_crc(fp)) == ~crc32(~0, skb->data, skb->len)) {
1608                 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1609                 return 0;
1610         }
1611
1612         stats = per_cpu_ptr(lport->dev_stats, get_cpu());
1613         stats->InvalidCRCCount++;
1614         if (stats->InvalidCRCCount < 5)
1615                 printk(KERN_WARNING "fcoe: dropping frame with CRC error\n");
1616         return -EINVAL;
1617 }
1618
1619 /**
1620  * fcoe_recv_frame() - process a single received frame
1621  * @skb: frame to process
1622  */
1623 static void fcoe_recv_frame(struct sk_buff *skb)
1624 {
1625         u32 fr_len;
1626         struct fc_lport *lport;
1627         struct fcoe_rcv_info *fr;
1628         struct fcoe_dev_stats *stats;
1629         struct fcoe_crc_eof crc_eof;
1630         struct fc_frame *fp;
1631         struct fcoe_port *port;
1632         struct fcoe_hdr *hp;
1633
1634         fr = fcoe_dev_from_skb(skb);
1635         lport = fr->fr_dev;
1636         if (unlikely(!lport)) {
1637                 if (skb->destructor != fcoe_percpu_flush_done)
1638                         FCOE_NETDEV_DBG(skb->dev, "NULL lport in skb");
1639                 kfree_skb(skb);
1640                 return;
1641         }
1642
1643         FCOE_NETDEV_DBG(skb->dev, "skb_info: len:%d data_len:%d "
1644                         "head:%p data:%p tail:%p end:%p sum:%d dev:%s",
1645                         skb->len, skb->data_len,
1646                         skb->head, skb->data, skb_tail_pointer(skb),
1647                         skb_end_pointer(skb), skb->csum,
1648                         skb->dev ? skb->dev->name : "<NULL>");
1649
1650         port = lport_priv(lport);
1651         if (skb_is_nonlinear(skb))
1652                 skb_linearize(skb);     /* not ideal */
1653
1654         /*
1655          * Frame length checks and setting up the header pointers
1656          * was done in fcoe_rcv already.
1657          */
1658         hp = (struct fcoe_hdr *) skb_network_header(skb);
1659
1660         stats = per_cpu_ptr(lport->dev_stats, get_cpu());
1661         if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) {
1662                 if (stats->ErrorFrames < 5)
1663                         printk(KERN_WARNING "fcoe: FCoE version "
1664                                "mismatch: The frame has "
1665                                "version %x, but the "
1666                                "initiator supports version "
1667                                "%x\n", FC_FCOE_DECAPS_VER(hp),
1668                                FC_FCOE_VER);
1669                 goto drop;
1670         }
1671
1672         skb_pull(skb, sizeof(struct fcoe_hdr));
1673         fr_len = skb->len - sizeof(struct fcoe_crc_eof);
1674
1675         stats->RxFrames++;
1676         stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
1677
1678         fp = (struct fc_frame *)skb;
1679         fc_frame_init(fp);
1680         fr_dev(fp) = lport;
1681         fr_sof(fp) = hp->fcoe_sof;
1682
1683         /* Copy out the CRC and EOF trailer for access */
1684         if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof)))
1685                 goto drop;
1686         fr_eof(fp) = crc_eof.fcoe_eof;
1687         fr_crc(fp) = crc_eof.fcoe_crc32;
1688         if (pskb_trim(skb, fr_len))
1689                 goto drop;
1690
1691         if (!fcoe_filter_frames(lport, fp)) {
1692                 put_cpu();
1693                 fc_exch_recv(lport, fp);
1694                 return;
1695         }
1696 drop:
1697         stats->ErrorFrames++;
1698         put_cpu();
1699         kfree_skb(skb);
1700 }
1701
1702 /**
1703  * fcoe_percpu_receive_thread() - The per-CPU packet receive thread
1704  * @arg: The per-CPU context
1705  *
1706  * Return: 0 for success
1707  */
1708 int fcoe_percpu_receive_thread(void *arg)
1709 {
1710         struct fcoe_percpu_s *p = arg;
1711         struct sk_buff *skb;
1712
1713         set_user_nice(current, -20);
1714
1715         while (!kthread_should_stop()) {
1716
1717                 spin_lock_bh(&p->fcoe_rx_list.lock);
1718                 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) == NULL) {
1719                         set_current_state(TASK_INTERRUPTIBLE);
1720                         spin_unlock_bh(&p->fcoe_rx_list.lock);
1721                         schedule();
1722                         set_current_state(TASK_RUNNING);
1723                         if (kthread_should_stop())
1724                                 return 0;
1725                         spin_lock_bh(&p->fcoe_rx_list.lock);
1726                 }
1727                 spin_unlock_bh(&p->fcoe_rx_list.lock);
1728                 fcoe_recv_frame(skb);
1729         }
1730         return 0;
1731 }
1732
1733 /**
1734  * fcoe_dev_setup() - Setup the link change notification interface
1735  */
1736 static void fcoe_dev_setup(void)
1737 {
1738         register_netdevice_notifier(&fcoe_notifier);
1739 }
1740
1741 /**
1742  * fcoe_dev_cleanup() - Cleanup the link change notification interface
1743  */
1744 static void fcoe_dev_cleanup(void)
1745 {
1746         unregister_netdevice_notifier(&fcoe_notifier);
1747 }
1748
1749 /**
1750  * fcoe_device_notification() - Handler for net device events
1751  * @notifier: The context of the notification
1752  * @event:    The type of event
1753  * @ptr:      The net device that the event was on
1754  *
1755  * This function is called by the Ethernet driver in case of link change event.
1756  *
1757  * Returns: 0 for success
1758  */
1759 static int fcoe_device_notification(struct notifier_block *notifier,
1760                                     ulong event, void *ptr)
1761 {
1762         struct fc_lport *lport = NULL;
1763         struct net_device *netdev = ptr;
1764         struct fcoe_interface *fcoe;
1765         struct fcoe_port *port;
1766         struct fcoe_dev_stats *stats;
1767         u32 link_possible = 1;
1768         u32 mfs;
1769         int rc = NOTIFY_OK;
1770
1771         list_for_each_entry(fcoe, &fcoe_hostlist, list) {
1772                 if (fcoe->netdev == netdev) {
1773                         lport = fcoe->ctlr.lp;
1774                         break;
1775                 }
1776         }
1777         if (!lport) {
1778                 rc = NOTIFY_DONE;
1779                 goto out;
1780         }
1781
1782         switch (event) {
1783         case NETDEV_DOWN:
1784         case NETDEV_GOING_DOWN:
1785                 link_possible = 0;
1786                 break;
1787         case NETDEV_UP:
1788         case NETDEV_CHANGE:
1789                 break;
1790         case NETDEV_CHANGEMTU:
1791                 if (netdev->features & NETIF_F_FCOE_MTU)
1792                         break;
1793                 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
1794                                      sizeof(struct fcoe_crc_eof));
1795                 if (mfs >= FC_MIN_MAX_FRAME)
1796                         fc_set_mfs(lport, mfs);
1797                 break;
1798         case NETDEV_REGISTER:
1799                 break;
1800         case NETDEV_UNREGISTER:
1801                 list_del(&fcoe->list);
1802                 port = lport_priv(fcoe->ctlr.lp);
1803                 queue_work(fcoe_wq, &port->destroy_work);
1804                 goto out;
1805                 break;
1806         case NETDEV_FEAT_CHANGE:
1807                 fcoe_netdev_features_change(lport, netdev);
1808                 break;
1809         default:
1810                 FCOE_NETDEV_DBG(netdev, "Unknown event %ld "
1811                                 "from netdev netlink\n", event);
1812         }
1813
1814         fcoe_link_speed_update(lport);
1815
1816         if (link_possible && !fcoe_link_ok(lport))
1817                 fcoe_ctlr_link_up(&fcoe->ctlr);
1818         else if (fcoe_ctlr_link_down(&fcoe->ctlr)) {
1819                 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
1820                 stats->LinkFailureCount++;
1821                 put_cpu();
1822                 fcoe_clean_pending_queue(lport);
1823         }
1824 out:
1825         return rc;
1826 }
1827
1828 /**
1829  * fcoe_disable() - Disables a FCoE interface
1830  * @netdev  : The net_device object the Ethernet interface to create on
1831  *
1832  * Called from fcoe transport.
1833  *
1834  * Returns: 0 for success
1835  */
1836 static int fcoe_disable(struct net_device *netdev)
1837 {
1838         struct fcoe_interface *fcoe;
1839         int rc = 0;
1840
1841         mutex_lock(&fcoe_config_mutex);
1842
1843         rtnl_lock();
1844         fcoe = fcoe_hostlist_lookup_port(netdev);
1845         rtnl_unlock();
1846
1847         if (fcoe) {
1848                 fcoe_ctlr_link_down(&fcoe->ctlr);
1849                 fcoe_clean_pending_queue(fcoe->ctlr.lp);
1850         } else
1851                 rc = -ENODEV;
1852
1853         mutex_unlock(&fcoe_config_mutex);
1854         return rc;
1855 }
1856
1857 /**
1858  * fcoe_enable() - Enables a FCoE interface
1859  * @netdev  : The net_device object the Ethernet interface to create on
1860  *
1861  * Called from fcoe transport.
1862  *
1863  * Returns: 0 for success
1864  */
1865 static int fcoe_enable(struct net_device *netdev)
1866 {
1867         struct fcoe_interface *fcoe;
1868         int rc = 0;
1869
1870         mutex_lock(&fcoe_config_mutex);
1871         rtnl_lock();
1872         fcoe = fcoe_hostlist_lookup_port(netdev);
1873         rtnl_unlock();
1874
1875         if (!fcoe)
1876                 rc = -ENODEV;
1877         else if (!fcoe_link_ok(fcoe->ctlr.lp))
1878                 fcoe_ctlr_link_up(&fcoe->ctlr);
1879
1880         mutex_unlock(&fcoe_config_mutex);
1881         return rc;
1882 }
1883
1884 /**
1885  * fcoe_destroy() - Destroy a FCoE interface
1886  * @netdev  : The net_device object the Ethernet interface to create on
1887  *
1888  * Called from fcoe transport
1889  *
1890  * Returns: 0 for success
1891  */
1892 static int fcoe_destroy(struct net_device *netdev)
1893 {
1894         struct fcoe_interface *fcoe;
1895         struct fc_lport *lport;
1896         struct fcoe_port *port;
1897         int rc = 0;
1898
1899         mutex_lock(&fcoe_config_mutex);
1900         rtnl_lock();
1901         fcoe = fcoe_hostlist_lookup_port(netdev);
1902         if (!fcoe) {
1903                 rc = -ENODEV;
1904                 goto out_nodev;
1905         }
1906         lport = fcoe->ctlr.lp;
1907         port = lport_priv(lport);
1908         list_del(&fcoe->list);
1909         queue_work(fcoe_wq, &port->destroy_work);
1910 out_nodev:
1911         rtnl_unlock();
1912         mutex_unlock(&fcoe_config_mutex);
1913         return rc;
1914 }
1915
1916 /**
1917  * fcoe_destroy_work() - Destroy a FCoE port in a deferred work context
1918  * @work: Handle to the FCoE port to be destroyed
1919  */
1920 static void fcoe_destroy_work(struct work_struct *work)
1921 {
1922         struct fcoe_port *port;
1923         struct fcoe_interface *fcoe;
1924         int npiv = 0;
1925
1926         port = container_of(work, struct fcoe_port, destroy_work);
1927         mutex_lock(&fcoe_config_mutex);
1928
1929         /* set if this is an NPIV port */
1930         npiv = port->lport->vport ? 1 : 0;
1931
1932         fcoe = port->priv;
1933         fcoe_if_destroy(port->lport);
1934
1935         /* Do not tear down the fcoe interface for NPIV port */
1936         if (!npiv) {
1937                 rtnl_lock();
1938                 fcoe_interface_cleanup(fcoe);
1939                 rtnl_unlock();
1940         }
1941
1942         mutex_unlock(&fcoe_config_mutex);
1943 }
1944
1945 /**
1946  * fcoe_match() - Check if the FCoE is supported on the given netdevice
1947  * @netdev  : The net_device object the Ethernet interface to create on
1948  *
1949  * Called from fcoe transport.
1950  *
1951  * Returns: always returns true as this is the default FCoE transport,
1952  * i.e., support all netdevs.
1953  */
1954 static bool fcoe_match(struct net_device *netdev)
1955 {
1956         return true;
1957 }
1958
1959 /**
1960  * fcoe_create() - Create a fcoe interface
1961  * @netdev  : The net_device object the Ethernet interface to create on
1962  * @fip_mode: The FIP mode for this creation
1963  *
1964  * Called from fcoe transport
1965  *
1966  * Returns: 0 for success
1967  */
1968 static int fcoe_create(struct net_device *netdev, enum fip_state fip_mode)
1969 {
1970         int rc = 0;
1971         struct fcoe_interface *fcoe;
1972         struct fc_lport *lport;
1973
1974         mutex_lock(&fcoe_config_mutex);
1975         rtnl_lock();
1976
1977         /* look for existing lport */
1978         if (fcoe_hostlist_lookup(netdev)) {
1979                 rc = -EEXIST;
1980                 goto out_nodev;
1981         }
1982
1983         fcoe = fcoe_interface_create(netdev, fip_mode);
1984         if (IS_ERR(fcoe)) {
1985                 rc = PTR_ERR(fcoe);
1986                 goto out_nodev;
1987         }
1988
1989         lport = fcoe_if_create(fcoe, &netdev->dev, 0);
1990         if (IS_ERR(lport)) {
1991                 printk(KERN_ERR "fcoe: Failed to create interface (%s)\n",
1992                        netdev->name);
1993                 rc = -EIO;
1994                 fcoe_interface_cleanup(fcoe);
1995                 goto out_nodev;
1996         }
1997
1998         /* Make this the "master" N_Port */
1999         fcoe->ctlr.lp = lport;
2000
2001         /* add to lports list */
2002         fcoe_hostlist_add(lport);
2003
2004         /* start FIP Discovery and FLOGI */
2005         lport->boot_time = jiffies;
2006         fc_fabric_login(lport);
2007         if (!fcoe_link_ok(lport))
2008                 fcoe_ctlr_link_up(&fcoe->ctlr);
2009
2010 out_nodev:
2011         rtnl_unlock();
2012         mutex_unlock(&fcoe_config_mutex);
2013         return rc;
2014 }
2015
2016 /**
2017  * fcoe_link_speed_update() - Update the supported and actual link speeds
2018  * @lport: The local port to update speeds for
2019  *
2020  * Returns: 0 if the ethtool query was successful
2021  *          -1 if the ethtool query failed
2022  */
2023 int fcoe_link_speed_update(struct fc_lport *lport)
2024 {
2025         struct net_device *netdev = fcoe_netdev(lport);
2026         struct ethtool_cmd ecmd;
2027
2028         if (!dev_ethtool_get_settings(netdev, &ecmd)) {
2029                 lport->link_supported_speeds &=
2030                         ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
2031                 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
2032                                       SUPPORTED_1000baseT_Full))
2033                         lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
2034                 if (ecmd.supported & SUPPORTED_10000baseT_Full)
2035                         lport->link_supported_speeds |=
2036                                 FC_PORTSPEED_10GBIT;
2037                 switch (ethtool_cmd_speed(&ecmd)) {
2038                 case SPEED_1000:
2039                         lport->link_speed = FC_PORTSPEED_1GBIT;
2040                         break;
2041                 case SPEED_10000:
2042                         lport->link_speed = FC_PORTSPEED_10GBIT;
2043                         break;
2044                 }
2045                 return 0;
2046         }
2047         return -1;
2048 }
2049
2050 /**
2051  * fcoe_link_ok() - Check if the link is OK for a local port
2052  * @lport: The local port to check link on
2053  *
2054  * Returns: 0 if link is UP and OK, -1 if not
2055  *
2056  */
2057 int fcoe_link_ok(struct fc_lport *lport)
2058 {
2059         struct net_device *netdev = fcoe_netdev(lport);
2060
2061         if (netif_oper_up(netdev))
2062                 return 0;
2063         return -1;
2064 }
2065
2066 /**
2067  * fcoe_percpu_clean() - Clear all pending skbs for an local port
2068  * @lport: The local port whose skbs are to be cleared
2069  *
2070  * Must be called with fcoe_create_mutex held to single-thread completion.
2071  *
2072  * This flushes the pending skbs by adding a new skb to each queue and
2073  * waiting until they are all freed.  This assures us that not only are
2074  * there no packets that will be handled by the lport, but also that any
2075  * threads already handling packet have returned.
2076  */
2077 void fcoe_percpu_clean(struct fc_lport *lport)
2078 {
2079         struct fcoe_percpu_s *pp;
2080         struct fcoe_rcv_info *fr;
2081         struct sk_buff_head *list;
2082         struct sk_buff *skb, *next;
2083         struct sk_buff *head;
2084         unsigned int cpu;
2085
2086         for_each_possible_cpu(cpu) {
2087                 pp = &per_cpu(fcoe_percpu, cpu);
2088                 spin_lock_bh(&pp->fcoe_rx_list.lock);
2089                 list = &pp->fcoe_rx_list;
2090                 head = list->next;
2091                 for (skb = head; skb != (struct sk_buff *)list;
2092                      skb = next) {
2093                         next = skb->next;
2094                         fr = fcoe_dev_from_skb(skb);
2095                         if (fr->fr_dev == lport) {
2096                                 __skb_unlink(skb, list);
2097                                 kfree_skb(skb);
2098                         }
2099                 }
2100
2101                 if (!pp->thread || !cpu_online(cpu)) {
2102                         spin_unlock_bh(&pp->fcoe_rx_list.lock);
2103                         continue;
2104                 }
2105
2106                 skb = dev_alloc_skb(0);
2107                 if (!skb) {
2108                         spin_unlock_bh(&pp->fcoe_rx_list.lock);
2109                         continue;
2110                 }
2111                 skb->destructor = fcoe_percpu_flush_done;
2112
2113                 __skb_queue_tail(&pp->fcoe_rx_list, skb);
2114                 if (pp->fcoe_rx_list.qlen == 1)
2115                         wake_up_process(pp->thread);
2116                 spin_unlock_bh(&pp->fcoe_rx_list.lock);
2117
2118                 wait_for_completion(&fcoe_flush_completion);
2119         }
2120 }
2121
2122 /**
2123  * fcoe_reset() - Reset a local port
2124  * @shost: The SCSI host associated with the local port to be reset
2125  *
2126  * Returns: Always 0 (return value required by FC transport template)
2127  */
2128 int fcoe_reset(struct Scsi_Host *shost)
2129 {
2130         struct fc_lport *lport = shost_priv(shost);
2131         struct fcoe_port *port = lport_priv(lport);
2132         struct fcoe_interface *fcoe = port->priv;
2133
2134         fcoe_ctlr_link_down(&fcoe->ctlr);
2135         fcoe_clean_pending_queue(fcoe->ctlr.lp);
2136         if (!fcoe_link_ok(fcoe->ctlr.lp))
2137                 fcoe_ctlr_link_up(&fcoe->ctlr);
2138         return 0;
2139 }
2140
2141 /**
2142  * fcoe_hostlist_lookup_port() - Find the FCoE interface associated with a net device
2143  * @netdev: The net device used as a key
2144  *
2145  * Locking: Must be called with the RNL mutex held.
2146  *
2147  * Returns: NULL or the FCoE interface
2148  */
2149 static struct fcoe_interface *
2150 fcoe_hostlist_lookup_port(const struct net_device *netdev)
2151 {
2152         struct fcoe_interface *fcoe;
2153
2154         list_for_each_entry(fcoe, &fcoe_hostlist, list) {
2155                 if (fcoe->netdev == netdev)
2156                         return fcoe;
2157         }
2158         return NULL;
2159 }
2160
2161 /**
2162  * fcoe_hostlist_lookup() - Find the local port associated with a
2163  *                          given net device
2164  * @netdev: The netdevice used as a key
2165  *
2166  * Locking: Must be called with the RTNL mutex held
2167  *
2168  * Returns: NULL or the local port
2169  */
2170 static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev)
2171 {
2172         struct fcoe_interface *fcoe;
2173
2174         fcoe = fcoe_hostlist_lookup_port(netdev);
2175         return (fcoe) ? fcoe->ctlr.lp : NULL;
2176 }
2177
2178 /**
2179  * fcoe_hostlist_add() - Add the FCoE interface identified by a local
2180  *                       port to the hostlist
2181  * @lport: The local port that identifies the FCoE interface to be added
2182  *
2183  * Locking: must be called with the RTNL mutex held
2184  *
2185  * Returns: 0 for success
2186  */
2187 static int fcoe_hostlist_add(const struct fc_lport *lport)
2188 {
2189         struct fcoe_interface *fcoe;
2190         struct fcoe_port *port;
2191
2192         fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
2193         if (!fcoe) {
2194                 port = lport_priv(lport);
2195                 fcoe = port->priv;
2196                 list_add_tail(&fcoe->list, &fcoe_hostlist);
2197         }
2198         return 0;
2199 }
2200
2201
2202 static struct fcoe_transport fcoe_sw_transport = {
2203         .name = {FCOE_TRANSPORT_DEFAULT},
2204         .attached = false,
2205         .list = LIST_HEAD_INIT(fcoe_sw_transport.list),
2206         .match = fcoe_match,
2207         .create = fcoe_create,
2208         .destroy = fcoe_destroy,
2209         .enable = fcoe_enable,
2210         .disable = fcoe_disable,
2211 };
2212
2213 /**
2214  * fcoe_init() - Initialize fcoe.ko
2215  *
2216  * Returns: 0 on success, or a negative value on failure
2217  */
2218 static int __init fcoe_init(void)
2219 {
2220         struct fcoe_percpu_s *p;
2221         unsigned int cpu;
2222         int rc = 0;
2223
2224         fcoe_wq = alloc_workqueue("fcoe", 0, 0);
2225         if (!fcoe_wq)
2226                 return -ENOMEM;
2227
2228         /* register as a fcoe transport */
2229         rc = fcoe_transport_attach(&fcoe_sw_transport);
2230         if (rc) {
2231                 printk(KERN_ERR "failed to register an fcoe transport, check "
2232                         "if libfcoe is loaded\n");
2233                 return rc;
2234         }
2235
2236         mutex_lock(&fcoe_config_mutex);
2237
2238         for_each_possible_cpu(cpu) {
2239                 p = &per_cpu(fcoe_percpu, cpu);
2240                 skb_queue_head_init(&p->fcoe_rx_list);
2241         }
2242
2243         for_each_online_cpu(cpu)
2244                 fcoe_percpu_thread_create(cpu);
2245
2246         /* Initialize per CPU interrupt thread */
2247         rc = register_hotcpu_notifier(&fcoe_cpu_notifier);
2248         if (rc)
2249                 goto out_free;
2250
2251         /* Setup link change notification */
2252         fcoe_dev_setup();
2253
2254         rc = fcoe_if_init();
2255         if (rc)
2256                 goto out_free;
2257
2258         mutex_unlock(&fcoe_config_mutex);
2259         return 0;
2260
2261 out_free:
2262         for_each_online_cpu(cpu) {
2263                 fcoe_percpu_thread_destroy(cpu);
2264         }
2265         mutex_unlock(&fcoe_config_mutex);
2266         destroy_workqueue(fcoe_wq);
2267         return rc;
2268 }
2269 module_init(fcoe_init);
2270
2271 /**
2272  * fcoe_exit() - Clean up fcoe.ko
2273  *
2274  * Returns: 0 on success or a  negative value on failure
2275  */
2276 static void __exit fcoe_exit(void)
2277 {
2278         struct fcoe_interface *fcoe, *tmp;
2279         struct fcoe_port *port;
2280         unsigned int cpu;
2281
2282         mutex_lock(&fcoe_config_mutex);
2283
2284         fcoe_dev_cleanup();
2285
2286         /* releases the associated fcoe hosts */
2287         rtnl_lock();
2288         list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list) {
2289                 list_del(&fcoe->list);
2290                 port = lport_priv(fcoe->ctlr.lp);
2291                 queue_work(fcoe_wq, &port->destroy_work);
2292         }
2293         rtnl_unlock();
2294
2295         unregister_hotcpu_notifier(&fcoe_cpu_notifier);
2296
2297         for_each_online_cpu(cpu)
2298                 fcoe_percpu_thread_destroy(cpu);
2299
2300         mutex_unlock(&fcoe_config_mutex);
2301
2302         /*
2303          * destroy_work's may be chained but destroy_workqueue()
2304          * can take care of them. Just kill the fcoe_wq.
2305          */
2306         destroy_workqueue(fcoe_wq);
2307
2308         /*
2309          * Detaching from the scsi transport must happen after all
2310          * destroys are done on the fcoe_wq. destroy_workqueue will
2311          * enusre the fcoe_wq is flushed.
2312          */
2313         fcoe_if_exit();
2314
2315         /* detach from fcoe transport */
2316         fcoe_transport_detach(&fcoe_sw_transport);
2317 }
2318 module_exit(fcoe_exit);
2319
2320 /**
2321  * fcoe_flogi_resp() - FCoE specific FLOGI and FDISC response handler
2322  * @seq: active sequence in the FLOGI or FDISC exchange
2323  * @fp: response frame, or error encoded in a pointer (timeout)
2324  * @arg: pointer the the fcoe_ctlr structure
2325  *
2326  * This handles MAC address management for FCoE, then passes control on to
2327  * the libfc FLOGI response handler.
2328  */
2329 static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2330 {
2331         struct fcoe_ctlr *fip = arg;
2332         struct fc_exch *exch = fc_seq_exch(seq);
2333         struct fc_lport *lport = exch->lp;
2334         u8 *mac;
2335
2336         if (IS_ERR(fp))
2337                 goto done;
2338
2339         mac = fr_cb(fp)->granted_mac;
2340         if (is_zero_ether_addr(mac)) {
2341                 /* pre-FIP */
2342                 if (fcoe_ctlr_recv_flogi(fip, lport, fp)) {
2343                         fc_frame_free(fp);
2344                         return;
2345                 }
2346         }
2347         fcoe_update_src_mac(lport, mac);
2348 done:
2349         fc_lport_flogi_resp(seq, fp, lport);
2350 }
2351
2352 /**
2353  * fcoe_logo_resp() - FCoE specific LOGO response handler
2354  * @seq: active sequence in the LOGO exchange
2355  * @fp: response frame, or error encoded in a pointer (timeout)
2356  * @arg: pointer the the fcoe_ctlr structure
2357  *
2358  * This handles MAC address management for FCoE, then passes control on to
2359  * the libfc LOGO response handler.
2360  */
2361 static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2362 {
2363         struct fc_lport *lport = arg;
2364         static u8 zero_mac[ETH_ALEN] = { 0 };
2365
2366         if (!IS_ERR(fp))
2367                 fcoe_update_src_mac(lport, zero_mac);
2368         fc_lport_logo_resp(seq, fp, lport);
2369 }
2370
2371 /**
2372  * fcoe_elsct_send - FCoE specific ELS handler
2373  *
2374  * This does special case handling of FIP encapsualted ELS exchanges for FCoE,
2375  * using FCoE specific response handlers and passing the FIP controller as
2376  * the argument (the lport is still available from the exchange).
2377  *
2378  * Most of the work here is just handed off to the libfc routine.
2379  */
2380 static struct fc_seq *fcoe_elsct_send(struct fc_lport *lport, u32 did,
2381                                       struct fc_frame *fp, unsigned int op,
2382                                       void (*resp)(struct fc_seq *,
2383                                                    struct fc_frame *,
2384                                                    void *),
2385                                       void *arg, u32 timeout)
2386 {
2387         struct fcoe_port *port = lport_priv(lport);
2388         struct fcoe_interface *fcoe = port->priv;
2389         struct fcoe_ctlr *fip = &fcoe->ctlr;
2390         struct fc_frame_header *fh = fc_frame_header_get(fp);
2391
2392         switch (op) {
2393         case ELS_FLOGI:
2394         case ELS_FDISC:
2395                 if (lport->point_to_multipoint)
2396                         break;
2397                 return fc_elsct_send(lport, did, fp, op, fcoe_flogi_resp,
2398                                      fip, timeout);
2399         case ELS_LOGO:
2400                 /* only hook onto fabric logouts, not port logouts */
2401                 if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI)
2402                         break;
2403                 return fc_elsct_send(lport, did, fp, op, fcoe_logo_resp,
2404                                      lport, timeout);
2405         }
2406         return fc_elsct_send(lport, did, fp, op, resp, arg, timeout);
2407 }
2408
2409 /**
2410  * fcoe_vport_create() - create an fc_host/scsi_host for a vport
2411  * @vport: fc_vport object to create a new fc_host for
2412  * @disabled: start the new fc_host in a disabled state by default?
2413  *
2414  * Returns: 0 for success
2415  */
2416 static int fcoe_vport_create(struct fc_vport *vport, bool disabled)
2417 {
2418         struct Scsi_Host *shost = vport_to_shost(vport);
2419         struct fc_lport *n_port = shost_priv(shost);
2420         struct fcoe_port *port = lport_priv(n_port);
2421         struct fcoe_interface *fcoe = port->priv;
2422         struct net_device *netdev = fcoe->netdev;
2423         struct fc_lport *vn_port;
2424         int rc;
2425         char buf[32];
2426
2427         rc = fcoe_validate_vport_create(vport);
2428         if (rc) {
2429                 fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
2430                 printk(KERN_ERR "fcoe: Failed to create vport, "
2431                         "WWPN (0x%s) already exists\n",
2432                         buf);
2433                 return rc;
2434         }
2435
2436         mutex_lock(&fcoe_config_mutex);
2437         vn_port = fcoe_if_create(fcoe, &vport->dev, 1);
2438         mutex_unlock(&fcoe_config_mutex);
2439
2440         if (IS_ERR(vn_port)) {
2441                 printk(KERN_ERR "fcoe: fcoe_vport_create(%s) failed\n",
2442                        netdev->name);
2443                 return -EIO;
2444         }
2445
2446         if (disabled) {
2447                 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2448         } else {
2449                 vn_port->boot_time = jiffies;
2450                 fc_fabric_login(vn_port);
2451                 fc_vport_setlink(vn_port);
2452         }
2453         return 0;
2454 }
2455
2456 /**
2457  * fcoe_vport_destroy() - destroy the fc_host/scsi_host for a vport
2458  * @vport: fc_vport object that is being destroyed
2459  *
2460  * Returns: 0 for success
2461  */
2462 static int fcoe_vport_destroy(struct fc_vport *vport)
2463 {
2464         struct Scsi_Host *shost = vport_to_shost(vport);
2465         struct fc_lport *n_port = shost_priv(shost);
2466         struct fc_lport *vn_port = vport->dd_data;
2467         struct fcoe_port *port = lport_priv(vn_port);
2468
2469         mutex_lock(&n_port->lp_mutex);
2470         list_del(&vn_port->list);
2471         mutex_unlock(&n_port->lp_mutex);
2472         queue_work(fcoe_wq, &port->destroy_work);
2473         return 0;
2474 }
2475
2476 /**
2477  * fcoe_vport_disable() - change vport state
2478  * @vport: vport to bring online/offline
2479  * @disable: should the vport be disabled?
2480  */
2481 static int fcoe_vport_disable(struct fc_vport *vport, bool disable)
2482 {
2483         struct fc_lport *lport = vport->dd_data;
2484
2485         if (disable) {
2486                 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2487                 fc_fabric_logoff(lport);
2488         } else {
2489                 lport->boot_time = jiffies;
2490                 fc_fabric_login(lport);
2491                 fc_vport_setlink(lport);
2492         }
2493
2494         return 0;
2495 }
2496
2497 /**
2498  * fcoe_vport_set_symbolic_name() - append vport string to symbolic name
2499  * @vport: fc_vport with a new symbolic name string
2500  *
2501  * After generating a new symbolic name string, a new RSPN_ID request is
2502  * sent to the name server.  There is no response handler, so if it fails
2503  * for some reason it will not be retried.
2504  */
2505 static void fcoe_set_vport_symbolic_name(struct fc_vport *vport)
2506 {
2507         struct fc_lport *lport = vport->dd_data;
2508         struct fc_frame *fp;
2509         size_t len;
2510
2511         snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
2512                  "%s v%s over %s : %s", FCOE_NAME, FCOE_VERSION,
2513                  fcoe_netdev(lport)->name, vport->symbolic_name);
2514
2515         if (lport->state != LPORT_ST_READY)
2516                 return;
2517
2518         len = strnlen(fc_host_symbolic_name(lport->host), 255);
2519         fp = fc_frame_alloc(lport,
2520                             sizeof(struct fc_ct_hdr) +
2521                             sizeof(struct fc_ns_rspn) + len);
2522         if (!fp)
2523                 return;
2524         lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RSPN_ID,
2525                              NULL, NULL, 3 * lport->r_a_tov);
2526 }
2527
2528 /**
2529  * fcoe_get_lesb() - Fill the FCoE Link Error Status Block
2530  * @lport: the local port
2531  * @fc_lesb: the link error status block
2532  */
2533 static void fcoe_get_lesb(struct fc_lport *lport,
2534                          struct fc_els_lesb *fc_lesb)
2535 {
2536         unsigned int cpu;
2537         u32 lfc, vlfc, mdac;
2538         struct fcoe_dev_stats *devst;
2539         struct fcoe_fc_els_lesb *lesb;
2540         struct rtnl_link_stats64 temp;
2541         struct net_device *netdev = fcoe_netdev(lport);
2542
2543         lfc = 0;
2544         vlfc = 0;
2545         mdac = 0;
2546         lesb = (struct fcoe_fc_els_lesb *)fc_lesb;
2547         memset(lesb, 0, sizeof(*lesb));
2548         for_each_possible_cpu(cpu) {
2549                 devst = per_cpu_ptr(lport->dev_stats, cpu);
2550                 lfc += devst->LinkFailureCount;
2551                 vlfc += devst->VLinkFailureCount;
2552                 mdac += devst->MissDiscAdvCount;
2553         }
2554         lesb->lesb_link_fail = htonl(lfc);
2555         lesb->lesb_vlink_fail = htonl(vlfc);
2556         lesb->lesb_miss_fka = htonl(mdac);
2557         lesb->lesb_fcs_error = htonl(dev_get_stats(netdev, &temp)->rx_crc_errors);
2558 }
2559
2560 /**
2561  * fcoe_set_port_id() - Callback from libfc when Port_ID is set.
2562  * @lport: the local port
2563  * @port_id: the port ID
2564  * @fp: the received frame, if any, that caused the port_id to be set.
2565  *
2566  * This routine handles the case where we received a FLOGI and are
2567  * entering point-to-point mode.  We need to call fcoe_ctlr_recv_flogi()
2568  * so it can set the non-mapped mode and gateway address.
2569  *
2570  * The FLOGI LS_ACC is handled by fcoe_flogi_resp().
2571  */
2572 static void fcoe_set_port_id(struct fc_lport *lport,
2573                              u32 port_id, struct fc_frame *fp)
2574 {
2575         struct fcoe_port *port = lport_priv(lport);
2576         struct fcoe_interface *fcoe = port->priv;
2577
2578         if (fp && fc_frame_payload_op(fp) == ELS_FLOGI)
2579                 fcoe_ctlr_recv_flogi(&fcoe->ctlr, lport, fp);
2580 }