Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright(c) 2007 - 2008 Intel Corporation. All rights reserved. |
| 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 | /* |
| 21 | * Target Discovery |
| 22 | * |
| 23 | * This block discovers all FC-4 remote ports, including FCP initiators. It |
| 24 | * also handles RSCN events and re-discovery if necessary. |
| 25 | */ |
| 26 | |
| 27 | /* |
| 28 | * DISC LOCKING |
| 29 | * |
| 30 | * The disc mutex is can be locked when acquiring rport locks, but may not |
| 31 | * be held when acquiring the lport lock. Refer to fc_lport.c for more |
| 32 | * details. |
| 33 | */ |
| 34 | |
| 35 | #include <linux/timer.h> |
| 36 | #include <linux/err.h> |
| 37 | #include <asm/unaligned.h> |
| 38 | |
| 39 | #include <scsi/fc/fc_gs.h> |
| 40 | |
| 41 | #include <scsi/libfc.h> |
| 42 | |
| 43 | #define FC_DISC_RETRY_LIMIT 3 /* max retries */ |
| 44 | #define FC_DISC_RETRY_DELAY 500UL /* (msecs) delay */ |
| 45 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 46 | static void fc_disc_gpn_ft_req(struct fc_disc *); |
| 47 | static void fc_disc_gpn_ft_resp(struct fc_seq *, struct fc_frame *, void *); |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 48 | static int fc_disc_new_target(struct fc_disc *, struct fc_rport_priv *, |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 49 | struct fc_rport_identifiers *); |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 50 | static void fc_disc_done(struct fc_disc *, enum fc_disc_event); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 51 | static void fc_disc_timeout(struct work_struct *); |
| 52 | static void fc_disc_single(struct fc_disc *, struct fc_disc_port *); |
| 53 | static void fc_disc_restart(struct fc_disc *); |
| 54 | |
| 55 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 56 | * fc_disc_stop_rports() - delete all the remote ports associated with the lport |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 57 | * @disc: The discovery job to stop rports on |
| 58 | * |
| 59 | * Locking Note: This function expects that the lport mutex is locked before |
| 60 | * calling it. |
| 61 | */ |
| 62 | void fc_disc_stop_rports(struct fc_disc *disc) |
| 63 | { |
| 64 | struct fc_lport *lport; |
Joe Eykholt | ab28f1f | 2009-08-25 14:00:34 -0700 | [diff] [blame] | 65 | struct fc_rport_priv *rdata, *next; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 66 | |
| 67 | lport = disc->lport; |
| 68 | |
| 69 | mutex_lock(&disc->disc_mutex); |
Joe Eykholt | 9e9d045 | 2009-08-25 14:01:18 -0700 | [diff] [blame] | 70 | list_for_each_entry_safe(rdata, next, &disc->rports, peers) |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 71 | lport->tt.rport_logoff(rdata); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 72 | mutex_unlock(&disc->disc_mutex); |
| 73 | } |
| 74 | |
| 75 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 76 | * fc_disc_recv_rscn_req() - Handle Registered State Change Notification (RSCN) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 77 | * @sp: Current sequence of the RSCN exchange |
| 78 | * @fp: RSCN Frame |
| 79 | * @lport: Fibre Channel host port instance |
| 80 | * |
| 81 | * Locking Note: This function expects that the disc_mutex is locked |
| 82 | * before it is called. |
| 83 | */ |
| 84 | static void fc_disc_recv_rscn_req(struct fc_seq *sp, struct fc_frame *fp, |
| 85 | struct fc_disc *disc) |
| 86 | { |
| 87 | struct fc_lport *lport; |
Joe Eykholt | ab28f1f | 2009-08-25 14:00:34 -0700 | [diff] [blame] | 88 | struct fc_rport_priv *rdata; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 89 | struct fc_els_rscn *rp; |
| 90 | struct fc_els_rscn_page *pp; |
| 91 | struct fc_seq_els_data rjt_data; |
| 92 | unsigned int len; |
| 93 | int redisc = 0; |
| 94 | enum fc_els_rscn_ev_qual ev_qual; |
| 95 | enum fc_els_rscn_addr_fmt fmt; |
| 96 | LIST_HEAD(disc_ports); |
| 97 | struct fc_disc_port *dp, *next; |
| 98 | |
| 99 | lport = disc->lport; |
| 100 | |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 101 | FC_DISC_DBG(disc, "Received an RSCN event\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 102 | |
| 103 | /* make sure the frame contains an RSCN message */ |
| 104 | rp = fc_frame_payload_get(fp, sizeof(*rp)); |
| 105 | if (!rp) |
| 106 | goto reject; |
| 107 | /* make sure the page length is as expected (4 bytes) */ |
| 108 | if (rp->rscn_page_len != sizeof(*pp)) |
| 109 | goto reject; |
| 110 | /* get the RSCN payload length */ |
| 111 | len = ntohs(rp->rscn_plen); |
| 112 | if (len < sizeof(*rp)) |
| 113 | goto reject; |
| 114 | /* make sure the frame contains the expected payload */ |
| 115 | rp = fc_frame_payload_get(fp, len); |
| 116 | if (!rp) |
| 117 | goto reject; |
| 118 | /* payload must be a multiple of the RSCN page size */ |
| 119 | len -= sizeof(*rp); |
| 120 | if (len % sizeof(*pp)) |
| 121 | goto reject; |
| 122 | |
| 123 | for (pp = (void *)(rp + 1); len > 0; len -= sizeof(*pp), pp++) { |
| 124 | ev_qual = pp->rscn_page_flags >> ELS_RSCN_EV_QUAL_BIT; |
| 125 | ev_qual &= ELS_RSCN_EV_QUAL_MASK; |
| 126 | fmt = pp->rscn_page_flags >> ELS_RSCN_ADDR_FMT_BIT; |
| 127 | fmt &= ELS_RSCN_ADDR_FMT_MASK; |
| 128 | /* |
| 129 | * if we get an address format other than port |
| 130 | * (area, domain, fabric), then do a full discovery |
| 131 | */ |
| 132 | switch (fmt) { |
| 133 | case ELS_ADDR_FMT_PORT: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 134 | FC_DISC_DBG(disc, "Port address format for port " |
| 135 | "(%6x)\n", ntoh24(pp->rscn_fid)); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 136 | dp = kzalloc(sizeof(*dp), GFP_KERNEL); |
| 137 | if (!dp) { |
| 138 | redisc = 1; |
| 139 | break; |
| 140 | } |
| 141 | dp->lp = lport; |
| 142 | dp->ids.port_id = ntoh24(pp->rscn_fid); |
| 143 | dp->ids.port_name = -1; |
| 144 | dp->ids.node_name = -1; |
| 145 | dp->ids.roles = FC_RPORT_ROLE_UNKNOWN; |
| 146 | list_add_tail(&dp->peers, &disc_ports); |
| 147 | break; |
| 148 | case ELS_ADDR_FMT_AREA: |
| 149 | case ELS_ADDR_FMT_DOM: |
| 150 | case ELS_ADDR_FMT_FAB: |
| 151 | default: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 152 | FC_DISC_DBG(disc, "Address format is (%d)\n", fmt); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 153 | redisc = 1; |
| 154 | break; |
| 155 | } |
| 156 | } |
| 157 | lport->tt.seq_els_rsp_send(sp, ELS_LS_ACC, NULL); |
| 158 | if (redisc) { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 159 | FC_DISC_DBG(disc, "RSCN received: rediscovering\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 160 | fc_disc_restart(disc); |
| 161 | } else { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 162 | FC_DISC_DBG(disc, "RSCN received: not rediscovering. " |
| 163 | "redisc %d state %d in_prog %d\n", |
| 164 | redisc, lport->state, disc->pending); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 165 | list_for_each_entry_safe(dp, next, &disc_ports, peers) { |
| 166 | list_del(&dp->peers); |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 167 | rdata = lport->tt.rport_lookup(lport, dp->ids.port_id); |
| 168 | if (rdata) { |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 169 | lport->tt.rport_logoff(rdata); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 170 | } |
| 171 | fc_disc_single(disc, dp); |
| 172 | } |
| 173 | } |
| 174 | fc_frame_free(fp); |
| 175 | return; |
| 176 | reject: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 177 | FC_DISC_DBG(disc, "Received a bad RSCN frame\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 178 | rjt_data.fp = NULL; |
| 179 | rjt_data.reason = ELS_RJT_LOGIC; |
| 180 | rjt_data.explan = ELS_EXPL_NONE; |
| 181 | lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data); |
| 182 | fc_frame_free(fp); |
| 183 | } |
| 184 | |
| 185 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 186 | * fc_disc_recv_req() - Handle incoming requests |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 187 | * @sp: Current sequence of the request exchange |
| 188 | * @fp: The frame |
| 189 | * @lport: The FC local port |
| 190 | * |
| 191 | * Locking Note: This function is called from the EM and will lock |
| 192 | * the disc_mutex before calling the handler for the |
| 193 | * request. |
| 194 | */ |
| 195 | static void fc_disc_recv_req(struct fc_seq *sp, struct fc_frame *fp, |
| 196 | struct fc_lport *lport) |
| 197 | { |
| 198 | u8 op; |
| 199 | struct fc_disc *disc = &lport->disc; |
| 200 | |
| 201 | op = fc_frame_payload_op(fp); |
| 202 | switch (op) { |
| 203 | case ELS_RSCN: |
| 204 | mutex_lock(&disc->disc_mutex); |
| 205 | fc_disc_recv_rscn_req(sp, fp, disc); |
| 206 | mutex_unlock(&disc->disc_mutex); |
| 207 | break; |
| 208 | default: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 209 | FC_DISC_DBG(disc, "Received an unsupported request, " |
| 210 | "the opcode is (%x)\n", op); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 211 | break; |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 216 | * fc_disc_restart() - Restart discovery |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 217 | * @lport: FC discovery context |
| 218 | * |
| 219 | * Locking Note: This function expects that the disc mutex |
| 220 | * is already locked. |
| 221 | */ |
| 222 | static void fc_disc_restart(struct fc_disc *disc) |
| 223 | { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 224 | FC_DISC_DBG(disc, "Restarting discovery\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 225 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 226 | disc->requested = 1; |
Joe Eykholt | 0f6c614 | 2009-08-25 14:02:11 -0700 | [diff] [blame] | 227 | if (disc->pending) |
| 228 | return; |
| 229 | |
| 230 | /* |
| 231 | * Advance disc_id. This is an arbitrary non-zero number that will |
| 232 | * match the value in the fc_rport_priv after discovery for all |
| 233 | * freshly-discovered remote ports. Avoid wrapping to zero. |
| 234 | */ |
| 235 | disc->disc_id = (disc->disc_id + 2) | 1; |
| 236 | fc_disc_gpn_ft_req(disc); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 240 | * fc_disc_start() - Fibre Channel Target discovery |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 241 | * @lport: FC local port |
| 242 | * |
| 243 | * Returns non-zero if discovery cannot be started. |
| 244 | */ |
| 245 | static void fc_disc_start(void (*disc_callback)(struct fc_lport *, |
| 246 | enum fc_disc_event), |
| 247 | struct fc_lport *lport) |
| 248 | { |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 249 | struct fc_rport_priv *rdata; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 250 | struct fc_disc *disc = &lport->disc; |
| 251 | |
| 252 | /* |
| 253 | * At this point we may have a new disc job or an existing |
| 254 | * one. Either way, let's lock when we make changes to it |
| 255 | * and send the GPN_FT request. |
| 256 | */ |
| 257 | mutex_lock(&disc->disc_mutex); |
| 258 | |
| 259 | disc->disc_callback = disc_callback; |
| 260 | |
| 261 | /* |
| 262 | * If not ready, or already running discovery, just set request flag. |
| 263 | */ |
| 264 | disc->requested = 1; |
| 265 | |
| 266 | if (disc->pending) { |
| 267 | mutex_unlock(&disc->disc_mutex); |
| 268 | return; |
| 269 | } |
| 270 | |
| 271 | /* |
| 272 | * Handle point-to-point mode as a simple discovery |
| 273 | * of the remote port. Yucky, yucky, yuck, yuck! |
| 274 | */ |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 275 | rdata = disc->lport->ptp_rp; |
| 276 | if (rdata) { |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 277 | kref_get(&rdata->kref); |
| 278 | if (!fc_disc_new_target(disc, rdata, &rdata->ids)) { |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 279 | fc_disc_done(disc, DISC_EV_SUCCESS); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 280 | } |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 281 | kref_put(&rdata->kref, rdata->local_port->tt.rport_destroy); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 282 | } else { |
Joe Eykholt | 0f6c614 | 2009-08-25 14:02:11 -0700 | [diff] [blame] | 283 | disc->disc_id = (disc->disc_id + 2) | 1; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 284 | fc_disc_gpn_ft_req(disc); /* get ports by FC-4 type */ |
| 285 | } |
| 286 | |
| 287 | mutex_unlock(&disc->disc_mutex); |
| 288 | } |
| 289 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 290 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 291 | * fc_disc_new_target() - Handle new target found by discovery |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 292 | * @lport: FC local port |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 293 | * @rdata: The previous FC remote port priv (NULL if new remote port) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 294 | * @ids: Identifiers for the new FC remote port |
| 295 | * |
| 296 | * Locking Note: This function expects that the disc_mutex is locked |
| 297 | * before it is called. |
| 298 | */ |
| 299 | static int fc_disc_new_target(struct fc_disc *disc, |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 300 | struct fc_rport_priv *rdata, |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 301 | struct fc_rport_identifiers *ids) |
| 302 | { |
| 303 | struct fc_lport *lport = disc->lport; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 304 | int error = 0; |
| 305 | |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 306 | if (rdata && ids->port_name) { |
| 307 | if (rdata->ids.port_name == -1) { |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 308 | /* |
| 309 | * Set WWN and fall through to notify of create. |
| 310 | */ |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 311 | rdata->ids.port_name = ids->port_name; |
| 312 | rdata->ids.node_name = ids->node_name; |
| 313 | } else if (rdata->ids.port_name != ids->port_name) { |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 314 | /* |
| 315 | * This is a new port with the same FCID as |
| 316 | * a previously-discovered port. Presumably the old |
| 317 | * port logged out and a new port logged in and was |
| 318 | * assigned the same FCID. This should be rare. |
| 319 | * Delete the old one and fall thru to re-create. |
| 320 | */ |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 321 | lport->tt.rport_logoff(rdata); |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 322 | rdata = NULL; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 323 | } |
| 324 | } |
| 325 | if (((ids->port_name != -1) || (ids->port_id != -1)) && |
| 326 | ids->port_id != fc_host_port_id(lport->host) && |
| 327 | ids->port_name != lport->wwpn) { |
Joe Eykholt | f211fa5 | 2009-08-25 14:01:01 -0700 | [diff] [blame] | 328 | if (!rdata) { |
Joe Eykholt | 19f97e3 | 2009-08-25 14:01:55 -0700 | [diff] [blame] | 329 | rdata = lport->tt.rport_create(lport, ids); |
| 330 | if (!rdata) |
| 331 | error = -ENOMEM; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 332 | } |
Joe Eykholt | 8345592 | 2009-08-25 14:02:01 -0700 | [diff] [blame] | 333 | if (rdata) |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 334 | lport->tt.rport_login(rdata); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 335 | } |
| 336 | return error; |
| 337 | } |
| 338 | |
| 339 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 340 | * fc_disc_done() - Discovery has been completed |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 341 | * @disc: FC discovery context |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 342 | * @event: discovery completion status |
| 343 | * |
Abhijeet Joglekar | 0d228c0 | 2009-04-21 16:26:52 -0700 | [diff] [blame] | 344 | * Locking Note: This function expects that the disc mutex is locked before |
| 345 | * it is called. The discovery callback is then made with the lock released, |
| 346 | * and the lock is re-taken before returning from this function |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 347 | */ |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 348 | static void fc_disc_done(struct fc_disc *disc, enum fc_disc_event event) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 349 | { |
| 350 | struct fc_lport *lport = disc->lport; |
Joe Eykholt | 0f6c614 | 2009-08-25 14:02:11 -0700 | [diff] [blame] | 351 | struct fc_rport_priv *rdata; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 352 | |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 353 | FC_DISC_DBG(disc, "Discovery complete\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 354 | |
Joe Eykholt | 0f6c614 | 2009-08-25 14:02:11 -0700 | [diff] [blame] | 355 | disc->pending = 0; |
| 356 | if (disc->requested) { |
| 357 | fc_disc_restart(disc); |
| 358 | return; |
| 359 | } |
| 360 | |
| 361 | /* |
| 362 | * Go through all remote ports. If they were found in the latest |
| 363 | * discovery, reverify or log them in. Otherwise, log them out. |
| 364 | * Skip ports which were never discovered. These are the dNS port |
| 365 | * and ports which were created by PLOGI. |
| 366 | */ |
| 367 | list_for_each_entry(rdata, &disc->rports, peers) { |
| 368 | if (!rdata->disc_id) |
| 369 | continue; |
| 370 | if (rdata->disc_id == disc->disc_id) |
| 371 | lport->tt.rport_login(rdata); |
| 372 | else |
| 373 | lport->tt.rport_logoff(rdata); |
| 374 | } |
Abhijeet Joglekar | 0d228c0 | 2009-04-21 16:26:52 -0700 | [diff] [blame] | 375 | |
| 376 | mutex_unlock(&disc->disc_mutex); |
| 377 | disc->disc_callback(lport, event); |
| 378 | mutex_lock(&disc->disc_mutex); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 382 | * fc_disc_error() - Handle error on dNS request |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 383 | * @disc: FC discovery context |
| 384 | * @fp: The frame pointer |
| 385 | */ |
| 386 | static void fc_disc_error(struct fc_disc *disc, struct fc_frame *fp) |
| 387 | { |
| 388 | struct fc_lport *lport = disc->lport; |
| 389 | unsigned long delay = 0; |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 390 | |
| 391 | FC_DISC_DBG(disc, "Error %ld, retries %d/%d\n", |
| 392 | PTR_ERR(fp), disc->retry_count, |
| 393 | FC_DISC_RETRY_LIMIT); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 394 | |
| 395 | if (!fp || PTR_ERR(fp) == -FC_EX_TIMEOUT) { |
| 396 | /* |
| 397 | * Memory allocation failure, or the exchange timed out, |
| 398 | * retry after delay. |
| 399 | */ |
| 400 | if (disc->retry_count < FC_DISC_RETRY_LIMIT) { |
| 401 | /* go ahead and retry */ |
| 402 | if (!fp) |
| 403 | delay = msecs_to_jiffies(FC_DISC_RETRY_DELAY); |
| 404 | else { |
| 405 | delay = msecs_to_jiffies(lport->e_d_tov); |
| 406 | |
| 407 | /* timeout faster first time */ |
| 408 | if (!disc->retry_count) |
| 409 | delay /= 4; |
| 410 | } |
| 411 | disc->retry_count++; |
| 412 | schedule_delayed_work(&disc->disc_work, delay); |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 413 | } else |
| 414 | fc_disc_done(disc, DISC_EV_FAILED); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 415 | } |
| 416 | } |
| 417 | |
| 418 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 419 | * fc_disc_gpn_ft_req() - Send Get Port Names by FC-4 type (GPN_FT) request |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 420 | * @lport: FC discovery context |
| 421 | * |
| 422 | * Locking Note: This function expects that the disc_mutex is locked |
| 423 | * before it is called. |
| 424 | */ |
| 425 | static void fc_disc_gpn_ft_req(struct fc_disc *disc) |
| 426 | { |
| 427 | struct fc_frame *fp; |
| 428 | struct fc_lport *lport = disc->lport; |
| 429 | |
| 430 | WARN_ON(!fc_lport_test_ready(lport)); |
| 431 | |
| 432 | disc->pending = 1; |
| 433 | disc->requested = 0; |
| 434 | |
| 435 | disc->buf_len = 0; |
| 436 | disc->seq_count = 0; |
| 437 | fp = fc_frame_alloc(lport, |
| 438 | sizeof(struct fc_ct_hdr) + |
| 439 | sizeof(struct fc_ns_gid_ft)); |
| 440 | if (!fp) |
| 441 | goto err; |
| 442 | |
Joe Eykholt | a46f327 | 2009-08-25 14:00:55 -0700 | [diff] [blame] | 443 | if (lport->tt.elsct_send(lport, 0, fp, |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 444 | FC_NS_GPN_FT, |
| 445 | fc_disc_gpn_ft_resp, |
| 446 | disc, lport->e_d_tov)) |
| 447 | return; |
| 448 | err: |
| 449 | fc_disc_error(disc, fp); |
| 450 | } |
| 451 | |
| 452 | /** |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 453 | * fc_disc_gpn_ft_parse() - Parse the body of the dNS GPN_FT response. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 454 | * @lport: Fibre Channel host port instance |
| 455 | * @buf: GPN_FT response buffer |
| 456 | * @len: size of response buffer |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 457 | * |
| 458 | * Goes through the list of IDs and names resulting from a request. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 459 | */ |
| 460 | static int fc_disc_gpn_ft_parse(struct fc_disc *disc, void *buf, size_t len) |
| 461 | { |
| 462 | struct fc_lport *lport; |
| 463 | struct fc_gpn_ft_resp *np; |
| 464 | char *bp; |
| 465 | size_t plen; |
| 466 | size_t tlen; |
| 467 | int error = 0; |
Joe Eykholt | 795d86f | 2009-08-25 14:00:39 -0700 | [diff] [blame] | 468 | struct fc_rport_identifiers ids; |
Joe Eykholt | ab28f1f | 2009-08-25 14:00:34 -0700 | [diff] [blame] | 469 | struct fc_rport_priv *rdata; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 470 | |
| 471 | lport = disc->lport; |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 472 | disc->seq_count++; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 473 | |
| 474 | /* |
| 475 | * Handle partial name record left over from previous call. |
| 476 | */ |
| 477 | bp = buf; |
| 478 | plen = len; |
| 479 | np = (struct fc_gpn_ft_resp *)bp; |
| 480 | tlen = disc->buf_len; |
| 481 | if (tlen) { |
| 482 | WARN_ON(tlen >= sizeof(*np)); |
| 483 | plen = sizeof(*np) - tlen; |
| 484 | WARN_ON(plen <= 0); |
| 485 | WARN_ON(plen >= sizeof(*np)); |
| 486 | if (plen > len) |
| 487 | plen = len; |
| 488 | np = &disc->partial_buf; |
| 489 | memcpy((char *)np + tlen, bp, plen); |
| 490 | |
| 491 | /* |
| 492 | * Set bp so that the loop below will advance it to the |
| 493 | * first valid full name element. |
| 494 | */ |
| 495 | bp -= tlen; |
| 496 | len += tlen; |
| 497 | plen += tlen; |
| 498 | disc->buf_len = (unsigned char) plen; |
| 499 | if (plen == sizeof(*np)) |
| 500 | disc->buf_len = 0; |
| 501 | } |
| 502 | |
| 503 | /* |
| 504 | * Handle full name records, including the one filled from above. |
| 505 | * Normally, np == bp and plen == len, but from the partial case above, |
| 506 | * bp, len describe the overall buffer, and np, plen describe the |
| 507 | * partial buffer, which if would usually be full now. |
| 508 | * After the first time through the loop, things return to "normal". |
| 509 | */ |
| 510 | while (plen >= sizeof(*np)) { |
Joe Eykholt | 795d86f | 2009-08-25 14:00:39 -0700 | [diff] [blame] | 511 | ids.port_id = ntoh24(np->fp_fid); |
| 512 | ids.port_name = ntohll(np->fp_wwpn); |
| 513 | ids.node_name = -1; |
| 514 | ids.roles = FC_RPORT_ROLE_UNKNOWN; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 515 | |
Joe Eykholt | 795d86f | 2009-08-25 14:00:39 -0700 | [diff] [blame] | 516 | if (ids.port_id != fc_host_port_id(lport->host) && |
| 517 | ids.port_name != lport->wwpn) { |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 518 | rdata = lport->tt.rport_create(lport, &ids); |
Joe Eykholt | 8345592 | 2009-08-25 14:02:01 -0700 | [diff] [blame] | 519 | if (rdata) |
Joe Eykholt | 0f6c614 | 2009-08-25 14:02:11 -0700 | [diff] [blame] | 520 | rdata->disc_id = disc->disc_id; |
Joe Eykholt | 8345592 | 2009-08-25 14:02:01 -0700 | [diff] [blame] | 521 | else |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 522 | printk(KERN_WARNING "libfc: Failed to allocate " |
| 523 | "memory for the newly discovered port " |
Joe Eykholt | 795d86f | 2009-08-25 14:00:39 -0700 | [diff] [blame] | 524 | "(%6x)\n", ids.port_id); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | if (np->fp_flags & FC_NS_FID_LAST) { |
Joe Eykholt | 786681b | 2009-08-25 14:01:29 -0700 | [diff] [blame] | 528 | fc_disc_done(disc, DISC_EV_SUCCESS); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 529 | len = 0; |
| 530 | break; |
| 531 | } |
| 532 | len -= sizeof(*np); |
| 533 | bp += sizeof(*np); |
| 534 | np = (struct fc_gpn_ft_resp *)bp; |
| 535 | plen = len; |
| 536 | } |
| 537 | |
| 538 | /* |
| 539 | * Save any partial record at the end of the buffer for next time. |
| 540 | */ |
| 541 | if (error == 0 && len > 0 && len < sizeof(*np)) { |
| 542 | if (np != &disc->partial_buf) { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 543 | FC_DISC_DBG(disc, "Partial buffer remains " |
| 544 | "for discovery\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 545 | memcpy(&disc->partial_buf, np, len); |
| 546 | } |
| 547 | disc->buf_len = (unsigned char) len; |
| 548 | } else { |
| 549 | disc->buf_len = 0; |
| 550 | } |
| 551 | return error; |
| 552 | } |
| 553 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 554 | /** |
| 555 | * fc_disc_timeout() - Retry handler for the disc component |
| 556 | * @work: Structure holding disc obj that needs retry discovery |
| 557 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 558 | * Handle retry of memory allocation for remote ports. |
| 559 | */ |
| 560 | static void fc_disc_timeout(struct work_struct *work) |
| 561 | { |
| 562 | struct fc_disc *disc = container_of(work, |
| 563 | struct fc_disc, |
| 564 | disc_work.work); |
| 565 | mutex_lock(&disc->disc_mutex); |
| 566 | if (disc->requested && !disc->pending) |
| 567 | fc_disc_gpn_ft_req(disc); |
| 568 | mutex_unlock(&disc->disc_mutex); |
| 569 | } |
| 570 | |
| 571 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 572 | * fc_disc_gpn_ft_resp() - Handle a response frame from Get Port Names (GPN_FT) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 573 | * @sp: Current sequence of GPN_FT exchange |
| 574 | * @fp: response frame |
| 575 | * @lp_arg: Fibre Channel host port instance |
| 576 | * |
Abhijeet Joglekar | 0d228c0 | 2009-04-21 16:26:52 -0700 | [diff] [blame] | 577 | * Locking Note: This function is called without disc mutex held, and |
| 578 | * should do all its processing with the mutex held |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 579 | */ |
| 580 | static void fc_disc_gpn_ft_resp(struct fc_seq *sp, struct fc_frame *fp, |
| 581 | void *disc_arg) |
| 582 | { |
| 583 | struct fc_disc *disc = disc_arg; |
| 584 | struct fc_ct_hdr *cp; |
| 585 | struct fc_frame_header *fh; |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 586 | enum fc_disc_event event = DISC_EV_NONE; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 587 | unsigned int seq_cnt; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 588 | unsigned int len; |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 589 | int error = 0; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 590 | |
Abhijeet Joglekar | 0d228c0 | 2009-04-21 16:26:52 -0700 | [diff] [blame] | 591 | mutex_lock(&disc->disc_mutex); |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 592 | FC_DISC_DBG(disc, "Received a GPN_FT response\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 593 | |
| 594 | if (IS_ERR(fp)) { |
| 595 | fc_disc_error(disc, fp); |
Abhijeet Joglekar | 0d228c0 | 2009-04-21 16:26:52 -0700 | [diff] [blame] | 596 | mutex_unlock(&disc->disc_mutex); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 597 | return; |
| 598 | } |
| 599 | |
| 600 | WARN_ON(!fc_frame_is_linear(fp)); /* buffer must be contiguous */ |
| 601 | fh = fc_frame_header_get(fp); |
| 602 | len = fr_len(fp) - sizeof(*fh); |
| 603 | seq_cnt = ntohs(fh->fh_seq_cnt); |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 604 | if (fr_sof(fp) == FC_SOF_I3 && seq_cnt == 0 && disc->seq_count == 0) { |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 605 | cp = fc_frame_payload_get(fp, sizeof(*cp)); |
| 606 | if (!cp) { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 607 | FC_DISC_DBG(disc, "GPN_FT response too short, len %d\n", |
| 608 | fr_len(fp)); |
Joe Eykholt | 883a337 | 2009-08-25 14:02:27 -0700 | [diff] [blame^] | 609 | event = DISC_EV_FAILED; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 610 | } else if (ntohs(cp->ct_cmd) == FC_FS_ACC) { |
| 611 | |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 612 | /* Accepted, parse the response. */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 613 | len -= sizeof(*cp); |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 614 | error = fc_disc_gpn_ft_parse(disc, cp + 1, len); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 615 | } else if (ntohs(cp->ct_cmd) == FC_FS_RJT) { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 616 | FC_DISC_DBG(disc, "GPN_FT rejected reason %x exp %x " |
| 617 | "(check zoning)\n", cp->ct_reason, |
| 618 | cp->ct_explan); |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 619 | event = DISC_EV_FAILED; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 620 | } else { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 621 | FC_DISC_DBG(disc, "GPN_FT unexpected response code " |
| 622 | "%x\n", ntohs(cp->ct_cmd)); |
Joe Eykholt | 883a337 | 2009-08-25 14:02:27 -0700 | [diff] [blame^] | 623 | event = DISC_EV_FAILED; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 624 | } |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 625 | } else if (fr_sof(fp) == FC_SOF_N3 && seq_cnt == disc->seq_count) { |
| 626 | error = fc_disc_gpn_ft_parse(disc, fh + 1, len); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 627 | } else { |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 628 | FC_DISC_DBG(disc, "GPN_FT unexpected frame - out of sequence? " |
| 629 | "seq_cnt %x expected %x sof %x eof %x\n", |
| 630 | seq_cnt, disc->seq_count, fr_sof(fp), fr_eof(fp)); |
Joe Eykholt | 883a337 | 2009-08-25 14:02:27 -0700 | [diff] [blame^] | 631 | event = DISC_EV_FAILED; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 632 | } |
Joe Eykholt | a1c1e4e | 2009-08-25 14:02:22 -0700 | [diff] [blame] | 633 | if (error) |
| 634 | fc_disc_error(disc, fp); |
| 635 | else if (event != DISC_EV_NONE) |
| 636 | fc_disc_done(disc, event); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 637 | fc_frame_free(fp); |
Abhijeet Joglekar | 0d228c0 | 2009-04-21 16:26:52 -0700 | [diff] [blame] | 638 | mutex_unlock(&disc->disc_mutex); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 642 | * fc_disc_single() - Discover the directory information for a single target |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 643 | * @lport: FC local port |
| 644 | * @dp: The port to rediscover |
| 645 | * |
| 646 | * Locking Note: This function expects that the disc_mutex is locked |
| 647 | * before it is called. |
| 648 | */ |
| 649 | static void fc_disc_single(struct fc_disc *disc, struct fc_disc_port *dp) |
| 650 | { |
| 651 | struct fc_lport *lport; |
Joe Eykholt | ab28f1f | 2009-08-25 14:00:34 -0700 | [diff] [blame] | 652 | struct fc_rport_priv *rdata; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 653 | |
| 654 | lport = disc->lport; |
| 655 | |
| 656 | if (dp->ids.port_id == fc_host_port_id(lport->host)) |
| 657 | goto out; |
| 658 | |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 659 | rdata = lport->tt.rport_create(lport, &dp->ids); |
| 660 | if (rdata) { |
Joe Eykholt | 0f6c614 | 2009-08-25 14:02:11 -0700 | [diff] [blame] | 661 | rdata->disc_id = disc->disc_id; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 662 | kfree(dp); |
Joe Eykholt | 9fb9d32 | 2009-08-25 14:00:50 -0700 | [diff] [blame] | 663 | lport->tt.rport_login(rdata); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 664 | } |
| 665 | return; |
| 666 | out: |
| 667 | kfree(dp); |
| 668 | } |
| 669 | |
| 670 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 671 | * fc_disc_stop() - Stop discovery for a given lport |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 672 | * @lport: The lport that discovery should stop for |
| 673 | */ |
| 674 | void fc_disc_stop(struct fc_lport *lport) |
| 675 | { |
| 676 | struct fc_disc *disc = &lport->disc; |
| 677 | |
| 678 | if (disc) { |
| 679 | cancel_delayed_work_sync(&disc->disc_work); |
| 680 | fc_disc_stop_rports(disc); |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 685 | * fc_disc_stop_final() - Stop discovery for a given lport |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 686 | * @lport: The lport that discovery should stop for |
| 687 | * |
| 688 | * This function will block until discovery has been |
| 689 | * completely stopped and all rports have been deleted. |
| 690 | */ |
| 691 | void fc_disc_stop_final(struct fc_lport *lport) |
| 692 | { |
| 693 | fc_disc_stop(lport); |
| 694 | lport->tt.rport_flush_queue(); |
| 695 | } |
| 696 | |
| 697 | /** |
Robert Love | 34f42a0 | 2009-02-27 10:55:45 -0800 | [diff] [blame] | 698 | * fc_disc_init() - Initialize the discovery block |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 699 | * @lport: FC local port |
| 700 | */ |
| 701 | int fc_disc_init(struct fc_lport *lport) |
| 702 | { |
| 703 | struct fc_disc *disc; |
| 704 | |
| 705 | if (!lport->tt.disc_start) |
| 706 | lport->tt.disc_start = fc_disc_start; |
| 707 | |
| 708 | if (!lport->tt.disc_stop) |
| 709 | lport->tt.disc_stop = fc_disc_stop; |
| 710 | |
| 711 | if (!lport->tt.disc_stop_final) |
| 712 | lport->tt.disc_stop_final = fc_disc_stop_final; |
| 713 | |
| 714 | if (!lport->tt.disc_recv_req) |
| 715 | lport->tt.disc_recv_req = fc_disc_recv_req; |
| 716 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 717 | disc = &lport->disc; |
| 718 | INIT_DELAYED_WORK(&disc->disc_work, fc_disc_timeout); |
| 719 | mutex_init(&disc->disc_mutex); |
| 720 | INIT_LIST_HEAD(&disc->rports); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 721 | |
| 722 | disc->lport = lport; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 723 | |
| 724 | return 0; |
| 725 | } |
| 726 | EXPORT_SYMBOL(fc_disc_init); |