blob: 51c24b37c60acbce0e84dd7b2c2df7ba2f9f97d5 [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
Chris Leechdfc1d0f2009-08-25 14:00:13 -070058DEFINE_MUTEX(fcoe_config_mutex);
59
Joe Eykholte7a51992009-08-25 14:04:08 -070060/* fcoe_percpu_clean completion. Waiter protected by fcoe_create_mutex */
61static DECLARE_COMPLETION(fcoe_flush_completion);
62
Robert Love85b4aa42008-12-09 15:10:24 -080063/* fcoe host list */
Chris Leech090eb6c2009-08-25 14:00:28 -070064/* must only by accessed under the RTNL mutex */
Robert Love85b4aa42008-12-09 15:10:24 -080065LIST_HEAD(fcoe_hostlist);
Robert Love5e5e92d2009-03-17 11:41:35 -070066DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -080067
Chris Leechdd3fd722009-04-21 16:27:36 -070068/* Function Prototypes */
Robert Love1875f272009-11-03 11:47:50 -080069static int fcoe_reset(struct Scsi_Host *);
Vasu Devfdd78022009-03-17 11:42:24 -070070static int fcoe_xmit(struct fc_lport *, struct fc_frame *);
71static int fcoe_rcv(struct sk_buff *, struct net_device *,
72 struct packet_type *, struct net_device *);
Robert Love1875f272009-11-03 11:47:50 -080073static int fcoe_percpu_receive_thread(void *);
74static void fcoe_clean_pending_queue(struct fc_lport *);
75static void fcoe_percpu_clean(struct fc_lport *);
76static int fcoe_link_ok(struct fc_lport *);
Vasu Devfdd78022009-03-17 11:42:24 -070077
78static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *);
79static int fcoe_hostlist_add(const struct fc_lport *);
Vasu Devfdd78022009-03-17 11:42:24 -070080
Vasu Dev4bb6b512009-05-06 10:52:34 -070081static void fcoe_check_wait_queue(struct fc_lport *, struct sk_buff *);
Robert Love85b4aa42008-12-09 15:10:24 -080082static int fcoe_device_notification(struct notifier_block *, ulong, void *);
83static void fcoe_dev_setup(void);
84static void fcoe_dev_cleanup(void);
Robert Love1875f272009-11-03 11:47:50 -080085static struct fcoe_interface
86*fcoe_hostlist_lookup_port(const struct net_device *);
Robert Love85b4aa42008-12-09 15:10:24 -080087
Robert Love1875f272009-11-03 11:47:50 -080088static int fcoe_fip_recv(struct sk_buff *, struct net_device *,
89 struct packet_type *, struct net_device *);
90
91static void fcoe_fip_send(struct fcoe_ctlr *, struct sk_buff *);
92static void fcoe_update_src_mac(struct fc_lport *, u8 *);
93static u8 *fcoe_get_src_mac(struct fc_lport *);
94static void fcoe_destroy_work(struct work_struct *);
95
96static int fcoe_ddp_setup(struct fc_lport *, u16, struct scatterlist *,
97 unsigned int);
98static int fcoe_ddp_done(struct fc_lport *, u16);
99
100static int fcoe_cpu_callback(struct notifier_block *, unsigned long, void *);
101
102static int fcoe_create(const char *, struct kernel_param *);
103static int fcoe_destroy(const char *, struct kernel_param *);
104
Robert Love1875f272009-11-03 11:47:50 -0800105static struct fc_seq *fcoe_elsct_send(struct fc_lport *,
106 u32 did, struct fc_frame *,
107 unsigned int op,
108 void (*resp)(struct fc_seq *,
109 struct fc_frame *,
110 void *),
111 void *, u32 timeout);
Chris Leech859b7b62009-11-20 14:54:47 -0800112static void fcoe_recv_frame(struct sk_buff *skb);
Robert Love1875f272009-11-03 11:47:50 -0800113
Yi Zoub84056b2009-11-20 14:55:19 -0800114static void fcoe_get_lesb(struct fc_lport *, struct fc_els_lesb *);
115
Robert Love1875f272009-11-03 11:47:50 -0800116module_param_call(create, fcoe_create, NULL, NULL, S_IWUSR);
117__MODULE_PARM_TYPE(create, "string");
118MODULE_PARM_DESC(create, "Create fcoe fcoe using net device passed in.");
119module_param_call(destroy, fcoe_destroy, NULL, NULL, S_IWUSR);
120__MODULE_PARM_TYPE(destroy, "string");
121MODULE_PARM_DESC(destroy, "Destroy fcoe fcoe");
122
123/* notification function for packets from net device */
Robert Love85b4aa42008-12-09 15:10:24 -0800124static struct notifier_block fcoe_notifier = {
125 .notifier_call = fcoe_device_notification,
126};
127
Robert Love1875f272009-11-03 11:47:50 -0800128/* notification function for CPU hotplug events */
129static struct notifier_block fcoe_cpu_notifier = {
130 .notifier_call = fcoe_cpu_callback,
131};
132
Chris Leeche9084bb2009-11-03 11:46:34 -0800133static struct scsi_transport_template *fcoe_transport_template;
134static struct scsi_transport_template *fcoe_vport_transport_template;
Vasu Dev7f349142009-03-27 09:06:31 -0700135
Robert Love1875f272009-11-03 11:47:50 -0800136static int fcoe_vport_destroy(struct fc_vport *);
137static int fcoe_vport_create(struct fc_vport *, bool disabled);
138static int fcoe_vport_disable(struct fc_vport *, bool disable);
139static void fcoe_set_vport_symbolic_name(struct fc_vport *);
140
141static struct libfc_function_template fcoe_libfc_fcn_templ = {
142 .frame_send = fcoe_xmit,
143 .ddp_setup = fcoe_ddp_setup,
144 .ddp_done = fcoe_ddp_done,
145 .elsct_send = fcoe_elsct_send,
Yi Zoub84056b2009-11-20 14:55:19 -0800146 .get_lesb = fcoe_get_lesb,
Robert Love1875f272009-11-03 11:47:50 -0800147};
Chris Leech9a057532009-11-03 11:46:40 -0800148
Vasu Dev7f349142009-03-27 09:06:31 -0700149struct fc_function_template fcoe_transport_function = {
150 .show_host_node_name = 1,
151 .show_host_port_name = 1,
152 .show_host_supported_classes = 1,
153 .show_host_supported_fc4s = 1,
154 .show_host_active_fc4s = 1,
155 .show_host_maxframe_size = 1,
156
157 .show_host_port_id = 1,
158 .show_host_supported_speeds = 1,
159 .get_host_speed = fc_get_host_speed,
160 .show_host_speed = 1,
161 .show_host_port_type = 1,
162 .get_host_port_state = fc_get_host_port_state,
163 .show_host_port_state = 1,
164 .show_host_symbolic_name = 1,
165
166 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
167 .show_rport_maxframe_size = 1,
168 .show_rport_supported_classes = 1,
169
170 .show_host_fabric_name = 1,
171 .show_starget_node_name = 1,
172 .show_starget_port_name = 1,
173 .show_starget_port_id = 1,
174 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
175 .show_rport_dev_loss_tmo = 1,
176 .get_fc_host_stats = fc_get_host_stats,
177 .issue_fc_host_lip = fcoe_reset,
178
179 .terminate_rport_io = fc_rport_terminate_io,
Chris Leech9a057532009-11-03 11:46:40 -0800180
181 .vport_create = fcoe_vport_create,
182 .vport_delete = fcoe_vport_destroy,
183 .vport_disable = fcoe_vport_disable,
Chris Leechdc8596d2009-11-03 11:47:18 -0800184 .set_vport_symbolic_name = fcoe_set_vport_symbolic_name,
Steve Maa51ab392009-11-03 11:47:34 -0800185
186 .bsg_request = fc_lport_bsg_request,
Vasu Dev7f349142009-03-27 09:06:31 -0700187};
188
Chris Leeche9084bb2009-11-03 11:46:34 -0800189struct fc_function_template fcoe_vport_transport_function = {
190 .show_host_node_name = 1,
191 .show_host_port_name = 1,
192 .show_host_supported_classes = 1,
193 .show_host_supported_fc4s = 1,
194 .show_host_active_fc4s = 1,
195 .show_host_maxframe_size = 1,
196
197 .show_host_port_id = 1,
198 .show_host_supported_speeds = 1,
199 .get_host_speed = fc_get_host_speed,
200 .show_host_speed = 1,
201 .show_host_port_type = 1,
202 .get_host_port_state = fc_get_host_port_state,
203 .show_host_port_state = 1,
204 .show_host_symbolic_name = 1,
205
206 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
207 .show_rport_maxframe_size = 1,
208 .show_rport_supported_classes = 1,
209
210 .show_host_fabric_name = 1,
211 .show_starget_node_name = 1,
212 .show_starget_port_name = 1,
213 .show_starget_port_id = 1,
214 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
215 .show_rport_dev_loss_tmo = 1,
216 .get_fc_host_stats = fc_get_host_stats,
217 .issue_fc_host_lip = fcoe_reset,
218
219 .terminate_rport_io = fc_rport_terminate_io,
Steve Maa51ab392009-11-03 11:47:34 -0800220
221 .bsg_request = fc_lport_bsg_request,
Chris Leeche9084bb2009-11-03 11:46:34 -0800222};
223
Vasu Dev7f349142009-03-27 09:06:31 -0700224static struct scsi_host_template fcoe_shost_template = {
225 .module = THIS_MODULE,
226 .name = "FCoE Driver",
227 .proc_name = FCOE_NAME,
228 .queuecommand = fc_queuecommand,
229 .eh_abort_handler = fc_eh_abort,
230 .eh_device_reset_handler = fc_eh_device_reset,
231 .eh_host_reset_handler = fc_eh_host_reset,
232 .slave_alloc = fc_slave_alloc,
233 .change_queue_depth = fc_change_queue_depth,
234 .change_queue_type = fc_change_queue_type,
235 .this_id = -1,
Vasu Dev14caf442009-10-15 17:46:55 -0700236 .cmd_per_lun = 3,
Vasu Dev7f349142009-03-27 09:06:31 -0700237 .can_queue = FCOE_MAX_OUTSTANDING_COMMANDS,
238 .use_clustering = ENABLE_CLUSTERING,
239 .sg_tablesize = SG_ALL,
240 .max_sectors = 0xffff,
241};
242
Chris Leech54b649f2009-08-25 14:00:07 -0700243/**
Robert Love1875f272009-11-03 11:47:50 -0800244 * fcoe_interface_setup() - Setup a FCoE interface
245 * @fcoe: The new FCoE interface
246 * @netdev: The net device that the fcoe interface is on
Chris Leech54b649f2009-08-25 14:00:07 -0700247 *
248 * Returns : 0 for success
Chris Leech2e70e242009-08-25 14:00:23 -0700249 * Locking: must be called with the RTNL mutex held
Chris Leech54b649f2009-08-25 14:00:07 -0700250 */
251static int fcoe_interface_setup(struct fcoe_interface *fcoe,
252 struct net_device *netdev)
253{
254 struct fcoe_ctlr *fip = &fcoe->ctlr;
255 struct netdev_hw_addr *ha;
Yi Zou5bab87e2009-11-03 11:49:43 -0800256 struct net_device *real_dev;
Chris Leech54b649f2009-08-25 14:00:07 -0700257 u8 flogi_maddr[ETH_ALEN];
Yi Zoub7a727f2009-10-21 16:28:03 -0700258 const struct net_device_ops *ops;
Chris Leech54b649f2009-08-25 14:00:07 -0700259
260 fcoe->netdev = netdev;
261
Yi Zoub7a727f2009-10-21 16:28:03 -0700262 /* Let LLD initialize for FCoE */
263 ops = netdev->netdev_ops;
264 if (ops->ndo_fcoe_enable) {
265 if (ops->ndo_fcoe_enable(netdev))
266 FCOE_NETDEV_DBG(netdev, "Failed to enable FCoE"
267 " specific feature for LLD.\n");
268 }
269
Chris Leech54b649f2009-08-25 14:00:07 -0700270 /* Do not support for bonding device */
271 if ((netdev->priv_flags & IFF_MASTER_ALB) ||
272 (netdev->priv_flags & IFF_SLAVE_INACTIVE) ||
273 (netdev->priv_flags & IFF_MASTER_8023AD)) {
john fastabend59d92512009-11-03 11:48:44 -0800274 FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n");
Chris Leech54b649f2009-08-25 14:00:07 -0700275 return -EOPNOTSUPP;
276 }
277
278 /* look for SAN MAC address, if multiple SAN MACs exist, only
279 * use the first one for SPMA */
Yi Zou5bab87e2009-11-03 11:49:43 -0800280 real_dev = (netdev->priv_flags & IFF_802_1Q_VLAN) ?
281 vlan_dev_real_dev(netdev) : netdev;
Chris Leech54b649f2009-08-25 14:00:07 -0700282 rcu_read_lock();
Yi Zou5bab87e2009-11-03 11:49:43 -0800283 for_each_dev_addr(real_dev, ha) {
Chris Leech54b649f2009-08-25 14:00:07 -0700284 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
Yi Zoubf361702009-11-03 11:49:38 -0800285 (is_valid_ether_addr(ha->addr))) {
Chris Leech54b649f2009-08-25 14:00:07 -0700286 memcpy(fip->ctl_src_addr, ha->addr, ETH_ALEN);
287 fip->spma = 1;
288 break;
289 }
290 }
291 rcu_read_unlock();
292
293 /* setup Source Mac Address */
294 if (!fip->spma)
295 memcpy(fip->ctl_src_addr, netdev->dev_addr, netdev->addr_len);
296
297 /*
298 * Add FCoE MAC address as second unicast MAC address
299 * or enter promiscuous mode if not capable of listening
300 * for multiple unicast MACs.
301 */
Chris Leech54b649f2009-08-25 14:00:07 -0700302 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
303 dev_unicast_add(netdev, flogi_maddr);
304 if (fip->spma)
305 dev_unicast_add(netdev, fip->ctl_src_addr);
306 dev_mc_add(netdev, FIP_ALL_ENODE_MACS, ETH_ALEN, 0);
Chris Leech54b649f2009-08-25 14:00:07 -0700307
308 /*
309 * setup the receive function from ethernet driver
310 * on the ethertype for the given device
311 */
312 fcoe->fcoe_packet_type.func = fcoe_rcv;
313 fcoe->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
314 fcoe->fcoe_packet_type.dev = netdev;
315 dev_add_pack(&fcoe->fcoe_packet_type);
316
317 fcoe->fip_packet_type.func = fcoe_fip_recv;
318 fcoe->fip_packet_type.type = htons(ETH_P_FIP);
319 fcoe->fip_packet_type.dev = netdev;
320 dev_add_pack(&fcoe->fip_packet_type);
321
322 return 0;
323}
324
Vasu Dev7f349142009-03-27 09:06:31 -0700325/**
Robert Love1875f272009-11-03 11:47:50 -0800326 * fcoe_interface_create() - Create a FCoE interface on a net device
327 * @netdev: The net device to create the FCoE interface on
Chris Leech030f4e02009-08-25 14:00:02 -0700328 *
329 * Returns: pointer to a struct fcoe_interface or NULL on error
330 */
331static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev)
332{
333 struct fcoe_interface *fcoe;
john fastabend59d92512009-11-03 11:48:44 -0800334 int err;
Chris Leech030f4e02009-08-25 14:00:02 -0700335
336 fcoe = kzalloc(sizeof(*fcoe), GFP_KERNEL);
337 if (!fcoe) {
338 FCOE_NETDEV_DBG(netdev, "Could not allocate fcoe structure\n");
339 return NULL;
340 }
341
Chris Leech2e70e242009-08-25 14:00:23 -0700342 dev_hold(netdev);
Chris Leech030f4e02009-08-25 14:00:02 -0700343 kref_init(&fcoe->kref);
Chris Leech54b649f2009-08-25 14:00:07 -0700344
345 /*
346 * Initialize FIP.
347 */
348 fcoe_ctlr_init(&fcoe->ctlr);
349 fcoe->ctlr.send = fcoe_fip_send;
350 fcoe->ctlr.update_mac = fcoe_update_src_mac;
Chris Leech11b56182009-11-03 11:46:29 -0800351 fcoe->ctlr.get_src_addr = fcoe_get_src_mac;
Chris Leech54b649f2009-08-25 14:00:07 -0700352
john fastabend59d92512009-11-03 11:48:44 -0800353 err = fcoe_interface_setup(fcoe, netdev);
354 if (err) {
355 fcoe_ctlr_destroy(&fcoe->ctlr);
356 kfree(fcoe);
357 dev_put(netdev);
358 return NULL;
359 }
Chris Leech030f4e02009-08-25 14:00:02 -0700360
361 return fcoe;
362}
363
364/**
Robert Love1875f272009-11-03 11:47:50 -0800365 * fcoe_interface_cleanup() - Clean up a FCoE interface
366 * @fcoe: The FCoE interface to be cleaned up
Chris Leech2e70e242009-08-25 14:00:23 -0700367 *
368 * Caller must be holding the RTNL mutex
Chris Leech54b649f2009-08-25 14:00:07 -0700369 */
370void fcoe_interface_cleanup(struct fcoe_interface *fcoe)
371{
372 struct net_device *netdev = fcoe->netdev;
373 struct fcoe_ctlr *fip = &fcoe->ctlr;
374 u8 flogi_maddr[ETH_ALEN];
Yi Zoub7a727f2009-10-21 16:28:03 -0700375 const struct net_device_ops *ops;
Chris Leech54b649f2009-08-25 14:00:07 -0700376
377 /*
378 * Don't listen for Ethernet packets anymore.
379 * synchronize_net() ensures that the packet handlers are not running
380 * on another CPU. dev_remove_pack() would do that, this calls the
381 * unsyncronized version __dev_remove_pack() to avoid multiple delays.
382 */
383 __dev_remove_pack(&fcoe->fcoe_packet_type);
384 __dev_remove_pack(&fcoe->fip_packet_type);
385 synchronize_net();
386
Chris Leech54b649f2009-08-25 14:00:07 -0700387 /* Delete secondary MAC addresses */
Chris Leech54b649f2009-08-25 14:00:07 -0700388 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
389 dev_unicast_delete(netdev, flogi_maddr);
Chris Leech54b649f2009-08-25 14:00:07 -0700390 if (fip->spma)
391 dev_unicast_delete(netdev, fip->ctl_src_addr);
392 dev_mc_delete(netdev, FIP_ALL_ENODE_MACS, ETH_ALEN, 0);
Yi Zoub7a727f2009-10-21 16:28:03 -0700393
394 /* Tell the LLD we are done w/ FCoE */
395 ops = netdev->netdev_ops;
396 if (ops->ndo_fcoe_disable) {
397 if (ops->ndo_fcoe_disable(netdev))
398 FCOE_NETDEV_DBG(netdev, "Failed to disable FCoE"
399 " specific feature for LLD.\n");
400 }
Chris Leech54b649f2009-08-25 14:00:07 -0700401}
402
403/**
Chris Leech030f4e02009-08-25 14:00:02 -0700404 * fcoe_interface_release() - fcoe_port kref release function
Robert Love1875f272009-11-03 11:47:50 -0800405 * @kref: Embedded reference count in an fcoe_interface struct
Chris Leech030f4e02009-08-25 14:00:02 -0700406 */
407static void fcoe_interface_release(struct kref *kref)
408{
409 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -0700410 struct net_device *netdev;
Chris Leech030f4e02009-08-25 14:00:02 -0700411
412 fcoe = container_of(kref, struct fcoe_interface, kref);
Chris Leech2e70e242009-08-25 14:00:23 -0700413 netdev = fcoe->netdev;
414 /* tear-down the FCoE controller */
415 fcoe_ctlr_destroy(&fcoe->ctlr);
Chris Leech030f4e02009-08-25 14:00:02 -0700416 kfree(fcoe);
Chris Leech2e70e242009-08-25 14:00:23 -0700417 dev_put(netdev);
Chris Leech030f4e02009-08-25 14:00:02 -0700418}
419
420/**
Robert Love1875f272009-11-03 11:47:50 -0800421 * fcoe_interface_get() - Get a reference to a FCoE interface
422 * @fcoe: The FCoE interface to be held
Chris Leech030f4e02009-08-25 14:00:02 -0700423 */
424static inline void fcoe_interface_get(struct fcoe_interface *fcoe)
425{
426 kref_get(&fcoe->kref);
427}
428
429/**
Robert Love1875f272009-11-03 11:47:50 -0800430 * fcoe_interface_put() - Put a reference to a FCoE interface
431 * @fcoe: The FCoE interface to be released
Chris Leech030f4e02009-08-25 14:00:02 -0700432 */
433static inline void fcoe_interface_put(struct fcoe_interface *fcoe)
434{
435 kref_put(&fcoe->kref, fcoe_interface_release);
436}
437
438/**
Robert Love1875f272009-11-03 11:47:50 -0800439 * fcoe_fip_recv() - Handler for received FIP frames
440 * @skb: The receive skb
441 * @netdev: The associated net device
442 * @ptype: The packet_type structure which was used to register this handler
443 * @orig_dev: The original net_device the the skb was received on.
444 * (in case dev is a bond)
Vasu Devab6b85c2009-05-17 12:33:08 +0000445 *
446 * Returns: 0 for success
447 */
Robert Love1875f272009-11-03 11:47:50 -0800448static int fcoe_fip_recv(struct sk_buff *skb, struct net_device *netdev,
Vasu Devab6b85c2009-05-17 12:33:08 +0000449 struct packet_type *ptype,
450 struct net_device *orig_dev)
451{
Chris Leech259ad852009-08-25 13:59:41 -0700452 struct fcoe_interface *fcoe;
Vasu Devab6b85c2009-05-17 12:33:08 +0000453
Chris Leech259ad852009-08-25 13:59:41 -0700454 fcoe = container_of(ptype, struct fcoe_interface, fip_packet_type);
Chris Leech3fe9a0b2009-08-25 13:59:46 -0700455 fcoe_ctlr_recv(&fcoe->ctlr, skb);
Vasu Devab6b85c2009-05-17 12:33:08 +0000456 return 0;
457}
458
459/**
Robert Love1875f272009-11-03 11:47:50 -0800460 * fcoe_fip_send() - Send an Ethernet-encapsulated FIP frame
461 * @fip: The FCoE controller
462 * @skb: The FIP packet to be sent
Vasu Devab6b85c2009-05-17 12:33:08 +0000463 */
464static void fcoe_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
465{
Chris Leech3fe9a0b2009-08-25 13:59:46 -0700466 skb->dev = fcoe_from_ctlr(fip)->netdev;
Vasu Devab6b85c2009-05-17 12:33:08 +0000467 dev_queue_xmit(skb);
468}
469
470/**
Robert Love1875f272009-11-03 11:47:50 -0800471 * fcoe_update_src_mac() - Update the Ethernet MAC filters
472 * @lport: The local port to update the source MAC on
473 * @addr: Unicast MAC address to add
Vasu Devab6b85c2009-05-17 12:33:08 +0000474 *
475 * Remove any previously-set unicast MAC filter.
476 * Add secondary FCoE MAC address filter for our OUI.
477 */
Chris Leech11b56182009-11-03 11:46:29 -0800478static void fcoe_update_src_mac(struct fc_lport *lport, u8 *addr)
Vasu Devab6b85c2009-05-17 12:33:08 +0000479{
Chris Leech11b56182009-11-03 11:46:29 -0800480 struct fcoe_port *port = lport_priv(lport);
481 struct fcoe_interface *fcoe = port->fcoe;
Vasu Devab6b85c2009-05-17 12:33:08 +0000482
Vasu Devab6b85c2009-05-17 12:33:08 +0000483 rtnl_lock();
Chris Leech11b56182009-11-03 11:46:29 -0800484 if (!is_zero_ether_addr(port->data_src_addr))
485 dev_unicast_delete(fcoe->netdev, port->data_src_addr);
486 if (!is_zero_ether_addr(addr))
487 dev_unicast_add(fcoe->netdev, addr);
488 memcpy(port->data_src_addr, addr, ETH_ALEN);
Vasu Devab6b85c2009-05-17 12:33:08 +0000489 rtnl_unlock();
490}
491
492/**
Chris Leech11b56182009-11-03 11:46:29 -0800493 * fcoe_get_src_mac() - return the Ethernet source address for an lport
494 * @lport: libfc lport
495 */
496static u8 *fcoe_get_src_mac(struct fc_lport *lport)
497{
498 struct fcoe_port *port = lport_priv(lport);
499
500 return port->data_src_addr;
501}
502
503/**
Robert Love1875f272009-11-03 11:47:50 -0800504 * fcoe_lport_config() - Set up a local port
505 * @lport: The local port to be setup
Vasu Dev7f349142009-03-27 09:06:31 -0700506 *
507 * Returns: 0 for success
508 */
Robert Love1875f272009-11-03 11:47:50 -0800509static int fcoe_lport_config(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700510{
Robert Love1875f272009-11-03 11:47:50 -0800511 lport->link_up = 0;
512 lport->qfull = 0;
513 lport->max_retry_count = 3;
514 lport->max_rport_retry_count = 3;
515 lport->e_d_tov = 2 * 1000; /* FC-FS default */
516 lport->r_a_tov = 2 * 2 * 1000;
517 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
518 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
519 lport->does_npiv = 1;
Vasu Dev7f349142009-03-27 09:06:31 -0700520
Robert Love1875f272009-11-03 11:47:50 -0800521 fc_lport_init_stats(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700522
523 /* lport fc_lport related configuration */
Robert Love1875f272009-11-03 11:47:50 -0800524 fc_lport_config(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700525
526 /* offload related configuration */
Robert Love1875f272009-11-03 11:47:50 -0800527 lport->crc_offload = 0;
528 lport->seq_offload = 0;
529 lport->lro_enabled = 0;
530 lport->lro_xid = 0;
531 lport->lso_max = 0;
Vasu Dev7f349142009-03-27 09:06:31 -0700532
533 return 0;
534}
535
536/**
Robert Love1875f272009-11-03 11:47:50 -0800537 * fcoe_queue_timer() - The fcoe queue timer
538 * @lport: The local port
Vasu Dev1047f222009-05-06 10:52:40 -0700539 *
540 * Calls fcoe_check_wait_queue on timeout
Vasu Dev1047f222009-05-06 10:52:40 -0700541 */
Robert Love1875f272009-11-03 11:47:50 -0800542static void fcoe_queue_timer(ulong lport)
Vasu Dev1047f222009-05-06 10:52:40 -0700543{
Robert Love1875f272009-11-03 11:47:50 -0800544 fcoe_check_wait_queue((struct fc_lport *)lport, NULL);
Vasu Dev1047f222009-05-06 10:52:40 -0700545}
546
547/**
Robert Love1875f272009-11-03 11:47:50 -0800548 * fcoe_netdev_config() - Set up net devive for SW FCoE
549 * @lport: The local port that is associated with the net device
550 * @netdev: The associated net device
Vasu Dev7f349142009-03-27 09:06:31 -0700551 *
Robert Love1875f272009-11-03 11:47:50 -0800552 * Must be called after fcoe_lport_config() as it will use local port mutex
Vasu Dev7f349142009-03-27 09:06:31 -0700553 *
Robert Love1875f272009-11-03 11:47:50 -0800554 * Returns: 0 for success
Vasu Dev7f349142009-03-27 09:06:31 -0700555 */
Robert Love1875f272009-11-03 11:47:50 -0800556static int fcoe_netdev_config(struct fc_lport *lport, struct net_device *netdev)
Vasu Dev7f349142009-03-27 09:06:31 -0700557{
558 u32 mfs;
559 u64 wwnn, wwpn;
Chris Leech25024982009-08-25 13:59:35 -0700560 struct fcoe_interface *fcoe;
Chris Leech014f5c32009-08-25 13:59:30 -0700561 struct fcoe_port *port;
Yi Zoucc0136c2009-11-03 11:49:59 -0800562 int vid = 0;
Vasu Dev7f349142009-03-27 09:06:31 -0700563
564 /* Setup lport private data to point to fcoe softc */
Robert Love1875f272009-11-03 11:47:50 -0800565 port = lport_priv(lport);
Chris Leech25024982009-08-25 13:59:35 -0700566 fcoe = port->fcoe;
Vasu Dev7f349142009-03-27 09:06:31 -0700567
568 /*
569 * Determine max frame size based on underlying device and optional
570 * user-configured limit. If the MFS is too low, fcoe_link_ok()
571 * will return 0, so do this first.
572 */
Yi Zou7221d7e2009-10-21 16:27:52 -0700573 mfs = netdev->mtu;
574 if (netdev->features & NETIF_F_FCOE_MTU) {
575 mfs = FCOE_MTU;
576 FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs);
577 }
578 mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof));
Robert Love1875f272009-11-03 11:47:50 -0800579 if (fc_set_mfs(lport, mfs))
Vasu Dev7f349142009-03-27 09:06:31 -0700580 return -EINVAL;
581
Vasu Dev7f349142009-03-27 09:06:31 -0700582 /* offload features support */
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700583 if (netdev->features & NETIF_F_SG)
Robert Love1875f272009-11-03 11:47:50 -0800584 lport->sg_supp = 1;
Vasu Dev7f349142009-03-27 09:06:31 -0700585
Vasu Dev7f349142009-03-27 09:06:31 -0700586 if (netdev->features & NETIF_F_FCOE_CRC) {
Robert Love1875f272009-11-03 11:47:50 -0800587 lport->crc_offload = 1;
Robert Loved5488eb2009-06-10 15:30:59 -0700588 FCOE_NETDEV_DBG(netdev, "Supports FCCRC offload\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700589 }
Vasu Dev7f349142009-03-27 09:06:31 -0700590 if (netdev->features & NETIF_F_FSO) {
Robert Love1875f272009-11-03 11:47:50 -0800591 lport->seq_offload = 1;
592 lport->lso_max = netdev->gso_max_size;
Robert Loved5488eb2009-06-10 15:30:59 -0700593 FCOE_NETDEV_DBG(netdev, "Supports LSO for max len 0x%x\n",
Robert Love1875f272009-11-03 11:47:50 -0800594 lport->lso_max);
Vasu Dev7f349142009-03-27 09:06:31 -0700595 }
Vasu Dev7f349142009-03-27 09:06:31 -0700596 if (netdev->fcoe_ddp_xid) {
Robert Love1875f272009-11-03 11:47:50 -0800597 lport->lro_enabled = 1;
598 lport->lro_xid = netdev->fcoe_ddp_xid;
Robert Loved5488eb2009-06-10 15:30:59 -0700599 FCOE_NETDEV_DBG(netdev, "Supports LRO for max xid 0x%x\n",
Robert Love1875f272009-11-03 11:47:50 -0800600 lport->lro_xid);
Vasu Dev7f349142009-03-27 09:06:31 -0700601 }
Chris Leech014f5c32009-08-25 13:59:30 -0700602 skb_queue_head_init(&port->fcoe_pending_queue);
603 port->fcoe_pending_queue_active = 0;
Robert Love1875f272009-11-03 11:47:50 -0800604 setup_timer(&port->timer, fcoe_queue_timer, (unsigned long)lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700605
Robert Love1875f272009-11-03 11:47:50 -0800606 if (!lport->vport) {
Yi Zoucc0136c2009-11-03 11:49:59 -0800607 /*
608 * Use NAA 1&2 (FC-FS Rev. 2.0, Sec. 15) to generate WWNN/WWPN:
609 * For WWNN, we use NAA 1 w/ bit 27-16 of word 0 as 0.
610 * For WWPN, we use NAA 2 w/ bit 27-16 of word 0 from VLAN ID
611 */
612 if (netdev->priv_flags & IFF_802_1Q_VLAN)
613 vid = vlan_dev_vlan_id(netdev);
Yi Zou75ea89e2009-11-03 11:49:49 -0800614 wwnn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr, 1, 0);
Robert Love1875f272009-11-03 11:47:50 -0800615 fc_set_wwnn(lport, wwnn);
Yi Zoucc0136c2009-11-03 11:49:59 -0800616 wwpn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr, 2, vid);
Robert Love1875f272009-11-03 11:47:50 -0800617 fc_set_wwpn(lport, wwpn);
Chris Leech9a057532009-11-03 11:46:40 -0800618 }
Vasu Dev7f349142009-03-27 09:06:31 -0700619
Vasu Dev7f349142009-03-27 09:06:31 -0700620 return 0;
621}
622
623/**
Robert Love1875f272009-11-03 11:47:50 -0800624 * fcoe_shost_config() - Set up the SCSI host associated with a local port
625 * @lport: The local port
626 * @shost: The SCSI host to associate with the local port
627 * @dev: The device associated with the SCSI host
Vasu Dev7f349142009-03-27 09:06:31 -0700628 *
629 * Must be called after fcoe_lport_config() and fcoe_netdev_config()
630 *
Robert Love1875f272009-11-03 11:47:50 -0800631 * Returns: 0 for success
Vasu Dev7f349142009-03-27 09:06:31 -0700632 */
Robert Love1875f272009-11-03 11:47:50 -0800633static int fcoe_shost_config(struct fc_lport *lport, struct Scsi_Host *shost,
634 struct device *dev)
Vasu Dev7f349142009-03-27 09:06:31 -0700635{
636 int rc = 0;
637
638 /* lport scsi host config */
Robert Love1875f272009-11-03 11:47:50 -0800639 lport->host->max_lun = FCOE_MAX_LUN;
640 lport->host->max_id = FCOE_MAX_FCP_TARGET;
641 lport->host->max_channel = 0;
642 if (lport->vport)
643 lport->host->transportt = fcoe_vport_transport_template;
Chris Leeche9084bb2009-11-03 11:46:34 -0800644 else
Robert Love1875f272009-11-03 11:47:50 -0800645 lport->host->transportt = fcoe_transport_template;
Vasu Dev7f349142009-03-27 09:06:31 -0700646
647 /* add the new host to the SCSI-ml */
Robert Love1875f272009-11-03 11:47:50 -0800648 rc = scsi_add_host(lport->host, dev);
Vasu Dev7f349142009-03-27 09:06:31 -0700649 if (rc) {
Robert Love1875f272009-11-03 11:47:50 -0800650 FCOE_NETDEV_DBG(fcoe_netdev(lport), "fcoe_shost_config: "
Robert Loved5488eb2009-06-10 15:30:59 -0700651 "error on scsi_add_host\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700652 return rc;
653 }
Chris Leech9a057532009-11-03 11:46:40 -0800654
Robert Love1875f272009-11-03 11:47:50 -0800655 if (!lport->vport)
656 fc_host_max_npiv_vports(lport->host) = USHORT_MAX;
Chris Leech9a057532009-11-03 11:46:40 -0800657
Robert Love1875f272009-11-03 11:47:50 -0800658 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
Chris Leech5baa17c2009-11-03 11:46:56 -0800659 "%s v%s over %s", FCOE_NAME, FCOE_VERSION,
Robert Love1875f272009-11-03 11:47:50 -0800660 fcoe_netdev(lport)->name);
Vasu Dev7f349142009-03-27 09:06:31 -0700661
662 return 0;
663}
664
Robert Love1875f272009-11-03 11:47:50 -0800665/**
666 * fcoe_oem_match() - The match routine for the offloaded exchange manager
667 * @fp: The I/O frame
Vasu Devd7179682009-07-29 17:05:21 -0700668 *
Robert Love1875f272009-11-03 11:47:50 -0800669 * This routine will be associated with an exchange manager (EM). When
670 * the libfc exchange handling code is looking for an EM to use it will
671 * call this routine and pass it the frame that it wishes to send. This
672 * routine will return True if the associated EM is to be used and False
673 * if the echange code should continue looking for an EM.
674 *
675 * The offload EM that this routine is associated with will handle any
676 * packets that are for SCSI read requests.
677 *
678 * Returns: True for read types I/O, otherwise returns false.
Vasu Devd7179682009-07-29 17:05:21 -0700679 */
680bool fcoe_oem_match(struct fc_frame *fp)
681{
Yi Zou05cc7392009-08-25 13:59:03 -0700682 return fc_fcp_is_read(fr_fsp(fp)) &&
683 (fr_fsp(fp)->data_len > fcoe_ddp_min);
Vasu Devd7179682009-07-29 17:05:21 -0700684}
685
Vasu Dev7f349142009-03-27 09:06:31 -0700686/**
Robert Love1875f272009-11-03 11:47:50 -0800687 * fcoe_em_config() - Allocate and configure an exchange manager
688 * @lport: The local port that the new EM will be associated with
Vasu Dev7f349142009-03-27 09:06:31 -0700689 *
Robert Love1875f272009-11-03 11:47:50 -0800690 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -0700691 */
Robert Love1875f272009-11-03 11:47:50 -0800692static inline int fcoe_em_config(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700693{
Robert Love1875f272009-11-03 11:47:50 -0800694 struct fcoe_port *port = lport_priv(lport);
Chris Leech25024982009-08-25 13:59:35 -0700695 struct fcoe_interface *fcoe = port->fcoe;
696 struct fcoe_interface *oldfcoe = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700697 struct net_device *old_real_dev, *cur_real_dev;
Vasu Devd7179682009-07-29 17:05:21 -0700698 u16 min_xid = FCOE_MIN_XID;
699 u16 max_xid = FCOE_MAX_XID;
700
701 /*
702 * Check if need to allocate an em instance for
703 * offload exchange ids to be shared across all VN_PORTs/lport.
704 */
Robert Love1875f272009-11-03 11:47:50 -0800705 if (!lport->lro_enabled || !lport->lro_xid ||
706 (lport->lro_xid >= max_xid)) {
707 lport->lro_xid = 0;
Vasu Devd7179682009-07-29 17:05:21 -0700708 goto skip_oem;
709 }
710
711 /*
712 * Reuse existing offload em instance in case
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700713 * it is already allocated on real eth device
Vasu Devd7179682009-07-29 17:05:21 -0700714 */
Chris Leech25024982009-08-25 13:59:35 -0700715 if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
716 cur_real_dev = vlan_dev_real_dev(fcoe->netdev);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700717 else
Chris Leech25024982009-08-25 13:59:35 -0700718 cur_real_dev = fcoe->netdev;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700719
Chris Leech25024982009-08-25 13:59:35 -0700720 list_for_each_entry(oldfcoe, &fcoe_hostlist, list) {
Chris Leech25024982009-08-25 13:59:35 -0700721 if (oldfcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
722 old_real_dev = vlan_dev_real_dev(oldfcoe->netdev);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700723 else
Chris Leech25024982009-08-25 13:59:35 -0700724 old_real_dev = oldfcoe->netdev;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700725
726 if (cur_real_dev == old_real_dev) {
Chris Leech991cbb62009-08-25 13:59:51 -0700727 fcoe->oem = oldfcoe->oem;
Vasu Devd7179682009-07-29 17:05:21 -0700728 break;
729 }
730 }
731
Chris Leech991cbb62009-08-25 13:59:51 -0700732 if (fcoe->oem) {
Robert Love1875f272009-11-03 11:47:50 -0800733 if (!fc_exch_mgr_add(lport, fcoe->oem, fcoe_oem_match)) {
Vasu Devd7179682009-07-29 17:05:21 -0700734 printk(KERN_ERR "fcoe_em_config: failed to add "
735 "offload em:%p on interface:%s\n",
Chris Leech991cbb62009-08-25 13:59:51 -0700736 fcoe->oem, fcoe->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700737 return -ENOMEM;
738 }
739 } else {
Robert Love1875f272009-11-03 11:47:50 -0800740 fcoe->oem = fc_exch_mgr_alloc(lport, FC_CLASS_3,
741 FCOE_MIN_XID, lport->lro_xid,
742 fcoe_oem_match);
Chris Leech991cbb62009-08-25 13:59:51 -0700743 if (!fcoe->oem) {
Vasu Devd7179682009-07-29 17:05:21 -0700744 printk(KERN_ERR "fcoe_em_config: failed to allocate "
745 "em for offload exches on interface:%s\n",
Chris Leech25024982009-08-25 13:59:35 -0700746 fcoe->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700747 return -ENOMEM;
748 }
749 }
750
751 /*
752 * Exclude offload EM xid range from next EM xid range.
753 */
Robert Love1875f272009-11-03 11:47:50 -0800754 min_xid += lport->lro_xid + 1;
Vasu Devd7179682009-07-29 17:05:21 -0700755
756skip_oem:
Robert Love1875f272009-11-03 11:47:50 -0800757 if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, min_xid, max_xid, NULL)) {
Vasu Devd7179682009-07-29 17:05:21 -0700758 printk(KERN_ERR "fcoe_em_config: failed to "
Chris Leech25024982009-08-25 13:59:35 -0700759 "allocate em on interface %s\n", fcoe->netdev->name);
Vasu Dev7f349142009-03-27 09:06:31 -0700760 return -ENOMEM;
Vasu Devd7179682009-07-29 17:05:21 -0700761 }
Vasu Dev7f349142009-03-27 09:06:31 -0700762
763 return 0;
764}
765
766/**
Robert Love1875f272009-11-03 11:47:50 -0800767 * fcoe_if_destroy() - Tear down a SW FCoE instance
768 * @lport: The local port to be destroyed
Vasu Dev7f349142009-03-27 09:06:31 -0700769 */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700770static void fcoe_if_destroy(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700771{
Chris Leech014f5c32009-08-25 13:59:30 -0700772 struct fcoe_port *port = lport_priv(lport);
773 struct fcoe_interface *fcoe = port->fcoe;
Chris Leech25024982009-08-25 13:59:35 -0700774 struct net_device *netdev = fcoe->netdev;
Vasu Dev7f349142009-03-27 09:06:31 -0700775
Robert Loved5488eb2009-06-10 15:30:59 -0700776 FCOE_NETDEV_DBG(netdev, "Destroying interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700777
Vasu Dev7f349142009-03-27 09:06:31 -0700778 /* Logout of the fabric */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700779 fc_fabric_logoff(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700780
Vasu Dev7f349142009-03-27 09:06:31 -0700781 /* Cleanup the fc_lport */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700782 fc_lport_destroy(lport);
783 fc_fcp_destroy(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700784
Chris Leech54b649f2009-08-25 14:00:07 -0700785 /* Stop the transmit retry timer */
786 del_timer_sync(&port->timer);
787
788 /* Free existing transmit skbs */
789 fcoe_clean_pending_queue(lport);
790
Chris Leech11b56182009-11-03 11:46:29 -0800791 rtnl_lock();
792 if (!is_zero_ether_addr(port->data_src_addr))
793 dev_unicast_delete(netdev, port->data_src_addr);
794 rtnl_unlock();
795
Chris Leech54b649f2009-08-25 14:00:07 -0700796 /* receives may not be stopped until after this */
797 fcoe_interface_put(fcoe);
798
799 /* Free queued packets for the per-CPU receive threads */
800 fcoe_percpu_clean(lport);
801
Vasu Dev7f349142009-03-27 09:06:31 -0700802 /* Detach from the scsi-ml */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700803 fc_remove_host(lport->host);
804 scsi_remove_host(lport->host);
Vasu Dev7f349142009-03-27 09:06:31 -0700805
806 /* There are no more rports or I/O, free the EM */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700807 fc_exch_mgr_free(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700808
Vasu Dev7f349142009-03-27 09:06:31 -0700809 /* Free memory used by statistical counters */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700810 fc_lport_free_stats(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700811
Chris Leech2e70e242009-08-25 14:00:23 -0700812 /* Release the Scsi_Host */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700813 scsi_host_put(lport->host);
Vasu Dev7f349142009-03-27 09:06:31 -0700814}
815
Robert Love1875f272009-11-03 11:47:50 -0800816/**
817 * fcoe_ddp_setup() - Call a LLD's ddp_setup through the net device
818 * @lport: The local port to setup DDP for
819 * @xid: The exchange ID for this DDP transfer
820 * @sgl: The scatterlist describing this transfer
821 * @sgc: The number of sg items
Vasu Dev7f349142009-03-27 09:06:31 -0700822 *
Robert Love1875f272009-11-03 11:47:50 -0800823 * Returns: 0 if the DDP context was not configured
Vasu Dev7f349142009-03-27 09:06:31 -0700824 */
Robert Love1875f272009-11-03 11:47:50 -0800825static int fcoe_ddp_setup(struct fc_lport *lport, u16 xid,
826 struct scatterlist *sgl, unsigned int sgc)
Vasu Dev7f349142009-03-27 09:06:31 -0700827{
Robert Love1875f272009-11-03 11:47:50 -0800828 struct net_device *netdev = fcoe_netdev(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700829
Robert Love1875f272009-11-03 11:47:50 -0800830 if (netdev->netdev_ops->ndo_fcoe_ddp_setup)
831 return netdev->netdev_ops->ndo_fcoe_ddp_setup(netdev,
832 xid, sgl,
833 sgc);
Vasu Dev7f349142009-03-27 09:06:31 -0700834
835 return 0;
836}
837
Vasu Dev7f349142009-03-27 09:06:31 -0700838/**
Robert Love1875f272009-11-03 11:47:50 -0800839 * fcoe_ddp_done() - Call a LLD's ddp_done through the net device
840 * @lport: The local port to complete DDP on
841 * @xid: The exchange ID for this DDP transfer
Vasu Dev7f349142009-03-27 09:06:31 -0700842 *
Robert Love1875f272009-11-03 11:47:50 -0800843 * Returns: the length of data that have been completed by DDP
844 */
845static int fcoe_ddp_done(struct fc_lport *lport, u16 xid)
846{
847 struct net_device *netdev = fcoe_netdev(lport);
848
849 if (netdev->netdev_ops->ndo_fcoe_ddp_done)
850 return netdev->netdev_ops->ndo_fcoe_ddp_done(netdev, xid);
851 return 0;
852}
853
854/**
855 * fcoe_if_create() - Create a FCoE instance on an interface
856 * @fcoe: The FCoE interface to create a local port on
857 * @parent: The device pointer to be the parent in sysfs for the SCSI host
858 * @npiv: Indicates if the port is a vport or not
Vasu Dev7f349142009-03-27 09:06:31 -0700859 *
Robert Love1875f272009-11-03 11:47:50 -0800860 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
861 *
862 * Returns: The allocated fc_lport or an error pointer
Vasu Dev7f349142009-03-27 09:06:31 -0700863 */
Chris Leech030f4e02009-08-25 14:00:02 -0700864static struct fc_lport *fcoe_if_create(struct fcoe_interface *fcoe,
Chris Leech9a057532009-11-03 11:46:40 -0800865 struct device *parent, int npiv)
Vasu Dev7f349142009-03-27 09:06:31 -0700866{
Robert Love1875f272009-11-03 11:47:50 -0800867 struct net_device *netdev = fcoe->netdev;
Chris Leechaf7f85d2009-08-25 13:59:24 -0700868 struct fc_lport *lport = NULL;
Chris Leech014f5c32009-08-25 13:59:30 -0700869 struct fcoe_port *port;
Vasu Dev7f349142009-03-27 09:06:31 -0700870 struct Scsi_Host *shost;
Robert Love1875f272009-11-03 11:47:50 -0800871 int rc;
Chris Leech9a057532009-11-03 11:46:40 -0800872 /*
873 * parent is only a vport if npiv is 1,
874 * but we'll only use vport in that case so go ahead and set it
875 */
876 struct fc_vport *vport = dev_to_vport(parent);
Vasu Dev7f349142009-03-27 09:06:31 -0700877
Robert Loved5488eb2009-06-10 15:30:59 -0700878 FCOE_NETDEV_DBG(netdev, "Create Interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700879
Chris Leech9a057532009-11-03 11:46:40 -0800880 if (!npiv) {
881 lport = libfc_host_alloc(&fcoe_shost_template,
882 sizeof(struct fcoe_port));
883 } else {
884 lport = libfc_vport_create(vport,
885 sizeof(struct fcoe_port));
886 }
Chris Leech86221962009-11-03 11:46:08 -0800887 if (!lport) {
Chris Leech014f5c32009-08-25 13:59:30 -0700888 FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n");
889 rc = -ENOMEM;
Chris Leech030f4e02009-08-25 14:00:02 -0700890 goto out;
Chris Leech014f5c32009-08-25 13:59:30 -0700891 }
Chris Leech86221962009-11-03 11:46:08 -0800892 shost = lport->host;
Chris Leech014f5c32009-08-25 13:59:30 -0700893 port = lport_priv(lport);
Chris Leech2e70e242009-08-25 14:00:23 -0700894 port->lport = lport;
Chris Leech014f5c32009-08-25 13:59:30 -0700895 port->fcoe = fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -0700896 INIT_WORK(&port->destroy_work, fcoe_destroy_work);
Vasu Dev7f349142009-03-27 09:06:31 -0700897
Robert Love1875f272009-11-03 11:47:50 -0800898 /* configure a fc_lport including the exchange manager */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700899 rc = fcoe_lport_config(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700900 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700901 FCOE_NETDEV_DBG(netdev, "Could not configure lport for the "
902 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700903 goto out_host_put;
904 }
905
Chris Leech9a057532009-11-03 11:46:40 -0800906 if (npiv) {
907 FCOE_NETDEV_DBG(netdev, "Setting vport names, 0x%llX 0x%llX\n",
Robert Love1875f272009-11-03 11:47:50 -0800908 vport->node_name, vport->port_name);
Chris Leech9a057532009-11-03 11:46:40 -0800909 fc_set_wwnn(lport, vport->node_name);
910 fc_set_wwpn(lport, vport->port_name);
911 }
912
Vasu Devab6b85c2009-05-17 12:33:08 +0000913 /* configure lport network properties */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700914 rc = fcoe_netdev_config(lport, netdev);
Vasu Devab6b85c2009-05-17 12:33:08 +0000915 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700916 FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the "
917 "interface\n");
Chris Leech54b649f2009-08-25 14:00:07 -0700918 goto out_lp_destroy;
Vasu Devab6b85c2009-05-17 12:33:08 +0000919 }
Joe Eykholt97c83892009-03-17 11:42:40 -0700920
Vasu Dev7f349142009-03-27 09:06:31 -0700921 /* configure lport scsi host properties */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700922 rc = fcoe_shost_config(lport, shost, parent);
Vasu Dev7f349142009-03-27 09:06:31 -0700923 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700924 FCOE_NETDEV_DBG(netdev, "Could not configure shost for the "
925 "interface\n");
Chris Leech54b649f2009-08-25 14:00:07 -0700926 goto out_lp_destroy;
Vasu Dev7f349142009-03-27 09:06:31 -0700927 }
928
Vasu Dev7f349142009-03-27 09:06:31 -0700929 /* Initialize the library */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700930 rc = fcoe_libfc_config(lport, &fcoe_libfc_fcn_templ);
Vasu Dev7f349142009-03-27 09:06:31 -0700931 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700932 FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the "
933 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700934 goto out_lp_destroy;
935 }
936
Chris Leech9a057532009-11-03 11:46:40 -0800937 if (!npiv) {
938 /*
939 * fcoe_em_alloc() and fcoe_hostlist_add() both
940 * need to be atomic with respect to other changes to the
941 * hostlist since fcoe_em_alloc() looks for an existing EM
942 * instance on host list updated by fcoe_hostlist_add().
943 *
944 * This is currently handled through the fcoe_config_mutex
945 * begin held.
946 */
Chris Leechc863df32009-08-25 14:00:18 -0700947
Chris Leech9a057532009-11-03 11:46:40 -0800948 /* lport exch manager allocation */
949 rc = fcoe_em_config(lport);
950 if (rc) {
951 FCOE_NETDEV_DBG(netdev, "Could not configure the EM "
Robert Love1875f272009-11-03 11:47:50 -0800952 "for the interface\n");
Chris Leech9a057532009-11-03 11:46:40 -0800953 goto out_lp_destroy;
954 }
Vasu Dev96316092009-07-29 17:05:00 -0700955 }
956
Chris Leech030f4e02009-08-25 14:00:02 -0700957 fcoe_interface_get(fcoe);
Chris Leechaf7f85d2009-08-25 13:59:24 -0700958 return lport;
Vasu Dev7f349142009-03-27 09:06:31 -0700959
960out_lp_destroy:
Chris Leechaf7f85d2009-08-25 13:59:24 -0700961 fc_exch_mgr_free(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700962out_host_put:
Chris Leechaf7f85d2009-08-25 13:59:24 -0700963 scsi_host_put(lport->host);
964out:
965 return ERR_PTR(rc);
Vasu Dev7f349142009-03-27 09:06:31 -0700966}
967
968/**
Robert Love1875f272009-11-03 11:47:50 -0800969 * fcoe_if_init() - Initialization routine for fcoe.ko
Vasu Dev7f349142009-03-27 09:06:31 -0700970 *
Robert Love1875f272009-11-03 11:47:50 -0800971 * Attaches the SW FCoE transport to the FC transport
972 *
973 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -0700974 */
975static int __init fcoe_if_init(void)
976{
977 /* attach to scsi transport */
Chris Leeche9084bb2009-11-03 11:46:34 -0800978 fcoe_transport_template = fc_attach_transport(&fcoe_transport_function);
979 fcoe_vport_transport_template =
980 fc_attach_transport(&fcoe_vport_transport_function);
Vasu Dev7f349142009-03-27 09:06:31 -0700981
Chris Leeche9084bb2009-11-03 11:46:34 -0800982 if (!fcoe_transport_template) {
Robert Loved5488eb2009-06-10 15:30:59 -0700983 printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700984 return -ENODEV;
985 }
986
987 return 0;
988}
989
990/**
Robert Love1875f272009-11-03 11:47:50 -0800991 * fcoe_if_exit() - Tear down fcoe.ko
Vasu Dev7f349142009-03-27 09:06:31 -0700992 *
Robert Love1875f272009-11-03 11:47:50 -0800993 * Detaches the SW FCoE transport from the FC transport
994 *
995 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -0700996 */
997int __exit fcoe_if_exit(void)
998{
Chris Leeche9084bb2009-11-03 11:46:34 -0800999 fc_release_transport(fcoe_transport_template);
1000 fc_release_transport(fcoe_vport_transport_template);
1001 fcoe_transport_template = NULL;
1002 fcoe_vport_transport_template = NULL;
Vasu Dev7f349142009-03-27 09:06:31 -07001003 return 0;
1004}
1005
Robert Love85b4aa42008-12-09 15:10:24 -08001006/**
Robert Love1875f272009-11-03 11:47:50 -08001007 * fcoe_percpu_thread_create() - Create a receive thread for an online CPU
1008 * @cpu: The CPU index of the CPU to create a receive thread for
Robert Love8976f422009-03-17 11:41:46 -07001009 */
1010static void fcoe_percpu_thread_create(unsigned int cpu)
1011{
1012 struct fcoe_percpu_s *p;
1013 struct task_struct *thread;
1014
1015 p = &per_cpu(fcoe_percpu, cpu);
1016
1017 thread = kthread_create(fcoe_percpu_receive_thread,
1018 (void *)p, "fcoethread/%d", cpu);
1019
Joe Eykholte7a51992009-08-25 14:04:08 -07001020 if (likely(!IS_ERR(thread))) {
Robert Love8976f422009-03-17 11:41:46 -07001021 kthread_bind(thread, cpu);
1022 wake_up_process(thread);
1023
1024 spin_lock_bh(&p->fcoe_rx_list.lock);
1025 p->thread = thread;
1026 spin_unlock_bh(&p->fcoe_rx_list.lock);
1027 }
1028}
1029
1030/**
Robert Love1875f272009-11-03 11:47:50 -08001031 * fcoe_percpu_thread_destroy() - Remove the receive thread of a CPU
1032 * @cpu: The CPU index of the CPU whose receive thread is to be destroyed
Robert Love8976f422009-03-17 11:41:46 -07001033 *
1034 * Destroys a per-CPU Rx thread. Any pending skbs are moved to the
1035 * current CPU's Rx thread. If the thread being destroyed is bound to
1036 * the CPU processing this context the skbs will be freed.
1037 */
1038static void fcoe_percpu_thread_destroy(unsigned int cpu)
1039{
1040 struct fcoe_percpu_s *p;
1041 struct task_struct *thread;
1042 struct page *crc_eof;
1043 struct sk_buff *skb;
1044#ifdef CONFIG_SMP
1045 struct fcoe_percpu_s *p0;
1046 unsigned targ_cpu = smp_processor_id();
1047#endif /* CONFIG_SMP */
1048
Robert Loved5488eb2009-06-10 15:30:59 -07001049 FCOE_DBG("Destroying receive thread for CPU %d\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001050
1051 /* Prevent any new skbs from being queued for this CPU. */
1052 p = &per_cpu(fcoe_percpu, cpu);
1053 spin_lock_bh(&p->fcoe_rx_list.lock);
1054 thread = p->thread;
1055 p->thread = NULL;
1056 crc_eof = p->crc_eof_page;
1057 p->crc_eof_page = NULL;
1058 p->crc_eof_offset = 0;
1059 spin_unlock_bh(&p->fcoe_rx_list.lock);
1060
1061#ifdef CONFIG_SMP
1062 /*
1063 * Don't bother moving the skb's if this context is running
1064 * on the same CPU that is having its thread destroyed. This
1065 * can easily happen when the module is removed.
1066 */
1067 if (cpu != targ_cpu) {
1068 p0 = &per_cpu(fcoe_percpu, targ_cpu);
1069 spin_lock_bh(&p0->fcoe_rx_list.lock);
1070 if (p0->thread) {
Robert Loved5488eb2009-06-10 15:30:59 -07001071 FCOE_DBG("Moving frames from CPU %d to CPU %d\n",
1072 cpu, targ_cpu);
Robert Love8976f422009-03-17 11:41:46 -07001073
1074 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1075 __skb_queue_tail(&p0->fcoe_rx_list, skb);
1076 spin_unlock_bh(&p0->fcoe_rx_list.lock);
1077 } else {
1078 /*
1079 * The targeted CPU is not initialized and cannot accept
Robert Love1875f272009-11-03 11:47:50 -08001080 * new skbs. Unlock the targeted CPU and drop the skbs
Robert Love8976f422009-03-17 11:41:46 -07001081 * on the CPU that is going offline.
1082 */
1083 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1084 kfree_skb(skb);
1085 spin_unlock_bh(&p0->fcoe_rx_list.lock);
1086 }
1087 } else {
1088 /*
1089 * This scenario occurs when the module is being removed
1090 * and all threads are being destroyed. skbs will continue
1091 * to be shifted from the CPU thread that is being removed
1092 * to the CPU thread associated with the CPU that is processing
1093 * the module removal. Once there is only one CPU Rx thread it
1094 * will reach this case and we will drop all skbs and later
1095 * stop the thread.
1096 */
1097 spin_lock_bh(&p->fcoe_rx_list.lock);
1098 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1099 kfree_skb(skb);
1100 spin_unlock_bh(&p->fcoe_rx_list.lock);
1101 }
1102#else
1103 /*
Chris Leechdd3fd722009-04-21 16:27:36 -07001104 * This a non-SMP scenario where the singular Rx thread is
Robert Love8976f422009-03-17 11:41:46 -07001105 * being removed. Free all skbs and stop the thread.
1106 */
1107 spin_lock_bh(&p->fcoe_rx_list.lock);
1108 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1109 kfree_skb(skb);
1110 spin_unlock_bh(&p->fcoe_rx_list.lock);
1111#endif
1112
1113 if (thread)
1114 kthread_stop(thread);
1115
1116 if (crc_eof)
1117 put_page(crc_eof);
1118}
1119
1120/**
Robert Love1875f272009-11-03 11:47:50 -08001121 * fcoe_cpu_callback() - Handler for CPU hotplug events
1122 * @nfb: The callback data block
1123 * @action: The event triggering the callback
1124 * @hcpu: The index of the CPU that the event is for
Robert Love8976f422009-03-17 11:41:46 -07001125 *
Robert Love1875f272009-11-03 11:47:50 -08001126 * This creates or destroys per-CPU data for fcoe
Robert Love8976f422009-03-17 11:41:46 -07001127 *
1128 * Returns NOTIFY_OK always.
1129 */
1130static int fcoe_cpu_callback(struct notifier_block *nfb,
1131 unsigned long action, void *hcpu)
1132{
1133 unsigned cpu = (unsigned long)hcpu;
1134
1135 switch (action) {
1136 case CPU_ONLINE:
1137 case CPU_ONLINE_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -07001138 FCOE_DBG("CPU %x online: Create Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001139 fcoe_percpu_thread_create(cpu);
1140 break;
1141 case CPU_DEAD:
1142 case CPU_DEAD_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -07001143 FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001144 fcoe_percpu_thread_destroy(cpu);
1145 break;
1146 default:
1147 break;
1148 }
1149 return NOTIFY_OK;
1150}
1151
Robert Love8976f422009-03-17 11:41:46 -07001152/**
Robert Love1875f272009-11-03 11:47:50 -08001153 * fcoe_rcv() - Receive packets from a net device
1154 * @skb: The received packet
1155 * @netdev: The net device that the packet was received on
1156 * @ptype: The packet type context
1157 * @olddev: The last device net device
Robert Love85b4aa42008-12-09 15:10:24 -08001158 *
Robert Love1875f272009-11-03 11:47:50 -08001159 * This routine is called by NET_RX_SOFTIRQ. It receives a packet, builds a
1160 * FC frame and passes the frame to libfc.
Robert Love85b4aa42008-12-09 15:10:24 -08001161 *
1162 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001163 */
Robert Love1875f272009-11-03 11:47:50 -08001164int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev,
Robert Love85b4aa42008-12-09 15:10:24 -08001165 struct packet_type *ptype, struct net_device *olddev)
1166{
Robert Love1875f272009-11-03 11:47:50 -08001167 struct fc_lport *lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001168 struct fcoe_rcv_info *fr;
Chris Leech259ad852009-08-25 13:59:41 -07001169 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001170 struct fc_frame_header *fh;
Robert Love85b4aa42008-12-09 15:10:24 -08001171 struct fcoe_percpu_s *fps;
Vasu Devb2f00912009-08-25 13:58:53 -07001172 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08001173
Chris Leech259ad852009-08-25 13:59:41 -07001174 fcoe = container_of(ptype, struct fcoe_interface, fcoe_packet_type);
Robert Love1875f272009-11-03 11:47:50 -08001175 lport = fcoe->ctlr.lp;
1176 if (unlikely(!lport)) {
1177 FCOE_NETDEV_DBG(netdev, "Cannot find hba structure");
Robert Love85b4aa42008-12-09 15:10:24 -08001178 goto err2;
1179 }
Robert Love1875f272009-11-03 11:47:50 -08001180 if (!lport->link_up)
Joe Eykholt97c83892009-03-17 11:42:40 -07001181 goto err2;
Robert Love85b4aa42008-12-09 15:10:24 -08001182
Robert Love1875f272009-11-03 11:47:50 -08001183 FCOE_NETDEV_DBG(netdev, "skb_info: len:%d data_len:%d head:%p "
Robert Loved5488eb2009-06-10 15:30:59 -07001184 "data:%p tail:%p end:%p sum:%d dev:%s",
1185 skb->len, skb->data_len, skb->head, skb->data,
1186 skb_tail_pointer(skb), skb_end_pointer(skb),
1187 skb->csum, skb->dev ? skb->dev->name : "<NULL>");
Robert Love85b4aa42008-12-09 15:10:24 -08001188
1189 /* check for FCOE packet type */
1190 if (unlikely(eth_hdr(skb)->h_proto != htons(ETH_P_FCOE))) {
Robert Love1875f272009-11-03 11:47:50 -08001191 FCOE_NETDEV_DBG(netdev, "Wrong FC type frame");
Robert Love85b4aa42008-12-09 15:10:24 -08001192 goto err;
1193 }
1194
1195 /*
1196 * Check for minimum frame length, and make sure required FCoE
1197 * and FC headers are pulled into the linear data area.
1198 */
1199 if (unlikely((skb->len < FCOE_MIN_FRAME) ||
Robert Love1875f272009-11-03 11:47:50 -08001200 !pskb_may_pull(skb, FCOE_HEADER_LEN)))
Robert Love85b4aa42008-12-09 15:10:24 -08001201 goto err;
1202
1203 skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
1204 fh = (struct fc_frame_header *) skb_transport_header(skb);
1205
Robert Love85b4aa42008-12-09 15:10:24 -08001206 fr = fcoe_dev_from_skb(skb);
Robert Love1875f272009-11-03 11:47:50 -08001207 fr->fr_dev = lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001208 fr->ptype = ptype;
Robert Love5e5e92d2009-03-17 11:41:35 -07001209
Robert Love85b4aa42008-12-09 15:10:24 -08001210 /*
Vasu Devb2f00912009-08-25 13:58:53 -07001211 * In case the incoming frame's exchange is originated from
1212 * the initiator, then received frame's exchange id is ANDed
1213 * with fc_cpu_mask bits to get the same cpu on which exchange
1214 * was originated, otherwise just use the current cpu.
Robert Love85b4aa42008-12-09 15:10:24 -08001215 */
Vasu Devb2f00912009-08-25 13:58:53 -07001216 if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
1217 cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
1218 else
1219 cpu = smp_processor_id();
Robert Love5e5e92d2009-03-17 11:41:35 -07001220
Robert Love8976f422009-03-17 11:41:46 -07001221 fps = &per_cpu(fcoe_percpu, cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001222 spin_lock_bh(&fps->fcoe_rx_list.lock);
Robert Love8976f422009-03-17 11:41:46 -07001223 if (unlikely(!fps->thread)) {
1224 /*
1225 * The targeted CPU is not ready, let's target
1226 * the first CPU now. For non-SMP systems this
1227 * will check the same CPU twice.
1228 */
Robert Love1875f272009-11-03 11:47:50 -08001229 FCOE_NETDEV_DBG(netdev, "CPU is online, but no receive thread "
Robert Loved5488eb2009-06-10 15:30:59 -07001230 "ready for incoming skb- using first online "
1231 "CPU.\n");
Robert Love8976f422009-03-17 11:41:46 -07001232
1233 spin_unlock_bh(&fps->fcoe_rx_list.lock);
Rusty Russell69571772009-12-17 11:43:14 -06001234 cpu = cpumask_first(cpu_online_mask);
Robert Love8976f422009-03-17 11:41:46 -07001235 fps = &per_cpu(fcoe_percpu, cpu);
1236 spin_lock_bh(&fps->fcoe_rx_list.lock);
1237 if (!fps->thread) {
1238 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1239 goto err;
1240 }
1241 }
1242
1243 /*
1244 * We now have a valid CPU that we're targeting for
1245 * this skb. We also have this receive thread locked,
1246 * so we're free to queue skbs into it's queue.
1247 */
Robert Love85b4aa42008-12-09 15:10:24 -08001248
Chris Leech859b7b62009-11-20 14:54:47 -08001249 /* If this is a SCSI-FCP frame, and this is already executing on the
1250 * correct CPU, and the queue for this CPU is empty, then go ahead
1251 * and process the frame directly in the softirq context.
1252 * This lets us process completions without context switching from the
1253 * NET_RX softirq, to our receive processing thread, and then back to
1254 * BLOCK softirq context.
1255 */
1256 if (fh->fh_type == FC_TYPE_FCP &&
1257 cpu == smp_processor_id() &&
1258 skb_queue_empty(&fps->fcoe_rx_list)) {
1259 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1260 fcoe_recv_frame(skb);
1261 } else {
1262 __skb_queue_tail(&fps->fcoe_rx_list, skb);
1263 if (fps->fcoe_rx_list.qlen == 1)
1264 wake_up_process(fps->thread);
1265 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1266 }
Robert Love85b4aa42008-12-09 15:10:24 -08001267
1268 return 0;
1269err:
Robert Love1875f272009-11-03 11:47:50 -08001270 fc_lport_get_stats(lport)->ErrorFrames++;
Robert Love85b4aa42008-12-09 15:10:24 -08001271
1272err2:
1273 kfree_skb(skb);
1274 return -1;
1275}
Robert Love85b4aa42008-12-09 15:10:24 -08001276
1277/**
Robert Love1875f272009-11-03 11:47:50 -08001278 * fcoe_start_io() - Start FCoE I/O
1279 * @skb: The packet to be transmitted
1280 *
1281 * This routine is called from the net device to start transmitting
1282 * FCoE packets.
Robert Love85b4aa42008-12-09 15:10:24 -08001283 *
1284 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001285 */
Robert Love85b4aa42008-12-09 15:10:24 -08001286static inline int fcoe_start_io(struct sk_buff *skb)
1287{
Chris Leech18fa11e2009-11-03 11:50:05 -08001288 struct sk_buff *nskb;
Robert Love85b4aa42008-12-09 15:10:24 -08001289 int rc;
1290
Chris Leech18fa11e2009-11-03 11:50:05 -08001291 nskb = skb_clone(skb, GFP_ATOMIC);
1292 rc = dev_queue_xmit(nskb);
Robert Love85b4aa42008-12-09 15:10:24 -08001293 if (rc != 0)
1294 return rc;
1295 kfree_skb(skb);
1296 return 0;
1297}
1298
1299/**
Robert Love1875f272009-11-03 11:47:50 -08001300 * fcoe_get_paged_crc_eof() - Allocate a page to be used for the trailer CRC
1301 * @skb: The packet to be transmitted
1302 * @tlen: The total length of the trailer
1303 *
1304 * This routine allocates a page for frame trailers. The page is re-used if
1305 * there is enough room left on it for the current trailer. If there isn't
1306 * enough buffer left a new page is allocated for the trailer. Reference to
1307 * the page from this function as well as the skbs using the page fragments
1308 * ensure that the page is freed at the appropriate time.
Robert Love85b4aa42008-12-09 15:10:24 -08001309 *
1310 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001311 */
Robert Love85b4aa42008-12-09 15:10:24 -08001312static int fcoe_get_paged_crc_eof(struct sk_buff *skb, int tlen)
1313{
1314 struct fcoe_percpu_s *fps;
1315 struct page *page;
Robert Love85b4aa42008-12-09 15:10:24 -08001316
Robert Love5e5e92d2009-03-17 11:41:35 -07001317 fps = &get_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001318 page = fps->crc_eof_page;
1319 if (!page) {
1320 page = alloc_page(GFP_ATOMIC);
1321 if (!page) {
Robert Love5e5e92d2009-03-17 11:41:35 -07001322 put_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001323 return -ENOMEM;
1324 }
1325 fps->crc_eof_page = page;
Robert Love8976f422009-03-17 11:41:46 -07001326 fps->crc_eof_offset = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001327 }
1328
1329 get_page(page);
1330 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, page,
1331 fps->crc_eof_offset, tlen);
1332 skb->len += tlen;
1333 skb->data_len += tlen;
1334 skb->truesize += tlen;
1335 fps->crc_eof_offset += sizeof(struct fcoe_crc_eof);
1336
1337 if (fps->crc_eof_offset >= PAGE_SIZE) {
1338 fps->crc_eof_page = NULL;
1339 fps->crc_eof_offset = 0;
1340 put_page(page);
1341 }
Robert Love5e5e92d2009-03-17 11:41:35 -07001342 put_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001343 return 0;
1344}
1345
1346/**
Robert Love1875f272009-11-03 11:47:50 -08001347 * fcoe_fc_crc() - Calculates the CRC for a given frame
1348 * @fp: The frame to be checksumed
Robert Love85b4aa42008-12-09 15:10:24 -08001349 *
Robert Love1875f272009-11-03 11:47:50 -08001350 * This uses crc32() routine to calculate the CRC for a frame
1351 *
1352 * Return: The 32 bit CRC value
Robert Love34f42a02009-02-27 10:55:45 -08001353 */
Robert Love85b4aa42008-12-09 15:10:24 -08001354u32 fcoe_fc_crc(struct fc_frame *fp)
1355{
1356 struct sk_buff *skb = fp_skb(fp);
1357 struct skb_frag_struct *frag;
1358 unsigned char *data;
1359 unsigned long off, len, clen;
1360 u32 crc;
1361 unsigned i;
1362
1363 crc = crc32(~0, skb->data, skb_headlen(skb));
1364
1365 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1366 frag = &skb_shinfo(skb)->frags[i];
1367 off = frag->page_offset;
1368 len = frag->size;
1369 while (len > 0) {
1370 clen = min(len, PAGE_SIZE - (off & ~PAGE_MASK));
1371 data = kmap_atomic(frag->page + (off >> PAGE_SHIFT),
1372 KM_SKB_DATA_SOFTIRQ);
1373 crc = crc32(crc, data + (off & ~PAGE_MASK), clen);
1374 kunmap_atomic(data, KM_SKB_DATA_SOFTIRQ);
1375 off += clen;
1376 len -= clen;
1377 }
1378 }
1379 return crc;
1380}
Robert Love85b4aa42008-12-09 15:10:24 -08001381
1382/**
Robert Love1875f272009-11-03 11:47:50 -08001383 * fcoe_xmit() - Transmit a FCoE frame
1384 * @lport: The local port that the frame is to be transmitted for
1385 * @fp: The frame to be transmitted
Robert Love85b4aa42008-12-09 15:10:24 -08001386 *
Robert Love1875f272009-11-03 11:47:50 -08001387 * Return: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001388 */
Robert Love1875f272009-11-03 11:47:50 -08001389int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp)
Robert Love85b4aa42008-12-09 15:10:24 -08001390{
Vasu Dev4bb6b512009-05-06 10:52:34 -07001391 int wlen;
Robert Love85b4aa42008-12-09 15:10:24 -08001392 u32 crc;
1393 struct ethhdr *eh;
1394 struct fcoe_crc_eof *cp;
1395 struct sk_buff *skb;
1396 struct fcoe_dev_stats *stats;
1397 struct fc_frame_header *fh;
1398 unsigned int hlen; /* header length implies the version */
1399 unsigned int tlen; /* trailer length */
1400 unsigned int elen; /* eth header, may include vlan */
Robert Love1875f272009-11-03 11:47:50 -08001401 struct fcoe_port *port = lport_priv(lport);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001402 struct fcoe_interface *fcoe = port->fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001403 u8 sof, eof;
1404 struct fcoe_hdr *hp;
1405
1406 WARN_ON((fr_len(fp) % sizeof(u32)) != 0);
1407
Robert Love85b4aa42008-12-09 15:10:24 -08001408 fh = fc_frame_header_get(fp);
Joe Eykholt97c83892009-03-17 11:42:40 -07001409 skb = fp_skb(fp);
1410 wlen = skb->len / FCOE_WORD_TO_BYTE;
1411
Robert Love1875f272009-11-03 11:47:50 -08001412 if (!lport->link_up) {
Dan Carpenter3caf02e2009-04-21 16:27:25 -07001413 kfree_skb(skb);
Joe Eykholt97c83892009-03-17 11:42:40 -07001414 return 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001415 }
1416
Joe Eykholt97c83892009-03-17 11:42:40 -07001417 if (unlikely(fh->fh_r_ctl == FC_RCTL_ELS_REQ) &&
Robert Love1875f272009-11-03 11:47:50 -08001418 fcoe_ctlr_els_send(&fcoe->ctlr, lport, skb))
Joe Eykholt97c83892009-03-17 11:42:40 -07001419 return 0;
1420
Robert Love85b4aa42008-12-09 15:10:24 -08001421 sof = fr_sof(fp);
1422 eof = fr_eof(fp);
1423
Vasu Dev4e57e1c2009-05-06 10:52:46 -07001424 elen = sizeof(struct ethhdr);
Robert Love85b4aa42008-12-09 15:10:24 -08001425 hlen = sizeof(struct fcoe_hdr);
1426 tlen = sizeof(struct fcoe_crc_eof);
1427 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
1428
1429 /* crc offload */
Robert Love1875f272009-11-03 11:47:50 -08001430 if (likely(lport->crc_offload)) {
Yi Zou39ca9a02009-02-27 14:07:15 -08001431 skb->ip_summed = CHECKSUM_PARTIAL;
Robert Love85b4aa42008-12-09 15:10:24 -08001432 skb->csum_start = skb_headroom(skb);
1433 skb->csum_offset = skb->len;
1434 crc = 0;
1435 } else {
1436 skb->ip_summed = CHECKSUM_NONE;
1437 crc = fcoe_fc_crc(fp);
1438 }
1439
Chris Leech014f5c32009-08-25 13:59:30 -07001440 /* copy port crc and eof to the skb buff */
Robert Love85b4aa42008-12-09 15:10:24 -08001441 if (skb_is_nonlinear(skb)) {
1442 skb_frag_t *frag;
1443 if (fcoe_get_paged_crc_eof(skb, tlen)) {
Roel Kluine9041582009-02-27 10:56:22 -08001444 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001445 return -ENOMEM;
1446 }
1447 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
1448 cp = kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ)
1449 + frag->page_offset;
1450 } else {
1451 cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
1452 }
1453
1454 memset(cp, 0, sizeof(*cp));
1455 cp->fcoe_eof = eof;
1456 cp->fcoe_crc32 = cpu_to_le32(~crc);
1457
1458 if (skb_is_nonlinear(skb)) {
1459 kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ);
1460 cp = NULL;
1461 }
1462
Chris Leech014f5c32009-08-25 13:59:30 -07001463 /* adjust skb network/transport offsets to match mac/fcoe/port */
Robert Love85b4aa42008-12-09 15:10:24 -08001464 skb_push(skb, elen + hlen);
1465 skb_reset_mac_header(skb);
1466 skb_reset_network_header(skb);
1467 skb->mac_len = elen;
Yi Zou211c7382009-02-27 14:06:37 -08001468 skb->protocol = htons(ETH_P_FCOE);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001469 skb->dev = fcoe->netdev;
Robert Love85b4aa42008-12-09 15:10:24 -08001470
1471 /* fill up mac and fcoe headers */
1472 eh = eth_hdr(skb);
1473 eh->h_proto = htons(ETH_P_FCOE);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001474 if (fcoe->ctlr.map_dest)
Robert Love85b4aa42008-12-09 15:10:24 -08001475 fc_fcoe_set_mac(eh->h_dest, fh->fh_d_id);
1476 else
1477 /* insert GW address */
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001478 memcpy(eh->h_dest, fcoe->ctlr.dest_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001479
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001480 if (unlikely(fcoe->ctlr.flogi_oxid != FC_XID_UNKNOWN))
1481 memcpy(eh->h_source, fcoe->ctlr.ctl_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001482 else
Chris Leech11b56182009-11-03 11:46:29 -08001483 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001484
1485 hp = (struct fcoe_hdr *)(eh + 1);
1486 memset(hp, 0, sizeof(*hp));
1487 if (FC_FCOE_VER)
1488 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
1489 hp->fcoe_sof = sof;
1490
Yi Zou39ca9a02009-02-27 14:07:15 -08001491 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
Robert Love1875f272009-11-03 11:47:50 -08001492 if (lport->seq_offload && fr_max_payload(fp)) {
Yi Zou39ca9a02009-02-27 14:07:15 -08001493 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
1494 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
1495 } else {
1496 skb_shinfo(skb)->gso_type = 0;
1497 skb_shinfo(skb)->gso_size = 0;
1498 }
Robert Love85b4aa42008-12-09 15:10:24 -08001499 /* update tx stats: regardless if LLD fails */
Robert Love1875f272009-11-03 11:47:50 -08001500 stats = fc_lport_get_stats(lport);
Robert Love582b45b2009-03-31 15:51:50 -07001501 stats->TxFrames++;
1502 stats->TxWords += wlen;
Robert Love85b4aa42008-12-09 15:10:24 -08001503
1504 /* send down to lld */
Robert Love1875f272009-11-03 11:47:50 -08001505 fr_dev(fp) = lport;
Chris Leech014f5c32009-08-25 13:59:30 -07001506 if (port->fcoe_pending_queue.qlen)
Robert Love1875f272009-11-03 11:47:50 -08001507 fcoe_check_wait_queue(lport, skb);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001508 else if (fcoe_start_io(skb))
Robert Love1875f272009-11-03 11:47:50 -08001509 fcoe_check_wait_queue(lport, skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001510
1511 return 0;
1512}
Robert Love85b4aa42008-12-09 15:10:24 -08001513
Robert Love34f42a02009-02-27 10:55:45 -08001514/**
Robert Love1875f272009-11-03 11:47:50 -08001515 * fcoe_percpu_flush_done() - Indicate per-CPU queue flush completion
1516 * @skb: The completed skb (argument required by destructor)
Joe Eykholte7a51992009-08-25 14:04:08 -07001517 */
1518static void fcoe_percpu_flush_done(struct sk_buff *skb)
1519{
1520 complete(&fcoe_flush_completion);
1521}
1522
1523/**
Chris Leech859b7b62009-11-20 14:54:47 -08001524 * fcoe_recv_frame() - process a single received frame
1525 * @skb: frame to process
1526 */
1527static void fcoe_recv_frame(struct sk_buff *skb)
1528{
1529 u32 fr_len;
1530 struct fc_lport *lport;
1531 struct fcoe_rcv_info *fr;
1532 struct fcoe_dev_stats *stats;
1533 struct fc_frame_header *fh;
1534 struct fcoe_crc_eof crc_eof;
1535 struct fc_frame *fp;
1536 u8 *mac = NULL;
1537 struct fcoe_port *port;
1538 struct fcoe_hdr *hp;
1539
1540 fr = fcoe_dev_from_skb(skb);
1541 lport = fr->fr_dev;
1542 if (unlikely(!lport)) {
1543 if (skb->destructor != fcoe_percpu_flush_done)
1544 FCOE_NETDEV_DBG(skb->dev, "NULL lport in skb");
1545 kfree_skb(skb);
1546 return;
1547 }
1548
1549 FCOE_NETDEV_DBG(skb->dev, "skb_info: len:%d data_len:%d "
1550 "head:%p data:%p tail:%p end:%p sum:%d dev:%s",
1551 skb->len, skb->data_len,
1552 skb->head, skb->data, skb_tail_pointer(skb),
1553 skb_end_pointer(skb), skb->csum,
1554 skb->dev ? skb->dev->name : "<NULL>");
1555
1556 /*
1557 * Save source MAC address before discarding header.
1558 */
1559 port = lport_priv(lport);
1560 if (skb_is_nonlinear(skb))
1561 skb_linearize(skb); /* not ideal */
1562 mac = eth_hdr(skb)->h_source;
1563
1564 /*
1565 * Frame length checks and setting up the header pointers
1566 * was done in fcoe_rcv already.
1567 */
1568 hp = (struct fcoe_hdr *) skb_network_header(skb);
1569 fh = (struct fc_frame_header *) skb_transport_header(skb);
1570
1571 stats = fc_lport_get_stats(lport);
1572 if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) {
1573 if (stats->ErrorFrames < 5)
1574 printk(KERN_WARNING "fcoe: FCoE version "
1575 "mismatch: The frame has "
1576 "version %x, but the "
1577 "initiator supports version "
1578 "%x\n", FC_FCOE_DECAPS_VER(hp),
1579 FC_FCOE_VER);
1580 stats->ErrorFrames++;
1581 kfree_skb(skb);
1582 return;
1583 }
1584
1585 skb_pull(skb, sizeof(struct fcoe_hdr));
1586 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
1587
1588 stats->RxFrames++;
1589 stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
1590
1591 fp = (struct fc_frame *)skb;
1592 fc_frame_init(fp);
1593 fr_dev(fp) = lport;
1594 fr_sof(fp) = hp->fcoe_sof;
1595
1596 /* Copy out the CRC and EOF trailer for access */
1597 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof))) {
1598 kfree_skb(skb);
1599 return;
1600 }
1601 fr_eof(fp) = crc_eof.fcoe_eof;
1602 fr_crc(fp) = crc_eof.fcoe_crc32;
1603 if (pskb_trim(skb, fr_len)) {
1604 kfree_skb(skb);
1605 return;
1606 }
1607
1608 /*
1609 * We only check CRC if no offload is available and if it is
1610 * it's solicited data, in which case, the FCP layer would
1611 * check it during the copy.
1612 */
1613 if (lport->crc_offload &&
1614 skb->ip_summed == CHECKSUM_UNNECESSARY)
1615 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1616 else
1617 fr_flags(fp) |= FCPHF_CRC_UNCHECKED;
1618
1619 fh = fc_frame_header_get(fp);
1620 if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA &&
1621 fh->fh_type == FC_TYPE_FCP) {
1622 fc_exch_recv(lport, fp);
1623 return;
1624 }
1625 if (fr_flags(fp) & FCPHF_CRC_UNCHECKED) {
1626 if (le32_to_cpu(fr_crc(fp)) !=
1627 ~crc32(~0, skb->data, fr_len)) {
1628 if (stats->InvalidCRCCount < 5)
1629 printk(KERN_WARNING "fcoe: dropping "
1630 "frame with CRC error\n");
1631 stats->InvalidCRCCount++;
1632 stats->ErrorFrames++;
1633 fc_frame_free(fp);
1634 return;
1635 }
1636 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1637 }
1638 fc_exch_recv(lport, fp);
1639}
1640
1641/**
Robert Love1875f272009-11-03 11:47:50 -08001642 * fcoe_percpu_receive_thread() - The per-CPU packet receive thread
1643 * @arg: The per-CPU context
Robert Love85b4aa42008-12-09 15:10:24 -08001644 *
1645 * Return: 0 for success
Robert Love85b4aa42008-12-09 15:10:24 -08001646 */
1647int fcoe_percpu_receive_thread(void *arg)
1648{
1649 struct fcoe_percpu_s *p = arg;
Robert Love85b4aa42008-12-09 15:10:24 -08001650 struct sk_buff *skb;
Robert Love85b4aa42008-12-09 15:10:24 -08001651
Robert Love4469c192009-02-27 10:56:38 -08001652 set_user_nice(current, -20);
Robert Love85b4aa42008-12-09 15:10:24 -08001653
1654 while (!kthread_should_stop()) {
1655
1656 spin_lock_bh(&p->fcoe_rx_list.lock);
1657 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) == NULL) {
1658 set_current_state(TASK_INTERRUPTIBLE);
1659 spin_unlock_bh(&p->fcoe_rx_list.lock);
1660 schedule();
1661 set_current_state(TASK_RUNNING);
1662 if (kthread_should_stop())
1663 return 0;
1664 spin_lock_bh(&p->fcoe_rx_list.lock);
1665 }
1666 spin_unlock_bh(&p->fcoe_rx_list.lock);
Chris Leech859b7b62009-11-20 14:54:47 -08001667 fcoe_recv_frame(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001668 }
1669 return 0;
1670}
1671
1672/**
Robert Love1875f272009-11-03 11:47:50 -08001673 * fcoe_check_wait_queue() - Attempt to clear the transmit backlog
1674 * @lport: The local port whose backlog is to be cleared
Robert Love85b4aa42008-12-09 15:10:24 -08001675 *
Robert Love1875f272009-11-03 11:47:50 -08001676 * This empties the wait_queue, dequeues the head of the wait_queue queue
1677 * and calls fcoe_start_io() for each packet. If all skb have been
1678 * transmitted it returns the qlen. If an error occurs it restores
1679 * wait_queue (to try again later) and returns -1.
Robert Love85b4aa42008-12-09 15:10:24 -08001680 *
Robert Love1875f272009-11-03 11:47:50 -08001681 * The wait_queue is used when the skb transmit fails. The failed skb
1682 * will go in the wait_queue which will be emptied by the timer function or
Robert Love85b4aa42008-12-09 15:10:24 -08001683 * by the next skb transmit.
Robert Love34f42a02009-02-27 10:55:45 -08001684 */
Robert Love1875f272009-11-03 11:47:50 -08001685static void fcoe_check_wait_queue(struct fc_lport *lport, struct sk_buff *skb)
Robert Love85b4aa42008-12-09 15:10:24 -08001686{
Robert Love1875f272009-11-03 11:47:50 -08001687 struct fcoe_port *port = lport_priv(lport);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001688 int rc;
Robert Love85b4aa42008-12-09 15:10:24 -08001689
Chris Leech014f5c32009-08-25 13:59:30 -07001690 spin_lock_bh(&port->fcoe_pending_queue.lock);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001691
1692 if (skb)
Chris Leech014f5c32009-08-25 13:59:30 -07001693 __skb_queue_tail(&port->fcoe_pending_queue, skb);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001694
Chris Leech014f5c32009-08-25 13:59:30 -07001695 if (port->fcoe_pending_queue_active)
Vasu Devc826a312009-02-27 10:56:27 -08001696 goto out;
Chris Leech014f5c32009-08-25 13:59:30 -07001697 port->fcoe_pending_queue_active = 1;
Chris Leech55c8baf2009-02-27 10:56:32 -08001698
Chris Leech014f5c32009-08-25 13:59:30 -07001699 while (port->fcoe_pending_queue.qlen) {
Chris Leech55c8baf2009-02-27 10:56:32 -08001700 /* keep qlen > 0 until fcoe_start_io succeeds */
Chris Leech014f5c32009-08-25 13:59:30 -07001701 port->fcoe_pending_queue.qlen++;
1702 skb = __skb_dequeue(&port->fcoe_pending_queue);
Chris Leech55c8baf2009-02-27 10:56:32 -08001703
Chris Leech014f5c32009-08-25 13:59:30 -07001704 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Chris Leech55c8baf2009-02-27 10:56:32 -08001705 rc = fcoe_start_io(skb);
Chris Leech014f5c32009-08-25 13:59:30 -07001706 spin_lock_bh(&port->fcoe_pending_queue.lock);
Chris Leech55c8baf2009-02-27 10:56:32 -08001707
1708 if (rc) {
Chris Leech014f5c32009-08-25 13:59:30 -07001709 __skb_queue_head(&port->fcoe_pending_queue, skb);
Chris Leech55c8baf2009-02-27 10:56:32 -08001710 /* undo temporary increment above */
Chris Leech014f5c32009-08-25 13:59:30 -07001711 port->fcoe_pending_queue.qlen--;
Chris Leech55c8baf2009-02-27 10:56:32 -08001712 break;
Robert Love85b4aa42008-12-09 15:10:24 -08001713 }
Chris Leech55c8baf2009-02-27 10:56:32 -08001714 /* undo temporary increment above */
Chris Leech014f5c32009-08-25 13:59:30 -07001715 port->fcoe_pending_queue.qlen--;
Robert Love85b4aa42008-12-09 15:10:24 -08001716 }
Chris Leech55c8baf2009-02-27 10:56:32 -08001717
Chris Leech014f5c32009-08-25 13:59:30 -07001718 if (port->fcoe_pending_queue.qlen < FCOE_LOW_QUEUE_DEPTH)
Robert Love1875f272009-11-03 11:47:50 -08001719 lport->qfull = 0;
Chris Leech014f5c32009-08-25 13:59:30 -07001720 if (port->fcoe_pending_queue.qlen && !timer_pending(&port->timer))
1721 mod_timer(&port->timer, jiffies + 2);
1722 port->fcoe_pending_queue_active = 0;
Vasu Devc826a312009-02-27 10:56:27 -08001723out:
Chris Leech014f5c32009-08-25 13:59:30 -07001724 if (port->fcoe_pending_queue.qlen > FCOE_MAX_QUEUE_DEPTH)
Robert Love1875f272009-11-03 11:47:50 -08001725 lport->qfull = 1;
Chris Leech014f5c32009-08-25 13:59:30 -07001726 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001727 return;
Robert Love85b4aa42008-12-09 15:10:24 -08001728}
1729
1730/**
Robert Love1875f272009-11-03 11:47:50 -08001731 * fcoe_dev_setup() - Setup the link change notification interface
Robert Love34f42a02009-02-27 10:55:45 -08001732 */
Randy Dunlapb0d428a2009-04-27 21:49:31 -07001733static void fcoe_dev_setup(void)
Robert Love85b4aa42008-12-09 15:10:24 -08001734{
Robert Love85b4aa42008-12-09 15:10:24 -08001735 register_netdevice_notifier(&fcoe_notifier);
1736}
1737
1738/**
Robert Love1875f272009-11-03 11:47:50 -08001739 * fcoe_dev_cleanup() - Cleanup the link change notification interface
Robert Love34f42a02009-02-27 10:55:45 -08001740 */
Robert Love85b4aa42008-12-09 15:10:24 -08001741static void fcoe_dev_cleanup(void)
1742{
1743 unregister_netdevice_notifier(&fcoe_notifier);
1744}
1745
1746/**
Robert Love1875f272009-11-03 11:47:50 -08001747 * fcoe_device_notification() - Handler for net device events
1748 * @notifier: The context of the notification
1749 * @event: The type of event
1750 * @ptr: The net device that the event was on
Robert Love85b4aa42008-12-09 15:10:24 -08001751 *
Robert Love1875f272009-11-03 11:47:50 -08001752 * This function is called by the Ethernet driver in case of link change event.
Robert Love85b4aa42008-12-09 15:10:24 -08001753 *
1754 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001755 */
Robert Love85b4aa42008-12-09 15:10:24 -08001756static int fcoe_device_notification(struct notifier_block *notifier,
1757 ulong event, void *ptr)
1758{
Robert Love1875f272009-11-03 11:47:50 -08001759 struct fc_lport *lport = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001760 struct net_device *netdev = ptr;
Chris Leech014f5c32009-08-25 13:59:30 -07001761 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -07001762 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08001763 struct fcoe_dev_stats *stats;
Joe Eykholt97c83892009-03-17 11:42:40 -07001764 u32 link_possible = 1;
Robert Love85b4aa42008-12-09 15:10:24 -08001765 u32 mfs;
1766 int rc = NOTIFY_OK;
1767
Chris Leech014f5c32009-08-25 13:59:30 -07001768 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
Chris Leech25024982009-08-25 13:59:35 -07001769 if (fcoe->netdev == netdev) {
Robert Love1875f272009-11-03 11:47:50 -08001770 lport = fcoe->ctlr.lp;
Robert Love85b4aa42008-12-09 15:10:24 -08001771 break;
1772 }
1773 }
Robert Love1875f272009-11-03 11:47:50 -08001774 if (!lport) {
Robert Love85b4aa42008-12-09 15:10:24 -08001775 rc = NOTIFY_DONE;
1776 goto out;
1777 }
1778
Robert Love85b4aa42008-12-09 15:10:24 -08001779 switch (event) {
1780 case NETDEV_DOWN:
1781 case NETDEV_GOING_DOWN:
Joe Eykholt97c83892009-03-17 11:42:40 -07001782 link_possible = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001783 break;
1784 case NETDEV_UP:
1785 case NETDEV_CHANGE:
Robert Love85b4aa42008-12-09 15:10:24 -08001786 break;
1787 case NETDEV_CHANGEMTU:
Yi Zou7221d7e2009-10-21 16:27:52 -07001788 if (netdev->features & NETIF_F_FCOE_MTU)
1789 break;
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001790 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
1791 sizeof(struct fcoe_crc_eof));
Robert Love85b4aa42008-12-09 15:10:24 -08001792 if (mfs >= FC_MIN_MAX_FRAME)
Robert Love1875f272009-11-03 11:47:50 -08001793 fc_set_mfs(lport, mfs);
Robert Love85b4aa42008-12-09 15:10:24 -08001794 break;
1795 case NETDEV_REGISTER:
1796 break;
Chris Leech2e70e242009-08-25 14:00:23 -07001797 case NETDEV_UNREGISTER:
1798 list_del(&fcoe->list);
1799 port = lport_priv(fcoe->ctlr.lp);
1800 fcoe_interface_cleanup(fcoe);
1801 schedule_work(&port->destroy_work);
1802 goto out;
1803 break;
Robert Love85b4aa42008-12-09 15:10:24 -08001804 default:
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001805 FCOE_NETDEV_DBG(netdev, "Unknown event %ld "
Robert Loved5488eb2009-06-10 15:30:59 -07001806 "from netdev netlink\n", event);
Robert Love85b4aa42008-12-09 15:10:24 -08001807 }
Robert Love1875f272009-11-03 11:47:50 -08001808 if (link_possible && !fcoe_link_ok(lport))
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001809 fcoe_ctlr_link_up(&fcoe->ctlr);
1810 else if (fcoe_ctlr_link_down(&fcoe->ctlr)) {
Robert Love1875f272009-11-03 11:47:50 -08001811 stats = fc_lport_get_stats(lport);
Joe Eykholt97c83892009-03-17 11:42:40 -07001812 stats->LinkFailureCount++;
Robert Love1875f272009-11-03 11:47:50 -08001813 fcoe_clean_pending_queue(lport);
Robert Love85b4aa42008-12-09 15:10:24 -08001814 }
1815out:
1816 return rc;
1817}
1818
1819/**
Robert Love1875f272009-11-03 11:47:50 -08001820 * fcoe_if_to_netdev() - Parse a name buffer to get a net device
1821 * @buffer: The name of the net device
Robert Love85b4aa42008-12-09 15:10:24 -08001822 *
Robert Love1875f272009-11-03 11:47:50 -08001823 * Returns: NULL or a ptr to net_device
Robert Love34f42a02009-02-27 10:55:45 -08001824 */
Robert Love85b4aa42008-12-09 15:10:24 -08001825static struct net_device *fcoe_if_to_netdev(const char *buffer)
1826{
1827 char *cp;
1828 char ifname[IFNAMSIZ + 2];
1829
1830 if (buffer) {
1831 strlcpy(ifname, buffer, IFNAMSIZ);
1832 cp = ifname + strlen(ifname);
1833 while (--cp >= ifname && *cp == '\n')
1834 *cp = '\0';
1835 return dev_get_by_name(&init_net, ifname);
1836 }
1837 return NULL;
1838}
1839
1840/**
Robert Love1875f272009-11-03 11:47:50 -08001841 * fcoe_destroy() - Destroy a FCoE interface
1842 * @buffer: The name of the Ethernet interface to be destroyed
1843 * @kp: The associated kernel parameter
1844 *
1845 * Called from sysfs.
Robert Love85b4aa42008-12-09 15:10:24 -08001846 *
1847 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001848 */
Robert Love85b4aa42008-12-09 15:10:24 -08001849static int fcoe_destroy(const char *buffer, struct kernel_param *kp)
1850{
Chris Leech030f4e02009-08-25 14:00:02 -07001851 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -07001852 struct net_device *netdev;
Mike Christie8eca355f2009-10-21 16:27:44 -07001853 int rc = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001854
Chris Leechdfc1d0f2009-08-25 14:00:13 -07001855 mutex_lock(&fcoe_config_mutex);
1856#ifdef CONFIG_FCOE_MODULE
1857 /*
1858 * Make sure the module has been initialized, and is not about to be
1859 * removed. Module paramter sysfs files are writable before the
1860 * module_init function is called and after module_exit.
1861 */
1862 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1863 rc = -ENODEV;
1864 goto out_nodev;
1865 }
1866#endif
1867
Robert Love85b4aa42008-12-09 15:10:24 -08001868 netdev = fcoe_if_to_netdev(buffer);
1869 if (!netdev) {
1870 rc = -ENODEV;
1871 goto out_nodev;
1872 }
Chris Leech2e70e242009-08-25 14:00:23 -07001873
Chris Leech090eb6c2009-08-25 14:00:28 -07001874 rtnl_lock();
Chris Leech2e70e242009-08-25 14:00:23 -07001875 fcoe = fcoe_hostlist_lookup_port(netdev);
1876 if (!fcoe) {
Chris Leech090eb6c2009-08-25 14:00:28 -07001877 rtnl_unlock();
Robert Love85b4aa42008-12-09 15:10:24 -08001878 rc = -ENODEV;
1879 goto out_putdev;
1880 }
Chris Leech2e70e242009-08-25 14:00:23 -07001881 list_del(&fcoe->list);
Chris Leech2e70e242009-08-25 14:00:23 -07001882 fcoe_interface_cleanup(fcoe);
1883 rtnl_unlock();
1884 fcoe_if_destroy(fcoe->ctlr.lp);
Robert Love85b4aa42008-12-09 15:10:24 -08001885out_putdev:
1886 dev_put(netdev);
1887out_nodev:
Chris Leechdfc1d0f2009-08-25 14:00:13 -07001888 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08001889 return rc;
1890}
1891
Robert Love1875f272009-11-03 11:47:50 -08001892/**
1893 * fcoe_destroy_work() - Destroy a FCoE port in a deferred work context
1894 * @work: Handle to the FCoE port to be destroyed
1895 */
Chris Leech2e70e242009-08-25 14:00:23 -07001896static void fcoe_destroy_work(struct work_struct *work)
1897{
1898 struct fcoe_port *port;
1899
1900 port = container_of(work, struct fcoe_port, destroy_work);
1901 mutex_lock(&fcoe_config_mutex);
1902 fcoe_if_destroy(port->lport);
1903 mutex_unlock(&fcoe_config_mutex);
1904}
1905
Robert Love85b4aa42008-12-09 15:10:24 -08001906/**
Robert Love1875f272009-11-03 11:47:50 -08001907 * fcoe_create() - Create a fcoe interface
1908 * @buffer: The name of the Ethernet interface to create on
1909 * @kp: The associated kernel param
1910 *
1911 * Called from sysfs.
Robert Love85b4aa42008-12-09 15:10:24 -08001912 *
1913 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001914 */
Robert Love85b4aa42008-12-09 15:10:24 -08001915static int fcoe_create(const char *buffer, struct kernel_param *kp)
1916{
1917 int rc;
Chris Leech030f4e02009-08-25 14:00:02 -07001918 struct fcoe_interface *fcoe;
Chris Leechaf7f85d2009-08-25 13:59:24 -07001919 struct fc_lport *lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001920 struct net_device *netdev;
1921
Chris Leechdfc1d0f2009-08-25 14:00:13 -07001922 mutex_lock(&fcoe_config_mutex);
1923#ifdef CONFIG_FCOE_MODULE
1924 /*
1925 * Make sure the module has been initialized, and is not about to be
1926 * removed. Module paramter sysfs files are writable before the
1927 * module_init function is called and after module_exit.
1928 */
1929 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1930 rc = -ENODEV;
1931 goto out_nodev;
1932 }
1933#endif
1934
Chris Leech2e70e242009-08-25 14:00:23 -07001935 rtnl_lock();
Robert Love85b4aa42008-12-09 15:10:24 -08001936 netdev = fcoe_if_to_netdev(buffer);
1937 if (!netdev) {
1938 rc = -ENODEV;
1939 goto out_nodev;
1940 }
Chris Leech2e70e242009-08-25 14:00:23 -07001941
Robert Love85b4aa42008-12-09 15:10:24 -08001942 /* look for existing lport */
1943 if (fcoe_hostlist_lookup(netdev)) {
1944 rc = -EEXIST;
1945 goto out_putdev;
1946 }
Robert Love85b4aa42008-12-09 15:10:24 -08001947
Chris Leech030f4e02009-08-25 14:00:02 -07001948 fcoe = fcoe_interface_create(netdev);
1949 if (!fcoe) {
1950 rc = -ENOMEM;
1951 goto out_putdev;
1952 }
1953
Chris Leech9a057532009-11-03 11:46:40 -08001954 lport = fcoe_if_create(fcoe, &netdev->dev, 0);
Chris Leechaf7f85d2009-08-25 13:59:24 -07001955 if (IS_ERR(lport)) {
Robert Loved5488eb2009-06-10 15:30:59 -07001956 printk(KERN_ERR "fcoe: Failed to create interface (%s)\n",
Robert Love85b4aa42008-12-09 15:10:24 -08001957 netdev->name);
Robert Love85b4aa42008-12-09 15:10:24 -08001958 rc = -EIO;
Chris Leech2e70e242009-08-25 14:00:23 -07001959 fcoe_interface_cleanup(fcoe);
Chris Leech030f4e02009-08-25 14:00:02 -07001960 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08001961 }
Chris Leech030f4e02009-08-25 14:00:02 -07001962
Chris Leech54b649f2009-08-25 14:00:07 -07001963 /* Make this the "master" N_Port */
1964 fcoe->ctlr.lp = lport;
Chris Leech030f4e02009-08-25 14:00:02 -07001965
Chris Leechc863df32009-08-25 14:00:18 -07001966 /* add to lports list */
1967 fcoe_hostlist_add(lport);
1968
Chris Leech54b649f2009-08-25 14:00:07 -07001969 /* start FIP Discovery and FLOGI */
1970 lport->boot_time = jiffies;
1971 fc_fabric_login(lport);
1972 if (!fcoe_link_ok(lport))
1973 fcoe_ctlr_link_up(&fcoe->ctlr);
1974
1975 rc = 0;
Chris Leech030f4e02009-08-25 14:00:02 -07001976out_free:
Chris Leech54b649f2009-08-25 14:00:07 -07001977 /*
1978 * Release from init in fcoe_interface_create(), on success lport
1979 * should be holding a reference taken in fcoe_if_create().
1980 */
Chris Leech030f4e02009-08-25 14:00:02 -07001981 fcoe_interface_put(fcoe);
Robert Love85b4aa42008-12-09 15:10:24 -08001982out_putdev:
1983 dev_put(netdev);
1984out_nodev:
Chris Leech2e70e242009-08-25 14:00:23 -07001985 rtnl_unlock();
Chris Leechdfc1d0f2009-08-25 14:00:13 -07001986 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08001987 return rc;
1988}
1989
Robert Love34f42a02009-02-27 10:55:45 -08001990/**
Robert Love1875f272009-11-03 11:47:50 -08001991 * fcoe_link_ok() - Check if the link is OK for a local port
1992 * @lport: The local port to check link on
Robert Love85b4aa42008-12-09 15:10:24 -08001993 *
1994 * Any permanently-disqualifying conditions have been previously checked.
1995 * This also updates the speed setting, which may change with link for 100/1000.
1996 *
1997 * This function should probably be checking for PAUSE support at some point
1998 * in the future. Currently Per-priority-pause is not determinable using
1999 * ethtool, so we shouldn't be restrictive until that problem is resolved.
2000 *
2001 * Returns: 0 if link is OK for use by FCoE.
2002 *
2003 */
Robert Love1875f272009-11-03 11:47:50 -08002004int fcoe_link_ok(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002005{
Robert Love1875f272009-11-03 11:47:50 -08002006 struct fcoe_port *port = lport_priv(lport);
2007 struct net_device *netdev = port->fcoe->netdev;
Robert Love85b4aa42008-12-09 15:10:24 -08002008 struct ethtool_cmd ecmd = { ETHTOOL_GSET };
Robert Love85b4aa42008-12-09 15:10:24 -08002009
Robert Love1875f272009-11-03 11:47:50 -08002010 if ((netdev->flags & IFF_UP) && netif_carrier_ok(netdev) &&
2011 (!dev_ethtool_get_settings(netdev, &ecmd))) {
2012 lport->link_supported_speeds &=
Yi Zou2f718d62009-07-29 17:04:01 -07002013 ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
2014 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
2015 SUPPORTED_1000baseT_Full))
Robert Love1875f272009-11-03 11:47:50 -08002016 lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
Yi Zou2f718d62009-07-29 17:04:01 -07002017 if (ecmd.supported & SUPPORTED_10000baseT_Full)
Robert Love1875f272009-11-03 11:47:50 -08002018 lport->link_supported_speeds |=
Yi Zou2f718d62009-07-29 17:04:01 -07002019 FC_PORTSPEED_10GBIT;
2020 if (ecmd.speed == SPEED_1000)
Robert Love1875f272009-11-03 11:47:50 -08002021 lport->link_speed = FC_PORTSPEED_1GBIT;
Yi Zou2f718d62009-07-29 17:04:01 -07002022 if (ecmd.speed == SPEED_10000)
Robert Love1875f272009-11-03 11:47:50 -08002023 lport->link_speed = FC_PORTSPEED_10GBIT;
Robert Love85b4aa42008-12-09 15:10:24 -08002024
Yi Zou2f718d62009-07-29 17:04:01 -07002025 return 0;
2026 }
2027 return -1;
Robert Love85b4aa42008-12-09 15:10:24 -08002028}
Robert Love85b4aa42008-12-09 15:10:24 -08002029
Robert Love34f42a02009-02-27 10:55:45 -08002030/**
Robert Love1875f272009-11-03 11:47:50 -08002031 * fcoe_percpu_clean() - Clear all pending skbs for an local port
2032 * @lport: The local port whose skbs are to be cleared
Joe Eykholte7a51992009-08-25 14:04:08 -07002033 *
2034 * Must be called with fcoe_create_mutex held to single-thread completion.
2035 *
2036 * This flushes the pending skbs by adding a new skb to each queue and
2037 * waiting until they are all freed. This assures us that not only are
2038 * there no packets that will be handled by the lport, but also that any
2039 * threads already handling packet have returned.
Robert Love85b4aa42008-12-09 15:10:24 -08002040 */
Robert Love1875f272009-11-03 11:47:50 -08002041void fcoe_percpu_clean(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002042{
Robert Love85b4aa42008-12-09 15:10:24 -08002043 struct fcoe_percpu_s *pp;
2044 struct fcoe_rcv_info *fr;
2045 struct sk_buff_head *list;
2046 struct sk_buff *skb, *next;
2047 struct sk_buff *head;
Robert Love5e5e92d2009-03-17 11:41:35 -07002048 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08002049
Robert Love5e5e92d2009-03-17 11:41:35 -07002050 for_each_possible_cpu(cpu) {
2051 pp = &per_cpu(fcoe_percpu, cpu);
2052 spin_lock_bh(&pp->fcoe_rx_list.lock);
2053 list = &pp->fcoe_rx_list;
2054 head = list->next;
2055 for (skb = head; skb != (struct sk_buff *)list;
2056 skb = next) {
2057 next = skb->next;
2058 fr = fcoe_dev_from_skb(skb);
Robert Love1875f272009-11-03 11:47:50 -08002059 if (fr->fr_dev == lport) {
Robert Love5e5e92d2009-03-17 11:41:35 -07002060 __skb_unlink(skb, list);
2061 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08002062 }
Robert Love85b4aa42008-12-09 15:10:24 -08002063 }
Joe Eykholte7a51992009-08-25 14:04:08 -07002064
2065 if (!pp->thread || !cpu_online(cpu)) {
2066 spin_unlock_bh(&pp->fcoe_rx_list.lock);
2067 continue;
2068 }
2069
2070 skb = dev_alloc_skb(0);
2071 if (!skb) {
2072 spin_unlock_bh(&pp->fcoe_rx_list.lock);
2073 continue;
2074 }
2075 skb->destructor = fcoe_percpu_flush_done;
2076
2077 __skb_queue_tail(&pp->fcoe_rx_list, skb);
2078 if (pp->fcoe_rx_list.qlen == 1)
2079 wake_up_process(pp->thread);
Robert Love5e5e92d2009-03-17 11:41:35 -07002080 spin_unlock_bh(&pp->fcoe_rx_list.lock);
Joe Eykholte7a51992009-08-25 14:04:08 -07002081
2082 wait_for_completion(&fcoe_flush_completion);
Robert Love85b4aa42008-12-09 15:10:24 -08002083 }
2084}
Robert Love85b4aa42008-12-09 15:10:24 -08002085
2086/**
Robert Love34f42a02009-02-27 10:55:45 -08002087 * fcoe_clean_pending_queue() - Dequeue a skb and free it
Robert Love1875f272009-11-03 11:47:50 -08002088 * @lport: The local port to dequeue a skb on
Robert Love34f42a02009-02-27 10:55:45 -08002089 */
Robert Love1875f272009-11-03 11:47:50 -08002090void fcoe_clean_pending_queue(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002091{
Robert Love1875f272009-11-03 11:47:50 -08002092 struct fcoe_port *port = lport_priv(lport);
Robert Love85b4aa42008-12-09 15:10:24 -08002093 struct sk_buff *skb;
2094
Chris Leech014f5c32009-08-25 13:59:30 -07002095 spin_lock_bh(&port->fcoe_pending_queue.lock);
2096 while ((skb = __skb_dequeue(&port->fcoe_pending_queue)) != NULL) {
2097 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08002098 kfree_skb(skb);
Chris Leech014f5c32009-08-25 13:59:30 -07002099 spin_lock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08002100 }
Chris Leech014f5c32009-08-25 13:59:30 -07002101 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08002102}
Robert Love85b4aa42008-12-09 15:10:24 -08002103
2104/**
Robert Love1875f272009-11-03 11:47:50 -08002105 * fcoe_reset() - Reset a local port
2106 * @shost: The SCSI host associated with the local port to be reset
Robert Love85b4aa42008-12-09 15:10:24 -08002107 *
Robert Love1875f272009-11-03 11:47:50 -08002108 * Returns: Always 0 (return value required by FC transport template)
Robert Love85b4aa42008-12-09 15:10:24 -08002109 */
2110int fcoe_reset(struct Scsi_Host *shost)
2111{
2112 struct fc_lport *lport = shost_priv(shost);
2113 fc_lport_reset(lport);
2114 return 0;
2115}
Robert Love85b4aa42008-12-09 15:10:24 -08002116
Robert Love34f42a02009-02-27 10:55:45 -08002117/**
Robert Love1875f272009-11-03 11:47:50 -08002118 * fcoe_hostlist_lookup_port() - Find the FCoE interface associated with a net device
2119 * @netdev: The net device used as a key
Robert Love85b4aa42008-12-09 15:10:24 -08002120 *
Robert Love1875f272009-11-03 11:47:50 -08002121 * Locking: Must be called with the RNL mutex held.
2122 *
2123 * Returns: NULL or the FCoE interface
Robert Love85b4aa42008-12-09 15:10:24 -08002124 */
Chris Leech014f5c32009-08-25 13:59:30 -07002125static struct fcoe_interface *
Robert Love1875f272009-11-03 11:47:50 -08002126fcoe_hostlist_lookup_port(const struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08002127{
Chris Leech014f5c32009-08-25 13:59:30 -07002128 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002129
Chris Leech014f5c32009-08-25 13:59:30 -07002130 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
Robert Love1875f272009-11-03 11:47:50 -08002131 if (fcoe->netdev == netdev)
Chris Leech014f5c32009-08-25 13:59:30 -07002132 return fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002133 }
Robert Love85b4aa42008-12-09 15:10:24 -08002134 return NULL;
2135}
2136
Robert Love34f42a02009-02-27 10:55:45 -08002137/**
Robert Love1875f272009-11-03 11:47:50 -08002138 * fcoe_hostlist_lookup() - Find the local port associated with a
2139 * given net device
2140 * @netdev: The netdevice used as a key
Robert Love85b4aa42008-12-09 15:10:24 -08002141 *
Robert Love1875f272009-11-03 11:47:50 -08002142 * Locking: Must be called with the RTNL mutex held
2143 *
2144 * Returns: NULL or the local port
Robert Love85b4aa42008-12-09 15:10:24 -08002145 */
Chris Leech090eb6c2009-08-25 14:00:28 -07002146static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08002147{
Chris Leech014f5c32009-08-25 13:59:30 -07002148 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002149
Chris Leech014f5c32009-08-25 13:59:30 -07002150 fcoe = fcoe_hostlist_lookup_port(netdev);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07002151 return (fcoe) ? fcoe->ctlr.lp : NULL;
Robert Love85b4aa42008-12-09 15:10:24 -08002152}
Robert Love85b4aa42008-12-09 15:10:24 -08002153
Robert Love34f42a02009-02-27 10:55:45 -08002154/**
Robert Love1875f272009-11-03 11:47:50 -08002155 * fcoe_hostlist_add() - Add the FCoE interface identified by a local
2156 * port to the hostlist
2157 * @lport: The local port that identifies the FCoE interface to be added
2158 *
2159 * Locking: must be called with the RTNL mutex held
Robert Love85b4aa42008-12-09 15:10:24 -08002160 *
2161 * Returns: 0 for success
2162 */
Chris Leech090eb6c2009-08-25 14:00:28 -07002163static int fcoe_hostlist_add(const struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002164{
Chris Leech014f5c32009-08-25 13:59:30 -07002165 struct fcoe_interface *fcoe;
2166 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08002167
Chris Leech014f5c32009-08-25 13:59:30 -07002168 fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
2169 if (!fcoe) {
2170 port = lport_priv(lport);
2171 fcoe = port->fcoe;
2172 list_add_tail(&fcoe->list, &fcoe_hostlist);
Robert Love85b4aa42008-12-09 15:10:24 -08002173 }
2174 return 0;
2175}
Robert Love85b4aa42008-12-09 15:10:24 -08002176
Robert Love34f42a02009-02-27 10:55:45 -08002177/**
Robert Love1875f272009-11-03 11:47:50 -08002178 * fcoe_init() - Initialize fcoe.ko
Robert Love85b4aa42008-12-09 15:10:24 -08002179 *
Robert Love1875f272009-11-03 11:47:50 -08002180 * Returns: 0 on success, or a negative value on failure
Robert Love34f42a02009-02-27 10:55:45 -08002181 */
Robert Love85b4aa42008-12-09 15:10:24 -08002182static int __init fcoe_init(void)
2183{
Robert Love1875f272009-11-03 11:47:50 -08002184 struct fcoe_percpu_s *p;
Robert Love38eccab2009-03-17 11:41:30 -07002185 unsigned int cpu;
Robert Love8976f422009-03-17 11:41:46 -07002186 int rc = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08002187
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002188 mutex_lock(&fcoe_config_mutex);
2189
Robert Love38eccab2009-03-17 11:41:30 -07002190 for_each_possible_cpu(cpu) {
Robert Love5e5e92d2009-03-17 11:41:35 -07002191 p = &per_cpu(fcoe_percpu, cpu);
Robert Love38eccab2009-03-17 11:41:30 -07002192 skb_queue_head_init(&p->fcoe_rx_list);
2193 }
2194
Robert Love8976f422009-03-17 11:41:46 -07002195 for_each_online_cpu(cpu)
2196 fcoe_percpu_thread_create(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08002197
Robert Love8976f422009-03-17 11:41:46 -07002198 /* Initialize per CPU interrupt thread */
2199 rc = register_hotcpu_notifier(&fcoe_cpu_notifier);
2200 if (rc)
2201 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08002202
Robert Love8976f422009-03-17 11:41:46 -07002203 /* Setup link change notification */
Robert Love85b4aa42008-12-09 15:10:24 -08002204 fcoe_dev_setup();
2205
Chris Leech5892c322009-08-25 13:59:14 -07002206 rc = fcoe_if_init();
2207 if (rc)
2208 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08002209
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002210 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08002211 return 0;
Robert Love8976f422009-03-17 11:41:46 -07002212
2213out_free:
2214 for_each_online_cpu(cpu) {
2215 fcoe_percpu_thread_destroy(cpu);
2216 }
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002217 mutex_unlock(&fcoe_config_mutex);
Robert Love8976f422009-03-17 11:41:46 -07002218 return rc;
Robert Love85b4aa42008-12-09 15:10:24 -08002219}
2220module_init(fcoe_init);
2221
2222/**
Robert Love1875f272009-11-03 11:47:50 -08002223 * fcoe_exit() - Clean up fcoe.ko
Robert Love85b4aa42008-12-09 15:10:24 -08002224 *
Robert Love1875f272009-11-03 11:47:50 -08002225 * Returns: 0 on success or a negative value on failure
Robert Love34f42a02009-02-27 10:55:45 -08002226 */
Robert Love85b4aa42008-12-09 15:10:24 -08002227static void __exit fcoe_exit(void)
2228{
Chris Leech014f5c32009-08-25 13:59:30 -07002229 struct fcoe_interface *fcoe, *tmp;
Chris Leech2e70e242009-08-25 14:00:23 -07002230 struct fcoe_port *port;
Robert Love1875f272009-11-03 11:47:50 -08002231 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08002232
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002233 mutex_lock(&fcoe_config_mutex);
2234
Robert Love85b4aa42008-12-09 15:10:24 -08002235 fcoe_dev_cleanup();
2236
Vasu Dev5919a592009-03-27 09:03:29 -07002237 /* releases the associated fcoe hosts */
Chris Leech090eb6c2009-08-25 14:00:28 -07002238 rtnl_lock();
2239 list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list) {
Chris Leechc863df32009-08-25 14:00:18 -07002240 list_del(&fcoe->list);
Chris Leech2e70e242009-08-25 14:00:23 -07002241 port = lport_priv(fcoe->ctlr.lp);
Chris Leech2e70e242009-08-25 14:00:23 -07002242 fcoe_interface_cleanup(fcoe);
Chris Leech2e70e242009-08-25 14:00:23 -07002243 schedule_work(&port->destroy_work);
Chris Leechc863df32009-08-25 14:00:18 -07002244 }
Chris Leech090eb6c2009-08-25 14:00:28 -07002245 rtnl_unlock();
Robert Love85b4aa42008-12-09 15:10:24 -08002246
Robert Love8976f422009-03-17 11:41:46 -07002247 unregister_hotcpu_notifier(&fcoe_cpu_notifier);
2248
Chris Leech014f5c32009-08-25 13:59:30 -07002249 for_each_online_cpu(cpu)
Robert Love8976f422009-03-17 11:41:46 -07002250 fcoe_percpu_thread_destroy(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08002251
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002252 mutex_unlock(&fcoe_config_mutex);
Chris Leech2e70e242009-08-25 14:00:23 -07002253
2254 /* flush any asyncronous interface destroys,
2255 * this should happen after the netdev notifier is unregistered */
2256 flush_scheduled_work();
Chris Leech9a057532009-11-03 11:46:40 -08002257 /* That will flush out all the N_Ports on the hostlist, but now we
2258 * may have NPIV VN_Ports scheduled for destruction */
2259 flush_scheduled_work();
Chris Leech2e70e242009-08-25 14:00:23 -07002260
2261 /* detach from scsi transport
2262 * must happen after all destroys are done, therefor after the flush */
2263 fcoe_if_exit();
Robert Love85b4aa42008-12-09 15:10:24 -08002264}
2265module_exit(fcoe_exit);
Chris Leech11b56182009-11-03 11:46:29 -08002266
2267/**
2268 * fcoe_flogi_resp() - FCoE specific FLOGI and FDISC response handler
2269 * @seq: active sequence in the FLOGI or FDISC exchange
2270 * @fp: response frame, or error encoded in a pointer (timeout)
2271 * @arg: pointer the the fcoe_ctlr structure
2272 *
2273 * This handles MAC address managment for FCoE, then passes control on to
2274 * the libfc FLOGI response handler.
2275 */
2276static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2277{
2278 struct fcoe_ctlr *fip = arg;
2279 struct fc_exch *exch = fc_seq_exch(seq);
2280 struct fc_lport *lport = exch->lp;
2281 u8 *mac;
2282
2283 if (IS_ERR(fp))
2284 goto done;
2285
2286 mac = fr_cb(fp)->granted_mac;
2287 if (is_zero_ether_addr(mac)) {
2288 /* pre-FIP */
Joe Eykholt386309ce2009-11-03 11:49:16 -08002289 if (fcoe_ctlr_recv_flogi(fip, lport, fp)) {
Chris Leech11b56182009-11-03 11:46:29 -08002290 fc_frame_free(fp);
2291 return;
2292 }
Chris Leech11b56182009-11-03 11:46:29 -08002293 }
Joe Eykholt386309ce2009-11-03 11:49:16 -08002294 fcoe_update_src_mac(lport, mac);
Chris Leech11b56182009-11-03 11:46:29 -08002295done:
2296 fc_lport_flogi_resp(seq, fp, lport);
2297}
2298
2299/**
2300 * fcoe_logo_resp() - FCoE specific LOGO response handler
2301 * @seq: active sequence in the LOGO exchange
2302 * @fp: response frame, or error encoded in a pointer (timeout)
2303 * @arg: pointer the the fcoe_ctlr structure
2304 *
2305 * This handles MAC address managment for FCoE, then passes control on to
2306 * the libfc LOGO response handler.
2307 */
2308static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2309{
Joe Eykholt386309ce2009-11-03 11:49:16 -08002310 struct fc_lport *lport = arg;
Chris Leech11b56182009-11-03 11:46:29 -08002311 static u8 zero_mac[ETH_ALEN] = { 0 };
2312
2313 if (!IS_ERR(fp))
Joe Eykholt386309ce2009-11-03 11:49:16 -08002314 fcoe_update_src_mac(lport, zero_mac);
Chris Leech11b56182009-11-03 11:46:29 -08002315 fc_lport_logo_resp(seq, fp, lport);
2316}
2317
2318/**
2319 * fcoe_elsct_send - FCoE specific ELS handler
2320 *
2321 * This does special case handling of FIP encapsualted ELS exchanges for FCoE,
2322 * using FCoE specific response handlers and passing the FIP controller as
2323 * the argument (the lport is still available from the exchange).
2324 *
2325 * Most of the work here is just handed off to the libfc routine.
2326 */
Robert Love1875f272009-11-03 11:47:50 -08002327static struct fc_seq *fcoe_elsct_send(struct fc_lport *lport, u32 did,
2328 struct fc_frame *fp, unsigned int op,
2329 void (*resp)(struct fc_seq *,
2330 struct fc_frame *,
2331 void *),
2332 void *arg, u32 timeout)
Chris Leech11b56182009-11-03 11:46:29 -08002333{
2334 struct fcoe_port *port = lport_priv(lport);
2335 struct fcoe_interface *fcoe = port->fcoe;
2336 struct fcoe_ctlr *fip = &fcoe->ctlr;
2337 struct fc_frame_header *fh = fc_frame_header_get(fp);
2338
2339 switch (op) {
2340 case ELS_FLOGI:
2341 case ELS_FDISC:
2342 return fc_elsct_send(lport, did, fp, op, fcoe_flogi_resp,
2343 fip, timeout);
2344 case ELS_LOGO:
2345 /* only hook onto fabric logouts, not port logouts */
2346 if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI)
2347 break;
2348 return fc_elsct_send(lport, did, fp, op, fcoe_logo_resp,
Joe Eykholt386309ce2009-11-03 11:49:16 -08002349 lport, timeout);
Chris Leech11b56182009-11-03 11:46:29 -08002350 }
2351 return fc_elsct_send(lport, did, fp, op, resp, arg, timeout);
2352}
2353
Chris Leech9a057532009-11-03 11:46:40 -08002354/**
2355 * fcoe_vport_create() - create an fc_host/scsi_host for a vport
2356 * @vport: fc_vport object to create a new fc_host for
2357 * @disabled: start the new fc_host in a disabled state by default?
2358 *
2359 * Returns: 0 for success
2360 */
2361static int fcoe_vport_create(struct fc_vport *vport, bool disabled)
2362{
2363 struct Scsi_Host *shost = vport_to_shost(vport);
2364 struct fc_lport *n_port = shost_priv(shost);
2365 struct fcoe_port *port = lport_priv(n_port);
2366 struct fcoe_interface *fcoe = port->fcoe;
2367 struct net_device *netdev = fcoe->netdev;
2368 struct fc_lport *vn_port;
2369
2370 mutex_lock(&fcoe_config_mutex);
2371 vn_port = fcoe_if_create(fcoe, &vport->dev, 1);
2372 mutex_unlock(&fcoe_config_mutex);
2373
2374 if (IS_ERR(vn_port)) {
2375 printk(KERN_ERR "fcoe: fcoe_vport_create(%s) failed\n",
2376 netdev->name);
2377 return -EIO;
2378 }
2379
2380 if (disabled) {
2381 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2382 } else {
2383 vn_port->boot_time = jiffies;
2384 fc_fabric_login(vn_port);
2385 fc_vport_setlink(vn_port);
2386 }
2387 return 0;
2388}
2389
2390/**
2391 * fcoe_vport_destroy() - destroy the fc_host/scsi_host for a vport
2392 * @vport: fc_vport object that is being destroyed
2393 *
2394 * Returns: 0 for success
2395 */
2396static int fcoe_vport_destroy(struct fc_vport *vport)
2397{
2398 struct Scsi_Host *shost = vport_to_shost(vport);
2399 struct fc_lport *n_port = shost_priv(shost);
2400 struct fc_lport *vn_port = vport->dd_data;
2401 struct fcoe_port *port = lport_priv(vn_port);
2402
2403 mutex_lock(&n_port->lp_mutex);
2404 list_del(&vn_port->list);
2405 mutex_unlock(&n_port->lp_mutex);
2406 schedule_work(&port->destroy_work);
2407 return 0;
2408}
2409
2410/**
2411 * fcoe_vport_disable() - change vport state
2412 * @vport: vport to bring online/offline
2413 * @disable: should the vport be disabled?
2414 */
2415static int fcoe_vport_disable(struct fc_vport *vport, bool disable)
2416{
2417 struct fc_lport *lport = vport->dd_data;
2418
2419 if (disable) {
2420 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2421 fc_fabric_logoff(lport);
2422 } else {
2423 lport->boot_time = jiffies;
2424 fc_fabric_login(lport);
2425 fc_vport_setlink(lport);
2426 }
2427
2428 return 0;
2429}
2430
Chris Leechdc8596d2009-11-03 11:47:18 -08002431/**
2432 * fcoe_vport_set_symbolic_name() - append vport string to symbolic name
2433 * @vport: fc_vport with a new symbolic name string
2434 *
2435 * After generating a new symbolic name string, a new RSPN_ID request is
2436 * sent to the name server. There is no response handler, so if it fails
2437 * for some reason it will not be retried.
2438 */
2439static void fcoe_set_vport_symbolic_name(struct fc_vport *vport)
2440{
2441 struct fc_lport *lport = vport->dd_data;
2442 struct fc_frame *fp;
2443 size_t len;
2444
2445 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
2446 "%s v%s over %s : %s", FCOE_NAME, FCOE_VERSION,
2447 fcoe_netdev(lport)->name, vport->symbolic_name);
2448
2449 if (lport->state != LPORT_ST_READY)
2450 return;
2451
2452 len = strnlen(fc_host_symbolic_name(lport->host), 255);
2453 fp = fc_frame_alloc(lport,
2454 sizeof(struct fc_ct_hdr) +
2455 sizeof(struct fc_ns_rspn) + len);
2456 if (!fp)
2457 return;
2458 lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RSPN_ID,
Joe Eykholtb94f8952009-11-03 11:50:21 -08002459 NULL, NULL, 3 * lport->r_a_tov);
Chris Leechdc8596d2009-11-03 11:47:18 -08002460}
Yi Zoub84056b2009-11-20 14:55:19 -08002461
2462/**
2463 * fcoe_get_lesb() - Fill the FCoE Link Error Status Block
2464 * @lport: the local port
2465 * @fc_lesb: the link error status block
2466 */
2467static void fcoe_get_lesb(struct fc_lport *lport,
2468 struct fc_els_lesb *fc_lesb)
2469{
2470 unsigned int cpu;
2471 u32 lfc, vlfc, mdac;
2472 struct fcoe_dev_stats *devst;
2473 struct fcoe_fc_els_lesb *lesb;
2474 struct net_device *netdev = fcoe_netdev(lport);
2475
2476 lfc = 0;
2477 vlfc = 0;
2478 mdac = 0;
2479 lesb = (struct fcoe_fc_els_lesb *)fc_lesb;
2480 memset(lesb, 0, sizeof(*lesb));
2481 for_each_possible_cpu(cpu) {
2482 devst = per_cpu_ptr(lport->dev_stats, cpu);
2483 lfc += devst->LinkFailureCount;
2484 vlfc += devst->VLinkFailureCount;
2485 mdac += devst->MissDiscAdvCount;
2486 }
2487 lesb->lesb_link_fail = htonl(lfc);
2488 lesb->lesb_vlink_fail = htonl(vlfc);
2489 lesb->lesb_miss_fka = htonl(mdac);
2490 lesb->lesb_fcs_error = htonl(dev_get_stats(netdev)->rx_crc_errors);
2491}