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 | |
Vasu Dev | 3067817 | 2010-10-08 17:12:25 -0700 | [diff] [blame] | 120 | module_param_call(create, fcoe_create, NULL, (void *)FIP_MODE_FABRIC, 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; |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 650 | |
| 651 | /* Setup lport private data to point to fcoe softc */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 652 | port = lport_priv(lport); |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 653 | fcoe = port->fcoe; |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 654 | |
| 655 | /* |
| 656 | * Determine max frame size based on underlying device and optional |
| 657 | * user-configured limit. If the MFS is too low, fcoe_link_ok() |
| 658 | * will return 0, so do this first. |
| 659 | */ |
Yi Zou | 7221d7e | 2009-10-21 16:27:52 -0700 | [diff] [blame] | 660 | mfs = netdev->mtu; |
| 661 | if (netdev->features & NETIF_F_FCOE_MTU) { |
| 662 | mfs = FCOE_MTU; |
| 663 | FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs); |
| 664 | } |
| 665 | mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof)); |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 666 | if (fc_set_mfs(lport, mfs)) |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 667 | return -EINVAL; |
| 668 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 669 | /* offload features support */ |
Yi Zou | 54a5b21 | 2010-07-20 15:21:17 -0700 | [diff] [blame] | 670 | fcoe_netdev_features_change(lport, netdev); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 671 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 672 | skb_queue_head_init(&port->fcoe_pending_queue); |
| 673 | port->fcoe_pending_queue_active = 0; |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 674 | setup_timer(&port->timer, fcoe_queue_timer, (unsigned long)lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 675 | |
Robert Love | 5e4f8fe | 2010-05-07 15:18:35 -0700 | [diff] [blame] | 676 | fcoe_link_speed_update(lport); |
| 677 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 678 | if (!lport->vport) { |
Yi Zou | dcece41 | 2009-11-20 15:22:21 -0800 | [diff] [blame] | 679 | if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN)) |
| 680 | wwnn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr, 1, 0); |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 681 | fc_set_wwnn(lport, wwnn); |
Yi Zou | dcece41 | 2009-11-20 15:22:21 -0800 | [diff] [blame] | 682 | if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN)) |
| 683 | wwpn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr, |
Vasu Dev | cf4aebca | 2010-07-20 15:21:22 -0700 | [diff] [blame] | 684 | 2, 0); |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 685 | fc_set_wwpn(lport, wwpn); |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 686 | } |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 687 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 688 | return 0; |
| 689 | } |
| 690 | |
| 691 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 692 | * fcoe_shost_config() - Set up the SCSI host associated with a local port |
| 693 | * @lport: The local port |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 694 | * @dev: The device associated with the SCSI host |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 695 | * |
| 696 | * Must be called after fcoe_lport_config() and fcoe_netdev_config() |
| 697 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 698 | * Returns: 0 for success |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 699 | */ |
Vasu Dev | 8ba00a4 | 2010-04-09 14:22:54 -0700 | [diff] [blame] | 700 | static int fcoe_shost_config(struct fc_lport *lport, struct device *dev) |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 701 | { |
| 702 | int rc = 0; |
| 703 | |
| 704 | /* lport scsi host config */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 705 | lport->host->max_lun = FCOE_MAX_LUN; |
| 706 | lport->host->max_id = FCOE_MAX_FCP_TARGET; |
| 707 | lport->host->max_channel = 0; |
Vasu Dev | da87bfa | 2010-04-09 14:22:59 -0700 | [diff] [blame] | 708 | lport->host->max_cmd_len = FCOE_MAX_CMD_LEN; |
| 709 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 710 | if (lport->vport) |
| 711 | lport->host->transportt = fcoe_vport_transport_template; |
Chris Leech | e9084bb | 2009-11-03 11:46:34 -0800 | [diff] [blame] | 712 | else |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 713 | lport->host->transportt = fcoe_transport_template; |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 714 | |
| 715 | /* add the new host to the SCSI-ml */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 716 | rc = scsi_add_host(lport->host, dev); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 717 | if (rc) { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 718 | FCOE_NETDEV_DBG(fcoe_netdev(lport), "fcoe_shost_config: " |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 719 | "error on scsi_add_host\n"); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 720 | return rc; |
| 721 | } |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 722 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 723 | if (!lport->vport) |
Alexey Dobriyan | 4be929b | 2010-05-24 14:33:03 -0700 | [diff] [blame] | 724 | fc_host_max_npiv_vports(lport->host) = USHRT_MAX; |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 725 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 726 | snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE, |
Chris Leech | 5baa17c | 2009-11-03 11:46:56 -0800 | [diff] [blame] | 727 | "%s v%s over %s", FCOE_NAME, FCOE_VERSION, |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 728 | fcoe_netdev(lport)->name); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 729 | |
| 730 | return 0; |
| 731 | } |
| 732 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 733 | /** |
| 734 | * fcoe_oem_match() - The match routine for the offloaded exchange manager |
| 735 | * @fp: The I/O frame |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 736 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 737 | * This routine will be associated with an exchange manager (EM). When |
| 738 | * the libfc exchange handling code is looking for an EM to use it will |
| 739 | * call this routine and pass it the frame that it wishes to send. This |
| 740 | * routine will return True if the associated EM is to be used and False |
| 741 | * if the echange code should continue looking for an EM. |
| 742 | * |
| 743 | * The offload EM that this routine is associated with will handle any |
| 744 | * packets that are for SCSI read requests. |
| 745 | * |
| 746 | * Returns: True for read types I/O, otherwise returns false. |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 747 | */ |
| 748 | bool fcoe_oem_match(struct fc_frame *fp) |
| 749 | { |
Yi Zou | 05cc739 | 2009-08-25 13:59:03 -0700 | [diff] [blame] | 750 | return fc_fcp_is_read(fr_fsp(fp)) && |
| 751 | (fr_fsp(fp)->data_len > fcoe_ddp_min); |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 752 | } |
| 753 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 754 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 755 | * fcoe_em_config() - Allocate and configure an exchange manager |
| 756 | * @lport: The local port that the new EM will be associated with |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 757 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 758 | * Returns: 0 on success |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 759 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 760 | static inline int fcoe_em_config(struct fc_lport *lport) |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 761 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 762 | struct fcoe_port *port = lport_priv(lport); |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 763 | struct fcoe_interface *fcoe = port->fcoe; |
| 764 | struct fcoe_interface *oldfcoe = NULL; |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 765 | struct net_device *old_real_dev, *cur_real_dev; |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 766 | u16 min_xid = FCOE_MIN_XID; |
| 767 | u16 max_xid = FCOE_MAX_XID; |
| 768 | |
| 769 | /* |
| 770 | * Check if need to allocate an em instance for |
| 771 | * offload exchange ids to be shared across all VN_PORTs/lport. |
| 772 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 773 | if (!lport->lro_enabled || !lport->lro_xid || |
| 774 | (lport->lro_xid >= max_xid)) { |
| 775 | lport->lro_xid = 0; |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 776 | goto skip_oem; |
| 777 | } |
| 778 | |
| 779 | /* |
| 780 | * Reuse existing offload em instance in case |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 781 | * it is already allocated on real eth device |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 782 | */ |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 783 | if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN) |
| 784 | cur_real_dev = vlan_dev_real_dev(fcoe->netdev); |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 785 | else |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 786 | cur_real_dev = fcoe->netdev; |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 787 | |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 788 | list_for_each_entry(oldfcoe, &fcoe_hostlist, list) { |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 789 | if (oldfcoe->netdev->priv_flags & IFF_802_1Q_VLAN) |
| 790 | old_real_dev = vlan_dev_real_dev(oldfcoe->netdev); |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 791 | else |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 792 | old_real_dev = oldfcoe->netdev; |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 793 | |
| 794 | if (cur_real_dev == old_real_dev) { |
Chris Leech | 991cbb6 | 2009-08-25 13:59:51 -0700 | [diff] [blame] | 795 | fcoe->oem = oldfcoe->oem; |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 796 | break; |
| 797 | } |
| 798 | } |
| 799 | |
Chris Leech | 991cbb6 | 2009-08-25 13:59:51 -0700 | [diff] [blame] | 800 | if (fcoe->oem) { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 801 | if (!fc_exch_mgr_add(lport, fcoe->oem, fcoe_oem_match)) { |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 802 | printk(KERN_ERR "fcoe_em_config: failed to add " |
| 803 | "offload em:%p on interface:%s\n", |
Chris Leech | 991cbb6 | 2009-08-25 13:59:51 -0700 | [diff] [blame] | 804 | fcoe->oem, fcoe->netdev->name); |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 805 | return -ENOMEM; |
| 806 | } |
| 807 | } else { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 808 | fcoe->oem = fc_exch_mgr_alloc(lport, FC_CLASS_3, |
| 809 | FCOE_MIN_XID, lport->lro_xid, |
| 810 | fcoe_oem_match); |
Chris Leech | 991cbb6 | 2009-08-25 13:59:51 -0700 | [diff] [blame] | 811 | if (!fcoe->oem) { |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 812 | printk(KERN_ERR "fcoe_em_config: failed to allocate " |
| 813 | "em for offload exches on interface:%s\n", |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 814 | fcoe->netdev->name); |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 815 | return -ENOMEM; |
| 816 | } |
| 817 | } |
| 818 | |
| 819 | /* |
| 820 | * Exclude offload EM xid range from next EM xid range. |
| 821 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 822 | min_xid += lport->lro_xid + 1; |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 823 | |
| 824 | skip_oem: |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 825 | 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] | 826 | printk(KERN_ERR "fcoe_em_config: failed to " |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 827 | "allocate em on interface %s\n", fcoe->netdev->name); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 828 | return -ENOMEM; |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 829 | } |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 830 | |
| 831 | return 0; |
| 832 | } |
| 833 | |
| 834 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 835 | * fcoe_if_destroy() - Tear down a SW FCoE instance |
| 836 | * @lport: The local port to be destroyed |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 837 | * |
| 838 | * Locking: must be called with the RTNL mutex held and RTNL mutex |
| 839 | * needed to be dropped by this function since not dropping RTNL |
| 840 | * would cause circular locking warning on synchronous fip worker |
| 841 | * cancelling thru fcoe_interface_put invoked by this function. |
| 842 | * |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 843 | */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 844 | static void fcoe_if_destroy(struct fc_lport *lport) |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 845 | { |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 846 | struct fcoe_port *port = lport_priv(lport); |
| 847 | struct fcoe_interface *fcoe = port->fcoe; |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 848 | struct net_device *netdev = fcoe->netdev; |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 849 | |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 850 | FCOE_NETDEV_DBG(netdev, "Destroying interface\n"); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 851 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 852 | /* Logout of the fabric */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 853 | fc_fabric_logoff(lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 854 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 855 | /* Cleanup the fc_lport */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 856 | fc_lport_destroy(lport); |
| 857 | fc_fcp_destroy(lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 858 | |
Chris Leech | 54b649f | 2009-08-25 14:00:07 -0700 | [diff] [blame] | 859 | /* Stop the transmit retry timer */ |
| 860 | del_timer_sync(&port->timer); |
| 861 | |
| 862 | /* Free existing transmit skbs */ |
| 863 | fcoe_clean_pending_queue(lport); |
| 864 | |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 865 | if (!is_zero_ether_addr(port->data_src_addr)) |
Jiri Pirko | a748ee2 | 2010-04-01 21:22:09 +0000 | [diff] [blame] | 866 | dev_uc_del(netdev, port->data_src_addr); |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 867 | rtnl_unlock(); |
| 868 | |
Chris Leech | 54b649f | 2009-08-25 14:00:07 -0700 | [diff] [blame] | 869 | /* receives may not be stopped until after this */ |
| 870 | fcoe_interface_put(fcoe); |
| 871 | |
| 872 | /* Free queued packets for the per-CPU receive threads */ |
| 873 | fcoe_percpu_clean(lport); |
| 874 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 875 | /* Detach from the scsi-ml */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 876 | fc_remove_host(lport->host); |
| 877 | scsi_remove_host(lport->host); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 878 | |
| 879 | /* There are no more rports or I/O, free the EM */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 880 | fc_exch_mgr_free(lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 881 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 882 | /* Free memory used by statistical counters */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 883 | fc_lport_free_stats(lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 884 | |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 885 | /* Release the Scsi_Host */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 886 | scsi_host_put(lport->host); |
Vasu Dev | 15af974 | 2010-05-07 15:19:03 -0700 | [diff] [blame] | 887 | module_put(THIS_MODULE); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 888 | } |
| 889 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 890 | /** |
| 891 | * fcoe_ddp_setup() - Call a LLD's ddp_setup through the net device |
| 892 | * @lport: The local port to setup DDP for |
| 893 | * @xid: The exchange ID for this DDP transfer |
| 894 | * @sgl: The scatterlist describing this transfer |
| 895 | * @sgc: The number of sg items |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 896 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 897 | * Returns: 0 if the DDP context was not configured |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 898 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 899 | static int fcoe_ddp_setup(struct fc_lport *lport, u16 xid, |
| 900 | struct scatterlist *sgl, unsigned int sgc) |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 901 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 902 | struct net_device *netdev = fcoe_netdev(lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 903 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 904 | if (netdev->netdev_ops->ndo_fcoe_ddp_setup) |
| 905 | return netdev->netdev_ops->ndo_fcoe_ddp_setup(netdev, |
| 906 | xid, sgl, |
| 907 | sgc); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 908 | |
| 909 | return 0; |
| 910 | } |
| 911 | |
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 | * fcoe_ddp_done() - Call a LLD's ddp_done through the net device |
| 914 | * @lport: The local port to complete DDP on |
| 915 | * @xid: The exchange ID for this DDP transfer |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 916 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 917 | * Returns: the length of data that have been completed by DDP |
| 918 | */ |
| 919 | static int fcoe_ddp_done(struct fc_lport *lport, u16 xid) |
| 920 | { |
| 921 | struct net_device *netdev = fcoe_netdev(lport); |
| 922 | |
| 923 | if (netdev->netdev_ops->ndo_fcoe_ddp_done) |
| 924 | return netdev->netdev_ops->ndo_fcoe_ddp_done(netdev, xid); |
| 925 | return 0; |
| 926 | } |
| 927 | |
| 928 | /** |
| 929 | * fcoe_if_create() - Create a FCoE instance on an interface |
| 930 | * @fcoe: The FCoE interface to create a local port on |
| 931 | * @parent: The device pointer to be the parent in sysfs for the SCSI host |
| 932 | * @npiv: Indicates if the port is a vport or not |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 933 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 934 | * Creates a fc_lport instance and a Scsi_Host instance and configure them. |
| 935 | * |
| 936 | * Returns: The allocated fc_lport or an error pointer |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 937 | */ |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 938 | static struct fc_lport *fcoe_if_create(struct fcoe_interface *fcoe, |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 939 | struct device *parent, int npiv) |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 940 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 941 | struct net_device *netdev = fcoe->netdev; |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 942 | struct fc_lport *lport = NULL; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 943 | struct fcoe_port *port; |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 944 | int rc; |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 945 | /* |
| 946 | * parent is only a vport if npiv is 1, |
| 947 | * but we'll only use vport in that case so go ahead and set it |
| 948 | */ |
| 949 | struct fc_vport *vport = dev_to_vport(parent); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 950 | |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 951 | FCOE_NETDEV_DBG(netdev, "Create Interface\n"); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 952 | |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 953 | if (!npiv) { |
| 954 | lport = libfc_host_alloc(&fcoe_shost_template, |
| 955 | sizeof(struct fcoe_port)); |
| 956 | } else { |
| 957 | lport = libfc_vport_create(vport, |
| 958 | sizeof(struct fcoe_port)); |
| 959 | } |
Chris Leech | 8622196 | 2009-11-03 11:46:08 -0800 | [diff] [blame] | 960 | if (!lport) { |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 961 | FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n"); |
| 962 | rc = -ENOMEM; |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 963 | goto out; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 964 | } |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 965 | port = lport_priv(lport); |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 966 | port->lport = lport; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 967 | port->fcoe = fcoe; |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 968 | INIT_WORK(&port->destroy_work, fcoe_destroy_work); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 969 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 970 | /* configure a fc_lport including the exchange manager */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 971 | rc = fcoe_lport_config(lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 972 | if (rc) { |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 973 | FCOE_NETDEV_DBG(netdev, "Could not configure lport for the " |
| 974 | "interface\n"); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 975 | goto out_host_put; |
| 976 | } |
| 977 | |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 978 | if (npiv) { |
Chris Leech | 9f8f3aa | 2010-04-09 14:23:16 -0700 | [diff] [blame] | 979 | FCOE_NETDEV_DBG(netdev, "Setting vport names, " |
| 980 | "%16.16llx %16.16llx\n", |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 981 | vport->node_name, vport->port_name); |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 982 | fc_set_wwnn(lport, vport->node_name); |
| 983 | fc_set_wwpn(lport, vport->port_name); |
| 984 | } |
| 985 | |
Vasu Dev | ab6b85c | 2009-05-17 12:33:08 +0000 | [diff] [blame] | 986 | /* configure lport network properties */ |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 987 | rc = fcoe_netdev_config(lport, netdev); |
Vasu Dev | ab6b85c | 2009-05-17 12:33:08 +0000 | [diff] [blame] | 988 | if (rc) { |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 989 | FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the " |
| 990 | "interface\n"); |
Chris Leech | 54b649f | 2009-08-25 14:00:07 -0700 | [diff] [blame] | 991 | goto out_lp_destroy; |
Vasu Dev | ab6b85c | 2009-05-17 12:33:08 +0000 | [diff] [blame] | 992 | } |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 993 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 994 | /* configure lport scsi host properties */ |
Vasu Dev | 8ba00a4 | 2010-04-09 14:22:54 -0700 | [diff] [blame] | 995 | rc = fcoe_shost_config(lport, parent); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 996 | if (rc) { |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 997 | FCOE_NETDEV_DBG(netdev, "Could not configure shost for the " |
| 998 | "interface\n"); |
Chris Leech | 54b649f | 2009-08-25 14:00:07 -0700 | [diff] [blame] | 999 | goto out_lp_destroy; |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1000 | } |
| 1001 | |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1002 | /* Initialize the library */ |
Joe Eykholt | e10f8c6 | 2010-07-20 15:20:30 -0700 | [diff] [blame] | 1003 | rc = fcoe_libfc_config(lport, &fcoe->ctlr, &fcoe_libfc_fcn_templ, 1); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1004 | if (rc) { |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1005 | FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the " |
| 1006 | "interface\n"); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1007 | goto out_lp_destroy; |
| 1008 | } |
| 1009 | |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 1010 | if (!npiv) { |
| 1011 | /* |
| 1012 | * fcoe_em_alloc() and fcoe_hostlist_add() both |
| 1013 | * need to be atomic with respect to other changes to the |
| 1014 | * hostlist since fcoe_em_alloc() looks for an existing EM |
| 1015 | * instance on host list updated by fcoe_hostlist_add(). |
| 1016 | * |
| 1017 | * This is currently handled through the fcoe_config_mutex |
| 1018 | * begin held. |
| 1019 | */ |
Chris Leech | c863df3 | 2009-08-25 14:00:18 -0700 | [diff] [blame] | 1020 | |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 1021 | /* lport exch manager allocation */ |
| 1022 | rc = fcoe_em_config(lport); |
| 1023 | if (rc) { |
| 1024 | FCOE_NETDEV_DBG(netdev, "Could not configure the EM " |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1025 | "for the interface\n"); |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 1026 | goto out_lp_destroy; |
| 1027 | } |
Vasu Dev | 9631609 | 2009-07-29 17:05:00 -0700 | [diff] [blame] | 1028 | } |
| 1029 | |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 1030 | fcoe_interface_get(fcoe); |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 1031 | return lport; |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1032 | |
| 1033 | out_lp_destroy: |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 1034 | fc_exch_mgr_free(lport); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1035 | out_host_put: |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 1036 | scsi_host_put(lport->host); |
| 1037 | out: |
| 1038 | return ERR_PTR(rc); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1042 | * fcoe_if_init() - Initialization routine for fcoe.ko |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1043 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1044 | * Attaches the SW FCoE transport to the FC transport |
| 1045 | * |
| 1046 | * Returns: 0 on success |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1047 | */ |
| 1048 | static int __init fcoe_if_init(void) |
| 1049 | { |
| 1050 | /* attach to scsi transport */ |
Chris Leech | e9084bb | 2009-11-03 11:46:34 -0800 | [diff] [blame] | 1051 | fcoe_transport_template = fc_attach_transport(&fcoe_transport_function); |
| 1052 | fcoe_vport_transport_template = |
| 1053 | fc_attach_transport(&fcoe_vport_transport_function); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1054 | |
Chris Leech | e9084bb | 2009-11-03 11:46:34 -0800 | [diff] [blame] | 1055 | if (!fcoe_transport_template) { |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1056 | printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n"); |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1057 | return -ENODEV; |
| 1058 | } |
| 1059 | |
| 1060 | return 0; |
| 1061 | } |
| 1062 | |
| 1063 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1064 | * fcoe_if_exit() - Tear down fcoe.ko |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1065 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1066 | * Detaches the SW FCoE transport from the FC transport |
| 1067 | * |
| 1068 | * Returns: 0 on success |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1069 | */ |
| 1070 | int __exit fcoe_if_exit(void) |
| 1071 | { |
Chris Leech | e9084bb | 2009-11-03 11:46:34 -0800 | [diff] [blame] | 1072 | fc_release_transport(fcoe_transport_template); |
| 1073 | fc_release_transport(fcoe_vport_transport_template); |
| 1074 | fcoe_transport_template = NULL; |
| 1075 | fcoe_vport_transport_template = NULL; |
Vasu Dev | 7f34914 | 2009-03-27 09:06:31 -0700 | [diff] [blame] | 1076 | return 0; |
| 1077 | } |
| 1078 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1079 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1080 | * fcoe_percpu_thread_create() - Create a receive thread for an online CPU |
| 1081 | * @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] | 1082 | */ |
| 1083 | static void fcoe_percpu_thread_create(unsigned int cpu) |
| 1084 | { |
| 1085 | struct fcoe_percpu_s *p; |
| 1086 | struct task_struct *thread; |
| 1087 | |
| 1088 | p = &per_cpu(fcoe_percpu, cpu); |
| 1089 | |
| 1090 | thread = kthread_create(fcoe_percpu_receive_thread, |
| 1091 | (void *)p, "fcoethread/%d", cpu); |
| 1092 | |
Joe Eykholt | e7a5199 | 2009-08-25 14:04:08 -0700 | [diff] [blame] | 1093 | if (likely(!IS_ERR(thread))) { |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1094 | kthread_bind(thread, cpu); |
| 1095 | wake_up_process(thread); |
| 1096 | |
| 1097 | spin_lock_bh(&p->fcoe_rx_list.lock); |
| 1098 | p->thread = thread; |
| 1099 | spin_unlock_bh(&p->fcoe_rx_list.lock); |
| 1100 | } |
| 1101 | } |
| 1102 | |
| 1103 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1104 | * fcoe_percpu_thread_destroy() - Remove the receive thread of a CPU |
| 1105 | * @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] | 1106 | * |
| 1107 | * Destroys a per-CPU Rx thread. Any pending skbs are moved to the |
| 1108 | * current CPU's Rx thread. If the thread being destroyed is bound to |
| 1109 | * the CPU processing this context the skbs will be freed. |
| 1110 | */ |
| 1111 | static void fcoe_percpu_thread_destroy(unsigned int cpu) |
| 1112 | { |
| 1113 | struct fcoe_percpu_s *p; |
| 1114 | struct task_struct *thread; |
| 1115 | struct page *crc_eof; |
| 1116 | struct sk_buff *skb; |
| 1117 | #ifdef CONFIG_SMP |
| 1118 | struct fcoe_percpu_s *p0; |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1119 | unsigned targ_cpu = get_cpu(); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1120 | #endif /* CONFIG_SMP */ |
| 1121 | |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1122 | FCOE_DBG("Destroying receive thread for CPU %d\n", cpu); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1123 | |
| 1124 | /* Prevent any new skbs from being queued for this CPU. */ |
| 1125 | p = &per_cpu(fcoe_percpu, cpu); |
| 1126 | spin_lock_bh(&p->fcoe_rx_list.lock); |
| 1127 | thread = p->thread; |
| 1128 | p->thread = NULL; |
| 1129 | crc_eof = p->crc_eof_page; |
| 1130 | p->crc_eof_page = NULL; |
| 1131 | p->crc_eof_offset = 0; |
| 1132 | spin_unlock_bh(&p->fcoe_rx_list.lock); |
| 1133 | |
| 1134 | #ifdef CONFIG_SMP |
| 1135 | /* |
| 1136 | * Don't bother moving the skb's if this context is running |
| 1137 | * on the same CPU that is having its thread destroyed. This |
| 1138 | * can easily happen when the module is removed. |
| 1139 | */ |
| 1140 | if (cpu != targ_cpu) { |
| 1141 | p0 = &per_cpu(fcoe_percpu, targ_cpu); |
| 1142 | spin_lock_bh(&p0->fcoe_rx_list.lock); |
| 1143 | if (p0->thread) { |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1144 | FCOE_DBG("Moving frames from CPU %d to CPU %d\n", |
| 1145 | cpu, targ_cpu); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1146 | |
| 1147 | while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL) |
| 1148 | __skb_queue_tail(&p0->fcoe_rx_list, skb); |
| 1149 | spin_unlock_bh(&p0->fcoe_rx_list.lock); |
| 1150 | } else { |
| 1151 | /* |
| 1152 | * The targeted CPU is not initialized and cannot accept |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1153 | * new skbs. Unlock the targeted CPU and drop the skbs |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1154 | * on the CPU that is going offline. |
| 1155 | */ |
| 1156 | while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL) |
| 1157 | kfree_skb(skb); |
| 1158 | spin_unlock_bh(&p0->fcoe_rx_list.lock); |
| 1159 | } |
| 1160 | } else { |
| 1161 | /* |
| 1162 | * This scenario occurs when the module is being removed |
| 1163 | * and all threads are being destroyed. skbs will continue |
| 1164 | * to be shifted from the CPU thread that is being removed |
| 1165 | * to the CPU thread associated with the CPU that is processing |
| 1166 | * the module removal. Once there is only one CPU Rx thread it |
| 1167 | * will reach this case and we will drop all skbs and later |
| 1168 | * stop the thread. |
| 1169 | */ |
| 1170 | spin_lock_bh(&p->fcoe_rx_list.lock); |
| 1171 | while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL) |
| 1172 | kfree_skb(skb); |
| 1173 | spin_unlock_bh(&p->fcoe_rx_list.lock); |
| 1174 | } |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1175 | put_cpu(); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1176 | #else |
| 1177 | /* |
Chris Leech | dd3fd72 | 2009-04-21 16:27:36 -0700 | [diff] [blame] | 1178 | * This a non-SMP scenario where the singular Rx thread is |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1179 | * being removed. Free all skbs and stop the thread. |
| 1180 | */ |
| 1181 | spin_lock_bh(&p->fcoe_rx_list.lock); |
| 1182 | while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL) |
| 1183 | kfree_skb(skb); |
| 1184 | spin_unlock_bh(&p->fcoe_rx_list.lock); |
| 1185 | #endif |
| 1186 | |
| 1187 | if (thread) |
| 1188 | kthread_stop(thread); |
| 1189 | |
| 1190 | if (crc_eof) |
| 1191 | put_page(crc_eof); |
| 1192 | } |
| 1193 | |
| 1194 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1195 | * fcoe_cpu_callback() - Handler for CPU hotplug events |
| 1196 | * @nfb: The callback data block |
| 1197 | * @action: The event triggering the callback |
| 1198 | * @hcpu: The index of the CPU that the event is for |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1199 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1200 | * This creates or destroys per-CPU data for fcoe |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1201 | * |
| 1202 | * Returns NOTIFY_OK always. |
| 1203 | */ |
| 1204 | static int fcoe_cpu_callback(struct notifier_block *nfb, |
| 1205 | unsigned long action, void *hcpu) |
| 1206 | { |
| 1207 | unsigned cpu = (unsigned long)hcpu; |
| 1208 | |
| 1209 | switch (action) { |
| 1210 | case CPU_ONLINE: |
| 1211 | case CPU_ONLINE_FROZEN: |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1212 | FCOE_DBG("CPU %x online: Create Rx thread\n", cpu); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1213 | fcoe_percpu_thread_create(cpu); |
| 1214 | break; |
| 1215 | case CPU_DEAD: |
| 1216 | case CPU_DEAD_FROZEN: |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1217 | FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1218 | fcoe_percpu_thread_destroy(cpu); |
| 1219 | break; |
| 1220 | default: |
| 1221 | break; |
| 1222 | } |
| 1223 | return NOTIFY_OK; |
| 1224 | } |
| 1225 | |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1226 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1227 | * fcoe_rcv() - Receive packets from a net device |
| 1228 | * @skb: The received packet |
| 1229 | * @netdev: The net device that the packet was received on |
| 1230 | * @ptype: The packet type context |
| 1231 | * @olddev: The last device net device |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1232 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1233 | * This routine is called by NET_RX_SOFTIRQ. It receives a packet, builds a |
| 1234 | * FC frame and passes the frame to libfc. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1235 | * |
| 1236 | * Returns: 0 for success |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1237 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1238 | int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev, |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1239 | struct packet_type *ptype, struct net_device *olddev) |
| 1240 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1241 | struct fc_lport *lport; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1242 | struct fcoe_rcv_info *fr; |
Chris Leech | 259ad85 | 2009-08-25 13:59:41 -0700 | [diff] [blame] | 1243 | struct fcoe_interface *fcoe; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1244 | struct fc_frame_header *fh; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1245 | struct fcoe_percpu_s *fps; |
Vasu Dev | 519e513 | 2010-07-20 15:19:32 -0700 | [diff] [blame] | 1246 | struct ethhdr *eh; |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1247 | unsigned int cpu; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1248 | |
Chris Leech | 259ad85 | 2009-08-25 13:59:41 -0700 | [diff] [blame] | 1249 | fcoe = container_of(ptype, struct fcoe_interface, fcoe_packet_type); |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1250 | lport = fcoe->ctlr.lp; |
| 1251 | if (unlikely(!lport)) { |
| 1252 | FCOE_NETDEV_DBG(netdev, "Cannot find hba structure"); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1253 | goto err2; |
| 1254 | } |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1255 | if (!lport->link_up) |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 1256 | goto err2; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1257 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1258 | 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] | 1259 | "data:%p tail:%p end:%p sum:%d dev:%s", |
| 1260 | skb->len, skb->data_len, skb->head, skb->data, |
| 1261 | skb_tail_pointer(skb), skb_end_pointer(skb), |
| 1262 | skb->csum, skb->dev ? skb->dev->name : "<NULL>"); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1263 | |
Vasu Dev | 519e513 | 2010-07-20 15:19:32 -0700 | [diff] [blame] | 1264 | eh = eth_hdr(skb); |
Vasu Dev | 519e513 | 2010-07-20 15:19:32 -0700 | [diff] [blame] | 1265 | |
| 1266 | if (is_fip_mode(&fcoe->ctlr) && |
| 1267 | compare_ether_addr(eh->h_source, fcoe->ctlr.dest_addr)) { |
| 1268 | FCOE_NETDEV_DBG(netdev, "wrong source mac address:%pM\n", |
| 1269 | eh->h_source); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1270 | goto err; |
| 1271 | } |
| 1272 | |
| 1273 | /* |
| 1274 | * Check for minimum frame length, and make sure required FCoE |
| 1275 | * and FC headers are pulled into the linear data area. |
| 1276 | */ |
| 1277 | if (unlikely((skb->len < FCOE_MIN_FRAME) || |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1278 | !pskb_may_pull(skb, FCOE_HEADER_LEN))) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1279 | goto err; |
| 1280 | |
| 1281 | skb_set_transport_header(skb, sizeof(struct fcoe_hdr)); |
| 1282 | fh = (struct fc_frame_header *) skb_transport_header(skb); |
| 1283 | |
Robert Love | 0ee31cb | 2010-10-08 17:12:46 -0700 | [diff] [blame] | 1284 | if (ntoh24(&eh->h_dest[3]) != ntoh24(fh->fh_d_id)) { |
| 1285 | FCOE_NETDEV_DBG(netdev, "FC frame d_id mismatch with MAC:%pM\n", |
| 1286 | eh->h_dest); |
| 1287 | goto err; |
| 1288 | } |
| 1289 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1290 | fr = fcoe_dev_from_skb(skb); |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1291 | fr->fr_dev = lport; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1292 | fr->ptype = ptype; |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 1293 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1294 | /* |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1295 | * In case the incoming frame's exchange is originated from |
| 1296 | * the initiator, then received frame's exchange id is ANDed |
| 1297 | * with fc_cpu_mask bits to get the same cpu on which exchange |
| 1298 | * was originated, otherwise just use the current cpu. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1299 | */ |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1300 | if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX) |
| 1301 | cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask; |
| 1302 | else |
| 1303 | cpu = smp_processor_id(); |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 1304 | |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1305 | fps = &per_cpu(fcoe_percpu, cpu); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1306 | spin_lock_bh(&fps->fcoe_rx_list.lock); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1307 | if (unlikely(!fps->thread)) { |
| 1308 | /* |
| 1309 | * The targeted CPU is not ready, let's target |
| 1310 | * the first CPU now. For non-SMP systems this |
| 1311 | * will check the same CPU twice. |
| 1312 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1313 | FCOE_NETDEV_DBG(netdev, "CPU is online, but no receive thread " |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1314 | "ready for incoming skb- using first online " |
| 1315 | "CPU.\n"); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1316 | |
| 1317 | spin_unlock_bh(&fps->fcoe_rx_list.lock); |
Rusty Russell | 6957177 | 2009-12-17 11:43:14 -0600 | [diff] [blame] | 1318 | cpu = cpumask_first(cpu_online_mask); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1319 | fps = &per_cpu(fcoe_percpu, cpu); |
| 1320 | spin_lock_bh(&fps->fcoe_rx_list.lock); |
| 1321 | if (!fps->thread) { |
| 1322 | spin_unlock_bh(&fps->fcoe_rx_list.lock); |
| 1323 | goto err; |
| 1324 | } |
| 1325 | } |
| 1326 | |
| 1327 | /* |
| 1328 | * We now have a valid CPU that we're targeting for |
| 1329 | * this skb. We also have this receive thread locked, |
| 1330 | * so we're free to queue skbs into it's queue. |
| 1331 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1332 | |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1333 | /* If this is a SCSI-FCP frame, and this is already executing on the |
| 1334 | * correct CPU, and the queue for this CPU is empty, then go ahead |
| 1335 | * and process the frame directly in the softirq context. |
| 1336 | * This lets us process completions without context switching from the |
| 1337 | * NET_RX softirq, to our receive processing thread, and then back to |
| 1338 | * BLOCK softirq context. |
| 1339 | */ |
| 1340 | if (fh->fh_type == FC_TYPE_FCP && |
| 1341 | cpu == smp_processor_id() && |
| 1342 | skb_queue_empty(&fps->fcoe_rx_list)) { |
| 1343 | spin_unlock_bh(&fps->fcoe_rx_list.lock); |
| 1344 | fcoe_recv_frame(skb); |
| 1345 | } else { |
| 1346 | __skb_queue_tail(&fps->fcoe_rx_list, skb); |
| 1347 | if (fps->fcoe_rx_list.qlen == 1) |
| 1348 | wake_up_process(fps->thread); |
| 1349 | spin_unlock_bh(&fps->fcoe_rx_list.lock); |
| 1350 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1351 | |
| 1352 | return 0; |
| 1353 | err: |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1354 | per_cpu_ptr(lport->dev_stats, get_cpu())->ErrorFrames++; |
| 1355 | put_cpu(); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1356 | err2: |
| 1357 | kfree_skb(skb); |
| 1358 | return -1; |
| 1359 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1360 | |
| 1361 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1362 | * fcoe_start_io() - Start FCoE I/O |
| 1363 | * @skb: The packet to be transmitted |
| 1364 | * |
| 1365 | * This routine is called from the net device to start transmitting |
| 1366 | * FCoE packets. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1367 | * |
| 1368 | * Returns: 0 for success |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1369 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1370 | static inline int fcoe_start_io(struct sk_buff *skb) |
| 1371 | { |
Chris Leech | 18fa11e | 2009-11-03 11:50:05 -0800 | [diff] [blame] | 1372 | struct sk_buff *nskb; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1373 | int rc; |
| 1374 | |
Chris Leech | 18fa11e | 2009-11-03 11:50:05 -0800 | [diff] [blame] | 1375 | nskb = skb_clone(skb, GFP_ATOMIC); |
| 1376 | rc = dev_queue_xmit(nskb); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1377 | if (rc != 0) |
| 1378 | return rc; |
| 1379 | kfree_skb(skb); |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
| 1383 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1384 | * fcoe_get_paged_crc_eof() - Allocate a page to be used for the trailer CRC |
| 1385 | * @skb: The packet to be transmitted |
| 1386 | * @tlen: The total length of the trailer |
| 1387 | * |
| 1388 | * This routine allocates a page for frame trailers. The page is re-used if |
| 1389 | * there is enough room left on it for the current trailer. If there isn't |
| 1390 | * enough buffer left a new page is allocated for the trailer. Reference to |
| 1391 | * the page from this function as well as the skbs using the page fragments |
| 1392 | * ensure that the page is freed at the appropriate time. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1393 | * |
| 1394 | * Returns: 0 for success |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1395 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1396 | static int fcoe_get_paged_crc_eof(struct sk_buff *skb, int tlen) |
| 1397 | { |
| 1398 | struct fcoe_percpu_s *fps; |
| 1399 | struct page *page; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1400 | |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 1401 | fps = &get_cpu_var(fcoe_percpu); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1402 | page = fps->crc_eof_page; |
| 1403 | if (!page) { |
| 1404 | page = alloc_page(GFP_ATOMIC); |
| 1405 | if (!page) { |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 1406 | put_cpu_var(fcoe_percpu); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1407 | return -ENOMEM; |
| 1408 | } |
| 1409 | fps->crc_eof_page = page; |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 1410 | fps->crc_eof_offset = 0; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1411 | } |
| 1412 | |
| 1413 | get_page(page); |
| 1414 | skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, page, |
| 1415 | fps->crc_eof_offset, tlen); |
| 1416 | skb->len += tlen; |
| 1417 | skb->data_len += tlen; |
| 1418 | skb->truesize += tlen; |
| 1419 | fps->crc_eof_offset += sizeof(struct fcoe_crc_eof); |
| 1420 | |
| 1421 | if (fps->crc_eof_offset >= PAGE_SIZE) { |
| 1422 | fps->crc_eof_page = NULL; |
| 1423 | fps->crc_eof_offset = 0; |
| 1424 | put_page(page); |
| 1425 | } |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 1426 | put_cpu_var(fcoe_percpu); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1427 | return 0; |
| 1428 | } |
| 1429 | |
| 1430 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1431 | * fcoe_fc_crc() - Calculates the CRC for a given frame |
| 1432 | * @fp: The frame to be checksumed |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1433 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1434 | * This uses crc32() routine to calculate the CRC for a frame |
| 1435 | * |
| 1436 | * Return: The 32 bit CRC value |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1437 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1438 | u32 fcoe_fc_crc(struct fc_frame *fp) |
| 1439 | { |
| 1440 | struct sk_buff *skb = fp_skb(fp); |
| 1441 | struct skb_frag_struct *frag; |
| 1442 | unsigned char *data; |
| 1443 | unsigned long off, len, clen; |
| 1444 | u32 crc; |
| 1445 | unsigned i; |
| 1446 | |
| 1447 | crc = crc32(~0, skb->data, skb_headlen(skb)); |
| 1448 | |
| 1449 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
| 1450 | frag = &skb_shinfo(skb)->frags[i]; |
| 1451 | off = frag->page_offset; |
| 1452 | len = frag->size; |
| 1453 | while (len > 0) { |
| 1454 | clen = min(len, PAGE_SIZE - (off & ~PAGE_MASK)); |
| 1455 | data = kmap_atomic(frag->page + (off >> PAGE_SHIFT), |
| 1456 | KM_SKB_DATA_SOFTIRQ); |
| 1457 | crc = crc32(crc, data + (off & ~PAGE_MASK), clen); |
| 1458 | kunmap_atomic(data, KM_SKB_DATA_SOFTIRQ); |
| 1459 | off += clen; |
| 1460 | len -= clen; |
| 1461 | } |
| 1462 | } |
| 1463 | return crc; |
| 1464 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1465 | |
| 1466 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1467 | * fcoe_xmit() - Transmit a FCoE frame |
| 1468 | * @lport: The local port that the frame is to be transmitted for |
| 1469 | * @fp: The frame to be transmitted |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1470 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1471 | * Return: 0 for success |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1472 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1473 | int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1474 | { |
Vasu Dev | 4bb6b51 | 2009-05-06 10:52:34 -0700 | [diff] [blame] | 1475 | int wlen; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1476 | u32 crc; |
| 1477 | struct ethhdr *eh; |
| 1478 | struct fcoe_crc_eof *cp; |
| 1479 | struct sk_buff *skb; |
| 1480 | struct fcoe_dev_stats *stats; |
| 1481 | struct fc_frame_header *fh; |
| 1482 | unsigned int hlen; /* header length implies the version */ |
| 1483 | unsigned int tlen; /* trailer length */ |
| 1484 | unsigned int elen; /* eth header, may include vlan */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1485 | struct fcoe_port *port = lport_priv(lport); |
Chris Leech | 3fe9a0b | 2009-08-25 13:59:46 -0700 | [diff] [blame] | 1486 | struct fcoe_interface *fcoe = port->fcoe; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1487 | u8 sof, eof; |
| 1488 | struct fcoe_hdr *hp; |
| 1489 | |
| 1490 | WARN_ON((fr_len(fp) % sizeof(u32)) != 0); |
| 1491 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1492 | fh = fc_frame_header_get(fp); |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 1493 | skb = fp_skb(fp); |
| 1494 | wlen = skb->len / FCOE_WORD_TO_BYTE; |
| 1495 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1496 | if (!lport->link_up) { |
Dan Carpenter | 3caf02e | 2009-04-21 16:27:25 -0700 | [diff] [blame] | 1497 | kfree_skb(skb); |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 1498 | return 0; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1499 | } |
| 1500 | |
Joe Eykholt | 9860eeb | 2010-03-12 16:07:52 -0800 | [diff] [blame] | 1501 | if (unlikely(fh->fh_type == FC_TYPE_ELS) && |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1502 | fcoe_ctlr_els_send(&fcoe->ctlr, lport, skb)) |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 1503 | return 0; |
| 1504 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1505 | sof = fr_sof(fp); |
| 1506 | eof = fr_eof(fp); |
| 1507 | |
Vasu Dev | 4e57e1c | 2009-05-06 10:52:46 -0700 | [diff] [blame] | 1508 | elen = sizeof(struct ethhdr); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1509 | hlen = sizeof(struct fcoe_hdr); |
| 1510 | tlen = sizeof(struct fcoe_crc_eof); |
| 1511 | wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE; |
| 1512 | |
| 1513 | /* crc offload */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1514 | if (likely(lport->crc_offload)) { |
Yi Zou | 39ca9a0 | 2009-02-27 14:07:15 -0800 | [diff] [blame] | 1515 | skb->ip_summed = CHECKSUM_PARTIAL; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1516 | skb->csum_start = skb_headroom(skb); |
| 1517 | skb->csum_offset = skb->len; |
| 1518 | crc = 0; |
| 1519 | } else { |
| 1520 | skb->ip_summed = CHECKSUM_NONE; |
| 1521 | crc = fcoe_fc_crc(fp); |
| 1522 | } |
| 1523 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1524 | /* copy port crc and eof to the skb buff */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1525 | if (skb_is_nonlinear(skb)) { |
| 1526 | skb_frag_t *frag; |
| 1527 | if (fcoe_get_paged_crc_eof(skb, tlen)) { |
Roel Kluin | e904158 | 2009-02-27 10:56:22 -0800 | [diff] [blame] | 1528 | kfree_skb(skb); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1529 | return -ENOMEM; |
| 1530 | } |
| 1531 | frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1]; |
| 1532 | cp = kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ) |
| 1533 | + frag->page_offset; |
| 1534 | } else { |
| 1535 | cp = (struct fcoe_crc_eof *)skb_put(skb, tlen); |
| 1536 | } |
| 1537 | |
| 1538 | memset(cp, 0, sizeof(*cp)); |
| 1539 | cp->fcoe_eof = eof; |
| 1540 | cp->fcoe_crc32 = cpu_to_le32(~crc); |
| 1541 | |
| 1542 | if (skb_is_nonlinear(skb)) { |
| 1543 | kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ); |
| 1544 | cp = NULL; |
| 1545 | } |
| 1546 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1547 | /* adjust skb network/transport offsets to match mac/fcoe/port */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1548 | skb_push(skb, elen + hlen); |
| 1549 | skb_reset_mac_header(skb); |
| 1550 | skb_reset_network_header(skb); |
| 1551 | skb->mac_len = elen; |
Yi Zou | 211c738 | 2009-02-27 14:06:37 -0800 | [diff] [blame] | 1552 | skb->protocol = htons(ETH_P_FCOE); |
Chris Leech | 3fe9a0b | 2009-08-25 13:59:46 -0700 | [diff] [blame] | 1553 | skb->dev = fcoe->netdev; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1554 | |
| 1555 | /* fill up mac and fcoe headers */ |
| 1556 | eh = eth_hdr(skb); |
| 1557 | eh->h_proto = htons(ETH_P_FCOE); |
Joe Eykholt | cd229e4 | 2010-07-20 15:20:40 -0700 | [diff] [blame] | 1558 | memcpy(eh->h_dest, fcoe->ctlr.dest_addr, ETH_ALEN); |
Chris Leech | 3fe9a0b | 2009-08-25 13:59:46 -0700 | [diff] [blame] | 1559 | if (fcoe->ctlr.map_dest) |
Joe Eykholt | cd229e4 | 2010-07-20 15:20:40 -0700 | [diff] [blame] | 1560 | memcpy(eh->h_dest + 3, fh->fh_d_id, 3); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1561 | |
Chris Leech | 3fe9a0b | 2009-08-25 13:59:46 -0700 | [diff] [blame] | 1562 | if (unlikely(fcoe->ctlr.flogi_oxid != FC_XID_UNKNOWN)) |
| 1563 | memcpy(eh->h_source, fcoe->ctlr.ctl_src_addr, ETH_ALEN); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1564 | else |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 1565 | memcpy(eh->h_source, port->data_src_addr, ETH_ALEN); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1566 | |
| 1567 | hp = (struct fcoe_hdr *)(eh + 1); |
| 1568 | memset(hp, 0, sizeof(*hp)); |
| 1569 | if (FC_FCOE_VER) |
| 1570 | FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER); |
| 1571 | hp->fcoe_sof = sof; |
| 1572 | |
Yi Zou | 39ca9a0 | 2009-02-27 14:07:15 -0800 | [diff] [blame] | 1573 | /* 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] | 1574 | if (lport->seq_offload && fr_max_payload(fp)) { |
Yi Zou | 39ca9a0 | 2009-02-27 14:07:15 -0800 | [diff] [blame] | 1575 | skb_shinfo(skb)->gso_type = SKB_GSO_FCOE; |
| 1576 | skb_shinfo(skb)->gso_size = fr_max_payload(fp); |
| 1577 | } else { |
| 1578 | skb_shinfo(skb)->gso_type = 0; |
| 1579 | skb_shinfo(skb)->gso_size = 0; |
| 1580 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1581 | /* update tx stats: regardless if LLD fails */ |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1582 | stats = per_cpu_ptr(lport->dev_stats, get_cpu()); |
Robert Love | 582b45b | 2009-03-31 15:51:50 -0700 | [diff] [blame] | 1583 | stats->TxFrames++; |
| 1584 | stats->TxWords += wlen; |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1585 | put_cpu(); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1586 | |
| 1587 | /* send down to lld */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1588 | fr_dev(fp) = lport; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1589 | if (port->fcoe_pending_queue.qlen) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1590 | fcoe_check_wait_queue(lport, skb); |
Vasu Dev | 4bb6b51 | 2009-05-06 10:52:34 -0700 | [diff] [blame] | 1591 | else if (fcoe_start_io(skb)) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1592 | fcoe_check_wait_queue(lport, skb); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1593 | |
| 1594 | return 0; |
| 1595 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1596 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1597 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1598 | * fcoe_percpu_flush_done() - Indicate per-CPU queue flush completion |
| 1599 | * @skb: The completed skb (argument required by destructor) |
Joe Eykholt | e7a5199 | 2009-08-25 14:04:08 -0700 | [diff] [blame] | 1600 | */ |
| 1601 | static void fcoe_percpu_flush_done(struct sk_buff *skb) |
| 1602 | { |
| 1603 | complete(&fcoe_flush_completion); |
| 1604 | } |
| 1605 | |
| 1606 | /** |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1607 | * fcoe_recv_frame() - process a single received frame |
| 1608 | * @skb: frame to process |
| 1609 | */ |
| 1610 | static void fcoe_recv_frame(struct sk_buff *skb) |
| 1611 | { |
| 1612 | u32 fr_len; |
| 1613 | struct fc_lport *lport; |
| 1614 | struct fcoe_rcv_info *fr; |
| 1615 | struct fcoe_dev_stats *stats; |
| 1616 | struct fc_frame_header *fh; |
| 1617 | struct fcoe_crc_eof crc_eof; |
| 1618 | struct fc_frame *fp; |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1619 | struct fcoe_port *port; |
| 1620 | struct fcoe_hdr *hp; |
| 1621 | |
| 1622 | fr = fcoe_dev_from_skb(skb); |
| 1623 | lport = fr->fr_dev; |
| 1624 | if (unlikely(!lport)) { |
| 1625 | if (skb->destructor != fcoe_percpu_flush_done) |
| 1626 | FCOE_NETDEV_DBG(skb->dev, "NULL lport in skb"); |
| 1627 | kfree_skb(skb); |
| 1628 | return; |
| 1629 | } |
| 1630 | |
| 1631 | FCOE_NETDEV_DBG(skb->dev, "skb_info: len:%d data_len:%d " |
| 1632 | "head:%p data:%p tail:%p end:%p sum:%d dev:%s", |
| 1633 | skb->len, skb->data_len, |
| 1634 | skb->head, skb->data, skb_tail_pointer(skb), |
| 1635 | skb_end_pointer(skb), skb->csum, |
| 1636 | skb->dev ? skb->dev->name : "<NULL>"); |
| 1637 | |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1638 | port = lport_priv(lport); |
| 1639 | if (skb_is_nonlinear(skb)) |
| 1640 | skb_linearize(skb); /* not ideal */ |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1641 | |
| 1642 | /* |
| 1643 | * Frame length checks and setting up the header pointers |
| 1644 | * was done in fcoe_rcv already. |
| 1645 | */ |
| 1646 | hp = (struct fcoe_hdr *) skb_network_header(skb); |
| 1647 | fh = (struct fc_frame_header *) skb_transport_header(skb); |
| 1648 | |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1649 | stats = per_cpu_ptr(lport->dev_stats, get_cpu()); |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1650 | if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) { |
| 1651 | if (stats->ErrorFrames < 5) |
| 1652 | printk(KERN_WARNING "fcoe: FCoE version " |
| 1653 | "mismatch: The frame has " |
| 1654 | "version %x, but the " |
| 1655 | "initiator supports version " |
| 1656 | "%x\n", FC_FCOE_DECAPS_VER(hp), |
| 1657 | FC_FCOE_VER); |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1658 | goto drop; |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1659 | } |
| 1660 | |
| 1661 | skb_pull(skb, sizeof(struct fcoe_hdr)); |
| 1662 | fr_len = skb->len - sizeof(struct fcoe_crc_eof); |
| 1663 | |
| 1664 | stats->RxFrames++; |
| 1665 | stats->RxWords += fr_len / FCOE_WORD_TO_BYTE; |
| 1666 | |
| 1667 | fp = (struct fc_frame *)skb; |
| 1668 | fc_frame_init(fp); |
| 1669 | fr_dev(fp) = lport; |
| 1670 | fr_sof(fp) = hp->fcoe_sof; |
| 1671 | |
| 1672 | /* Copy out the CRC and EOF trailer for access */ |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1673 | if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof))) |
| 1674 | goto drop; |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1675 | fr_eof(fp) = crc_eof.fcoe_eof; |
| 1676 | fr_crc(fp) = crc_eof.fcoe_crc32; |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1677 | if (pskb_trim(skb, fr_len)) |
| 1678 | goto drop; |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1679 | |
| 1680 | /* |
| 1681 | * We only check CRC if no offload is available and if it is |
| 1682 | * it's solicited data, in which case, the FCP layer would |
| 1683 | * check it during the copy. |
| 1684 | */ |
| 1685 | if (lport->crc_offload && |
| 1686 | skb->ip_summed == CHECKSUM_UNNECESSARY) |
| 1687 | fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED; |
| 1688 | else |
| 1689 | fr_flags(fp) |= FCPHF_CRC_UNCHECKED; |
| 1690 | |
| 1691 | fh = fc_frame_header_get(fp); |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1692 | if ((fh->fh_r_ctl != FC_RCTL_DD_SOL_DATA || |
| 1693 | fh->fh_type != FC_TYPE_FCP) && |
| 1694 | (fr_flags(fp) & FCPHF_CRC_UNCHECKED)) { |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1695 | if (le32_to_cpu(fr_crc(fp)) != |
| 1696 | ~crc32(~0, skb->data, fr_len)) { |
| 1697 | if (stats->InvalidCRCCount < 5) |
| 1698 | printk(KERN_WARNING "fcoe: dropping " |
| 1699 | "frame with CRC error\n"); |
| 1700 | stats->InvalidCRCCount++; |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1701 | goto drop; |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1702 | } |
| 1703 | fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED; |
| 1704 | } |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1705 | put_cpu(); |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1706 | fc_exch_recv(lport, fp); |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1707 | return; |
| 1708 | |
| 1709 | drop: |
| 1710 | stats->ErrorFrames++; |
| 1711 | put_cpu(); |
| 1712 | kfree_skb(skb); |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1713 | } |
| 1714 | |
| 1715 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1716 | * fcoe_percpu_receive_thread() - The per-CPU packet receive thread |
| 1717 | * @arg: The per-CPU context |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1718 | * |
| 1719 | * Return: 0 for success |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1720 | */ |
| 1721 | int fcoe_percpu_receive_thread(void *arg) |
| 1722 | { |
| 1723 | struct fcoe_percpu_s *p = arg; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1724 | struct sk_buff *skb; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1725 | |
Robert Love | 4469c19 | 2009-02-27 10:56:38 -0800 | [diff] [blame] | 1726 | set_user_nice(current, -20); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1727 | |
| 1728 | while (!kthread_should_stop()) { |
| 1729 | |
| 1730 | spin_lock_bh(&p->fcoe_rx_list.lock); |
| 1731 | while ((skb = __skb_dequeue(&p->fcoe_rx_list)) == NULL) { |
| 1732 | set_current_state(TASK_INTERRUPTIBLE); |
| 1733 | spin_unlock_bh(&p->fcoe_rx_list.lock); |
| 1734 | schedule(); |
| 1735 | set_current_state(TASK_RUNNING); |
| 1736 | if (kthread_should_stop()) |
| 1737 | return 0; |
| 1738 | spin_lock_bh(&p->fcoe_rx_list.lock); |
| 1739 | } |
| 1740 | spin_unlock_bh(&p->fcoe_rx_list.lock); |
Chris Leech | 859b7b6 | 2009-11-20 14:54:47 -0800 | [diff] [blame] | 1741 | fcoe_recv_frame(skb); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1742 | } |
| 1743 | return 0; |
| 1744 | } |
| 1745 | |
| 1746 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1747 | * fcoe_check_wait_queue() - Attempt to clear the transmit backlog |
| 1748 | * @lport: The local port whose backlog is to be cleared |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1749 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1750 | * This empties the wait_queue, dequeues the head of the wait_queue queue |
| 1751 | * and calls fcoe_start_io() for each packet. If all skb have been |
| 1752 | * transmitted it returns the qlen. If an error occurs it restores |
| 1753 | * wait_queue (to try again later) and returns -1. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1754 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1755 | * The wait_queue is used when the skb transmit fails. The failed skb |
| 1756 | * 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] | 1757 | * by the next skb transmit. |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1758 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1759 | 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] | 1760 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1761 | struct fcoe_port *port = lport_priv(lport); |
Vasu Dev | 4bb6b51 | 2009-05-06 10:52:34 -0700 | [diff] [blame] | 1762 | int rc; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1763 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1764 | spin_lock_bh(&port->fcoe_pending_queue.lock); |
Vasu Dev | 4bb6b51 | 2009-05-06 10:52:34 -0700 | [diff] [blame] | 1765 | |
| 1766 | if (skb) |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1767 | __skb_queue_tail(&port->fcoe_pending_queue, skb); |
Vasu Dev | 4bb6b51 | 2009-05-06 10:52:34 -0700 | [diff] [blame] | 1768 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1769 | if (port->fcoe_pending_queue_active) |
Vasu Dev | c826a31 | 2009-02-27 10:56:27 -0800 | [diff] [blame] | 1770 | goto out; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1771 | port->fcoe_pending_queue_active = 1; |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1772 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1773 | while (port->fcoe_pending_queue.qlen) { |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1774 | /* keep qlen > 0 until fcoe_start_io succeeds */ |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1775 | port->fcoe_pending_queue.qlen++; |
| 1776 | skb = __skb_dequeue(&port->fcoe_pending_queue); |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1777 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1778 | spin_unlock_bh(&port->fcoe_pending_queue.lock); |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1779 | rc = fcoe_start_io(skb); |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1780 | spin_lock_bh(&port->fcoe_pending_queue.lock); |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1781 | |
| 1782 | if (rc) { |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1783 | __skb_queue_head(&port->fcoe_pending_queue, skb); |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1784 | /* undo temporary increment above */ |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1785 | port->fcoe_pending_queue.qlen--; |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1786 | break; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1787 | } |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1788 | /* undo temporary increment above */ |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1789 | port->fcoe_pending_queue.qlen--; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1790 | } |
Chris Leech | 55c8baf | 2009-02-27 10:56:32 -0800 | [diff] [blame] | 1791 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1792 | if (port->fcoe_pending_queue.qlen < FCOE_LOW_QUEUE_DEPTH) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1793 | lport->qfull = 0; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1794 | if (port->fcoe_pending_queue.qlen && !timer_pending(&port->timer)) |
| 1795 | mod_timer(&port->timer, jiffies + 2); |
| 1796 | port->fcoe_pending_queue_active = 0; |
Vasu Dev | c826a31 | 2009-02-27 10:56:27 -0800 | [diff] [blame] | 1797 | out: |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1798 | if (port->fcoe_pending_queue.qlen > FCOE_MAX_QUEUE_DEPTH) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1799 | lport->qfull = 1; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1800 | spin_unlock_bh(&port->fcoe_pending_queue.lock); |
Vasu Dev | 4bb6b51 | 2009-05-06 10:52:34 -0700 | [diff] [blame] | 1801 | return; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1802 | } |
| 1803 | |
| 1804 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1805 | * fcoe_dev_setup() - Setup the link change notification interface |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1806 | */ |
Randy Dunlap | b0d428a | 2009-04-27 21:49:31 -0700 | [diff] [blame] | 1807 | static void fcoe_dev_setup(void) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1808 | { |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1809 | register_netdevice_notifier(&fcoe_notifier); |
| 1810 | } |
| 1811 | |
| 1812 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1813 | * fcoe_dev_cleanup() - Cleanup the link change notification interface |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1814 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1815 | static void fcoe_dev_cleanup(void) |
| 1816 | { |
| 1817 | unregister_netdevice_notifier(&fcoe_notifier); |
| 1818 | } |
| 1819 | |
| 1820 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1821 | * fcoe_device_notification() - Handler for net device events |
| 1822 | * @notifier: The context of the notification |
| 1823 | * @event: The type of event |
| 1824 | * @ptr: The net device that the event was on |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1825 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1826 | * 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] | 1827 | * |
| 1828 | * Returns: 0 for success |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1829 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1830 | static int fcoe_device_notification(struct notifier_block *notifier, |
| 1831 | ulong event, void *ptr) |
| 1832 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1833 | struct fc_lport *lport = NULL; |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 1834 | struct net_device *netdev = ptr; |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1835 | struct fcoe_interface *fcoe; |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 1836 | struct fcoe_port *port; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1837 | struct fcoe_dev_stats *stats; |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 1838 | u32 link_possible = 1; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1839 | u32 mfs; |
| 1840 | int rc = NOTIFY_OK; |
| 1841 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 1842 | list_for_each_entry(fcoe, &fcoe_hostlist, list) { |
Chris Leech | 2502498 | 2009-08-25 13:59:35 -0700 | [diff] [blame] | 1843 | if (fcoe->netdev == netdev) { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1844 | lport = fcoe->ctlr.lp; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1845 | break; |
| 1846 | } |
| 1847 | } |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1848 | if (!lport) { |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1849 | rc = NOTIFY_DONE; |
| 1850 | goto out; |
| 1851 | } |
| 1852 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1853 | switch (event) { |
| 1854 | case NETDEV_DOWN: |
| 1855 | case NETDEV_GOING_DOWN: |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 1856 | link_possible = 0; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1857 | break; |
| 1858 | case NETDEV_UP: |
| 1859 | case NETDEV_CHANGE: |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1860 | break; |
| 1861 | case NETDEV_CHANGEMTU: |
Yi Zou | 7221d7e | 2009-10-21 16:27:52 -0700 | [diff] [blame] | 1862 | if (netdev->features & NETIF_F_FCOE_MTU) |
| 1863 | break; |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 1864 | mfs = netdev->mtu - (sizeof(struct fcoe_hdr) + |
| 1865 | sizeof(struct fcoe_crc_eof)); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1866 | if (mfs >= FC_MIN_MAX_FRAME) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1867 | fc_set_mfs(lport, mfs); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1868 | break; |
| 1869 | case NETDEV_REGISTER: |
| 1870 | break; |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 1871 | case NETDEV_UNREGISTER: |
| 1872 | list_del(&fcoe->list); |
| 1873 | port = lport_priv(fcoe->ctlr.lp); |
| 1874 | fcoe_interface_cleanup(fcoe); |
| 1875 | schedule_work(&port->destroy_work); |
| 1876 | goto out; |
| 1877 | break; |
Yi Zou | 54a5b21 | 2010-07-20 15:21:17 -0700 | [diff] [blame] | 1878 | case NETDEV_FEAT_CHANGE: |
| 1879 | fcoe_netdev_features_change(lport, netdev); |
| 1880 | break; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1881 | default: |
Vasu Dev | 1d1b88d | 2009-07-29 17:05:45 -0700 | [diff] [blame] | 1882 | FCOE_NETDEV_DBG(netdev, "Unknown event %ld " |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 1883 | "from netdev netlink\n", event); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1884 | } |
Robert Love | 5e4f8fe | 2010-05-07 15:18:35 -0700 | [diff] [blame] | 1885 | |
| 1886 | fcoe_link_speed_update(lport); |
| 1887 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1888 | if (link_possible && !fcoe_link_ok(lport)) |
Chris Leech | 3fe9a0b | 2009-08-25 13:59:46 -0700 | [diff] [blame] | 1889 | fcoe_ctlr_link_up(&fcoe->ctlr); |
| 1890 | else if (fcoe_ctlr_link_down(&fcoe->ctlr)) { |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1891 | stats = per_cpu_ptr(lport->dev_stats, get_cpu()); |
Joe Eykholt | 97c8389 | 2009-03-17 11:42:40 -0700 | [diff] [blame] | 1892 | stats->LinkFailureCount++; |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 1893 | put_cpu(); |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1894 | fcoe_clean_pending_queue(lport); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1895 | } |
| 1896 | out: |
| 1897 | return rc; |
| 1898 | } |
| 1899 | |
| 1900 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1901 | * fcoe_if_to_netdev() - Parse a name buffer to get a net device |
| 1902 | * @buffer: The name of the net device |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1903 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 1904 | * Returns: NULL or a ptr to net_device |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 1905 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 1906 | static struct net_device *fcoe_if_to_netdev(const char *buffer) |
| 1907 | { |
| 1908 | char *cp; |
| 1909 | char ifname[IFNAMSIZ + 2]; |
| 1910 | |
| 1911 | if (buffer) { |
| 1912 | strlcpy(ifname, buffer, IFNAMSIZ); |
| 1913 | cp = ifname + strlen(ifname); |
| 1914 | while (--cp >= ifname && *cp == '\n') |
| 1915 | *cp = '\0'; |
| 1916 | return dev_get_by_name(&init_net, ifname); |
| 1917 | } |
| 1918 | return NULL; |
| 1919 | } |
| 1920 | |
| 1921 | /** |
Vasu Dev | 55a66d3 | 2009-12-10 09:59:31 -0800 | [diff] [blame] | 1922 | * fcoe_disable() - Disables a FCoE interface |
| 1923 | * @buffer: The name of the Ethernet interface to be disabled |
| 1924 | * @kp: The associated kernel parameter |
| 1925 | * |
| 1926 | * Called from sysfs. |
| 1927 | * |
| 1928 | * Returns: 0 for success |
| 1929 | */ |
| 1930 | static int fcoe_disable(const char *buffer, struct kernel_param *kp) |
| 1931 | { |
| 1932 | struct fcoe_interface *fcoe; |
| 1933 | struct net_device *netdev; |
| 1934 | int rc = 0; |
| 1935 | |
| 1936 | mutex_lock(&fcoe_config_mutex); |
| 1937 | #ifdef CONFIG_FCOE_MODULE |
| 1938 | /* |
| 1939 | * Make sure the module has been initialized, and is not about to be |
| 1940 | * removed. Module paramter sysfs files are writable before the |
| 1941 | * module_init function is called and after module_exit. |
| 1942 | */ |
| 1943 | if (THIS_MODULE->state != MODULE_STATE_LIVE) { |
| 1944 | rc = -ENODEV; |
| 1945 | goto out_nodev; |
| 1946 | } |
| 1947 | #endif |
| 1948 | |
| 1949 | netdev = fcoe_if_to_netdev(buffer); |
| 1950 | if (!netdev) { |
| 1951 | rc = -ENODEV; |
| 1952 | goto out_nodev; |
| 1953 | } |
| 1954 | |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 1955 | if (!rtnl_trylock()) { |
| 1956 | dev_put(netdev); |
| 1957 | mutex_unlock(&fcoe_config_mutex); |
| 1958 | return restart_syscall(); |
| 1959 | } |
| 1960 | |
Vasu Dev | 55a66d3 | 2009-12-10 09:59:31 -0800 | [diff] [blame] | 1961 | fcoe = fcoe_hostlist_lookup_port(netdev); |
| 1962 | rtnl_unlock(); |
| 1963 | |
Chris Leech | 9ee50e4 | 2010-04-09 14:22:23 -0700 | [diff] [blame] | 1964 | if (fcoe) { |
Chris Leech | 9ee50e4 | 2010-04-09 14:22:23 -0700 | [diff] [blame] | 1965 | fcoe_ctlr_link_down(&fcoe->ctlr); |
Vasu Dev | 9d4cbc0 | 2010-07-20 15:19:26 -0700 | [diff] [blame] | 1966 | fcoe_clean_pending_queue(fcoe->ctlr.lp); |
Chris Leech | 9ee50e4 | 2010-04-09 14:22:23 -0700 | [diff] [blame] | 1967 | } else |
Vasu Dev | 55a66d3 | 2009-12-10 09:59:31 -0800 | [diff] [blame] | 1968 | rc = -ENODEV; |
| 1969 | |
| 1970 | dev_put(netdev); |
| 1971 | out_nodev: |
| 1972 | mutex_unlock(&fcoe_config_mutex); |
| 1973 | return rc; |
| 1974 | } |
| 1975 | |
| 1976 | /** |
| 1977 | * fcoe_enable() - Enables a FCoE interface |
| 1978 | * @buffer: The name of the Ethernet interface to be enabled |
| 1979 | * @kp: The associated kernel parameter |
| 1980 | * |
| 1981 | * Called from sysfs. |
| 1982 | * |
| 1983 | * Returns: 0 for success |
| 1984 | */ |
| 1985 | static int fcoe_enable(const char *buffer, struct kernel_param *kp) |
| 1986 | { |
| 1987 | struct fcoe_interface *fcoe; |
| 1988 | struct net_device *netdev; |
| 1989 | int rc = 0; |
| 1990 | |
| 1991 | mutex_lock(&fcoe_config_mutex); |
| 1992 | #ifdef CONFIG_FCOE_MODULE |
| 1993 | /* |
| 1994 | * Make sure the module has been initialized, and is not about to be |
| 1995 | * removed. Module paramter sysfs files are writable before the |
| 1996 | * module_init function is called and after module_exit. |
| 1997 | */ |
| 1998 | if (THIS_MODULE->state != MODULE_STATE_LIVE) { |
| 1999 | rc = -ENODEV; |
| 2000 | goto out_nodev; |
| 2001 | } |
| 2002 | #endif |
| 2003 | |
| 2004 | netdev = fcoe_if_to_netdev(buffer); |
| 2005 | if (!netdev) { |
| 2006 | rc = -ENODEV; |
| 2007 | goto out_nodev; |
| 2008 | } |
| 2009 | |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 2010 | if (!rtnl_trylock()) { |
| 2011 | dev_put(netdev); |
| 2012 | mutex_unlock(&fcoe_config_mutex); |
| 2013 | return restart_syscall(); |
| 2014 | } |
| 2015 | |
Vasu Dev | 55a66d3 | 2009-12-10 09:59:31 -0800 | [diff] [blame] | 2016 | fcoe = fcoe_hostlist_lookup_port(netdev); |
| 2017 | rtnl_unlock(); |
| 2018 | |
Vasu Dev | 9d4cbc0 | 2010-07-20 15:19:26 -0700 | [diff] [blame] | 2019 | if (!fcoe) |
Vasu Dev | 55a66d3 | 2009-12-10 09:59:31 -0800 | [diff] [blame] | 2020 | rc = -ENODEV; |
Vasu Dev | 9d4cbc0 | 2010-07-20 15:19:26 -0700 | [diff] [blame] | 2021 | else if (!fcoe_link_ok(fcoe->ctlr.lp)) |
| 2022 | fcoe_ctlr_link_up(&fcoe->ctlr); |
Vasu Dev | 55a66d3 | 2009-12-10 09:59:31 -0800 | [diff] [blame] | 2023 | |
| 2024 | dev_put(netdev); |
| 2025 | out_nodev: |
| 2026 | mutex_unlock(&fcoe_config_mutex); |
| 2027 | return rc; |
| 2028 | } |
| 2029 | |
| 2030 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2031 | * fcoe_destroy() - Destroy a FCoE interface |
| 2032 | * @buffer: The name of the Ethernet interface to be destroyed |
| 2033 | * @kp: The associated kernel parameter |
| 2034 | * |
| 2035 | * Called from sysfs. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2036 | * |
| 2037 | * Returns: 0 for success |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2038 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2039 | static int fcoe_destroy(const char *buffer, struct kernel_param *kp) |
| 2040 | { |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 2041 | struct fcoe_interface *fcoe; |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2042 | struct net_device *netdev; |
Mike Christie | 8eca355 | 2009-10-21 16:27:44 -0700 | [diff] [blame] | 2043 | int rc = 0; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2044 | |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2045 | mutex_lock(&fcoe_config_mutex); |
| 2046 | #ifdef CONFIG_FCOE_MODULE |
| 2047 | /* |
| 2048 | * Make sure the module has been initialized, and is not about to be |
| 2049 | * removed. Module paramter sysfs files are writable before the |
| 2050 | * module_init function is called and after module_exit. |
| 2051 | */ |
| 2052 | if (THIS_MODULE->state != MODULE_STATE_LIVE) { |
| 2053 | rc = -ENODEV; |
| 2054 | goto out_nodev; |
| 2055 | } |
| 2056 | #endif |
| 2057 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2058 | netdev = fcoe_if_to_netdev(buffer); |
| 2059 | if (!netdev) { |
| 2060 | rc = -ENODEV; |
| 2061 | goto out_nodev; |
| 2062 | } |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2063 | |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 2064 | if (!rtnl_trylock()) { |
| 2065 | dev_put(netdev); |
| 2066 | mutex_unlock(&fcoe_config_mutex); |
| 2067 | return restart_syscall(); |
| 2068 | } |
| 2069 | |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2070 | fcoe = fcoe_hostlist_lookup_port(netdev); |
| 2071 | if (!fcoe) { |
Chris Leech | 090eb6c | 2009-08-25 14:00:28 -0700 | [diff] [blame] | 2072 | rtnl_unlock(); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2073 | rc = -ENODEV; |
| 2074 | goto out_putdev; |
| 2075 | } |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2076 | fcoe_interface_cleanup(fcoe); |
Yi Zou | 54a5b21 | 2010-07-20 15:21:17 -0700 | [diff] [blame] | 2077 | list_del(&fcoe->list); |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 2078 | /* RTNL mutex is dropped by fcoe_if_destroy */ |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2079 | fcoe_if_destroy(fcoe->ctlr.lp); |
Rob Love | 6409ea6 | 2010-01-21 10:16:05 -0800 | [diff] [blame] | 2080 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2081 | out_putdev: |
| 2082 | dev_put(netdev); |
| 2083 | out_nodev: |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2084 | mutex_unlock(&fcoe_config_mutex); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2085 | return rc; |
| 2086 | } |
| 2087 | |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2088 | /** |
| 2089 | * fcoe_destroy_work() - Destroy a FCoE port in a deferred work context |
| 2090 | * @work: Handle to the FCoE port to be destroyed |
| 2091 | */ |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2092 | static void fcoe_destroy_work(struct work_struct *work) |
| 2093 | { |
| 2094 | struct fcoe_port *port; |
| 2095 | |
| 2096 | port = container_of(work, struct fcoe_port, destroy_work); |
| 2097 | mutex_lock(&fcoe_config_mutex); |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 2098 | rtnl_lock(); |
| 2099 | /* RTNL mutex is dropped by fcoe_if_destroy */ |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2100 | fcoe_if_destroy(port->lport); |
| 2101 | mutex_unlock(&fcoe_config_mutex); |
| 2102 | } |
| 2103 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2104 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2105 | * fcoe_create() - Create a fcoe interface |
| 2106 | * @buffer: The name of the Ethernet interface to create on |
| 2107 | * @kp: The associated kernel param |
| 2108 | * |
| 2109 | * Called from sysfs. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2110 | * |
| 2111 | * Returns: 0 for success |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2112 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2113 | static int fcoe_create(const char *buffer, struct kernel_param *kp) |
| 2114 | { |
Joe Eykholt | 1dd454d | 2010-07-20 15:20:46 -0700 | [diff] [blame] | 2115 | enum fip_state fip_mode = (enum fip_state)(long)kp->arg; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2116 | int rc; |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 2117 | struct fcoe_interface *fcoe; |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 2118 | struct fc_lport *lport; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2119 | struct net_device *netdev; |
| 2120 | |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2121 | mutex_lock(&fcoe_config_mutex); |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 2122 | |
| 2123 | if (!rtnl_trylock()) { |
| 2124 | mutex_unlock(&fcoe_config_mutex); |
| 2125 | return restart_syscall(); |
| 2126 | } |
| 2127 | |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2128 | #ifdef CONFIG_FCOE_MODULE |
| 2129 | /* |
| 2130 | * Make sure the module has been initialized, and is not about to be |
| 2131 | * removed. Module paramter sysfs files are writable before the |
| 2132 | * module_init function is called and after module_exit. |
| 2133 | */ |
| 2134 | if (THIS_MODULE->state != MODULE_STATE_LIVE) { |
| 2135 | rc = -ENODEV; |
Vasu Dev | 721cafa | 2010-05-07 15:18:19 -0700 | [diff] [blame] | 2136 | goto out_nomod; |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2137 | } |
| 2138 | #endif |
| 2139 | |
Rob Love | 6409ea6 | 2010-01-21 10:16:05 -0800 | [diff] [blame] | 2140 | if (!try_module_get(THIS_MODULE)) { |
| 2141 | rc = -EINVAL; |
| 2142 | goto out_nomod; |
| 2143 | } |
| 2144 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2145 | netdev = fcoe_if_to_netdev(buffer); |
| 2146 | if (!netdev) { |
| 2147 | rc = -ENODEV; |
| 2148 | goto out_nodev; |
| 2149 | } |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2150 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2151 | /* look for existing lport */ |
| 2152 | if (fcoe_hostlist_lookup(netdev)) { |
| 2153 | rc = -EEXIST; |
| 2154 | goto out_putdev; |
| 2155 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2156 | |
Joe Eykholt | 1dd454d | 2010-07-20 15:20:46 -0700 | [diff] [blame] | 2157 | fcoe = fcoe_interface_create(netdev, fip_mode); |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 2158 | if (!fcoe) { |
| 2159 | rc = -ENOMEM; |
| 2160 | goto out_putdev; |
| 2161 | } |
| 2162 | |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 2163 | lport = fcoe_if_create(fcoe, &netdev->dev, 0); |
Chris Leech | af7f85d | 2009-08-25 13:59:24 -0700 | [diff] [blame] | 2164 | if (IS_ERR(lport)) { |
Robert Love | d5488eb | 2009-06-10 15:30:59 -0700 | [diff] [blame] | 2165 | printk(KERN_ERR "fcoe: Failed to create interface (%s)\n", |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2166 | netdev->name); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2167 | rc = -EIO; |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2168 | fcoe_interface_cleanup(fcoe); |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 2169 | goto out_free; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2170 | } |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 2171 | |
Chris Leech | 54b649f | 2009-08-25 14:00:07 -0700 | [diff] [blame] | 2172 | /* Make this the "master" N_Port */ |
| 2173 | fcoe->ctlr.lp = lport; |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 2174 | |
Chris Leech | c863df3 | 2009-08-25 14:00:18 -0700 | [diff] [blame] | 2175 | /* add to lports list */ |
| 2176 | fcoe_hostlist_add(lport); |
| 2177 | |
Chris Leech | 54b649f | 2009-08-25 14:00:07 -0700 | [diff] [blame] | 2178 | /* start FIP Discovery and FLOGI */ |
| 2179 | lport->boot_time = jiffies; |
| 2180 | fc_fabric_login(lport); |
| 2181 | if (!fcoe_link_ok(lport)) |
| 2182 | fcoe_ctlr_link_up(&fcoe->ctlr); |
| 2183 | |
Chris Leech | 54b649f | 2009-08-25 14:00:07 -0700 | [diff] [blame] | 2184 | /* |
| 2185 | * Release from init in fcoe_interface_create(), on success lport |
| 2186 | * should be holding a reference taken in fcoe_if_create(). |
| 2187 | */ |
Chris Leech | 030f4e0 | 2009-08-25 14:00:02 -0700 | [diff] [blame] | 2188 | fcoe_interface_put(fcoe); |
Rob Love | 6409ea6 | 2010-01-21 10:16:05 -0800 | [diff] [blame] | 2189 | dev_put(netdev); |
| 2190 | rtnl_unlock(); |
| 2191 | mutex_unlock(&fcoe_config_mutex); |
| 2192 | |
| 2193 | return 0; |
| 2194 | out_free: |
| 2195 | fcoe_interface_put(fcoe); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2196 | out_putdev: |
| 2197 | dev_put(netdev); |
| 2198 | out_nodev: |
Rob Love | 6409ea6 | 2010-01-21 10:16:05 -0800 | [diff] [blame] | 2199 | module_put(THIS_MODULE); |
| 2200 | out_nomod: |
Vasu Dev | 34ce27b | 2010-05-07 15:18:46 -0700 | [diff] [blame] | 2201 | rtnl_unlock(); |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2202 | mutex_unlock(&fcoe_config_mutex); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2203 | return rc; |
| 2204 | } |
| 2205 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2206 | /** |
Robert Love | 5e4f8fe | 2010-05-07 15:18:35 -0700 | [diff] [blame] | 2207 | * fcoe_link_speed_update() - Update the supported and actual link speeds |
| 2208 | * @lport: The local port to update speeds for |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2209 | * |
Robert Love | 5e4f8fe | 2010-05-07 15:18:35 -0700 | [diff] [blame] | 2210 | * Returns: 0 if the ethtool query was successful |
| 2211 | * -1 if the ethtool query failed |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2212 | */ |
Robert Love | 5e4f8fe | 2010-05-07 15:18:35 -0700 | [diff] [blame] | 2213 | int fcoe_link_speed_update(struct fc_lport *lport) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2214 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2215 | struct fcoe_port *port = lport_priv(lport); |
| 2216 | struct net_device *netdev = port->fcoe->netdev; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2217 | struct ethtool_cmd ecmd = { ETHTOOL_GSET }; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2218 | |
Robert Love | 5e4f8fe | 2010-05-07 15:18:35 -0700 | [diff] [blame] | 2219 | if (!dev_ethtool_get_settings(netdev, &ecmd)) { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2220 | lport->link_supported_speeds &= |
Yi Zou | 2f718d6 | 2009-07-29 17:04:01 -0700 | [diff] [blame] | 2221 | ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT); |
| 2222 | if (ecmd.supported & (SUPPORTED_1000baseT_Half | |
| 2223 | SUPPORTED_1000baseT_Full)) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2224 | lport->link_supported_speeds |= FC_PORTSPEED_1GBIT; |
Yi Zou | 2f718d6 | 2009-07-29 17:04:01 -0700 | [diff] [blame] | 2225 | if (ecmd.supported & SUPPORTED_10000baseT_Full) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2226 | lport->link_supported_speeds |= |
Yi Zou | 2f718d6 | 2009-07-29 17:04:01 -0700 | [diff] [blame] | 2227 | FC_PORTSPEED_10GBIT; |
| 2228 | if (ecmd.speed == SPEED_1000) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2229 | lport->link_speed = FC_PORTSPEED_1GBIT; |
Yi Zou | 2f718d6 | 2009-07-29 17:04:01 -0700 | [diff] [blame] | 2230 | if (ecmd.speed == SPEED_10000) |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2231 | lport->link_speed = FC_PORTSPEED_10GBIT; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2232 | |
Yi Zou | 2f718d6 | 2009-07-29 17:04:01 -0700 | [diff] [blame] | 2233 | return 0; |
| 2234 | } |
| 2235 | return -1; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2236 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2237 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2238 | /** |
Robert Love | 5e4f8fe | 2010-05-07 15:18:35 -0700 | [diff] [blame] | 2239 | * fcoe_link_ok() - Check if the link is OK for a local port |
| 2240 | * @lport: The local port to check link on |
| 2241 | * |
| 2242 | * Returns: 0 if link is UP and OK, -1 if not |
| 2243 | * |
| 2244 | */ |
| 2245 | int fcoe_link_ok(struct fc_lport *lport) |
| 2246 | { |
| 2247 | struct fcoe_port *port = lport_priv(lport); |
| 2248 | struct net_device *netdev = port->fcoe->netdev; |
| 2249 | |
| 2250 | if (netif_oper_up(netdev)) |
| 2251 | return 0; |
| 2252 | return -1; |
| 2253 | } |
| 2254 | |
| 2255 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2256 | * fcoe_percpu_clean() - Clear all pending skbs for an local port |
| 2257 | * @lport: The local port whose skbs are to be cleared |
Joe Eykholt | e7a5199 | 2009-08-25 14:04:08 -0700 | [diff] [blame] | 2258 | * |
| 2259 | * Must be called with fcoe_create_mutex held to single-thread completion. |
| 2260 | * |
| 2261 | * This flushes the pending skbs by adding a new skb to each queue and |
| 2262 | * waiting until they are all freed. This assures us that not only are |
| 2263 | * there no packets that will be handled by the lport, but also that any |
| 2264 | * threads already handling packet have returned. |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2265 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2266 | void fcoe_percpu_clean(struct fc_lport *lport) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2267 | { |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2268 | struct fcoe_percpu_s *pp; |
| 2269 | struct fcoe_rcv_info *fr; |
| 2270 | struct sk_buff_head *list; |
| 2271 | struct sk_buff *skb, *next; |
| 2272 | struct sk_buff *head; |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 2273 | unsigned int cpu; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2274 | |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 2275 | for_each_possible_cpu(cpu) { |
| 2276 | pp = &per_cpu(fcoe_percpu, cpu); |
| 2277 | spin_lock_bh(&pp->fcoe_rx_list.lock); |
| 2278 | list = &pp->fcoe_rx_list; |
| 2279 | head = list->next; |
| 2280 | for (skb = head; skb != (struct sk_buff *)list; |
| 2281 | skb = next) { |
| 2282 | next = skb->next; |
| 2283 | fr = fcoe_dev_from_skb(skb); |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2284 | if (fr->fr_dev == lport) { |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 2285 | __skb_unlink(skb, list); |
| 2286 | kfree_skb(skb); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2287 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2288 | } |
Joe Eykholt | e7a5199 | 2009-08-25 14:04:08 -0700 | [diff] [blame] | 2289 | |
| 2290 | if (!pp->thread || !cpu_online(cpu)) { |
| 2291 | spin_unlock_bh(&pp->fcoe_rx_list.lock); |
| 2292 | continue; |
| 2293 | } |
| 2294 | |
| 2295 | skb = dev_alloc_skb(0); |
| 2296 | if (!skb) { |
| 2297 | spin_unlock_bh(&pp->fcoe_rx_list.lock); |
| 2298 | continue; |
| 2299 | } |
| 2300 | skb->destructor = fcoe_percpu_flush_done; |
| 2301 | |
| 2302 | __skb_queue_tail(&pp->fcoe_rx_list, skb); |
| 2303 | if (pp->fcoe_rx_list.qlen == 1) |
| 2304 | wake_up_process(pp->thread); |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 2305 | spin_unlock_bh(&pp->fcoe_rx_list.lock); |
Joe Eykholt | e7a5199 | 2009-08-25 14:04:08 -0700 | [diff] [blame] | 2306 | |
| 2307 | wait_for_completion(&fcoe_flush_completion); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2308 | } |
| 2309 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2310 | |
| 2311 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2312 | * fcoe_clean_pending_queue() - Dequeue a skb and free it |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2313 | * @lport: The local port to dequeue a skb on |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2314 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2315 | void fcoe_clean_pending_queue(struct fc_lport *lport) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2316 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2317 | struct fcoe_port *port = lport_priv(lport); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2318 | struct sk_buff *skb; |
| 2319 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2320 | spin_lock_bh(&port->fcoe_pending_queue.lock); |
| 2321 | while ((skb = __skb_dequeue(&port->fcoe_pending_queue)) != NULL) { |
| 2322 | spin_unlock_bh(&port->fcoe_pending_queue.lock); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2323 | kfree_skb(skb); |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2324 | spin_lock_bh(&port->fcoe_pending_queue.lock); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2325 | } |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2326 | spin_unlock_bh(&port->fcoe_pending_queue.lock); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2327 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2328 | |
| 2329 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2330 | * fcoe_reset() - Reset a local port |
| 2331 | * @shost: The SCSI host associated with the local port to be reset |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2332 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2333 | * Returns: Always 0 (return value required by FC transport template) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2334 | */ |
| 2335 | int fcoe_reset(struct Scsi_Host *shost) |
| 2336 | { |
| 2337 | struct fc_lport *lport = shost_priv(shost); |
| 2338 | fc_lport_reset(lport); |
| 2339 | return 0; |
| 2340 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2341 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2342 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2343 | * fcoe_hostlist_lookup_port() - Find the FCoE interface associated with a net device |
| 2344 | * @netdev: The net device used as a key |
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 | * Locking: Must be called with the RNL mutex held. |
| 2347 | * |
| 2348 | * Returns: NULL or the FCoE interface |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2349 | */ |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2350 | static struct fcoe_interface * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2351 | fcoe_hostlist_lookup_port(const struct net_device *netdev) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2352 | { |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2353 | struct fcoe_interface *fcoe; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2354 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2355 | list_for_each_entry(fcoe, &fcoe_hostlist, list) { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2356 | if (fcoe->netdev == netdev) |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2357 | return fcoe; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2358 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2359 | return NULL; |
| 2360 | } |
| 2361 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2362 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2363 | * fcoe_hostlist_lookup() - Find the local port associated with a |
| 2364 | * given net device |
| 2365 | * @netdev: The netdevice used as a key |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2366 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2367 | * Locking: Must be called with the RTNL mutex held |
| 2368 | * |
| 2369 | * Returns: NULL or the local port |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2370 | */ |
Chris Leech | 090eb6c | 2009-08-25 14:00:28 -0700 | [diff] [blame] | 2371 | static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2372 | { |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2373 | struct fcoe_interface *fcoe; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2374 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2375 | fcoe = fcoe_hostlist_lookup_port(netdev); |
Chris Leech | 3fe9a0b | 2009-08-25 13:59:46 -0700 | [diff] [blame] | 2376 | return (fcoe) ? fcoe->ctlr.lp : NULL; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2377 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2378 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2379 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2380 | * fcoe_hostlist_add() - Add the FCoE interface identified by a local |
| 2381 | * port to the hostlist |
| 2382 | * @lport: The local port that identifies the FCoE interface to be added |
| 2383 | * |
| 2384 | * Locking: must be called with the RTNL mutex held |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2385 | * |
| 2386 | * Returns: 0 for success |
| 2387 | */ |
Chris Leech | 090eb6c | 2009-08-25 14:00:28 -0700 | [diff] [blame] | 2388 | static int fcoe_hostlist_add(const struct fc_lport *lport) |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2389 | { |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2390 | struct fcoe_interface *fcoe; |
| 2391 | struct fcoe_port *port; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2392 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2393 | fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport)); |
| 2394 | if (!fcoe) { |
| 2395 | port = lport_priv(lport); |
| 2396 | fcoe = port->fcoe; |
| 2397 | list_add_tail(&fcoe->list, &fcoe_hostlist); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2398 | } |
| 2399 | return 0; |
| 2400 | } |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2401 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2402 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2403 | * fcoe_init() - Initialize fcoe.ko |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2404 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2405 | * Returns: 0 on success, or a negative value on failure |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2406 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2407 | static int __init fcoe_init(void) |
| 2408 | { |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2409 | struct fcoe_percpu_s *p; |
Robert Love | 38eccab | 2009-03-17 11:41:30 -0700 | [diff] [blame] | 2410 | unsigned int cpu; |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2411 | int rc = 0; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2412 | |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2413 | mutex_lock(&fcoe_config_mutex); |
| 2414 | |
Robert Love | 38eccab | 2009-03-17 11:41:30 -0700 | [diff] [blame] | 2415 | for_each_possible_cpu(cpu) { |
Robert Love | 5e5e92d | 2009-03-17 11:41:35 -0700 | [diff] [blame] | 2416 | p = &per_cpu(fcoe_percpu, cpu); |
Robert Love | 38eccab | 2009-03-17 11:41:30 -0700 | [diff] [blame] | 2417 | skb_queue_head_init(&p->fcoe_rx_list); |
| 2418 | } |
| 2419 | |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2420 | for_each_online_cpu(cpu) |
| 2421 | fcoe_percpu_thread_create(cpu); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2422 | |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2423 | /* Initialize per CPU interrupt thread */ |
| 2424 | rc = register_hotcpu_notifier(&fcoe_cpu_notifier); |
| 2425 | if (rc) |
| 2426 | goto out_free; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2427 | |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2428 | /* Setup link change notification */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2429 | fcoe_dev_setup(); |
| 2430 | |
Chris Leech | 5892c32 | 2009-08-25 13:59:14 -0700 | [diff] [blame] | 2431 | rc = fcoe_if_init(); |
| 2432 | if (rc) |
| 2433 | goto out_free; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2434 | |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2435 | mutex_unlock(&fcoe_config_mutex); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2436 | return 0; |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2437 | |
| 2438 | out_free: |
| 2439 | for_each_online_cpu(cpu) { |
| 2440 | fcoe_percpu_thread_destroy(cpu); |
| 2441 | } |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2442 | mutex_unlock(&fcoe_config_mutex); |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2443 | return rc; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2444 | } |
| 2445 | module_init(fcoe_init); |
| 2446 | |
| 2447 | /** |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2448 | * fcoe_exit() - Clean up fcoe.ko |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2449 | * |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2450 | * Returns: 0 on success or a negative value on failure |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 2451 | */ |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2452 | static void __exit fcoe_exit(void) |
| 2453 | { |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2454 | struct fcoe_interface *fcoe, *tmp; |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2455 | struct fcoe_port *port; |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2456 | unsigned int cpu; |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2457 | |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2458 | mutex_lock(&fcoe_config_mutex); |
| 2459 | |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2460 | fcoe_dev_cleanup(); |
| 2461 | |
Vasu Dev | 5919a59 | 2009-03-27 09:03:29 -0700 | [diff] [blame] | 2462 | /* releases the associated fcoe hosts */ |
Chris Leech | 090eb6c | 2009-08-25 14:00:28 -0700 | [diff] [blame] | 2463 | rtnl_lock(); |
| 2464 | list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list) { |
Chris Leech | c863df3 | 2009-08-25 14:00:18 -0700 | [diff] [blame] | 2465 | list_del(&fcoe->list); |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2466 | port = lport_priv(fcoe->ctlr.lp); |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2467 | fcoe_interface_cleanup(fcoe); |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2468 | schedule_work(&port->destroy_work); |
Chris Leech | c863df3 | 2009-08-25 14:00:18 -0700 | [diff] [blame] | 2469 | } |
Chris Leech | 090eb6c | 2009-08-25 14:00:28 -0700 | [diff] [blame] | 2470 | rtnl_unlock(); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2471 | |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2472 | unregister_hotcpu_notifier(&fcoe_cpu_notifier); |
| 2473 | |
Chris Leech | 014f5c3 | 2009-08-25 13:59:30 -0700 | [diff] [blame] | 2474 | for_each_online_cpu(cpu) |
Robert Love | 8976f42 | 2009-03-17 11:41:46 -0700 | [diff] [blame] | 2475 | fcoe_percpu_thread_destroy(cpu); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2476 | |
Chris Leech | dfc1d0f | 2009-08-25 14:00:13 -0700 | [diff] [blame] | 2477 | mutex_unlock(&fcoe_config_mutex); |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2478 | |
| 2479 | /* flush any asyncronous interface destroys, |
| 2480 | * this should happen after the netdev notifier is unregistered */ |
| 2481 | flush_scheduled_work(); |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 2482 | /* That will flush out all the N_Ports on the hostlist, but now we |
| 2483 | * may have NPIV VN_Ports scheduled for destruction */ |
| 2484 | flush_scheduled_work(); |
Chris Leech | 2e70e24 | 2009-08-25 14:00:23 -0700 | [diff] [blame] | 2485 | |
| 2486 | /* detach from scsi transport |
| 2487 | * must happen after all destroys are done, therefor after the flush */ |
| 2488 | fcoe_if_exit(); |
Robert Love | 85b4aa4 | 2008-12-09 15:10:24 -0800 | [diff] [blame] | 2489 | } |
| 2490 | module_exit(fcoe_exit); |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2491 | |
| 2492 | /** |
| 2493 | * fcoe_flogi_resp() - FCoE specific FLOGI and FDISC response handler |
| 2494 | * @seq: active sequence in the FLOGI or FDISC exchange |
| 2495 | * @fp: response frame, or error encoded in a pointer (timeout) |
| 2496 | * @arg: pointer the the fcoe_ctlr structure |
| 2497 | * |
Uwe Kleine-König | 65155b3 | 2010-06-11 12:17:01 +0200 | [diff] [blame] | 2498 | * This handles MAC address management for FCoE, then passes control on to |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2499 | * the libfc FLOGI response handler. |
| 2500 | */ |
| 2501 | static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg) |
| 2502 | { |
| 2503 | struct fcoe_ctlr *fip = arg; |
| 2504 | struct fc_exch *exch = fc_seq_exch(seq); |
| 2505 | struct fc_lport *lport = exch->lp; |
| 2506 | u8 *mac; |
| 2507 | |
| 2508 | if (IS_ERR(fp)) |
| 2509 | goto done; |
| 2510 | |
| 2511 | mac = fr_cb(fp)->granted_mac; |
| 2512 | if (is_zero_ether_addr(mac)) { |
| 2513 | /* pre-FIP */ |
Joe Eykholt | 386309ce | 2009-11-03 11:49:16 -0800 | [diff] [blame] | 2514 | if (fcoe_ctlr_recv_flogi(fip, lport, fp)) { |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2515 | fc_frame_free(fp); |
| 2516 | return; |
| 2517 | } |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2518 | } |
Joe Eykholt | 386309ce | 2009-11-03 11:49:16 -0800 | [diff] [blame] | 2519 | fcoe_update_src_mac(lport, mac); |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2520 | done: |
| 2521 | fc_lport_flogi_resp(seq, fp, lport); |
| 2522 | } |
| 2523 | |
| 2524 | /** |
| 2525 | * fcoe_logo_resp() - FCoE specific LOGO response handler |
| 2526 | * @seq: active sequence in the LOGO exchange |
| 2527 | * @fp: response frame, or error encoded in a pointer (timeout) |
| 2528 | * @arg: pointer the the fcoe_ctlr structure |
| 2529 | * |
Uwe Kleine-König | 65155b3 | 2010-06-11 12:17:01 +0200 | [diff] [blame] | 2530 | * This handles MAC address management for FCoE, then passes control on to |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2531 | * the libfc LOGO response handler. |
| 2532 | */ |
| 2533 | static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg) |
| 2534 | { |
Joe Eykholt | 386309ce | 2009-11-03 11:49:16 -0800 | [diff] [blame] | 2535 | struct fc_lport *lport = arg; |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2536 | static u8 zero_mac[ETH_ALEN] = { 0 }; |
| 2537 | |
| 2538 | if (!IS_ERR(fp)) |
Joe Eykholt | 386309ce | 2009-11-03 11:49:16 -0800 | [diff] [blame] | 2539 | fcoe_update_src_mac(lport, zero_mac); |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2540 | fc_lport_logo_resp(seq, fp, lport); |
| 2541 | } |
| 2542 | |
| 2543 | /** |
| 2544 | * fcoe_elsct_send - FCoE specific ELS handler |
| 2545 | * |
| 2546 | * This does special case handling of FIP encapsualted ELS exchanges for FCoE, |
| 2547 | * using FCoE specific response handlers and passing the FIP controller as |
| 2548 | * the argument (the lport is still available from the exchange). |
| 2549 | * |
| 2550 | * Most of the work here is just handed off to the libfc routine. |
| 2551 | */ |
Robert Love | 1875f27 | 2009-11-03 11:47:50 -0800 | [diff] [blame] | 2552 | static struct fc_seq *fcoe_elsct_send(struct fc_lport *lport, u32 did, |
| 2553 | struct fc_frame *fp, unsigned int op, |
| 2554 | void (*resp)(struct fc_seq *, |
| 2555 | struct fc_frame *, |
| 2556 | void *), |
| 2557 | void *arg, u32 timeout) |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2558 | { |
| 2559 | struct fcoe_port *port = lport_priv(lport); |
| 2560 | struct fcoe_interface *fcoe = port->fcoe; |
| 2561 | struct fcoe_ctlr *fip = &fcoe->ctlr; |
| 2562 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
| 2563 | |
| 2564 | switch (op) { |
| 2565 | case ELS_FLOGI: |
| 2566 | case ELS_FDISC: |
Joe Eykholt | e10f8c6 | 2010-07-20 15:20:30 -0700 | [diff] [blame] | 2567 | if (lport->point_to_multipoint) |
| 2568 | break; |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2569 | return fc_elsct_send(lport, did, fp, op, fcoe_flogi_resp, |
| 2570 | fip, timeout); |
| 2571 | case ELS_LOGO: |
| 2572 | /* only hook onto fabric logouts, not port logouts */ |
| 2573 | if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI) |
| 2574 | break; |
| 2575 | return fc_elsct_send(lport, did, fp, op, fcoe_logo_resp, |
Joe Eykholt | 386309ce | 2009-11-03 11:49:16 -0800 | [diff] [blame] | 2576 | lport, timeout); |
Chris Leech | 11b5618 | 2009-11-03 11:46:29 -0800 | [diff] [blame] | 2577 | } |
| 2578 | return fc_elsct_send(lport, did, fp, op, resp, arg, timeout); |
| 2579 | } |
| 2580 | |
Chris Leech | 9a05753 | 2009-11-03 11:46:40 -0800 | [diff] [blame] | 2581 | /** |
| 2582 | * fcoe_vport_create() - create an fc_host/scsi_host for a vport |
| 2583 | * @vport: fc_vport object to create a new fc_host for |
| 2584 | * @disabled: start the new fc_host in a disabled state by default? |
| 2585 | * |
| 2586 | * Returns: 0 for success |
| 2587 | */ |
| 2588 | static int fcoe_vport_create(struct fc_vport *vport, bool disabled) |
| 2589 | { |
| 2590 | struct Scsi_Host *shost = vport_to_shost(vport); |
| 2591 | struct fc_lport *n_port = shost_priv(shost); |
| 2592 | struct fcoe_port *port = lport_priv(n_port); |
| 2593 | struct fcoe_interface *fcoe = port->fcoe; |
| 2594 | struct net_device *netdev = fcoe->netdev; |
| 2595 | struct fc_lport *vn_port; |
| 2596 | |
| 2597 | mutex_lock(&fcoe_config_mutex); |
| 2598 | vn_port = fcoe_if_create(fcoe, &vport->dev, 1); |
| 2599 | mutex_unlock(&fcoe_config_mutex); |
| 2600 | |
| 2601 | if (IS_ERR(vn_port)) { |
| 2602 | printk(KERN_ERR "fcoe: fcoe_vport_create(%s) failed\n", |
| 2603 | netdev->name); |
| 2604 | return -EIO; |
| 2605 | } |
| 2606 | |
| 2607 | if (disabled) { |
| 2608 | fc_vport_set_state(vport, FC_VPORT_DISABLED); |
| 2609 | } else { |
| 2610 | vn_port->boot_time = jiffies; |
| 2611 | fc_fabric_login(vn_port); |
| 2612 | fc_vport_setlink(vn_port); |
| 2613 | } |
| 2614 | return 0; |
| 2615 | } |
| 2616 | |
| 2617 | /** |
| 2618 | * fcoe_vport_destroy() - destroy the fc_host/scsi_host for a vport |
| 2619 | * @vport: fc_vport object that is being destroyed |
| 2620 | * |
| 2621 | * Returns: 0 for success |
| 2622 | */ |
| 2623 | static int fcoe_vport_destroy(struct fc_vport *vport) |
| 2624 | { |
| 2625 | struct Scsi_Host *shost = vport_to_shost(vport); |
| 2626 | struct fc_lport *n_port = shost_priv(shost); |
| 2627 | struct fc_lport *vn_port = vport->dd_data; |
| 2628 | struct fcoe_port *port = lport_priv(vn_port); |
| 2629 | |
| 2630 | mutex_lock(&n_port->lp_mutex); |
| 2631 | list_del(&vn_port->list); |
| 2632 | mutex_unlock(&n_port->lp_mutex); |
| 2633 | schedule_work(&port->destroy_work); |
| 2634 | return 0; |
| 2635 | } |
| 2636 | |
| 2637 | /** |
| 2638 | * fcoe_vport_disable() - change vport state |
| 2639 | * @vport: vport to bring online/offline |
| 2640 | * @disable: should the vport be disabled? |
| 2641 | */ |
| 2642 | static int fcoe_vport_disable(struct fc_vport *vport, bool disable) |
| 2643 | { |
| 2644 | struct fc_lport *lport = vport->dd_data; |
| 2645 | |
| 2646 | if (disable) { |
| 2647 | fc_vport_set_state(vport, FC_VPORT_DISABLED); |
| 2648 | fc_fabric_logoff(lport); |
| 2649 | } else { |
| 2650 | lport->boot_time = jiffies; |
| 2651 | fc_fabric_login(lport); |
| 2652 | fc_vport_setlink(lport); |
| 2653 | } |
| 2654 | |
| 2655 | return 0; |
| 2656 | } |
| 2657 | |
Chris Leech | dc8596d | 2009-11-03 11:47:18 -0800 | [diff] [blame] | 2658 | /** |
| 2659 | * fcoe_vport_set_symbolic_name() - append vport string to symbolic name |
| 2660 | * @vport: fc_vport with a new symbolic name string |
| 2661 | * |
| 2662 | * After generating a new symbolic name string, a new RSPN_ID request is |
| 2663 | * sent to the name server. There is no response handler, so if it fails |
| 2664 | * for some reason it will not be retried. |
| 2665 | */ |
| 2666 | static void fcoe_set_vport_symbolic_name(struct fc_vport *vport) |
| 2667 | { |
| 2668 | struct fc_lport *lport = vport->dd_data; |
| 2669 | struct fc_frame *fp; |
| 2670 | size_t len; |
| 2671 | |
| 2672 | snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE, |
| 2673 | "%s v%s over %s : %s", FCOE_NAME, FCOE_VERSION, |
| 2674 | fcoe_netdev(lport)->name, vport->symbolic_name); |
| 2675 | |
| 2676 | if (lport->state != LPORT_ST_READY) |
| 2677 | return; |
| 2678 | |
| 2679 | len = strnlen(fc_host_symbolic_name(lport->host), 255); |
| 2680 | fp = fc_frame_alloc(lport, |
| 2681 | sizeof(struct fc_ct_hdr) + |
| 2682 | sizeof(struct fc_ns_rspn) + len); |
| 2683 | if (!fp) |
| 2684 | return; |
| 2685 | 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] | 2686 | NULL, NULL, 3 * lport->r_a_tov); |
Chris Leech | dc8596d | 2009-11-03 11:47:18 -0800 | [diff] [blame] | 2687 | } |
Yi Zou | b84056b | 2009-11-20 14:55:19 -0800 | [diff] [blame] | 2688 | |
| 2689 | /** |
| 2690 | * fcoe_get_lesb() - Fill the FCoE Link Error Status Block |
| 2691 | * @lport: the local port |
| 2692 | * @fc_lesb: the link error status block |
| 2693 | */ |
| 2694 | static void fcoe_get_lesb(struct fc_lport *lport, |
| 2695 | struct fc_els_lesb *fc_lesb) |
| 2696 | { |
| 2697 | unsigned int cpu; |
| 2698 | u32 lfc, vlfc, mdac; |
| 2699 | struct fcoe_dev_stats *devst; |
| 2700 | struct fcoe_fc_els_lesb *lesb; |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 2701 | struct rtnl_link_stats64 temp; |
Yi Zou | b84056b | 2009-11-20 14:55:19 -0800 | [diff] [blame] | 2702 | struct net_device *netdev = fcoe_netdev(lport); |
| 2703 | |
| 2704 | lfc = 0; |
| 2705 | vlfc = 0; |
| 2706 | mdac = 0; |
| 2707 | lesb = (struct fcoe_fc_els_lesb *)fc_lesb; |
| 2708 | memset(lesb, 0, sizeof(*lesb)); |
| 2709 | for_each_possible_cpu(cpu) { |
| 2710 | devst = per_cpu_ptr(lport->dev_stats, cpu); |
| 2711 | lfc += devst->LinkFailureCount; |
| 2712 | vlfc += devst->VLinkFailureCount; |
| 2713 | mdac += devst->MissDiscAdvCount; |
| 2714 | } |
| 2715 | lesb->lesb_link_fail = htonl(lfc); |
| 2716 | lesb->lesb_vlink_fail = htonl(vlfc); |
| 2717 | lesb->lesb_miss_fka = htonl(mdac); |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 2718 | lesb->lesb_fcs_error = htonl(dev_get_stats(netdev, &temp)->rx_crc_errors); |
Yi Zou | b84056b | 2009-11-20 14:55:19 -0800 | [diff] [blame] | 2719 | } |
Joe Eykholt | 7d65b0d | 2010-03-12 16:08:02 -0800 | [diff] [blame] | 2720 | |
| 2721 | /** |
| 2722 | * fcoe_set_port_id() - Callback from libfc when Port_ID is set. |
| 2723 | * @lport: the local port |
| 2724 | * @port_id: the port ID |
| 2725 | * @fp: the received frame, if any, that caused the port_id to be set. |
| 2726 | * |
| 2727 | * This routine handles the case where we received a FLOGI and are |
| 2728 | * entering point-to-point mode. We need to call fcoe_ctlr_recv_flogi() |
| 2729 | * so it can set the non-mapped mode and gateway address. |
| 2730 | * |
| 2731 | * The FLOGI LS_ACC is handled by fcoe_flogi_resp(). |
| 2732 | */ |
| 2733 | static void fcoe_set_port_id(struct fc_lport *lport, |
| 2734 | u32 port_id, struct fc_frame *fp) |
| 2735 | { |
| 2736 | struct fcoe_port *port = lport_priv(lport); |
| 2737 | struct fcoe_interface *fcoe = port->fcoe; |
| 2738 | |
| 2739 | if (fp && fc_frame_payload_op(fp) == ELS_FLOGI) |
| 2740 | fcoe_ctlr_recv_flogi(&fcoe->ctlr, lport, fp); |
| 2741 | } |