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