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