blob: 0ae54b2bce343c8b370b11b0fb6a95e54a20f6cf [file] [log] [blame]
Robert Love85b4aa42008-12-09 15:10:24 -08001/*
Chris Leechaf7f85d2009-08-25 13:59:24 -07002 * Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved.
Robert Love85b4aa42008-12-09 15:10:24 -08003 *
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>
Robert Love85b4aa42008-12-09 15:10:24 -080022#include <linux/spinlock.h>
Robert Love85b4aa42008-12-09 15:10:24 -080023#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>
Robert Love85b4aa42008-12-09 15:10:24 -080028#include <linux/crc32.h>
29#include <linux/cpu.h>
30#include <linux/fs.h>
31#include <linux/sysfs.h>
32#include <linux/ctype.h>
33#include <scsi/scsi_tcq.h>
34#include <scsi/scsicam.h>
35#include <scsi/scsi_transport.h>
36#include <scsi/scsi_transport_fc.h>
37#include <net/rtnetlink.h>
38
39#include <scsi/fc/fc_encaps.h>
Joe Eykholt97c83892009-03-17 11:42:40 -070040#include <scsi/fc/fc_fip.h>
Robert Love85b4aa42008-12-09 15:10:24 -080041
42#include <scsi/libfc.h>
43#include <scsi/fc_frame.h>
44#include <scsi/libfcoe.h>
Robert Love85b4aa42008-12-09 15:10:24 -080045
Vasu Devfdd78022009-03-17 11:42:24 -070046#include "fcoe.h"
47
Robert Love85b4aa42008-12-09 15:10:24 -080048MODULE_AUTHOR("Open-FCoE.org");
49MODULE_DESCRIPTION("FCoE");
Vasu Dev9b34ecf2009-03-17 11:42:13 -070050MODULE_LICENSE("GPL v2");
Robert Love85b4aa42008-12-09 15:10:24 -080051
Yi Zou05cc7392009-08-25 13:59:03 -070052/* Performance tuning parameters for fcoe */
53static unsigned int fcoe_ddp_min;
54module_param_named(ddp_min, fcoe_ddp_min, uint, S_IRUGO | S_IWUSR);
55MODULE_PARM_DESC(ddp_min, "Minimum I/O size in bytes for " \
56 "Direct Data Placement (DDP).");
57
Robert Love85b4aa42008-12-09 15:10:24 -080058/* fcoe host list */
59LIST_HEAD(fcoe_hostlist);
60DEFINE_RWLOCK(fcoe_hostlist_lock);
Robert Love5e5e92d2009-03-17 11:41:35 -070061DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -080062
Chris Leechdd3fd722009-04-21 16:27:36 -070063/* Function Prototypes */
Vasu Devfdd78022009-03-17 11:42:24 -070064static int fcoe_reset(struct Scsi_Host *shost);
65static int fcoe_xmit(struct fc_lport *, struct fc_frame *);
66static int fcoe_rcv(struct sk_buff *, struct net_device *,
67 struct packet_type *, struct net_device *);
68static int fcoe_percpu_receive_thread(void *arg);
69static void fcoe_clean_pending_queue(struct fc_lport *lp);
70static void fcoe_percpu_clean(struct fc_lport *lp);
71static int fcoe_link_ok(struct fc_lport *lp);
72
73static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *);
74static int fcoe_hostlist_add(const struct fc_lport *);
75static int fcoe_hostlist_remove(const struct fc_lport *);
76
Vasu Dev4bb6b512009-05-06 10:52:34 -070077static void fcoe_check_wait_queue(struct fc_lport *, struct sk_buff *);
Robert Love85b4aa42008-12-09 15:10:24 -080078static int fcoe_device_notification(struct notifier_block *, ulong, void *);
79static void fcoe_dev_setup(void);
80static void fcoe_dev_cleanup(void);
81
82/* notification function from net device */
83static struct notifier_block fcoe_notifier = {
84 .notifier_call = fcoe_device_notification,
85};
86
Vasu Dev7f349142009-03-27 09:06:31 -070087static struct scsi_transport_template *scsi_transport_fcoe_sw;
88
89struct fc_function_template fcoe_transport_function = {
90 .show_host_node_name = 1,
91 .show_host_port_name = 1,
92 .show_host_supported_classes = 1,
93 .show_host_supported_fc4s = 1,
94 .show_host_active_fc4s = 1,
95 .show_host_maxframe_size = 1,
96
97 .show_host_port_id = 1,
98 .show_host_supported_speeds = 1,
99 .get_host_speed = fc_get_host_speed,
100 .show_host_speed = 1,
101 .show_host_port_type = 1,
102 .get_host_port_state = fc_get_host_port_state,
103 .show_host_port_state = 1,
104 .show_host_symbolic_name = 1,
105
106 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
107 .show_rport_maxframe_size = 1,
108 .show_rport_supported_classes = 1,
109
110 .show_host_fabric_name = 1,
111 .show_starget_node_name = 1,
112 .show_starget_port_name = 1,
113 .show_starget_port_id = 1,
114 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
115 .show_rport_dev_loss_tmo = 1,
116 .get_fc_host_stats = fc_get_host_stats,
117 .issue_fc_host_lip = fcoe_reset,
118
119 .terminate_rport_io = fc_rport_terminate_io,
120};
121
122static struct scsi_host_template fcoe_shost_template = {
123 .module = THIS_MODULE,
124 .name = "FCoE Driver",
125 .proc_name = FCOE_NAME,
126 .queuecommand = fc_queuecommand,
127 .eh_abort_handler = fc_eh_abort,
128 .eh_device_reset_handler = fc_eh_device_reset,
129 .eh_host_reset_handler = fc_eh_host_reset,
130 .slave_alloc = fc_slave_alloc,
131 .change_queue_depth = fc_change_queue_depth,
132 .change_queue_type = fc_change_queue_type,
133 .this_id = -1,
134 .cmd_per_lun = 32,
135 .can_queue = FCOE_MAX_OUTSTANDING_COMMANDS,
136 .use_clustering = ENABLE_CLUSTERING,
137 .sg_tablesize = SG_ALL,
138 .max_sectors = 0xffff,
139};
140
141/**
Vasu Devab6b85c2009-05-17 12:33:08 +0000142 * fcoe_fip_recv - handle a received FIP frame.
143 * @skb: the receive skb
144 * @dev: associated &net_device
145 * @ptype: the &packet_type structure which was used to register this handler.
146 * @orig_dev: original receive &net_device, in case @dev is a bond.
147 *
148 * Returns: 0 for success
149 */
150static int fcoe_fip_recv(struct sk_buff *skb, struct net_device *dev,
151 struct packet_type *ptype,
152 struct net_device *orig_dev)
153{
Chris Leech014f5c32009-08-25 13:59:30 -0700154 struct fcoe_port *port;
Vasu Devab6b85c2009-05-17 12:33:08 +0000155
Chris Leech014f5c32009-08-25 13:59:30 -0700156 port = container_of(ptype, struct fcoe_port, fip_packet_type);
157 fcoe_ctlr_recv(&port->ctlr, skb);
Vasu Devab6b85c2009-05-17 12:33:08 +0000158 return 0;
159}
160
161/**
162 * fcoe_fip_send() - send an Ethernet-encapsulated FIP frame.
163 * @fip: FCoE controller.
164 * @skb: FIP Packet.
165 */
166static void fcoe_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
167{
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700168 skb->dev = fcoe_from_ctlr(fip)->netdev;
Vasu Devab6b85c2009-05-17 12:33:08 +0000169 dev_queue_xmit(skb);
170}
171
172/**
173 * fcoe_update_src_mac() - Update Ethernet MAC filters.
174 * @fip: FCoE controller.
175 * @old: Unicast MAC address to delete if the MAC is non-zero.
176 * @new: Unicast MAC address to add.
177 *
178 * Remove any previously-set unicast MAC filter.
179 * Add secondary FCoE MAC address filter for our OUI.
180 */
181static void fcoe_update_src_mac(struct fcoe_ctlr *fip, u8 *old, u8 *new)
182{
Chris Leech014f5c32009-08-25 13:59:30 -0700183 struct fcoe_port *port;
Vasu Devab6b85c2009-05-17 12:33:08 +0000184
Chris Leech014f5c32009-08-25 13:59:30 -0700185 port = fcoe_from_ctlr(fip);
Vasu Devab6b85c2009-05-17 12:33:08 +0000186 rtnl_lock();
187 if (!is_zero_ether_addr(old))
Chris Leech014f5c32009-08-25 13:59:30 -0700188 dev_unicast_delete(port->netdev, old);
189 dev_unicast_add(port->netdev, new);
Vasu Devab6b85c2009-05-17 12:33:08 +0000190 rtnl_unlock();
191}
192
193/**
Vasu Dev7f349142009-03-27 09:06:31 -0700194 * fcoe_lport_config() - sets up the fc_lport
195 * @lp: ptr to the fc_lport
Vasu Dev7f349142009-03-27 09:06:31 -0700196 *
197 * Returns: 0 for success
198 */
199static int fcoe_lport_config(struct fc_lport *lp)
200{
201 lp->link_up = 0;
202 lp->qfull = 0;
203 lp->max_retry_count = 3;
Abhijeet Joglekara3666952009-05-01 10:01:26 -0700204 lp->max_rport_retry_count = 3;
Vasu Dev7f349142009-03-27 09:06:31 -0700205 lp->e_d_tov = 2 * 1000; /* FC-FS default */
206 lp->r_a_tov = 2 * 2 * 1000;
207 lp->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
208 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
209
210 fc_lport_init_stats(lp);
211
212 /* lport fc_lport related configuration */
213 fc_lport_config(lp);
214
215 /* offload related configuration */
216 lp->crc_offload = 0;
217 lp->seq_offload = 0;
218 lp->lro_enabled = 0;
219 lp->lro_xid = 0;
220 lp->lso_max = 0;
221
222 return 0;
223}
224
225/**
Vasu Devab6b85c2009-05-17 12:33:08 +0000226 * fcoe_netdev_cleanup() - clean up netdev configurations
Chris Leech014f5c32009-08-25 13:59:30 -0700227 * @port: ptr to the fcoe_port
Vasu Devab6b85c2009-05-17 12:33:08 +0000228 */
Chris Leech014f5c32009-08-25 13:59:30 -0700229void fcoe_netdev_cleanup(struct fcoe_port *port)
Vasu Devab6b85c2009-05-17 12:33:08 +0000230{
231 u8 flogi_maddr[ETH_ALEN];
232
233 /* Don't listen for Ethernet packets anymore */
Chris Leech014f5c32009-08-25 13:59:30 -0700234 dev_remove_pack(&port->fcoe_packet_type);
235 dev_remove_pack(&port->fip_packet_type);
Vasu Devab6b85c2009-05-17 12:33:08 +0000236
237 /* Delete secondary MAC addresses */
238 rtnl_lock();
239 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
Chris Leech014f5c32009-08-25 13:59:30 -0700240 dev_unicast_delete(port->netdev, flogi_maddr);
241 if (!is_zero_ether_addr(port->ctlr.data_src_addr))
242 dev_unicast_delete(port->netdev, port->ctlr.data_src_addr);
243 if (port->ctlr.spma)
244 dev_unicast_delete(port->netdev, port->ctlr.ctl_src_addr);
245 dev_mc_delete(port->netdev, FIP_ALL_ENODE_MACS, ETH_ALEN, 0);
Vasu Devab6b85c2009-05-17 12:33:08 +0000246 rtnl_unlock();
247}
248
249/**
Vasu Dev1047f222009-05-06 10:52:40 -0700250 * fcoe_queue_timer() - fcoe queue timer
251 * @lp: the fc_lport pointer
252 *
253 * Calls fcoe_check_wait_queue on timeout
254 *
255 */
256static void fcoe_queue_timer(ulong lp)
257{
258 fcoe_check_wait_queue((struct fc_lport *)lp, NULL);
259}
260
261/**
Vasu Dev7f349142009-03-27 09:06:31 -0700262 * fcoe_netdev_config() - Set up netdev for SW FCoE
263 * @lp : ptr to the fc_lport
264 * @netdev : ptr to the associated netdevice struct
265 *
266 * Must be called after fcoe_lport_config() as it will use lport mutex
267 *
268 * Returns : 0 for success
269 */
270static int fcoe_netdev_config(struct fc_lport *lp, struct net_device *netdev)
271{
272 u32 mfs;
273 u64 wwnn, wwpn;
Chris Leech014f5c32009-08-25 13:59:30 -0700274 struct fcoe_port *port;
Vasu Dev7f349142009-03-27 09:06:31 -0700275 u8 flogi_maddr[ETH_ALEN];
Vasu Dev184dd342009-05-17 12:33:28 +0000276 struct netdev_hw_addr *ha;
Vasu Dev7f349142009-03-27 09:06:31 -0700277
278 /* Setup lport private data to point to fcoe softc */
Chris Leech014f5c32009-08-25 13:59:30 -0700279 port = lport_priv(lp);
280 port->ctlr.lp = lp;
281 port->netdev = netdev;
Vasu Dev7f349142009-03-27 09:06:31 -0700282
283 /* Do not support for bonding device */
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700284 if ((netdev->priv_flags & IFF_MASTER_ALB) ||
285 (netdev->priv_flags & IFF_SLAVE_INACTIVE) ||
286 (netdev->priv_flags & IFF_MASTER_8023AD)) {
Vasu Dev7f349142009-03-27 09:06:31 -0700287 return -EOPNOTSUPP;
288 }
289
290 /*
291 * Determine max frame size based on underlying device and optional
292 * user-configured limit. If the MFS is too low, fcoe_link_ok()
293 * will return 0, so do this first.
294 */
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700295 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
296 sizeof(struct fcoe_crc_eof));
Vasu Dev7f349142009-03-27 09:06:31 -0700297 if (fc_set_mfs(lp, mfs))
298 return -EINVAL;
299
Vasu Dev7f349142009-03-27 09:06:31 -0700300 /* offload features support */
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700301 if (netdev->features & NETIF_F_SG)
Vasu Dev7f349142009-03-27 09:06:31 -0700302 lp->sg_supp = 1;
303
Vasu Dev7f349142009-03-27 09:06:31 -0700304 if (netdev->features & NETIF_F_FCOE_CRC) {
305 lp->crc_offload = 1;
Robert Loved5488eb2009-06-10 15:30:59 -0700306 FCOE_NETDEV_DBG(netdev, "Supports FCCRC offload\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700307 }
Vasu Dev7f349142009-03-27 09:06:31 -0700308 if (netdev->features & NETIF_F_FSO) {
309 lp->seq_offload = 1;
310 lp->lso_max = netdev->gso_max_size;
Robert Loved5488eb2009-06-10 15:30:59 -0700311 FCOE_NETDEV_DBG(netdev, "Supports LSO for max len 0x%x\n",
312 lp->lso_max);
Vasu Dev7f349142009-03-27 09:06:31 -0700313 }
Vasu Dev7f349142009-03-27 09:06:31 -0700314 if (netdev->fcoe_ddp_xid) {
315 lp->lro_enabled = 1;
316 lp->lro_xid = netdev->fcoe_ddp_xid;
Robert Loved5488eb2009-06-10 15:30:59 -0700317 FCOE_NETDEV_DBG(netdev, "Supports LRO for max xid 0x%x\n",
318 lp->lro_xid);
Vasu Dev7f349142009-03-27 09:06:31 -0700319 }
Chris Leech014f5c32009-08-25 13:59:30 -0700320 skb_queue_head_init(&port->fcoe_pending_queue);
321 port->fcoe_pending_queue_active = 0;
322 setup_timer(&port->timer, fcoe_queue_timer, (unsigned long)lp);
Vasu Dev7f349142009-03-27 09:06:31 -0700323
Vasu Dev184dd342009-05-17 12:33:28 +0000324 /* look for SAN MAC address, if multiple SAN MACs exist, only
325 * use the first one for SPMA */
326 rcu_read_lock();
327 for_each_dev_addr(netdev, ha) {
328 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
Chris Leech014f5c32009-08-25 13:59:30 -0700329 (is_valid_ether_addr(port->ctlr.ctl_src_addr))) {
330 memcpy(port->ctlr.ctl_src_addr, ha->addr, ETH_ALEN);
331 port->ctlr.spma = 1;
Vasu Dev184dd342009-05-17 12:33:28 +0000332 break;
333 }
334 }
335 rcu_read_unlock();
336
Vasu Dev7f349142009-03-27 09:06:31 -0700337 /* setup Source Mac Address */
Chris Leech014f5c32009-08-25 13:59:30 -0700338 if (!port->ctlr.spma)
339 memcpy(port->ctlr.ctl_src_addr, netdev->dev_addr,
340 netdev->addr_len);
Vasu Dev7f349142009-03-27 09:06:31 -0700341
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700342 wwnn = fcoe_wwn_from_mac(netdev->dev_addr, 1, 0);
Vasu Dev7f349142009-03-27 09:06:31 -0700343 fc_set_wwnn(lp, wwnn);
344 /* XXX - 3rd arg needs to be vlan id */
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700345 wwpn = fcoe_wwn_from_mac(netdev->dev_addr, 2, 0);
Vasu Dev7f349142009-03-27 09:06:31 -0700346 fc_set_wwpn(lp, wwpn);
347
348 /*
349 * Add FCoE MAC address as second unicast MAC address
350 * or enter promiscuous mode if not capable of listening
351 * for multiple unicast MACs.
352 */
353 rtnl_lock();
354 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700355 dev_unicast_add(netdev, flogi_maddr);
Chris Leech014f5c32009-08-25 13:59:30 -0700356 if (port->ctlr.spma)
357 dev_unicast_add(netdev, port->ctlr.ctl_src_addr);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700358 dev_mc_add(netdev, FIP_ALL_ENODE_MACS, ETH_ALEN, 0);
Vasu Dev7f349142009-03-27 09:06:31 -0700359 rtnl_unlock();
360
361 /*
362 * setup the receive function from ethernet driver
363 * on the ethertype for the given device
364 */
Chris Leech014f5c32009-08-25 13:59:30 -0700365 port->fcoe_packet_type.func = fcoe_rcv;
366 port->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
367 port->fcoe_packet_type.dev = netdev;
368 dev_add_pack(&port->fcoe_packet_type);
Vasu Dev7f349142009-03-27 09:06:31 -0700369
Chris Leech014f5c32009-08-25 13:59:30 -0700370 port->fip_packet_type.func = fcoe_fip_recv;
371 port->fip_packet_type.type = htons(ETH_P_FIP);
372 port->fip_packet_type.dev = netdev;
373 dev_add_pack(&port->fip_packet_type);
Vasu Devab6b85c2009-05-17 12:33:08 +0000374
Vasu Dev7f349142009-03-27 09:06:31 -0700375 return 0;
376}
377
378/**
379 * fcoe_shost_config() - Sets up fc_lport->host
380 * @lp : ptr to the fc_lport
381 * @shost : ptr to the associated scsi host
382 * @dev : device associated to scsi host
383 *
384 * Must be called after fcoe_lport_config() and fcoe_netdev_config()
385 *
386 * Returns : 0 for success
387 */
388static int fcoe_shost_config(struct fc_lport *lp, struct Scsi_Host *shost,
389 struct device *dev)
390{
391 int rc = 0;
392
393 /* lport scsi host config */
394 lp->host = shost;
395
396 lp->host->max_lun = FCOE_MAX_LUN;
397 lp->host->max_id = FCOE_MAX_FCP_TARGET;
398 lp->host->max_channel = 0;
399 lp->host->transportt = scsi_transport_fcoe_sw;
400
401 /* add the new host to the SCSI-ml */
402 rc = scsi_add_host(lp->host, dev);
403 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700404 FCOE_NETDEV_DBG(fcoe_netdev(lp), "fcoe_shost_config: "
405 "error on scsi_add_host\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700406 return rc;
407 }
408 sprintf(fc_host_symbolic_name(lp->host), "%s v%s over %s",
409 FCOE_NAME, FCOE_VERSION,
410 fcoe_netdev(lp)->name);
411
412 return 0;
413}
414
Vasu Devd7179682009-07-29 17:05:21 -0700415/*
416 * fcoe_oem_match() - match for read types IO
417 * @fp: the fc_frame for new IO.
418 *
419 * Returns : true for read types IO, otherwise returns false.
420 */
421bool fcoe_oem_match(struct fc_frame *fp)
422{
Yi Zou05cc7392009-08-25 13:59:03 -0700423 return fc_fcp_is_read(fr_fsp(fp)) &&
424 (fr_fsp(fp)->data_len > fcoe_ddp_min);
Vasu Devd7179682009-07-29 17:05:21 -0700425}
426
Vasu Dev7f349142009-03-27 09:06:31 -0700427/**
428 * fcoe_em_config() - allocates em for this lport
Chris Leech014f5c32009-08-25 13:59:30 -0700429 * @lp: the fcoe that em is to allocated for
Vasu Dev7f349142009-03-27 09:06:31 -0700430 *
Vasu Deve8af4d42009-07-29 17:05:15 -0700431 * Called with write fcoe_hostlist_lock held.
432 *
Vasu Dev7f349142009-03-27 09:06:31 -0700433 * Returns : 0 on success
434 */
435static inline int fcoe_em_config(struct fc_lport *lp)
436{
Chris Leech014f5c32009-08-25 13:59:30 -0700437 struct fcoe_interface *fcoe;
438 struct fcoe_port *port = lport_priv(lp);
439 struct fcoe_port *oldfc = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700440 struct net_device *old_real_dev, *cur_real_dev;
Vasu Devd7179682009-07-29 17:05:21 -0700441 u16 min_xid = FCOE_MIN_XID;
442 u16 max_xid = FCOE_MAX_XID;
443
444 /*
445 * Check if need to allocate an em instance for
446 * offload exchange ids to be shared across all VN_PORTs/lport.
447 */
448 if (!lp->lro_enabled || !lp->lro_xid || (lp->lro_xid >= max_xid)) {
449 lp->lro_xid = 0;
450 goto skip_oem;
451 }
452
453 /*
454 * Reuse existing offload em instance in case
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700455 * it is already allocated on real eth device
Vasu Devd7179682009-07-29 17:05:21 -0700456 */
Chris Leech014f5c32009-08-25 13:59:30 -0700457 if (port->netdev->priv_flags & IFF_802_1Q_VLAN)
458 cur_real_dev = vlan_dev_real_dev(port->netdev);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700459 else
Chris Leech014f5c32009-08-25 13:59:30 -0700460 cur_real_dev = port->netdev;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700461
Chris Leech014f5c32009-08-25 13:59:30 -0700462 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
463 oldfc = fcoe->priv;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700464 if (oldfc->netdev->priv_flags & IFF_802_1Q_VLAN)
465 old_real_dev = vlan_dev_real_dev(oldfc->netdev);
466 else
467 old_real_dev = oldfc->netdev;
468
469 if (cur_real_dev == old_real_dev) {
Chris Leech014f5c32009-08-25 13:59:30 -0700470 port->oem = oldfc->oem;
Vasu Devd7179682009-07-29 17:05:21 -0700471 break;
472 }
473 }
474
Chris Leech014f5c32009-08-25 13:59:30 -0700475 if (port->oem) {
476 if (!fc_exch_mgr_add(lp, port->oem, fcoe_oem_match)) {
Vasu Devd7179682009-07-29 17:05:21 -0700477 printk(KERN_ERR "fcoe_em_config: failed to add "
478 "offload em:%p on interface:%s\n",
Chris Leech014f5c32009-08-25 13:59:30 -0700479 port->oem, port->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700480 return -ENOMEM;
481 }
482 } else {
Chris Leech014f5c32009-08-25 13:59:30 -0700483 port->oem = fc_exch_mgr_alloc(lp, FC_CLASS_3,
Vasu Devd7179682009-07-29 17:05:21 -0700484 FCOE_MIN_XID, lp->lro_xid,
485 fcoe_oem_match);
Chris Leech014f5c32009-08-25 13:59:30 -0700486 if (!port->oem) {
Vasu Devd7179682009-07-29 17:05:21 -0700487 printk(KERN_ERR "fcoe_em_config: failed to allocate "
488 "em for offload exches on interface:%s\n",
Chris Leech014f5c32009-08-25 13:59:30 -0700489 port->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700490 return -ENOMEM;
491 }
492 }
493
494 /*
495 * Exclude offload EM xid range from next EM xid range.
496 */
497 min_xid += lp->lro_xid + 1;
498
499skip_oem:
500 if (!fc_exch_mgr_alloc(lp, FC_CLASS_3, min_xid, max_xid, NULL)) {
501 printk(KERN_ERR "fcoe_em_config: failed to "
Chris Leech014f5c32009-08-25 13:59:30 -0700502 "allocate em on interface %s\n", port->netdev->name);
Vasu Dev7f349142009-03-27 09:06:31 -0700503 return -ENOMEM;
Vasu Devd7179682009-07-29 17:05:21 -0700504 }
Vasu Dev7f349142009-03-27 09:06:31 -0700505
506 return 0;
507}
508
509/**
510 * fcoe_if_destroy() - FCoE software HBA tear-down function
Chris Leechaf7f85d2009-08-25 13:59:24 -0700511 * @lport: fc_lport to destroy
Vasu Dev7f349142009-03-27 09:06:31 -0700512 */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700513static void fcoe_if_destroy(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700514{
Chris Leech014f5c32009-08-25 13:59:30 -0700515 struct fcoe_port *port = lport_priv(lport);
516 struct fcoe_interface *fcoe = port->fcoe;
517 struct net_device *netdev = port->netdev;
Vasu Dev7f349142009-03-27 09:06:31 -0700518
Robert Loved5488eb2009-06-10 15:30:59 -0700519 FCOE_NETDEV_DBG(netdev, "Destroying interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700520
Vasu Dev7f349142009-03-27 09:06:31 -0700521 /* Logout of the fabric */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700522 fc_fabric_logoff(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700523
524 /* Remove the instance from fcoe's list */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700525 fcoe_hostlist_remove(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700526
Vasu Devab6b85c2009-05-17 12:33:08 +0000527 /* clean up netdev configurations */
Chris Leech014f5c32009-08-25 13:59:30 -0700528 fcoe_netdev_cleanup(port);
Vasu Devab6b85c2009-05-17 12:33:08 +0000529
530 /* tear-down the FCoE controller */
Chris Leech014f5c32009-08-25 13:59:30 -0700531 fcoe_ctlr_destroy(&port->ctlr);
Vasu Dev7f349142009-03-27 09:06:31 -0700532
Joe Eykholtf161fb72009-07-29 17:04:17 -0700533 /* Free queued packets for the per-CPU receive threads */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700534 fcoe_percpu_clean(lport);
Joe Eykholtf161fb72009-07-29 17:04:17 -0700535
Vasu Dev7f349142009-03-27 09:06:31 -0700536 /* Cleanup the fc_lport */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700537 fc_lport_destroy(lport);
538 fc_fcp_destroy(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700539
540 /* Detach from the scsi-ml */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700541 fc_remove_host(lport->host);
542 scsi_remove_host(lport->host);
Vasu Dev7f349142009-03-27 09:06:31 -0700543
544 /* There are no more rports or I/O, free the EM */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700545 fc_exch_mgr_free(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700546
Vasu Dev7f349142009-03-27 09:06:31 -0700547 /* Free existing skbs */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700548 fcoe_clean_pending_queue(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700549
Vasu Dev1047f222009-05-06 10:52:40 -0700550 /* Stop the timer */
Chris Leech014f5c32009-08-25 13:59:30 -0700551 del_timer_sync(&port->timer);
Vasu Dev1047f222009-05-06 10:52:40 -0700552
Vasu Dev7f349142009-03-27 09:06:31 -0700553 /* Free memory used by statistical counters */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700554 fc_lport_free_stats(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700555
556 /* Release the net_device and Scsi_Host */
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700557 dev_put(netdev);
Chris Leechaf7f85d2009-08-25 13:59:24 -0700558 scsi_host_put(lport->host);
Chris Leech014f5c32009-08-25 13:59:30 -0700559 kfree(fcoe); /* TODO, should be refcounted */
Vasu Dev7f349142009-03-27 09:06:31 -0700560}
561
562/*
563 * fcoe_ddp_setup - calls LLD's ddp_setup through net_device
564 * @lp: the corresponding fc_lport
565 * @xid: the exchange id for this ddp transfer
566 * @sgl: the scatterlist describing this transfer
567 * @sgc: number of sg items
568 *
569 * Returns : 0 no ddp
570 */
571static int fcoe_ddp_setup(struct fc_lport *lp, u16 xid,
572 struct scatterlist *sgl, unsigned int sgc)
573{
574 struct net_device *n = fcoe_netdev(lp);
575
576 if (n->netdev_ops && n->netdev_ops->ndo_fcoe_ddp_setup)
577 return n->netdev_ops->ndo_fcoe_ddp_setup(n, xid, sgl, sgc);
578
579 return 0;
580}
581
582/*
583 * fcoe_ddp_done - calls LLD's ddp_done through net_device
584 * @lp: the corresponding fc_lport
585 * @xid: the exchange id for this ddp transfer
586 *
587 * Returns : the length of data that have been completed by ddp
588 */
589static int fcoe_ddp_done(struct fc_lport *lp, u16 xid)
590{
591 struct net_device *n = fcoe_netdev(lp);
592
593 if (n->netdev_ops && n->netdev_ops->ndo_fcoe_ddp_done)
594 return n->netdev_ops->ndo_fcoe_ddp_done(n, xid);
595 return 0;
596}
597
598static struct libfc_function_template fcoe_libfc_fcn_templ = {
599 .frame_send = fcoe_xmit,
600 .ddp_setup = fcoe_ddp_setup,
601 .ddp_done = fcoe_ddp_done,
602};
603
604/**
605 * fcoe_if_create() - this function creates the fcoe interface
606 * @netdev: pointer the associated netdevice
Chris Leechaf7f85d2009-08-25 13:59:24 -0700607 * @parent: device pointer to be the parent in sysfs for the SCSI host
Vasu Dev7f349142009-03-27 09:06:31 -0700608 *
609 * Creates fc_lport struct and scsi_host for lport, configures lport
610 * and starts fabric login.
611 *
Chris Leechaf7f85d2009-08-25 13:59:24 -0700612 * Returns : The allocated fc_lport or an error pointer
Vasu Dev7f349142009-03-27 09:06:31 -0700613 */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700614static struct fc_lport *fcoe_if_create(struct net_device *netdev,
615 struct device *parent)
Vasu Dev7f349142009-03-27 09:06:31 -0700616{
617 int rc;
Chris Leechaf7f85d2009-08-25 13:59:24 -0700618 struct fc_lport *lport = NULL;
Chris Leech014f5c32009-08-25 13:59:30 -0700619 struct fcoe_port *port;
620 struct fcoe_interface *fcoe;
Vasu Dev7f349142009-03-27 09:06:31 -0700621 struct Scsi_Host *shost;
622
Robert Loved5488eb2009-06-10 15:30:59 -0700623 FCOE_NETDEV_DBG(netdev, "Create Interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700624
Chris Leech014f5c32009-08-25 13:59:30 -0700625 fcoe = kzalloc(sizeof(*fcoe), GFP_KERNEL);
626 if (!fcoe) {
627 FCOE_NETDEV_DBG(netdev, "Could not allocate fcoe structure\n");
Chris Leechaf7f85d2009-08-25 13:59:24 -0700628 rc = -ENOMEM;
629 goto out;
Vasu Dev7f349142009-03-27 09:06:31 -0700630 }
Chris Leech014f5c32009-08-25 13:59:30 -0700631
632 shost = libfc_host_alloc(&fcoe_shost_template,
633 sizeof(struct fcoe_port));
634 if (!shost) {
635 FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n");
636 rc = -ENOMEM;
637 goto out_kfree_port;
638 }
Chris Leechaf7f85d2009-08-25 13:59:24 -0700639 lport = shost_priv(shost);
Chris Leech014f5c32009-08-25 13:59:30 -0700640 port = lport_priv(lport);
641
642 port->fcoe = fcoe;
643 fcoe->priv = port;
Vasu Dev7f349142009-03-27 09:06:31 -0700644
645 /* configure fc_lport, e.g., em */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700646 rc = fcoe_lport_config(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700647 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700648 FCOE_NETDEV_DBG(netdev, "Could not configure lport for the "
649 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700650 goto out_host_put;
651 }
652
Joe Eykholt97c83892009-03-17 11:42:40 -0700653 /*
654 * Initialize FIP.
655 */
Chris Leech014f5c32009-08-25 13:59:30 -0700656 fcoe_ctlr_init(&port->ctlr);
657 port->ctlr.send = fcoe_fip_send;
658 port->ctlr.update_mac = fcoe_update_src_mac;
Joe Eykholt97c83892009-03-17 11:42:40 -0700659
Vasu Devab6b85c2009-05-17 12:33:08 +0000660 /* configure lport network properties */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700661 rc = fcoe_netdev_config(lport, netdev);
Vasu Devab6b85c2009-05-17 12:33:08 +0000662 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700663 FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the "
664 "interface\n");
Vasu Devab6b85c2009-05-17 12:33:08 +0000665 goto out_netdev_cleanup;
666 }
Joe Eykholt97c83892009-03-17 11:42:40 -0700667
Vasu Dev7f349142009-03-27 09:06:31 -0700668 /* configure lport scsi host properties */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700669 rc = fcoe_shost_config(lport, shost, parent);
Vasu Dev7f349142009-03-27 09:06:31 -0700670 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700671 FCOE_NETDEV_DBG(netdev, "Could not configure shost for the "
672 "interface\n");
Vasu Devab6b85c2009-05-17 12:33:08 +0000673 goto out_netdev_cleanup;
Vasu Dev7f349142009-03-27 09:06:31 -0700674 }
675
Vasu Dev7f349142009-03-27 09:06:31 -0700676 /* Initialize the library */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700677 rc = fcoe_libfc_config(lport, &fcoe_libfc_fcn_templ);
Vasu Dev7f349142009-03-27 09:06:31 -0700678 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700679 FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the "
680 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700681 goto out_lp_destroy;
682 }
683
Vasu Deve8af4d42009-07-29 17:05:15 -0700684 /*
685 * fcoe_em_alloc() and fcoe_hostlist_add() both
686 * need to be atomic under fcoe_hostlist_lock
687 * since fcoe_em_alloc() looks for an existing EM
688 * instance on host list updated by fcoe_hostlist_add().
689 */
690 write_lock(&fcoe_hostlist_lock);
Vasu Dev96316092009-07-29 17:05:00 -0700691 /* lport exch manager allocation */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700692 rc = fcoe_em_config(lport);
Vasu Dev96316092009-07-29 17:05:00 -0700693 if (rc) {
694 FCOE_NETDEV_DBG(netdev, "Could not configure the EM for the "
695 "interface\n");
696 goto out_lp_destroy;
697 }
698
Vasu Dev7f349142009-03-27 09:06:31 -0700699 /* add to lports list */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700700 fcoe_hostlist_add(lport);
Vasu Deve8af4d42009-07-29 17:05:15 -0700701 write_unlock(&fcoe_hostlist_lock);
Vasu Dev7f349142009-03-27 09:06:31 -0700702
Chris Leechaf7f85d2009-08-25 13:59:24 -0700703 lport->boot_time = jiffies;
Vasu Dev7f349142009-03-27 09:06:31 -0700704
Chris Leechaf7f85d2009-08-25 13:59:24 -0700705 fc_fabric_login(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700706
Chris Leechaf7f85d2009-08-25 13:59:24 -0700707 if (!fcoe_link_ok(lport))
Chris Leech014f5c32009-08-25 13:59:30 -0700708 fcoe_ctlr_link_up(&port->ctlr);
Joe Eykholt97c83892009-03-17 11:42:40 -0700709
Vasu Dev7f349142009-03-27 09:06:31 -0700710 dev_hold(netdev);
711
Chris Leechaf7f85d2009-08-25 13:59:24 -0700712 return lport;
Vasu Dev7f349142009-03-27 09:06:31 -0700713
714out_lp_destroy:
Chris Leechaf7f85d2009-08-25 13:59:24 -0700715 fc_exch_mgr_free(lport);
Vasu Devab6b85c2009-05-17 12:33:08 +0000716out_netdev_cleanup:
Chris Leech014f5c32009-08-25 13:59:30 -0700717 fcoe_netdev_cleanup(port);
Vasu Dev7f349142009-03-27 09:06:31 -0700718out_host_put:
Chris Leechaf7f85d2009-08-25 13:59:24 -0700719 scsi_host_put(lport->host);
Chris Leech014f5c32009-08-25 13:59:30 -0700720out_kfree_port:
721 kfree(fcoe);
Chris Leechaf7f85d2009-08-25 13:59:24 -0700722out:
723 return ERR_PTR(rc);
Vasu Dev7f349142009-03-27 09:06:31 -0700724}
725
726/**
727 * fcoe_if_init() - attach to scsi transport
728 *
729 * Returns : 0 on success
730 */
731static int __init fcoe_if_init(void)
732{
733 /* attach to scsi transport */
734 scsi_transport_fcoe_sw =
735 fc_attach_transport(&fcoe_transport_function);
736
737 if (!scsi_transport_fcoe_sw) {
Robert Loved5488eb2009-06-10 15:30:59 -0700738 printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700739 return -ENODEV;
740 }
741
742 return 0;
743}
744
745/**
746 * fcoe_if_exit() - detach from scsi transport
747 *
748 * Returns : 0 on success
749 */
750int __exit fcoe_if_exit(void)
751{
752 fc_release_transport(scsi_transport_fcoe_sw);
753 return 0;
754}
755
Robert Love85b4aa42008-12-09 15:10:24 -0800756/**
Robert Love8976f422009-03-17 11:41:46 -0700757 * fcoe_percpu_thread_create() - Create a receive thread for an online cpu
758 * @cpu: cpu index for the online cpu
759 */
760static void fcoe_percpu_thread_create(unsigned int cpu)
761{
762 struct fcoe_percpu_s *p;
763 struct task_struct *thread;
764
765 p = &per_cpu(fcoe_percpu, cpu);
766
767 thread = kthread_create(fcoe_percpu_receive_thread,
768 (void *)p, "fcoethread/%d", cpu);
769
770 if (likely(!IS_ERR(p->thread))) {
771 kthread_bind(thread, cpu);
772 wake_up_process(thread);
773
774 spin_lock_bh(&p->fcoe_rx_list.lock);
775 p->thread = thread;
776 spin_unlock_bh(&p->fcoe_rx_list.lock);
777 }
778}
779
780/**
781 * fcoe_percpu_thread_destroy() - removes the rx thread for the given cpu
782 * @cpu: cpu index the rx thread is to be removed
783 *
784 * Destroys a per-CPU Rx thread. Any pending skbs are moved to the
785 * current CPU's Rx thread. If the thread being destroyed is bound to
786 * the CPU processing this context the skbs will be freed.
787 */
788static void fcoe_percpu_thread_destroy(unsigned int cpu)
789{
790 struct fcoe_percpu_s *p;
791 struct task_struct *thread;
792 struct page *crc_eof;
793 struct sk_buff *skb;
794#ifdef CONFIG_SMP
795 struct fcoe_percpu_s *p0;
796 unsigned targ_cpu = smp_processor_id();
797#endif /* CONFIG_SMP */
798
Robert Loved5488eb2009-06-10 15:30:59 -0700799 FCOE_DBG("Destroying receive thread for CPU %d\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -0700800
801 /* Prevent any new skbs from being queued for this CPU. */
802 p = &per_cpu(fcoe_percpu, cpu);
803 spin_lock_bh(&p->fcoe_rx_list.lock);
804 thread = p->thread;
805 p->thread = NULL;
806 crc_eof = p->crc_eof_page;
807 p->crc_eof_page = NULL;
808 p->crc_eof_offset = 0;
809 spin_unlock_bh(&p->fcoe_rx_list.lock);
810
811#ifdef CONFIG_SMP
812 /*
813 * Don't bother moving the skb's if this context is running
814 * on the same CPU that is having its thread destroyed. This
815 * can easily happen when the module is removed.
816 */
817 if (cpu != targ_cpu) {
818 p0 = &per_cpu(fcoe_percpu, targ_cpu);
819 spin_lock_bh(&p0->fcoe_rx_list.lock);
820 if (p0->thread) {
Robert Loved5488eb2009-06-10 15:30:59 -0700821 FCOE_DBG("Moving frames from CPU %d to CPU %d\n",
822 cpu, targ_cpu);
Robert Love8976f422009-03-17 11:41:46 -0700823
824 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
825 __skb_queue_tail(&p0->fcoe_rx_list, skb);
826 spin_unlock_bh(&p0->fcoe_rx_list.lock);
827 } else {
828 /*
829 * The targeted CPU is not initialized and cannot accept
830 * new skbs. Unlock the targeted CPU and drop the skbs
831 * on the CPU that is going offline.
832 */
833 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
834 kfree_skb(skb);
835 spin_unlock_bh(&p0->fcoe_rx_list.lock);
836 }
837 } else {
838 /*
839 * This scenario occurs when the module is being removed
840 * and all threads are being destroyed. skbs will continue
841 * to be shifted from the CPU thread that is being removed
842 * to the CPU thread associated with the CPU that is processing
843 * the module removal. Once there is only one CPU Rx thread it
844 * will reach this case and we will drop all skbs and later
845 * stop the thread.
846 */
847 spin_lock_bh(&p->fcoe_rx_list.lock);
848 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
849 kfree_skb(skb);
850 spin_unlock_bh(&p->fcoe_rx_list.lock);
851 }
852#else
853 /*
Chris Leechdd3fd722009-04-21 16:27:36 -0700854 * This a non-SMP scenario where the singular Rx thread is
Robert Love8976f422009-03-17 11:41:46 -0700855 * being removed. Free all skbs and stop the thread.
856 */
857 spin_lock_bh(&p->fcoe_rx_list.lock);
858 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
859 kfree_skb(skb);
860 spin_unlock_bh(&p->fcoe_rx_list.lock);
861#endif
862
863 if (thread)
864 kthread_stop(thread);
865
866 if (crc_eof)
867 put_page(crc_eof);
868}
869
870/**
871 * fcoe_cpu_callback() - fcoe cpu hotplug event callback
872 * @nfb: callback data block
873 * @action: event triggering the callback
874 * @hcpu: index for the cpu of this event
875 *
876 * This creates or destroys per cpu data for fcoe
877 *
878 * Returns NOTIFY_OK always.
879 */
880static int fcoe_cpu_callback(struct notifier_block *nfb,
881 unsigned long action, void *hcpu)
882{
883 unsigned cpu = (unsigned long)hcpu;
884
885 switch (action) {
886 case CPU_ONLINE:
887 case CPU_ONLINE_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -0700888 FCOE_DBG("CPU %x online: Create Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -0700889 fcoe_percpu_thread_create(cpu);
890 break;
891 case CPU_DEAD:
892 case CPU_DEAD_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -0700893 FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -0700894 fcoe_percpu_thread_destroy(cpu);
895 break;
896 default:
897 break;
898 }
899 return NOTIFY_OK;
900}
901
902static struct notifier_block fcoe_cpu_notifier = {
903 .notifier_call = fcoe_cpu_callback,
904};
905
906/**
Robert Love34f42a02009-02-27 10:55:45 -0800907 * fcoe_rcv() - this is the fcoe receive function called by NET_RX_SOFTIRQ
Robert Love85b4aa42008-12-09 15:10:24 -0800908 * @skb: the receive skb
909 * @dev: associated net device
910 * @ptype: context
Chris Leechdd3fd722009-04-21 16:27:36 -0700911 * @olddev: last device
Robert Love85b4aa42008-12-09 15:10:24 -0800912 *
913 * this function will receive the packet and build fc frame and pass it up
914 *
915 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -0800916 */
Robert Love85b4aa42008-12-09 15:10:24 -0800917int fcoe_rcv(struct sk_buff *skb, struct net_device *dev,
918 struct packet_type *ptype, struct net_device *olddev)
919{
920 struct fc_lport *lp;
921 struct fcoe_rcv_info *fr;
Chris Leech014f5c32009-08-25 13:59:30 -0700922 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -0800923 struct fc_frame_header *fh;
Robert Love85b4aa42008-12-09 15:10:24 -0800924 struct fcoe_percpu_s *fps;
Vasu Devb2f00912009-08-25 13:58:53 -0700925 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -0800926
Chris Leech014f5c32009-08-25 13:59:30 -0700927 port = container_of(ptype, struct fcoe_port, fcoe_packet_type);
928 lp = port->ctlr.lp;
Robert Love85b4aa42008-12-09 15:10:24 -0800929 if (unlikely(lp == NULL)) {
Robert Loved5488eb2009-06-10 15:30:59 -0700930 FCOE_NETDEV_DBG(dev, "Cannot find hba structure");
Robert Love85b4aa42008-12-09 15:10:24 -0800931 goto err2;
932 }
Joe Eykholt97c83892009-03-17 11:42:40 -0700933 if (!lp->link_up)
934 goto err2;
Robert Love85b4aa42008-12-09 15:10:24 -0800935
Robert Loved5488eb2009-06-10 15:30:59 -0700936 FCOE_NETDEV_DBG(dev, "skb_info: len:%d data_len:%d head:%p "
937 "data:%p tail:%p end:%p sum:%d dev:%s",
938 skb->len, skb->data_len, skb->head, skb->data,
939 skb_tail_pointer(skb), skb_end_pointer(skb),
940 skb->csum, skb->dev ? skb->dev->name : "<NULL>");
Robert Love85b4aa42008-12-09 15:10:24 -0800941
942 /* check for FCOE packet type */
943 if (unlikely(eth_hdr(skb)->h_proto != htons(ETH_P_FCOE))) {
Robert Loved5488eb2009-06-10 15:30:59 -0700944 FCOE_NETDEV_DBG(dev, "Wrong FC type frame");
Robert Love85b4aa42008-12-09 15:10:24 -0800945 goto err;
946 }
947
948 /*
949 * Check for minimum frame length, and make sure required FCoE
950 * and FC headers are pulled into the linear data area.
951 */
952 if (unlikely((skb->len < FCOE_MIN_FRAME) ||
953 !pskb_may_pull(skb, FCOE_HEADER_LEN)))
954 goto err;
955
956 skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
957 fh = (struct fc_frame_header *) skb_transport_header(skb);
958
Robert Love85b4aa42008-12-09 15:10:24 -0800959 fr = fcoe_dev_from_skb(skb);
960 fr->fr_dev = lp;
961 fr->ptype = ptype;
Robert Love5e5e92d2009-03-17 11:41:35 -0700962
Robert Love85b4aa42008-12-09 15:10:24 -0800963 /*
Vasu Devb2f00912009-08-25 13:58:53 -0700964 * In case the incoming frame's exchange is originated from
965 * the initiator, then received frame's exchange id is ANDed
966 * with fc_cpu_mask bits to get the same cpu on which exchange
967 * was originated, otherwise just use the current cpu.
Robert Love85b4aa42008-12-09 15:10:24 -0800968 */
Vasu Devb2f00912009-08-25 13:58:53 -0700969 if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
970 cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
971 else
972 cpu = smp_processor_id();
Robert Love5e5e92d2009-03-17 11:41:35 -0700973
Robert Love8976f422009-03-17 11:41:46 -0700974 fps = &per_cpu(fcoe_percpu, cpu);
Robert Love85b4aa42008-12-09 15:10:24 -0800975 spin_lock_bh(&fps->fcoe_rx_list.lock);
Robert Love8976f422009-03-17 11:41:46 -0700976 if (unlikely(!fps->thread)) {
977 /*
978 * The targeted CPU is not ready, let's target
979 * the first CPU now. For non-SMP systems this
980 * will check the same CPU twice.
981 */
Robert Loved5488eb2009-06-10 15:30:59 -0700982 FCOE_NETDEV_DBG(dev, "CPU is online, but no receive thread "
983 "ready for incoming skb- using first online "
984 "CPU.\n");
Robert Love8976f422009-03-17 11:41:46 -0700985
986 spin_unlock_bh(&fps->fcoe_rx_list.lock);
987 cpu = first_cpu(cpu_online_map);
988 fps = &per_cpu(fcoe_percpu, cpu);
989 spin_lock_bh(&fps->fcoe_rx_list.lock);
990 if (!fps->thread) {
991 spin_unlock_bh(&fps->fcoe_rx_list.lock);
992 goto err;
993 }
994 }
995
996 /*
997 * We now have a valid CPU that we're targeting for
998 * this skb. We also have this receive thread locked,
999 * so we're free to queue skbs into it's queue.
1000 */
Robert Love85b4aa42008-12-09 15:10:24 -08001001 __skb_queue_tail(&fps->fcoe_rx_list, skb);
1002 if (fps->fcoe_rx_list.qlen == 1)
1003 wake_up_process(fps->thread);
1004
1005 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1006
1007 return 0;
1008err:
Robert Love582b45b2009-03-31 15:51:50 -07001009 fc_lport_get_stats(lp)->ErrorFrames++;
Robert Love85b4aa42008-12-09 15:10:24 -08001010
1011err2:
1012 kfree_skb(skb);
1013 return -1;
1014}
Robert Love85b4aa42008-12-09 15:10:24 -08001015
1016/**
Robert Love34f42a02009-02-27 10:55:45 -08001017 * fcoe_start_io() - pass to netdev to start xmit for fcoe
Robert Love85b4aa42008-12-09 15:10:24 -08001018 * @skb: the skb to be xmitted
1019 *
1020 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001021 */
Robert Love85b4aa42008-12-09 15:10:24 -08001022static inline int fcoe_start_io(struct sk_buff *skb)
1023{
1024 int rc;
1025
1026 skb_get(skb);
1027 rc = dev_queue_xmit(skb);
1028 if (rc != 0)
1029 return rc;
1030 kfree_skb(skb);
1031 return 0;
1032}
1033
1034/**
Chris Leechdd3fd722009-04-21 16:27:36 -07001035 * fcoe_get_paged_crc_eof() - in case we need to alloc a page for crc_eof
Robert Love85b4aa42008-12-09 15:10:24 -08001036 * @skb: the skb to be xmitted
1037 * @tlen: total len
1038 *
1039 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001040 */
Robert Love85b4aa42008-12-09 15:10:24 -08001041static int fcoe_get_paged_crc_eof(struct sk_buff *skb, int tlen)
1042{
1043 struct fcoe_percpu_s *fps;
1044 struct page *page;
Robert Love85b4aa42008-12-09 15:10:24 -08001045
Robert Love5e5e92d2009-03-17 11:41:35 -07001046 fps = &get_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001047 page = fps->crc_eof_page;
1048 if (!page) {
1049 page = alloc_page(GFP_ATOMIC);
1050 if (!page) {
Robert Love5e5e92d2009-03-17 11:41:35 -07001051 put_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001052 return -ENOMEM;
1053 }
1054 fps->crc_eof_page = page;
Robert Love8976f422009-03-17 11:41:46 -07001055 fps->crc_eof_offset = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001056 }
1057
1058 get_page(page);
1059 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, page,
1060 fps->crc_eof_offset, tlen);
1061 skb->len += tlen;
1062 skb->data_len += tlen;
1063 skb->truesize += tlen;
1064 fps->crc_eof_offset += sizeof(struct fcoe_crc_eof);
1065
1066 if (fps->crc_eof_offset >= PAGE_SIZE) {
1067 fps->crc_eof_page = NULL;
1068 fps->crc_eof_offset = 0;
1069 put_page(page);
1070 }
Robert Love5e5e92d2009-03-17 11:41:35 -07001071 put_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001072 return 0;
1073}
1074
1075/**
Robert Love34f42a02009-02-27 10:55:45 -08001076 * fcoe_fc_crc() - calculates FC CRC in this fcoe skb
Chris Leechdd3fd722009-04-21 16:27:36 -07001077 * @fp: the fc_frame containing data to be checksummed
Robert Love85b4aa42008-12-09 15:10:24 -08001078 *
Chris Leech014f5c32009-08-25 13:59:30 -07001079 * This uses crc32() to calculate the crc for port frame
Robert Love85b4aa42008-12-09 15:10:24 -08001080 * Return : 32 bit crc
Robert Love34f42a02009-02-27 10:55:45 -08001081 */
Robert Love85b4aa42008-12-09 15:10:24 -08001082u32 fcoe_fc_crc(struct fc_frame *fp)
1083{
1084 struct sk_buff *skb = fp_skb(fp);
1085 struct skb_frag_struct *frag;
1086 unsigned char *data;
1087 unsigned long off, len, clen;
1088 u32 crc;
1089 unsigned i;
1090
1091 crc = crc32(~0, skb->data, skb_headlen(skb));
1092
1093 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1094 frag = &skb_shinfo(skb)->frags[i];
1095 off = frag->page_offset;
1096 len = frag->size;
1097 while (len > 0) {
1098 clen = min(len, PAGE_SIZE - (off & ~PAGE_MASK));
1099 data = kmap_atomic(frag->page + (off >> PAGE_SHIFT),
1100 KM_SKB_DATA_SOFTIRQ);
1101 crc = crc32(crc, data + (off & ~PAGE_MASK), clen);
1102 kunmap_atomic(data, KM_SKB_DATA_SOFTIRQ);
1103 off += clen;
1104 len -= clen;
1105 }
1106 }
1107 return crc;
1108}
Robert Love85b4aa42008-12-09 15:10:24 -08001109
1110/**
Robert Love34f42a02009-02-27 10:55:45 -08001111 * fcoe_xmit() - FCoE frame transmit function
Chris Leech014f5c32009-08-25 13:59:30 -07001112 * @lp: the associated local fcoe
Robert Love85b4aa42008-12-09 15:10:24 -08001113 * @fp: the fc_frame to be transmitted
1114 *
1115 * Return : 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001116 */
Robert Love85b4aa42008-12-09 15:10:24 -08001117int fcoe_xmit(struct fc_lport *lp, struct fc_frame *fp)
1118{
Vasu Dev4bb6b512009-05-06 10:52:34 -07001119 int wlen;
Robert Love85b4aa42008-12-09 15:10:24 -08001120 u32 crc;
1121 struct ethhdr *eh;
1122 struct fcoe_crc_eof *cp;
1123 struct sk_buff *skb;
1124 struct fcoe_dev_stats *stats;
1125 struct fc_frame_header *fh;
1126 unsigned int hlen; /* header length implies the version */
1127 unsigned int tlen; /* trailer length */
1128 unsigned int elen; /* eth header, may include vlan */
Chris Leech014f5c32009-08-25 13:59:30 -07001129 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08001130 u8 sof, eof;
1131 struct fcoe_hdr *hp;
1132
1133 WARN_ON((fr_len(fp) % sizeof(u32)) != 0);
1134
Chris Leech014f5c32009-08-25 13:59:30 -07001135 port = lport_priv(lp);
Robert Love85b4aa42008-12-09 15:10:24 -08001136 fh = fc_frame_header_get(fp);
Joe Eykholt97c83892009-03-17 11:42:40 -07001137 skb = fp_skb(fp);
1138 wlen = skb->len / FCOE_WORD_TO_BYTE;
1139
1140 if (!lp->link_up) {
Dan Carpenter3caf02e2009-04-21 16:27:25 -07001141 kfree_skb(skb);
Joe Eykholt97c83892009-03-17 11:42:40 -07001142 return 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001143 }
1144
Joe Eykholt97c83892009-03-17 11:42:40 -07001145 if (unlikely(fh->fh_r_ctl == FC_RCTL_ELS_REQ) &&
Chris Leech014f5c32009-08-25 13:59:30 -07001146 fcoe_ctlr_els_send(&port->ctlr, skb))
Joe Eykholt97c83892009-03-17 11:42:40 -07001147 return 0;
1148
Robert Love85b4aa42008-12-09 15:10:24 -08001149 sof = fr_sof(fp);
1150 eof = fr_eof(fp);
1151
Vasu Dev4e57e1c2009-05-06 10:52:46 -07001152 elen = sizeof(struct ethhdr);
Robert Love85b4aa42008-12-09 15:10:24 -08001153 hlen = sizeof(struct fcoe_hdr);
1154 tlen = sizeof(struct fcoe_crc_eof);
1155 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
1156
1157 /* crc offload */
1158 if (likely(lp->crc_offload)) {
Yi Zou39ca9a02009-02-27 14:07:15 -08001159 skb->ip_summed = CHECKSUM_PARTIAL;
Robert Love85b4aa42008-12-09 15:10:24 -08001160 skb->csum_start = skb_headroom(skb);
1161 skb->csum_offset = skb->len;
1162 crc = 0;
1163 } else {
1164 skb->ip_summed = CHECKSUM_NONE;
1165 crc = fcoe_fc_crc(fp);
1166 }
1167
Chris Leech014f5c32009-08-25 13:59:30 -07001168 /* copy port crc and eof to the skb buff */
Robert Love85b4aa42008-12-09 15:10:24 -08001169 if (skb_is_nonlinear(skb)) {
1170 skb_frag_t *frag;
1171 if (fcoe_get_paged_crc_eof(skb, tlen)) {
Roel Kluine9041582009-02-27 10:56:22 -08001172 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001173 return -ENOMEM;
1174 }
1175 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
1176 cp = kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ)
1177 + frag->page_offset;
1178 } else {
1179 cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
1180 }
1181
1182 memset(cp, 0, sizeof(*cp));
1183 cp->fcoe_eof = eof;
1184 cp->fcoe_crc32 = cpu_to_le32(~crc);
1185
1186 if (skb_is_nonlinear(skb)) {
1187 kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ);
1188 cp = NULL;
1189 }
1190
Chris Leech014f5c32009-08-25 13:59:30 -07001191 /* adjust skb network/transport offsets to match mac/fcoe/port */
Robert Love85b4aa42008-12-09 15:10:24 -08001192 skb_push(skb, elen + hlen);
1193 skb_reset_mac_header(skb);
1194 skb_reset_network_header(skb);
1195 skb->mac_len = elen;
Yi Zou211c7382009-02-27 14:06:37 -08001196 skb->protocol = htons(ETH_P_FCOE);
Chris Leech014f5c32009-08-25 13:59:30 -07001197 skb->dev = port->netdev;
Robert Love85b4aa42008-12-09 15:10:24 -08001198
1199 /* fill up mac and fcoe headers */
1200 eh = eth_hdr(skb);
1201 eh->h_proto = htons(ETH_P_FCOE);
Chris Leech014f5c32009-08-25 13:59:30 -07001202 if (port->ctlr.map_dest)
Robert Love85b4aa42008-12-09 15:10:24 -08001203 fc_fcoe_set_mac(eh->h_dest, fh->fh_d_id);
1204 else
1205 /* insert GW address */
Chris Leech014f5c32009-08-25 13:59:30 -07001206 memcpy(eh->h_dest, port->ctlr.dest_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001207
Chris Leech014f5c32009-08-25 13:59:30 -07001208 if (unlikely(port->ctlr.flogi_oxid != FC_XID_UNKNOWN))
1209 memcpy(eh->h_source, port->ctlr.ctl_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001210 else
Chris Leech014f5c32009-08-25 13:59:30 -07001211 memcpy(eh->h_source, port->ctlr.data_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001212
1213 hp = (struct fcoe_hdr *)(eh + 1);
1214 memset(hp, 0, sizeof(*hp));
1215 if (FC_FCOE_VER)
1216 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
1217 hp->fcoe_sof = sof;
1218
Yi Zou39ca9a02009-02-27 14:07:15 -08001219 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
1220 if (lp->seq_offload && fr_max_payload(fp)) {
1221 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
1222 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
1223 } else {
1224 skb_shinfo(skb)->gso_type = 0;
1225 skb_shinfo(skb)->gso_size = 0;
1226 }
Robert Love85b4aa42008-12-09 15:10:24 -08001227 /* update tx stats: regardless if LLD fails */
Robert Love582b45b2009-03-31 15:51:50 -07001228 stats = fc_lport_get_stats(lp);
1229 stats->TxFrames++;
1230 stats->TxWords += wlen;
Robert Love85b4aa42008-12-09 15:10:24 -08001231
1232 /* send down to lld */
1233 fr_dev(fp) = lp;
Chris Leech014f5c32009-08-25 13:59:30 -07001234 if (port->fcoe_pending_queue.qlen)
Vasu Dev4bb6b512009-05-06 10:52:34 -07001235 fcoe_check_wait_queue(lp, skb);
1236 else if (fcoe_start_io(skb))
1237 fcoe_check_wait_queue(lp, skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001238
1239 return 0;
1240}
Robert Love85b4aa42008-12-09 15:10:24 -08001241
Robert Love34f42a02009-02-27 10:55:45 -08001242/**
1243 * fcoe_percpu_receive_thread() - recv thread per cpu
Robert Love85b4aa42008-12-09 15:10:24 -08001244 * @arg: ptr to the fcoe per cpu struct
1245 *
1246 * Return: 0 for success
Robert Love85b4aa42008-12-09 15:10:24 -08001247 */
1248int fcoe_percpu_receive_thread(void *arg)
1249{
1250 struct fcoe_percpu_s *p = arg;
1251 u32 fr_len;
1252 struct fc_lport *lp;
1253 struct fcoe_rcv_info *fr;
1254 struct fcoe_dev_stats *stats;
1255 struct fc_frame_header *fh;
1256 struct sk_buff *skb;
1257 struct fcoe_crc_eof crc_eof;
1258 struct fc_frame *fp;
1259 u8 *mac = NULL;
Chris Leech014f5c32009-08-25 13:59:30 -07001260 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08001261 struct fcoe_hdr *hp;
1262
Robert Love4469c192009-02-27 10:56:38 -08001263 set_user_nice(current, -20);
Robert Love85b4aa42008-12-09 15:10:24 -08001264
1265 while (!kthread_should_stop()) {
1266
1267 spin_lock_bh(&p->fcoe_rx_list.lock);
1268 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) == NULL) {
1269 set_current_state(TASK_INTERRUPTIBLE);
1270 spin_unlock_bh(&p->fcoe_rx_list.lock);
1271 schedule();
1272 set_current_state(TASK_RUNNING);
1273 if (kthread_should_stop())
1274 return 0;
1275 spin_lock_bh(&p->fcoe_rx_list.lock);
1276 }
1277 spin_unlock_bh(&p->fcoe_rx_list.lock);
1278 fr = fcoe_dev_from_skb(skb);
1279 lp = fr->fr_dev;
1280 if (unlikely(lp == NULL)) {
Robert Loved5488eb2009-06-10 15:30:59 -07001281 FCOE_NETDEV_DBG(skb->dev, "Invalid HBA Structure");
Robert Love85b4aa42008-12-09 15:10:24 -08001282 kfree_skb(skb);
1283 continue;
1284 }
1285
Robert Loved5488eb2009-06-10 15:30:59 -07001286 FCOE_NETDEV_DBG(skb->dev, "skb_info: len:%d data_len:%d "
1287 "head:%p data:%p tail:%p end:%p sum:%d dev:%s",
1288 skb->len, skb->data_len,
1289 skb->head, skb->data, skb_tail_pointer(skb),
1290 skb_end_pointer(skb), skb->csum,
1291 skb->dev ? skb->dev->name : "<NULL>");
Robert Love85b4aa42008-12-09 15:10:24 -08001292
1293 /*
1294 * Save source MAC address before discarding header.
1295 */
Chris Leech014f5c32009-08-25 13:59:30 -07001296 port = lport_priv(lp);
Robert Love85b4aa42008-12-09 15:10:24 -08001297 if (skb_is_nonlinear(skb))
1298 skb_linearize(skb); /* not ideal */
Joe Eykholt97c83892009-03-17 11:42:40 -07001299 mac = eth_hdr(skb)->h_source;
Robert Love85b4aa42008-12-09 15:10:24 -08001300
1301 /*
1302 * Frame length checks and setting up the header pointers
1303 * was done in fcoe_rcv already.
1304 */
1305 hp = (struct fcoe_hdr *) skb_network_header(skb);
1306 fh = (struct fc_frame_header *) skb_transport_header(skb);
1307
Robert Love582b45b2009-03-31 15:51:50 -07001308 stats = fc_lport_get_stats(lp);
Robert Love85b4aa42008-12-09 15:10:24 -08001309 if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) {
Robert Love582b45b2009-03-31 15:51:50 -07001310 if (stats->ErrorFrames < 5)
Robert Loved5488eb2009-06-10 15:30:59 -07001311 printk(KERN_WARNING "fcoe: FCoE version "
Robert Love582b45b2009-03-31 15:51:50 -07001312 "mismatch: The frame has "
1313 "version %x, but the "
1314 "initiator supports version "
1315 "%x\n", FC_FCOE_DECAPS_VER(hp),
1316 FC_FCOE_VER);
1317 stats->ErrorFrames++;
Robert Love85b4aa42008-12-09 15:10:24 -08001318 kfree_skb(skb);
1319 continue;
1320 }
1321
1322 skb_pull(skb, sizeof(struct fcoe_hdr));
1323 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
1324
Robert Love582b45b2009-03-31 15:51:50 -07001325 stats->RxFrames++;
1326 stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
Robert Love85b4aa42008-12-09 15:10:24 -08001327
1328 fp = (struct fc_frame *)skb;
1329 fc_frame_init(fp);
1330 fr_dev(fp) = lp;
1331 fr_sof(fp) = hp->fcoe_sof;
1332
1333 /* Copy out the CRC and EOF trailer for access */
1334 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof))) {
1335 kfree_skb(skb);
1336 continue;
1337 }
1338 fr_eof(fp) = crc_eof.fcoe_eof;
1339 fr_crc(fp) = crc_eof.fcoe_crc32;
1340 if (pskb_trim(skb, fr_len)) {
1341 kfree_skb(skb);
1342 continue;
1343 }
1344
1345 /*
1346 * We only check CRC if no offload is available and if it is
1347 * it's solicited data, in which case, the FCP layer would
1348 * check it during the copy.
1349 */
Yi Zou07c00ec2009-02-27 14:07:31 -08001350 if (lp->crc_offload && skb->ip_summed == CHECKSUM_UNNECESSARY)
Robert Love85b4aa42008-12-09 15:10:24 -08001351 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1352 else
1353 fr_flags(fp) |= FCPHF_CRC_UNCHECKED;
1354
1355 fh = fc_frame_header_get(fp);
1356 if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA &&
1357 fh->fh_type == FC_TYPE_FCP) {
Vasu Dev52ff8782009-07-29 17:05:10 -07001358 fc_exch_recv(lp, fp);
Robert Love85b4aa42008-12-09 15:10:24 -08001359 continue;
1360 }
1361 if (fr_flags(fp) & FCPHF_CRC_UNCHECKED) {
1362 if (le32_to_cpu(fr_crc(fp)) !=
1363 ~crc32(~0, skb->data, fr_len)) {
Robert Loved5488eb2009-06-10 15:30:59 -07001364 if (stats->InvalidCRCCount < 5)
Robert Love85b4aa42008-12-09 15:10:24 -08001365 printk(KERN_WARNING "fcoe: dropping "
1366 "frame with CRC error\n");
1367 stats->InvalidCRCCount++;
1368 stats->ErrorFrames++;
1369 fc_frame_free(fp);
1370 continue;
1371 }
1372 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1373 }
Chris Leech014f5c32009-08-25 13:59:30 -07001374 if (unlikely(port->ctlr.flogi_oxid != FC_XID_UNKNOWN) &&
1375 fcoe_ctlr_recv_flogi(&port->ctlr, fp, mac)) {
Joe Eykholt97c83892009-03-17 11:42:40 -07001376 fc_frame_free(fp);
1377 continue;
1378 }
Vasu Dev52ff8782009-07-29 17:05:10 -07001379 fc_exch_recv(lp, fp);
Robert Love85b4aa42008-12-09 15:10:24 -08001380 }
1381 return 0;
1382}
1383
1384/**
Chris Leechdd3fd722009-04-21 16:27:36 -07001385 * fcoe_check_wait_queue() - attempt to clear the transmit backlog
1386 * @lp: the fc_lport
Robert Love85b4aa42008-12-09 15:10:24 -08001387 *
1388 * This empties the wait_queue, dequeue the head of the wait_queue queue
1389 * and calls fcoe_start_io() for each packet, if all skb have been
Vasu Devc826a312009-02-27 10:56:27 -08001390 * transmitted, return qlen or -1 if a error occurs, then restore
Chris Leechdd3fd722009-04-21 16:27:36 -07001391 * wait_queue and try again later.
Robert Love85b4aa42008-12-09 15:10:24 -08001392 *
1393 * The wait_queue is used when the skb transmit fails. skb will go
Chris Leechdd3fd722009-04-21 16:27:36 -07001394 * in the wait_queue which will be emptied by the timer function or
Robert Love85b4aa42008-12-09 15:10:24 -08001395 * by the next skb transmit.
Robert Love34f42a02009-02-27 10:55:45 -08001396 */
Vasu Dev4bb6b512009-05-06 10:52:34 -07001397static void fcoe_check_wait_queue(struct fc_lport *lp, struct sk_buff *skb)
Robert Love85b4aa42008-12-09 15:10:24 -08001398{
Chris Leech014f5c32009-08-25 13:59:30 -07001399 struct fcoe_port *port = lport_priv(lp);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001400 int rc;
Robert Love85b4aa42008-12-09 15:10:24 -08001401
Chris Leech014f5c32009-08-25 13:59:30 -07001402 spin_lock_bh(&port->fcoe_pending_queue.lock);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001403
1404 if (skb)
Chris Leech014f5c32009-08-25 13:59:30 -07001405 __skb_queue_tail(&port->fcoe_pending_queue, skb);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001406
Chris Leech014f5c32009-08-25 13:59:30 -07001407 if (port->fcoe_pending_queue_active)
Vasu Devc826a312009-02-27 10:56:27 -08001408 goto out;
Chris Leech014f5c32009-08-25 13:59:30 -07001409 port->fcoe_pending_queue_active = 1;
Chris Leech55c8baf2009-02-27 10:56:32 -08001410
Chris Leech014f5c32009-08-25 13:59:30 -07001411 while (port->fcoe_pending_queue.qlen) {
Chris Leech55c8baf2009-02-27 10:56:32 -08001412 /* keep qlen > 0 until fcoe_start_io succeeds */
Chris Leech014f5c32009-08-25 13:59:30 -07001413 port->fcoe_pending_queue.qlen++;
1414 skb = __skb_dequeue(&port->fcoe_pending_queue);
Chris Leech55c8baf2009-02-27 10:56:32 -08001415
Chris Leech014f5c32009-08-25 13:59:30 -07001416 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Chris Leech55c8baf2009-02-27 10:56:32 -08001417 rc = fcoe_start_io(skb);
Chris Leech014f5c32009-08-25 13:59:30 -07001418 spin_lock_bh(&port->fcoe_pending_queue.lock);
Chris Leech55c8baf2009-02-27 10:56:32 -08001419
1420 if (rc) {
Chris Leech014f5c32009-08-25 13:59:30 -07001421 __skb_queue_head(&port->fcoe_pending_queue, skb);
Chris Leech55c8baf2009-02-27 10:56:32 -08001422 /* undo temporary increment above */
Chris Leech014f5c32009-08-25 13:59:30 -07001423 port->fcoe_pending_queue.qlen--;
Chris Leech55c8baf2009-02-27 10:56:32 -08001424 break;
Robert Love85b4aa42008-12-09 15:10:24 -08001425 }
Chris Leech55c8baf2009-02-27 10:56:32 -08001426 /* undo temporary increment above */
Chris Leech014f5c32009-08-25 13:59:30 -07001427 port->fcoe_pending_queue.qlen--;
Robert Love85b4aa42008-12-09 15:10:24 -08001428 }
Chris Leech55c8baf2009-02-27 10:56:32 -08001429
Chris Leech014f5c32009-08-25 13:59:30 -07001430 if (port->fcoe_pending_queue.qlen < FCOE_LOW_QUEUE_DEPTH)
Chris Leech55c8baf2009-02-27 10:56:32 -08001431 lp->qfull = 0;
Chris Leech014f5c32009-08-25 13:59:30 -07001432 if (port->fcoe_pending_queue.qlen && !timer_pending(&port->timer))
1433 mod_timer(&port->timer, jiffies + 2);
1434 port->fcoe_pending_queue_active = 0;
Vasu Devc826a312009-02-27 10:56:27 -08001435out:
Chris Leech014f5c32009-08-25 13:59:30 -07001436 if (port->fcoe_pending_queue.qlen > FCOE_MAX_QUEUE_DEPTH)
Vasu Dev4bb6b512009-05-06 10:52:34 -07001437 lp->qfull = 1;
Chris Leech014f5c32009-08-25 13:59:30 -07001438 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001439 return;
Robert Love85b4aa42008-12-09 15:10:24 -08001440}
1441
1442/**
Robert Love34f42a02009-02-27 10:55:45 -08001443 * fcoe_dev_setup() - setup link change notification interface
1444 */
Randy Dunlapb0d428a2009-04-27 21:49:31 -07001445static void fcoe_dev_setup(void)
Robert Love85b4aa42008-12-09 15:10:24 -08001446{
Robert Love85b4aa42008-12-09 15:10:24 -08001447 register_netdevice_notifier(&fcoe_notifier);
1448}
1449
1450/**
Randy Dunlapb0d428a2009-04-27 21:49:31 -07001451 * fcoe_dev_cleanup() - cleanup link change notification interface
Robert Love34f42a02009-02-27 10:55:45 -08001452 */
Robert Love85b4aa42008-12-09 15:10:24 -08001453static void fcoe_dev_cleanup(void)
1454{
1455 unregister_netdevice_notifier(&fcoe_notifier);
1456}
1457
1458/**
Robert Love34f42a02009-02-27 10:55:45 -08001459 * fcoe_device_notification() - netdev event notification callback
Robert Love85b4aa42008-12-09 15:10:24 -08001460 * @notifier: context of the notification
1461 * @event: type of event
1462 * @ptr: fixed array for output parsed ifname
1463 *
1464 * This function is called by the ethernet driver in case of link change event
1465 *
1466 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001467 */
Robert Love85b4aa42008-12-09 15:10:24 -08001468static int fcoe_device_notification(struct notifier_block *notifier,
1469 ulong event, void *ptr)
1470{
1471 struct fc_lport *lp = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001472 struct net_device *netdev = ptr;
Chris Leech014f5c32009-08-25 13:59:30 -07001473 struct fcoe_interface *fcoe;
1474 struct fcoe_port *port = NULL;
Robert Love85b4aa42008-12-09 15:10:24 -08001475 struct fcoe_dev_stats *stats;
Joe Eykholt97c83892009-03-17 11:42:40 -07001476 u32 link_possible = 1;
Robert Love85b4aa42008-12-09 15:10:24 -08001477 u32 mfs;
1478 int rc = NOTIFY_OK;
1479
1480 read_lock(&fcoe_hostlist_lock);
Chris Leech014f5c32009-08-25 13:59:30 -07001481 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
1482 port = fcoe->priv;
1483 if (port->netdev == netdev) {
1484 lp = port->ctlr.lp;
Robert Love85b4aa42008-12-09 15:10:24 -08001485 break;
1486 }
1487 }
1488 read_unlock(&fcoe_hostlist_lock);
1489 if (lp == NULL) {
1490 rc = NOTIFY_DONE;
1491 goto out;
1492 }
1493
Robert Love85b4aa42008-12-09 15:10:24 -08001494 switch (event) {
1495 case NETDEV_DOWN:
1496 case NETDEV_GOING_DOWN:
Joe Eykholt97c83892009-03-17 11:42:40 -07001497 link_possible = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001498 break;
1499 case NETDEV_UP:
1500 case NETDEV_CHANGE:
Robert Love85b4aa42008-12-09 15:10:24 -08001501 break;
1502 case NETDEV_CHANGEMTU:
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001503 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
1504 sizeof(struct fcoe_crc_eof));
Robert Love85b4aa42008-12-09 15:10:24 -08001505 if (mfs >= FC_MIN_MAX_FRAME)
1506 fc_set_mfs(lp, mfs);
Robert Love85b4aa42008-12-09 15:10:24 -08001507 break;
1508 case NETDEV_REGISTER:
1509 break;
1510 default:
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001511 FCOE_NETDEV_DBG(netdev, "Unknown event %ld "
Robert Loved5488eb2009-06-10 15:30:59 -07001512 "from netdev netlink\n", event);
Robert Love85b4aa42008-12-09 15:10:24 -08001513 }
Joe Eykholt97c83892009-03-17 11:42:40 -07001514 if (link_possible && !fcoe_link_ok(lp))
Chris Leech014f5c32009-08-25 13:59:30 -07001515 fcoe_ctlr_link_up(&port->ctlr);
1516 else if (fcoe_ctlr_link_down(&port->ctlr)) {
Joe Eykholt97c83892009-03-17 11:42:40 -07001517 stats = fc_lport_get_stats(lp);
1518 stats->LinkFailureCount++;
1519 fcoe_clean_pending_queue(lp);
Robert Love85b4aa42008-12-09 15:10:24 -08001520 }
1521out:
1522 return rc;
1523}
1524
1525/**
Robert Love34f42a02009-02-27 10:55:45 -08001526 * fcoe_if_to_netdev() - parse a name buffer to get netdev
Robert Love85b4aa42008-12-09 15:10:24 -08001527 * @buffer: incoming buffer to be copied
1528 *
Chris Leechdd3fd722009-04-21 16:27:36 -07001529 * Returns: NULL or ptr to net_device
Robert Love34f42a02009-02-27 10:55:45 -08001530 */
Robert Love85b4aa42008-12-09 15:10:24 -08001531static struct net_device *fcoe_if_to_netdev(const char *buffer)
1532{
1533 char *cp;
1534 char ifname[IFNAMSIZ + 2];
1535
1536 if (buffer) {
1537 strlcpy(ifname, buffer, IFNAMSIZ);
1538 cp = ifname + strlen(ifname);
1539 while (--cp >= ifname && *cp == '\n')
1540 *cp = '\0';
1541 return dev_get_by_name(&init_net, ifname);
1542 }
1543 return NULL;
1544}
1545
1546/**
Chris Leechdd3fd722009-04-21 16:27:36 -07001547 * fcoe_netdev_to_module_owner() - finds out the driver module of the netdev
Robert Love85b4aa42008-12-09 15:10:24 -08001548 * @netdev: the target netdev
1549 *
1550 * Returns: ptr to the struct module, NULL for failure
Robert Love34f42a02009-02-27 10:55:45 -08001551 */
Robert Loveb2ab99c2009-02-27 10:55:50 -08001552static struct module *
1553fcoe_netdev_to_module_owner(const struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08001554{
1555 struct device *dev;
1556
1557 if (!netdev)
1558 return NULL;
1559
1560 dev = netdev->dev.parent;
1561 if (!dev)
1562 return NULL;
1563
1564 if (!dev->driver)
1565 return NULL;
1566
1567 return dev->driver->owner;
1568}
1569
1570/**
Robert Love34f42a02009-02-27 10:55:45 -08001571 * fcoe_ethdrv_get() - Hold the Ethernet driver
Robert Love85b4aa42008-12-09 15:10:24 -08001572 * @netdev: the target netdev
1573 *
Robert Love34f42a02009-02-27 10:55:45 -08001574 * Holds the Ethernet driver module by try_module_get() for
1575 * the corresponding netdev.
1576 *
Chris Leechdd3fd722009-04-21 16:27:36 -07001577 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001578 */
Robert Love85b4aa42008-12-09 15:10:24 -08001579static int fcoe_ethdrv_get(const struct net_device *netdev)
1580{
1581 struct module *owner;
1582
1583 owner = fcoe_netdev_to_module_owner(netdev);
1584 if (owner) {
Robert Loved5488eb2009-06-10 15:30:59 -07001585 FCOE_NETDEV_DBG(netdev, "Hold driver module %s\n",
1586 module_name(owner));
Robert Love85b4aa42008-12-09 15:10:24 -08001587 return try_module_get(owner);
1588 }
1589 return -ENODEV;
1590}
1591
1592/**
Robert Love34f42a02009-02-27 10:55:45 -08001593 * fcoe_ethdrv_put() - Release the Ethernet driver
Robert Love85b4aa42008-12-09 15:10:24 -08001594 * @netdev: the target netdev
1595 *
Robert Love34f42a02009-02-27 10:55:45 -08001596 * Releases the Ethernet driver module by module_put for
1597 * the corresponding netdev.
1598 *
Chris Leechdd3fd722009-04-21 16:27:36 -07001599 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001600 */
Robert Love85b4aa42008-12-09 15:10:24 -08001601static int fcoe_ethdrv_put(const struct net_device *netdev)
1602{
1603 struct module *owner;
1604
1605 owner = fcoe_netdev_to_module_owner(netdev);
1606 if (owner) {
Robert Loved5488eb2009-06-10 15:30:59 -07001607 FCOE_NETDEV_DBG(netdev, "Release driver module %s\n",
1608 module_name(owner));
Robert Love85b4aa42008-12-09 15:10:24 -08001609 module_put(owner);
1610 return 0;
1611 }
1612 return -ENODEV;
1613}
1614
1615/**
Robert Love34f42a02009-02-27 10:55:45 -08001616 * fcoe_destroy() - handles the destroy from sysfs
Chris Leechdd3fd722009-04-21 16:27:36 -07001617 * @buffer: expected to be an eth if name
Robert Love85b4aa42008-12-09 15:10:24 -08001618 * @kp: associated kernel param
1619 *
1620 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001621 */
Robert Love85b4aa42008-12-09 15:10:24 -08001622static int fcoe_destroy(const char *buffer, struct kernel_param *kp)
1623{
Robert Love85b4aa42008-12-09 15:10:24 -08001624 struct net_device *netdev;
Chris Leechaf7f85d2009-08-25 13:59:24 -07001625 struct fc_lport *lport;
1626 int rc;
Robert Love85b4aa42008-12-09 15:10:24 -08001627
1628 netdev = fcoe_if_to_netdev(buffer);
1629 if (!netdev) {
1630 rc = -ENODEV;
1631 goto out_nodev;
1632 }
1633 /* look for existing lport */
Chris Leechaf7f85d2009-08-25 13:59:24 -07001634 lport = fcoe_hostlist_lookup(netdev);
1635 if (!lport) {
Robert Love85b4aa42008-12-09 15:10:24 -08001636 rc = -ENODEV;
1637 goto out_putdev;
1638 }
Chris Leechaf7f85d2009-08-25 13:59:24 -07001639 fcoe_if_destroy(lport);
Robert Love85b4aa42008-12-09 15:10:24 -08001640 fcoe_ethdrv_put(netdev);
1641 rc = 0;
1642out_putdev:
1643 dev_put(netdev);
1644out_nodev:
1645 return rc;
1646}
1647
1648/**
Robert Love34f42a02009-02-27 10:55:45 -08001649 * fcoe_create() - Handles the create call from sysfs
Chris Leechdd3fd722009-04-21 16:27:36 -07001650 * @buffer: expected to be an eth if name
Robert Love85b4aa42008-12-09 15:10:24 -08001651 * @kp: associated kernel param
1652 *
1653 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001654 */
Robert Love85b4aa42008-12-09 15:10:24 -08001655static int fcoe_create(const char *buffer, struct kernel_param *kp)
1656{
1657 int rc;
Chris Leechaf7f85d2009-08-25 13:59:24 -07001658 struct fc_lport *lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001659 struct net_device *netdev;
1660
1661 netdev = fcoe_if_to_netdev(buffer);
1662 if (!netdev) {
1663 rc = -ENODEV;
1664 goto out_nodev;
1665 }
1666 /* look for existing lport */
1667 if (fcoe_hostlist_lookup(netdev)) {
1668 rc = -EEXIST;
1669 goto out_putdev;
1670 }
1671 fcoe_ethdrv_get(netdev);
1672
Chris Leechaf7f85d2009-08-25 13:59:24 -07001673 lport = fcoe_if_create(netdev, &netdev->dev);
1674 if (IS_ERR(lport)) {
Robert Loved5488eb2009-06-10 15:30:59 -07001675 printk(KERN_ERR "fcoe: Failed to create interface (%s)\n",
Robert Love85b4aa42008-12-09 15:10:24 -08001676 netdev->name);
1677 fcoe_ethdrv_put(netdev);
1678 rc = -EIO;
1679 goto out_putdev;
1680 }
1681 rc = 0;
1682out_putdev:
1683 dev_put(netdev);
1684out_nodev:
1685 return rc;
1686}
1687
1688module_param_call(create, fcoe_create, NULL, NULL, S_IWUSR);
1689__MODULE_PARM_TYPE(create, "string");
Chris Leech014f5c32009-08-25 13:59:30 -07001690MODULE_PARM_DESC(create, "Create fcoe fcoe using net device passed in.");
Robert Love85b4aa42008-12-09 15:10:24 -08001691module_param_call(destroy, fcoe_destroy, NULL, NULL, S_IWUSR);
1692__MODULE_PARM_TYPE(destroy, "string");
Chris Leech014f5c32009-08-25 13:59:30 -07001693MODULE_PARM_DESC(destroy, "Destroy fcoe fcoe");
Robert Love85b4aa42008-12-09 15:10:24 -08001694
Robert Love34f42a02009-02-27 10:55:45 -08001695/**
1696 * fcoe_link_ok() - Check if link is ok for the fc_lport
Robert Love85b4aa42008-12-09 15:10:24 -08001697 * @lp: ptr to the fc_lport
1698 *
1699 * Any permanently-disqualifying conditions have been previously checked.
1700 * This also updates the speed setting, which may change with link for 100/1000.
1701 *
1702 * This function should probably be checking for PAUSE support at some point
1703 * in the future. Currently Per-priority-pause is not determinable using
1704 * ethtool, so we shouldn't be restrictive until that problem is resolved.
1705 *
1706 * Returns: 0 if link is OK for use by FCoE.
1707 *
1708 */
1709int fcoe_link_ok(struct fc_lport *lp)
1710{
Chris Leech014f5c32009-08-25 13:59:30 -07001711 struct fcoe_port *port = lport_priv(lp);
1712 struct net_device *dev = port->netdev;
Robert Love85b4aa42008-12-09 15:10:24 -08001713 struct ethtool_cmd ecmd = { ETHTOOL_GSET };
Robert Love85b4aa42008-12-09 15:10:24 -08001714
Yi Zou2f718d62009-07-29 17:04:01 -07001715 if ((dev->flags & IFF_UP) && netif_carrier_ok(dev) &&
1716 (!dev_ethtool_get_settings(dev, &ecmd))) {
1717 lp->link_supported_speeds &=
1718 ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
1719 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
1720 SUPPORTED_1000baseT_Full))
1721 lp->link_supported_speeds |= FC_PORTSPEED_1GBIT;
1722 if (ecmd.supported & SUPPORTED_10000baseT_Full)
1723 lp->link_supported_speeds |=
1724 FC_PORTSPEED_10GBIT;
1725 if (ecmd.speed == SPEED_1000)
1726 lp->link_speed = FC_PORTSPEED_1GBIT;
1727 if (ecmd.speed == SPEED_10000)
1728 lp->link_speed = FC_PORTSPEED_10GBIT;
Robert Love85b4aa42008-12-09 15:10:24 -08001729
Yi Zou2f718d62009-07-29 17:04:01 -07001730 return 0;
1731 }
1732 return -1;
Robert Love85b4aa42008-12-09 15:10:24 -08001733}
Robert Love85b4aa42008-12-09 15:10:24 -08001734
Robert Love34f42a02009-02-27 10:55:45 -08001735/**
1736 * fcoe_percpu_clean() - Clear the pending skbs for an lport
Robert Love85b4aa42008-12-09 15:10:24 -08001737 * @lp: the fc_lport
1738 */
1739void fcoe_percpu_clean(struct fc_lport *lp)
1740{
Robert Love85b4aa42008-12-09 15:10:24 -08001741 struct fcoe_percpu_s *pp;
1742 struct fcoe_rcv_info *fr;
1743 struct sk_buff_head *list;
1744 struct sk_buff *skb, *next;
1745 struct sk_buff *head;
Robert Love5e5e92d2009-03-17 11:41:35 -07001746 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08001747
Robert Love5e5e92d2009-03-17 11:41:35 -07001748 for_each_possible_cpu(cpu) {
1749 pp = &per_cpu(fcoe_percpu, cpu);
1750 spin_lock_bh(&pp->fcoe_rx_list.lock);
1751 list = &pp->fcoe_rx_list;
1752 head = list->next;
1753 for (skb = head; skb != (struct sk_buff *)list;
1754 skb = next) {
1755 next = skb->next;
1756 fr = fcoe_dev_from_skb(skb);
1757 if (fr->fr_dev == lp) {
1758 __skb_unlink(skb, list);
1759 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001760 }
Robert Love85b4aa42008-12-09 15:10:24 -08001761 }
Robert Love5e5e92d2009-03-17 11:41:35 -07001762 spin_unlock_bh(&pp->fcoe_rx_list.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08001763 }
1764}
Robert Love85b4aa42008-12-09 15:10:24 -08001765
1766/**
Robert Love34f42a02009-02-27 10:55:45 -08001767 * fcoe_clean_pending_queue() - Dequeue a skb and free it
Robert Love85b4aa42008-12-09 15:10:24 -08001768 * @lp: the corresponding fc_lport
1769 *
1770 * Returns: none
Robert Love34f42a02009-02-27 10:55:45 -08001771 */
Robert Love85b4aa42008-12-09 15:10:24 -08001772void fcoe_clean_pending_queue(struct fc_lport *lp)
1773{
Chris Leech014f5c32009-08-25 13:59:30 -07001774 struct fcoe_port *port = lport_priv(lp);
Robert Love85b4aa42008-12-09 15:10:24 -08001775 struct sk_buff *skb;
1776
Chris Leech014f5c32009-08-25 13:59:30 -07001777 spin_lock_bh(&port->fcoe_pending_queue.lock);
1778 while ((skb = __skb_dequeue(&port->fcoe_pending_queue)) != NULL) {
1779 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08001780 kfree_skb(skb);
Chris Leech014f5c32009-08-25 13:59:30 -07001781 spin_lock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08001782 }
Chris Leech014f5c32009-08-25 13:59:30 -07001783 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08001784}
Robert Love85b4aa42008-12-09 15:10:24 -08001785
1786/**
Robert Love34f42a02009-02-27 10:55:45 -08001787 * fcoe_reset() - Resets the fcoe
Robert Love85b4aa42008-12-09 15:10:24 -08001788 * @shost: shost the reset is from
1789 *
1790 * Returns: always 0
1791 */
1792int fcoe_reset(struct Scsi_Host *shost)
1793{
1794 struct fc_lport *lport = shost_priv(shost);
1795 fc_lport_reset(lport);
1796 return 0;
1797}
Robert Love85b4aa42008-12-09 15:10:24 -08001798
Robert Love34f42a02009-02-27 10:55:45 -08001799/**
Chris Leech014f5c32009-08-25 13:59:30 -07001800 * fcoe_hostlist_lookup_port() - find the corresponding lport by a given device
Chris Leechdd3fd722009-04-21 16:27:36 -07001801 * @dev: this is currently ptr to net_device
Robert Love85b4aa42008-12-09 15:10:24 -08001802 *
Vasu Deve8af4d42009-07-29 17:05:15 -07001803 * Called with fcoe_hostlist_lock held.
1804 *
Chris Leech014f5c32009-08-25 13:59:30 -07001805 * Returns: NULL or the located fcoe_port
Robert Love85b4aa42008-12-09 15:10:24 -08001806 */
Chris Leech014f5c32009-08-25 13:59:30 -07001807static struct fcoe_interface *
1808fcoe_hostlist_lookup_port(const struct net_device *dev)
Robert Love85b4aa42008-12-09 15:10:24 -08001809{
Chris Leech014f5c32009-08-25 13:59:30 -07001810 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001811
Chris Leech014f5c32009-08-25 13:59:30 -07001812 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
1813 if (fcoe->priv->netdev == dev)
1814 return fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001815 }
Robert Love85b4aa42008-12-09 15:10:24 -08001816 return NULL;
1817}
1818
Robert Love34f42a02009-02-27 10:55:45 -08001819/**
1820 * fcoe_hostlist_lookup() - Find the corresponding lport by netdev
Robert Love85b4aa42008-12-09 15:10:24 -08001821 * @netdev: ptr to net_device
1822 *
1823 * Returns: 0 for success
1824 */
1825struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev)
1826{
Chris Leech014f5c32009-08-25 13:59:30 -07001827 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001828
Vasu Deve8af4d42009-07-29 17:05:15 -07001829 read_lock(&fcoe_hostlist_lock);
Chris Leech014f5c32009-08-25 13:59:30 -07001830 fcoe = fcoe_hostlist_lookup_port(netdev);
Vasu Deve8af4d42009-07-29 17:05:15 -07001831 read_unlock(&fcoe_hostlist_lock);
Robert Love85b4aa42008-12-09 15:10:24 -08001832
Chris Leech014f5c32009-08-25 13:59:30 -07001833 return (fcoe) ? fcoe->priv->ctlr.lp : NULL;
Robert Love85b4aa42008-12-09 15:10:24 -08001834}
Robert Love85b4aa42008-12-09 15:10:24 -08001835
Robert Love34f42a02009-02-27 10:55:45 -08001836/**
1837 * fcoe_hostlist_add() - Add a lport to lports list
Chris Leechdd3fd722009-04-21 16:27:36 -07001838 * @lp: ptr to the fc_lport to be added
Robert Love85b4aa42008-12-09 15:10:24 -08001839 *
Vasu Deve8af4d42009-07-29 17:05:15 -07001840 * Called with write fcoe_hostlist_lock held.
1841 *
Robert Love85b4aa42008-12-09 15:10:24 -08001842 * Returns: 0 for success
1843 */
Chris Leech014f5c32009-08-25 13:59:30 -07001844int fcoe_hostlist_add(const struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08001845{
Chris Leech014f5c32009-08-25 13:59:30 -07001846 struct fcoe_interface *fcoe;
1847 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08001848
Chris Leech014f5c32009-08-25 13:59:30 -07001849 fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
1850 if (!fcoe) {
1851 port = lport_priv(lport);
1852 fcoe = port->fcoe;
1853 list_add_tail(&fcoe->list, &fcoe_hostlist);
Robert Love85b4aa42008-12-09 15:10:24 -08001854 }
1855 return 0;
1856}
Robert Love85b4aa42008-12-09 15:10:24 -08001857
Robert Love34f42a02009-02-27 10:55:45 -08001858/**
1859 * fcoe_hostlist_remove() - remove a lport from lports list
Chris Leechdd3fd722009-04-21 16:27:36 -07001860 * @lp: ptr to the fc_lport to be removed
Robert Love85b4aa42008-12-09 15:10:24 -08001861 *
1862 * Returns: 0 for success
1863 */
Chris Leech014f5c32009-08-25 13:59:30 -07001864int fcoe_hostlist_remove(const struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08001865{
Chris Leech014f5c32009-08-25 13:59:30 -07001866 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001867
Vasu Deve8af4d42009-07-29 17:05:15 -07001868 write_lock_bh(&fcoe_hostlist_lock);
Chris Leech014f5c32009-08-25 13:59:30 -07001869 fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
1870 BUG_ON(!fcoe);
1871 list_del(&fcoe->list);
Robert Love85b4aa42008-12-09 15:10:24 -08001872 write_unlock_bh(&fcoe_hostlist_lock);
1873
1874 return 0;
1875}
Robert Love85b4aa42008-12-09 15:10:24 -08001876
1877/**
Robert Love34f42a02009-02-27 10:55:45 -08001878 * fcoe_init() - fcoe module loading initialization
Robert Love85b4aa42008-12-09 15:10:24 -08001879 *
Robert Love85b4aa42008-12-09 15:10:24 -08001880 * Returns 0 on success, negative on failure
Robert Love34f42a02009-02-27 10:55:45 -08001881 */
Robert Love85b4aa42008-12-09 15:10:24 -08001882static int __init fcoe_init(void)
1883{
Robert Love38eccab2009-03-17 11:41:30 -07001884 unsigned int cpu;
Robert Love8976f422009-03-17 11:41:46 -07001885 int rc = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001886 struct fcoe_percpu_s *p;
1887
Robert Love38eccab2009-03-17 11:41:30 -07001888 for_each_possible_cpu(cpu) {
Robert Love5e5e92d2009-03-17 11:41:35 -07001889 p = &per_cpu(fcoe_percpu, cpu);
Robert Love38eccab2009-03-17 11:41:30 -07001890 skb_queue_head_init(&p->fcoe_rx_list);
1891 }
1892
Robert Love8976f422009-03-17 11:41:46 -07001893 for_each_online_cpu(cpu)
1894 fcoe_percpu_thread_create(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001895
Robert Love8976f422009-03-17 11:41:46 -07001896 /* Initialize per CPU interrupt thread */
1897 rc = register_hotcpu_notifier(&fcoe_cpu_notifier);
1898 if (rc)
1899 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08001900
Robert Love8976f422009-03-17 11:41:46 -07001901 /* Setup link change notification */
Robert Love85b4aa42008-12-09 15:10:24 -08001902 fcoe_dev_setup();
1903
Chris Leech5892c322009-08-25 13:59:14 -07001904 rc = fcoe_if_init();
1905 if (rc)
1906 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08001907
1908 return 0;
Robert Love8976f422009-03-17 11:41:46 -07001909
1910out_free:
1911 for_each_online_cpu(cpu) {
1912 fcoe_percpu_thread_destroy(cpu);
1913 }
1914
1915 return rc;
Robert Love85b4aa42008-12-09 15:10:24 -08001916}
1917module_init(fcoe_init);
1918
1919/**
Robert Love34f42a02009-02-27 10:55:45 -08001920 * fcoe_exit() - fcoe module unloading cleanup
Robert Love85b4aa42008-12-09 15:10:24 -08001921 *
1922 * Returns 0 on success, negative on failure
Robert Love34f42a02009-02-27 10:55:45 -08001923 */
Robert Love85b4aa42008-12-09 15:10:24 -08001924static void __exit fcoe_exit(void)
1925{
Robert Love5e5e92d2009-03-17 11:41:35 -07001926 unsigned int cpu;
Chris Leech014f5c32009-08-25 13:59:30 -07001927 struct fcoe_interface *fcoe, *tmp;
Robert Love85b4aa42008-12-09 15:10:24 -08001928
Robert Love85b4aa42008-12-09 15:10:24 -08001929 fcoe_dev_cleanup();
1930
Vasu Dev5919a592009-03-27 09:03:29 -07001931 /* releases the associated fcoe hosts */
Chris Leech014f5c32009-08-25 13:59:30 -07001932 list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list)
1933 fcoe_if_destroy(fcoe->priv->ctlr.lp);
Robert Love85b4aa42008-12-09 15:10:24 -08001934
Robert Love8976f422009-03-17 11:41:46 -07001935 unregister_hotcpu_notifier(&fcoe_cpu_notifier);
1936
Chris Leech014f5c32009-08-25 13:59:30 -07001937 for_each_online_cpu(cpu)
Robert Love8976f422009-03-17 11:41:46 -07001938 fcoe_percpu_thread_destroy(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001939
Vasu Dev7f349142009-03-27 09:06:31 -07001940 /* detach from scsi transport */
1941 fcoe_if_exit();
Robert Love85b4aa42008-12-09 15:10:24 -08001942}
1943module_exit(fcoe_exit);