Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 1 | /** |
Jayamohan Kallickal | d2eeb1a | 2010-01-23 05:35:15 +0530 | [diff] [blame] | 2 | * Copyright (C) 2005 - 2010 ServerEngines |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 3 | * All rights reserved. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License version 2 |
| 7 | * as published by the Free Software Foundation. The full GNU General |
| 8 | * Public License is included in this distribution in the file called COPYING. |
| 9 | * |
| 10 | * Written by: Jayamohan Kallickal (jayamohank@serverengines.com) |
| 11 | * |
| 12 | * Contact Information: |
| 13 | * linux-drivers@serverengines.com |
| 14 | * |
| 15 | * ServerEngines |
| 16 | * 209 N. Fair Oaks Ave |
| 17 | * Sunnyvale, CA 94085 |
| 18 | * |
| 19 | */ |
| 20 | |
| 21 | #include <scsi/libiscsi.h> |
| 22 | #include <scsi/scsi_transport_iscsi.h> |
| 23 | #include <scsi/scsi_transport.h> |
| 24 | #include <scsi/scsi_cmnd.h> |
| 25 | #include <scsi/scsi_device.h> |
| 26 | #include <scsi/scsi_host.h> |
| 27 | #include <scsi/scsi.h> |
| 28 | |
| 29 | #include "be_iscsi.h" |
| 30 | |
| 31 | extern struct iscsi_transport beiscsi_iscsi_transport; |
| 32 | |
| 33 | /** |
| 34 | * beiscsi_session_create - creates a new iscsi session |
| 35 | * @cmds_max: max commands supported |
| 36 | * @qdepth: max queue depth supported |
| 37 | * @initial_cmdsn: initial iscsi CMDSN |
| 38 | */ |
| 39 | struct iscsi_cls_session *beiscsi_session_create(struct iscsi_endpoint *ep, |
| 40 | u16 cmds_max, |
| 41 | u16 qdepth, |
| 42 | u32 initial_cmdsn) |
| 43 | { |
| 44 | struct Scsi_Host *shost; |
| 45 | struct beiscsi_endpoint *beiscsi_ep; |
| 46 | struct iscsi_cls_session *cls_session; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 47 | struct beiscsi_hba *phba; |
Jayamohan Kallickal | b8b9e1b8 | 2009-09-22 08:21:22 +0530 | [diff] [blame] | 48 | struct iscsi_session *sess; |
| 49 | struct beiscsi_session *beiscsi_sess; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 50 | struct beiscsi_io_task *io_task; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 51 | |
| 52 | SE_DEBUG(DBG_LVL_8, "In beiscsi_session_create\n"); |
| 53 | |
| 54 | if (!ep) { |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 55 | SE_DEBUG(DBG_LVL_1, "beiscsi_session_create: invalid ep\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 56 | return NULL; |
| 57 | } |
| 58 | beiscsi_ep = ep->dd_data; |
| 59 | phba = beiscsi_ep->phba; |
| 60 | shost = phba->shost; |
| 61 | if (cmds_max > beiscsi_ep->phba->params.wrbs_per_cxn) { |
| 62 | shost_printk(KERN_ERR, shost, "Cannot handle %d cmds." |
| 63 | "Max cmds per session supported is %d. Using %d. " |
| 64 | "\n", cmds_max, |
| 65 | beiscsi_ep->phba->params.wrbs_per_cxn, |
| 66 | beiscsi_ep->phba->params.wrbs_per_cxn); |
| 67 | cmds_max = beiscsi_ep->phba->params.wrbs_per_cxn; |
| 68 | } |
| 69 | |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 70 | cls_session = iscsi_session_setup(&beiscsi_iscsi_transport, |
| 71 | shost, cmds_max, |
| 72 | sizeof(*beiscsi_sess), |
| 73 | sizeof(*io_task), |
| 74 | initial_cmdsn, ISCSI_MAX_TARGET); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 75 | if (!cls_session) |
| 76 | return NULL; |
| 77 | sess = cls_session->dd_data; |
Jayamohan Kallickal | 2afc95b | 2009-09-22 08:22:26 +0530 | [diff] [blame] | 78 | beiscsi_sess = sess->dd_data; |
| 79 | beiscsi_sess->bhs_pool = pci_pool_create("beiscsi_bhs_pool", |
| 80 | phba->pcidev, |
| 81 | sizeof(struct be_cmd_bhs), |
| 82 | 64, 0); |
| 83 | if (!beiscsi_sess->bhs_pool) |
| 84 | goto destroy_sess; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 85 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 86 | return cls_session; |
Jayamohan Kallickal | 2afc95b | 2009-09-22 08:22:26 +0530 | [diff] [blame] | 87 | destroy_sess: |
| 88 | iscsi_session_teardown(cls_session); |
| 89 | return NULL; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | /** |
| 93 | * beiscsi_session_destroy - destroys iscsi session |
| 94 | * @cls_session: pointer to iscsi cls session |
| 95 | * |
| 96 | * Destroys iSCSI session instance and releases |
| 97 | * resources allocated for it. |
| 98 | */ |
| 99 | void beiscsi_session_destroy(struct iscsi_cls_session *cls_session) |
| 100 | { |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 101 | struct iscsi_session *sess = cls_session->dd_data; |
Jayamohan Kallickal | 2afc95b | 2009-09-22 08:22:26 +0530 | [diff] [blame] | 102 | struct beiscsi_session *beiscsi_sess = sess->dd_data; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 103 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 104 | SE_DEBUG(DBG_LVL_8, "In beiscsi_session_destroy\n"); |
Jayamohan Kallickal | 2afc95b | 2009-09-22 08:22:26 +0530 | [diff] [blame] | 105 | pci_pool_destroy(beiscsi_sess->bhs_pool); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 106 | iscsi_session_teardown(cls_session); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * beiscsi_conn_create - create an instance of iscsi connection |
| 111 | * @cls_session: ptr to iscsi_cls_session |
| 112 | * @cid: iscsi cid |
| 113 | */ |
| 114 | struct iscsi_cls_conn * |
| 115 | beiscsi_conn_create(struct iscsi_cls_session *cls_session, u32 cid) |
| 116 | { |
| 117 | struct beiscsi_hba *phba; |
| 118 | struct Scsi_Host *shost; |
| 119 | struct iscsi_cls_conn *cls_conn; |
| 120 | struct beiscsi_conn *beiscsi_conn; |
| 121 | struct iscsi_conn *conn; |
Jayamohan Kallickal | 2afc95b | 2009-09-22 08:22:26 +0530 | [diff] [blame] | 122 | struct iscsi_session *sess; |
| 123 | struct beiscsi_session *beiscsi_sess; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 124 | |
| 125 | SE_DEBUG(DBG_LVL_8, "In beiscsi_conn_create ,cid" |
| 126 | "from iscsi layer=%d\n", cid); |
| 127 | shost = iscsi_session_to_shost(cls_session); |
| 128 | phba = iscsi_host_priv(shost); |
| 129 | |
| 130 | cls_conn = iscsi_conn_setup(cls_session, sizeof(*beiscsi_conn), cid); |
| 131 | if (!cls_conn) |
| 132 | return NULL; |
| 133 | |
| 134 | conn = cls_conn->dd_data; |
| 135 | beiscsi_conn = conn->dd_data; |
| 136 | beiscsi_conn->ep = NULL; |
| 137 | beiscsi_conn->phba = phba; |
| 138 | beiscsi_conn->conn = conn; |
Jayamohan Kallickal | 2afc95b | 2009-09-22 08:22:26 +0530 | [diff] [blame] | 139 | sess = cls_session->dd_data; |
| 140 | beiscsi_sess = sess->dd_data; |
| 141 | beiscsi_conn->beiscsi_sess = beiscsi_sess; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 142 | return cls_conn; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * beiscsi_bindconn_cid - Bind the beiscsi_conn with phba connection table |
| 147 | * @beiscsi_conn: The pointer to beiscsi_conn structure |
| 148 | * @phba: The phba instance |
| 149 | * @cid: The cid to free |
| 150 | */ |
| 151 | static int beiscsi_bindconn_cid(struct beiscsi_hba *phba, |
| 152 | struct beiscsi_conn *beiscsi_conn, |
| 153 | unsigned int cid) |
| 154 | { |
| 155 | if (phba->conn_table[cid]) { |
| 156 | SE_DEBUG(DBG_LVL_1, |
| 157 | "Connection table already occupied. Detected clash\n"); |
| 158 | return -EINVAL; |
| 159 | } else { |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 160 | SE_DEBUG(DBG_LVL_8, "phba->conn_table[%d]=%p(beiscsi_conn)\n", |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 161 | cid, beiscsi_conn); |
| 162 | phba->conn_table[cid] = beiscsi_conn; |
| 163 | } |
| 164 | return 0; |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * beiscsi_conn_bind - Binds iscsi session/connection with TCP connection |
| 169 | * @cls_session: pointer to iscsi cls session |
| 170 | * @cls_conn: pointer to iscsi cls conn |
| 171 | * @transport_fd: EP handle(64 bit) |
| 172 | * |
| 173 | * This function binds the TCP Conn with iSCSI Connection and Session. |
| 174 | */ |
| 175 | int beiscsi_conn_bind(struct iscsi_cls_session *cls_session, |
| 176 | struct iscsi_cls_conn *cls_conn, |
| 177 | u64 transport_fd, int is_leading) |
| 178 | { |
| 179 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 180 | struct beiscsi_conn *beiscsi_conn = conn->dd_data; |
| 181 | struct Scsi_Host *shost = |
| 182 | (struct Scsi_Host *)iscsi_session_to_shost(cls_session); |
| 183 | struct beiscsi_hba *phba = (struct beiscsi_hba *)iscsi_host_priv(shost); |
| 184 | struct beiscsi_endpoint *beiscsi_ep; |
| 185 | struct iscsi_endpoint *ep; |
| 186 | |
| 187 | SE_DEBUG(DBG_LVL_8, "In beiscsi_conn_bind\n"); |
| 188 | ep = iscsi_lookup_endpoint(transport_fd); |
| 189 | if (!ep) |
| 190 | return -EINVAL; |
| 191 | |
| 192 | beiscsi_ep = ep->dd_data; |
| 193 | |
| 194 | if (iscsi_conn_bind(cls_session, cls_conn, is_leading)) |
| 195 | return -EINVAL; |
| 196 | |
| 197 | if (beiscsi_ep->phba != phba) { |
| 198 | SE_DEBUG(DBG_LVL_8, |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 199 | "beiscsi_ep->hba=%p not equal to phba=%p\n", |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 200 | beiscsi_ep->phba, phba); |
| 201 | return -EEXIST; |
| 202 | } |
| 203 | |
| 204 | beiscsi_conn->beiscsi_conn_cid = beiscsi_ep->ep_cid; |
| 205 | beiscsi_conn->ep = beiscsi_ep; |
| 206 | beiscsi_ep->conn = beiscsi_conn; |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 207 | SE_DEBUG(DBG_LVL_8, "beiscsi_conn=%p conn=%p ep_cid=%d\n", |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 208 | beiscsi_conn, conn, beiscsi_ep->ep_cid); |
| 209 | return beiscsi_bindconn_cid(phba, beiscsi_conn, beiscsi_ep->ep_cid); |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * beiscsi_conn_get_param - get the iscsi parameter |
| 214 | * @cls_conn: pointer to iscsi cls conn |
| 215 | * @param: parameter type identifier |
| 216 | * @buf: buffer pointer |
| 217 | * |
| 218 | * returns iscsi parameter |
| 219 | */ |
| 220 | int beiscsi_conn_get_param(struct iscsi_cls_conn *cls_conn, |
| 221 | enum iscsi_param param, char *buf) |
| 222 | { |
| 223 | struct beiscsi_endpoint *beiscsi_ep; |
| 224 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 225 | struct beiscsi_conn *beiscsi_conn = conn->dd_data; |
| 226 | int len = 0; |
| 227 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 228 | SE_DEBUG(DBG_LVL_8, "In beiscsi_conn_get_param, param= %d\n", param); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 229 | beiscsi_ep = beiscsi_conn->ep; |
| 230 | if (!beiscsi_ep) { |
| 231 | SE_DEBUG(DBG_LVL_1, |
| 232 | "In beiscsi_conn_get_param , no beiscsi_ep\n"); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 233 | return -ENODEV; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | switch (param) { |
| 237 | case ISCSI_PARAM_CONN_PORT: |
| 238 | len = sprintf(buf, "%hu\n", beiscsi_ep->dst_tcpport); |
| 239 | break; |
| 240 | case ISCSI_PARAM_CONN_ADDRESS: |
| 241 | if (beiscsi_ep->ip_type == BE2_IPV4) |
| 242 | len = sprintf(buf, "%pI4\n", &beiscsi_ep->dst_addr); |
| 243 | else |
| 244 | len = sprintf(buf, "%pI6\n", &beiscsi_ep->dst6_addr); |
| 245 | break; |
| 246 | default: |
| 247 | return iscsi_conn_get_param(cls_conn, param, buf); |
| 248 | } |
| 249 | return len; |
| 250 | } |
| 251 | |
| 252 | int beiscsi_set_param(struct iscsi_cls_conn *cls_conn, |
| 253 | enum iscsi_param param, char *buf, int buflen) |
| 254 | { |
| 255 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 256 | struct iscsi_session *session = conn->session; |
| 257 | int ret; |
| 258 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 259 | SE_DEBUG(DBG_LVL_8, "In beiscsi_conn_set_param, param= %d\n", param); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 260 | ret = iscsi_set_param(cls_conn, param, buf, buflen); |
| 261 | if (ret) |
| 262 | return ret; |
| 263 | /* |
| 264 | * If userspace tried to set the value to higher than we can |
| 265 | * support override here. |
| 266 | */ |
| 267 | switch (param) { |
| 268 | case ISCSI_PARAM_FIRST_BURST: |
| 269 | if (session->first_burst > 8192) |
| 270 | session->first_burst = 8192; |
| 271 | break; |
| 272 | case ISCSI_PARAM_MAX_RECV_DLENGTH: |
| 273 | if (conn->max_recv_dlength > 65536) |
| 274 | conn->max_recv_dlength = 65536; |
| 275 | break; |
| 276 | case ISCSI_PARAM_MAX_BURST: |
Jayamohan Kallickal | 230dceb | 2010-01-23 05:36:10 +0530 | [diff] [blame] | 277 | if (session->max_burst > 262144) |
| 278 | session->max_burst = 262144; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 279 | break; |
Jayamohan Kallickal | 42f43c4 | 2010-07-22 04:26:45 +0530 | [diff] [blame^] | 280 | case ISCSI_PARAM_MAX_XMIT_DLENGTH: |
| 281 | if ((conn->max_xmit_dlength > 65536) || |
| 282 | (conn->max_xmit_dlength == 0)) |
| 283 | conn->max_xmit_dlength = 65536; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 284 | default: |
| 285 | return 0; |
| 286 | } |
| 287 | |
| 288 | return 0; |
| 289 | } |
| 290 | |
| 291 | /** |
| 292 | * beiscsi_get_host_param - get the iscsi parameter |
| 293 | * @shost: pointer to scsi_host structure |
| 294 | * @param: parameter type identifier |
| 295 | * @buf: buffer pointer |
| 296 | * |
| 297 | * returns host parameter |
| 298 | */ |
| 299 | int beiscsi_get_host_param(struct Scsi_Host *shost, |
| 300 | enum iscsi_host_param param, char *buf) |
| 301 | { |
| 302 | struct beiscsi_hba *phba = (struct beiscsi_hba *)iscsi_host_priv(shost); |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 303 | struct be_cmd_resp_get_mac_addr *resp; |
| 304 | struct be_mcc_wrb *wrb; |
| 305 | unsigned int tag, wrb_num; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 306 | int len = 0; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 307 | unsigned short status, extd_status; |
| 308 | struct be_queue_info *mccq = &phba->ctrl.mcc_obj.q; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 309 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 310 | SE_DEBUG(DBG_LVL_8, "In beiscsi_get_host_param, param= %d\n", param); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 311 | switch (param) { |
| 312 | case ISCSI_HOST_PARAM_HWADDRESS: |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 313 | tag = be_cmd_get_mac_addr(phba); |
| 314 | if (!tag) { |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 315 | SE_DEBUG(DBG_LVL_1, "be_cmd_get_mac_addr Failed\n"); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 316 | return -EAGAIN; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 317 | } else |
| 318 | wait_event_interruptible(phba->ctrl.mcc_wait[tag], |
| 319 | phba->ctrl.mcc_numtag[tag]); |
| 320 | |
| 321 | wrb_num = (phba->ctrl.mcc_numtag[tag] & 0x00FF0000) >> 16; |
| 322 | extd_status = (phba->ctrl.mcc_numtag[tag] & 0x0000FF00) >> 8; |
| 323 | status = phba->ctrl.mcc_numtag[tag] & 0x000000FF; |
| 324 | if (status || extd_status) { |
| 325 | SE_DEBUG(DBG_LVL_1, "be_cmd_get_mac_addr Failed" |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 326 | " status = %d extd_status = %d\n", |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 327 | status, extd_status); |
| 328 | free_mcc_tag(&phba->ctrl, tag); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 329 | return -EAGAIN; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 330 | } else { |
| 331 | wrb = queue_get_wrb(mccq, wrb_num); |
| 332 | free_mcc_tag(&phba->ctrl, tag); |
| 333 | resp = embedded_payload(wrb); |
| 334 | memcpy(phba->mac_address, resp->mac_address, ETH_ALEN); |
| 335 | len = sysfs_format_mac(buf, phba->mac_address, |
| 336 | ETH_ALEN); |
| 337 | } |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 338 | break; |
| 339 | default: |
| 340 | return iscsi_host_get_param(shost, param, buf); |
| 341 | } |
| 342 | return len; |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * beiscsi_conn_get_stats - get the iscsi stats |
| 347 | * @cls_conn: pointer to iscsi cls conn |
| 348 | * @stats: pointer to iscsi_stats structure |
| 349 | * |
| 350 | * returns iscsi stats |
| 351 | */ |
| 352 | void beiscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, |
| 353 | struct iscsi_stats *stats) |
| 354 | { |
| 355 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 356 | |
| 357 | SE_DEBUG(DBG_LVL_8, "In beiscsi_conn_get_stats\n"); |
| 358 | stats->txdata_octets = conn->txdata_octets; |
| 359 | stats->rxdata_octets = conn->rxdata_octets; |
| 360 | stats->dataout_pdus = conn->dataout_pdus_cnt; |
| 361 | stats->scsirsp_pdus = conn->scsirsp_pdus_cnt; |
| 362 | stats->scsicmd_pdus = conn->scsicmd_pdus_cnt; |
| 363 | stats->datain_pdus = conn->datain_pdus_cnt; |
| 364 | stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt; |
| 365 | stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt; |
| 366 | stats->r2t_pdus = conn->r2t_pdus_cnt; |
| 367 | stats->digest_err = 0; |
| 368 | stats->timeout_err = 0; |
| 369 | stats->custom_length = 0; |
| 370 | strcpy(stats->custom[0].desc, "eh_abort_cnt"); |
| 371 | stats->custom[0].value = conn->eh_abort_cnt; |
| 372 | } |
| 373 | |
| 374 | /** |
| 375 | * beiscsi_set_params_for_offld - get the parameters for offload |
| 376 | * @beiscsi_conn: pointer to beiscsi_conn |
| 377 | * @params: pointer to offload_params structure |
| 378 | */ |
| 379 | static void beiscsi_set_params_for_offld(struct beiscsi_conn *beiscsi_conn, |
| 380 | struct beiscsi_offload_params *params) |
| 381 | { |
| 382 | struct iscsi_conn *conn = beiscsi_conn->conn; |
| 383 | struct iscsi_session *session = conn->session; |
| 384 | |
| 385 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, max_burst_length, |
| 386 | params, session->max_burst); |
| 387 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, |
| 388 | max_send_data_segment_length, params, |
| 389 | conn->max_xmit_dlength); |
| 390 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, first_burst_length, |
| 391 | params, session->first_burst); |
| 392 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, erl, params, |
| 393 | session->erl); |
| 394 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, dde, params, |
| 395 | conn->datadgst_en); |
| 396 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, hde, params, |
| 397 | conn->hdrdgst_en); |
| 398 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, ir2t, params, |
| 399 | session->initial_r2t_en); |
| 400 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, imd, params, |
| 401 | session->imm_data_en); |
| 402 | AMAP_SET_BITS(struct amap_beiscsi_offload_params, exp_statsn, params, |
| 403 | (conn->exp_statsn - 1)); |
| 404 | } |
| 405 | |
| 406 | /** |
| 407 | * beiscsi_conn_start - offload of session to chip |
| 408 | * @cls_conn: pointer to beiscsi_conn |
| 409 | */ |
| 410 | int beiscsi_conn_start(struct iscsi_cls_conn *cls_conn) |
| 411 | { |
| 412 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 413 | struct beiscsi_conn *beiscsi_conn = conn->dd_data; |
| 414 | struct beiscsi_endpoint *beiscsi_ep; |
| 415 | struct beiscsi_offload_params params; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 416 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 417 | SE_DEBUG(DBG_LVL_8, "In beiscsi_conn_start\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 418 | memset(¶ms, 0, sizeof(struct beiscsi_offload_params)); |
| 419 | beiscsi_ep = beiscsi_conn->ep; |
| 420 | if (!beiscsi_ep) |
| 421 | SE_DEBUG(DBG_LVL_1, "In beiscsi_conn_start , no beiscsi_ep\n"); |
| 422 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 423 | beiscsi_conn->login_in_progress = 0; |
| 424 | beiscsi_set_params_for_offld(beiscsi_conn, ¶ms); |
| 425 | beiscsi_offload_connection(beiscsi_conn, ¶ms); |
| 426 | iscsi_conn_start(cls_conn); |
| 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | /** |
| 431 | * beiscsi_get_cid - Allocate a cid |
| 432 | * @phba: The phba instance |
| 433 | */ |
| 434 | static int beiscsi_get_cid(struct beiscsi_hba *phba) |
| 435 | { |
| 436 | unsigned short cid = 0xFFFF; |
| 437 | |
| 438 | if (!phba->avlbl_cids) |
| 439 | return cid; |
| 440 | |
| 441 | cid = phba->cid_array[phba->cid_alloc++]; |
| 442 | if (phba->cid_alloc == phba->params.cxns_per_ctrl) |
| 443 | phba->cid_alloc = 0; |
| 444 | phba->avlbl_cids--; |
| 445 | return cid; |
| 446 | } |
| 447 | |
| 448 | /** |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 449 | * beiscsi_put_cid - Free the cid |
| 450 | * @phba: The phba for which the cid is being freed |
| 451 | * @cid: The cid to free |
| 452 | */ |
| 453 | static void beiscsi_put_cid(struct beiscsi_hba *phba, unsigned short cid) |
| 454 | { |
| 455 | phba->avlbl_cids++; |
| 456 | phba->cid_array[phba->cid_free++] = cid; |
| 457 | if (phba->cid_free == phba->params.cxns_per_ctrl) |
| 458 | phba->cid_free = 0; |
| 459 | } |
| 460 | |
| 461 | /** |
| 462 | * beiscsi_free_ep - free endpoint |
| 463 | * @ep: pointer to iscsi endpoint structure |
| 464 | */ |
| 465 | static void beiscsi_free_ep(struct beiscsi_endpoint *beiscsi_ep) |
| 466 | { |
| 467 | struct beiscsi_hba *phba = beiscsi_ep->phba; |
| 468 | |
| 469 | beiscsi_put_cid(phba, beiscsi_ep->ep_cid); |
| 470 | beiscsi_ep->phba = NULL; |
| 471 | } |
| 472 | |
| 473 | /** |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 474 | * beiscsi_open_conn - Ask FW to open a TCP connection |
| 475 | * @ep: endpoint to be used |
| 476 | * @src_addr: The source IP address |
| 477 | * @dst_addr: The Destination IP address |
| 478 | * |
| 479 | * Asks the FW to open a TCP connection |
| 480 | */ |
| 481 | static int beiscsi_open_conn(struct iscsi_endpoint *ep, |
| 482 | struct sockaddr *src_addr, |
| 483 | struct sockaddr *dst_addr, int non_blocking) |
| 484 | { |
| 485 | struct beiscsi_endpoint *beiscsi_ep = ep->dd_data; |
| 486 | struct beiscsi_hba *phba = beiscsi_ep->phba; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 487 | struct be_queue_info *mccq = &phba->ctrl.mcc_obj.q; |
| 488 | struct be_mcc_wrb *wrb; |
| 489 | struct tcp_connect_and_offload_out *ptcpcnct_out; |
| 490 | unsigned short status, extd_status; |
| 491 | unsigned int tag, wrb_num; |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 492 | int ret = -ENOMEM; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 493 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 494 | SE_DEBUG(DBG_LVL_8, "In beiscsi_open_conn\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 495 | beiscsi_ep->ep_cid = beiscsi_get_cid(phba); |
| 496 | if (beiscsi_ep->ep_cid == 0xFFFF) { |
| 497 | SE_DEBUG(DBG_LVL_1, "No free cid available\n"); |
| 498 | return ret; |
| 499 | } |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 500 | SE_DEBUG(DBG_LVL_8, "In beiscsi_open_conn, ep_cid=%d\n", |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 501 | beiscsi_ep->ep_cid); |
Jayamohan Kallickal | 7da5087 | 2010-01-05 05:04:12 +0530 | [diff] [blame] | 502 | phba->ep_array[beiscsi_ep->ep_cid - |
| 503 | phba->fw_config.iscsi_cid_start] = ep; |
| 504 | if (beiscsi_ep->ep_cid > (phba->fw_config.iscsi_cid_start + |
| 505 | phba->params.cxns_per_ctrl * 2)) { |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 506 | SE_DEBUG(DBG_LVL_1, "Failed in allocate iscsi cid\n"); |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 507 | goto free_ep; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | beiscsi_ep->cid_vld = 0; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 511 | tag = mgmt_open_connection(phba, dst_addr, beiscsi_ep); |
| 512 | if (!tag) { |
| 513 | SE_DEBUG(DBG_LVL_1, |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 514 | "mgmt_open_connection Failed for cid=%d\n", |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 515 | beiscsi_ep->ep_cid); |
Jayamohan Kallickal | 1f92638 | 2010-07-22 04:22:27 +0530 | [diff] [blame] | 516 | beiscsi_put_cid(phba, beiscsi_ep->ep_cid); |
| 517 | return -EAGAIN; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 518 | } else { |
| 519 | wait_event_interruptible(phba->ctrl.mcc_wait[tag], |
| 520 | phba->ctrl.mcc_numtag[tag]); |
| 521 | } |
| 522 | wrb_num = (phba->ctrl.mcc_numtag[tag] & 0x00FF0000) >> 16; |
| 523 | extd_status = (phba->ctrl.mcc_numtag[tag] & 0x0000FF00) >> 8; |
| 524 | status = phba->ctrl.mcc_numtag[tag] & 0x000000FF; |
| 525 | if (status || extd_status) { |
| 526 | SE_DEBUG(DBG_LVL_1, "mgmt_open_connection Failed" |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 527 | " status = %d extd_status = %d\n", |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 528 | status, extd_status); |
| 529 | free_mcc_tag(&phba->ctrl, tag); |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 530 | goto free_ep; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 531 | } else { |
| 532 | wrb = queue_get_wrb(mccq, wrb_num); |
| 533 | free_mcc_tag(&phba->ctrl, tag); |
| 534 | |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 535 | ptcpcnct_out = embedded_payload(wrb); |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 536 | beiscsi_ep = ep->dd_data; |
| 537 | beiscsi_ep->fw_handle = ptcpcnct_out->connection_handle; |
| 538 | beiscsi_ep->cid_vld = 1; |
| 539 | SE_DEBUG(DBG_LVL_8, "mgmt_open_connection Success\n"); |
| 540 | } |
| 541 | return 0; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 542 | |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 543 | free_ep: |
| 544 | beiscsi_free_ep(beiscsi_ep); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 545 | return -EBUSY; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 546 | } |
| 547 | |
| 548 | /** |
| 549 | * beiscsi_ep_connect - Ask chip to create TCP Conn |
| 550 | * @scsi_host: Pointer to scsi_host structure |
| 551 | * @dst_addr: The IP address of Target |
| 552 | * @non_blocking: blocking or non-blocking call |
| 553 | * |
| 554 | * This routines first asks chip to create a connection and then allocates an EP |
| 555 | */ |
| 556 | struct iscsi_endpoint * |
| 557 | beiscsi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr, |
| 558 | int non_blocking) |
| 559 | { |
| 560 | struct beiscsi_hba *phba; |
| 561 | struct beiscsi_endpoint *beiscsi_ep; |
| 562 | struct iscsi_endpoint *ep; |
| 563 | int ret; |
| 564 | |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 565 | SE_DEBUG(DBG_LVL_8, "In beiscsi_ep_connect\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 566 | if (shost) |
| 567 | phba = iscsi_host_priv(shost); |
| 568 | else { |
| 569 | ret = -ENXIO; |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 570 | SE_DEBUG(DBG_LVL_1, "shost is NULL\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 571 | return ERR_PTR(ret); |
| 572 | } |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 573 | |
Jayamohan Kallickal | 5dc1c41 | 2010-01-23 05:36:52 +0530 | [diff] [blame] | 574 | if (phba->state != BE_ADAPTER_UP) { |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 575 | ret = -EBUSY; |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 576 | SE_DEBUG(DBG_LVL_1, "The Adapter state is Not UP\n"); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 577 | return ERR_PTR(ret); |
| 578 | } |
| 579 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 580 | ep = iscsi_create_endpoint(sizeof(struct beiscsi_endpoint)); |
| 581 | if (!ep) { |
| 582 | ret = -ENOMEM; |
| 583 | return ERR_PTR(ret); |
| 584 | } |
| 585 | |
| 586 | beiscsi_ep = ep->dd_data; |
| 587 | beiscsi_ep->phba = phba; |
Jayamohan Kallickal | c246228 | 2010-01-05 05:05:34 +0530 | [diff] [blame] | 588 | beiscsi_ep->openiscsi_ep = ep; |
Jayamohan Kallickal | f5ed7bd | 2010-07-22 04:18:01 +0530 | [diff] [blame] | 589 | ret = beiscsi_open_conn(ep, NULL, dst_addr, non_blocking); |
| 590 | if (ret) { |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 591 | SE_DEBUG(DBG_LVL_1, "Failed in beiscsi_open_conn\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 592 | goto free_ep; |
| 593 | } |
| 594 | |
| 595 | return ep; |
| 596 | |
| 597 | free_ep: |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 598 | iscsi_destroy_endpoint(ep); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 599 | return ERR_PTR(ret); |
| 600 | } |
| 601 | |
| 602 | /** |
| 603 | * beiscsi_ep_poll - Poll to see if connection is established |
| 604 | * @ep: endpoint to be used |
| 605 | * @timeout_ms: timeout specified in millisecs |
| 606 | * |
| 607 | * Poll to see if TCP connection established |
| 608 | */ |
| 609 | int beiscsi_ep_poll(struct iscsi_endpoint *ep, int timeout_ms) |
| 610 | { |
| 611 | struct beiscsi_endpoint *beiscsi_ep = ep->dd_data; |
| 612 | |
| 613 | SE_DEBUG(DBG_LVL_8, "In beiscsi_ep_poll\n"); |
| 614 | if (beiscsi_ep->cid_vld == 1) |
| 615 | return 1; |
| 616 | else |
| 617 | return 0; |
| 618 | } |
| 619 | |
| 620 | /** |
| 621 | * beiscsi_close_conn - Upload the connection |
| 622 | * @ep: The iscsi endpoint |
| 623 | * @flag: The type of connection closure |
| 624 | */ |
Jayamohan Kallickal | c246228 | 2010-01-05 05:05:34 +0530 | [diff] [blame] | 625 | static int beiscsi_close_conn(struct beiscsi_endpoint *beiscsi_ep, int flag) |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 626 | { |
| 627 | int ret = 0; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 628 | unsigned int tag; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 629 | struct beiscsi_hba *phba = beiscsi_ep->phba; |
| 630 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 631 | tag = mgmt_upload_connection(phba, beiscsi_ep->ep_cid, flag); |
| 632 | if (!tag) { |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 633 | SE_DEBUG(DBG_LVL_8, "upload failed for cid 0x%x\n", |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 634 | beiscsi_ep->ep_cid); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 635 | ret = -EAGAIN; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 636 | } else { |
| 637 | wait_event_interruptible(phba->ctrl.mcc_wait[tag], |
| 638 | phba->ctrl.mcc_numtag[tag]); |
| 639 | free_mcc_tag(&phba->ctrl, tag); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 640 | } |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 641 | return ret; |
| 642 | } |
| 643 | |
| 644 | /** |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 645 | * beiscsi_unbind_conn_to_cid - Unbind the beiscsi_conn from phba conn table |
| 646 | * @phba: The phba instance |
| 647 | * @cid: The cid to free |
| 648 | */ |
| 649 | static int beiscsi_unbind_conn_to_cid(struct beiscsi_hba *phba, |
| 650 | unsigned int cid) |
| 651 | { |
| 652 | if (phba->conn_table[cid]) |
| 653 | phba->conn_table[cid] = NULL; |
| 654 | else { |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 655 | SE_DEBUG(DBG_LVL_8, "Connection table Not occupied.\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 656 | return -EINVAL; |
| 657 | } |
| 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | /** |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 662 | * beiscsi_ep_disconnect - Tears down the TCP connection |
| 663 | * @ep: endpoint to be used |
| 664 | * |
| 665 | * Tears down the TCP connection |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 666 | */ |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 667 | void beiscsi_ep_disconnect(struct iscsi_endpoint *ep) |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 668 | { |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 669 | struct beiscsi_conn *beiscsi_conn; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 670 | struct beiscsi_endpoint *beiscsi_ep; |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 671 | struct beiscsi_hba *phba; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 672 | unsigned int tag; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 673 | unsigned short savecfg_flag = CMD_ISCSI_SESSION_SAVE_CFG_ON_FLASH; |
| 674 | |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 675 | beiscsi_ep = ep->dd_data; |
| 676 | phba = beiscsi_ep->phba; |
| 677 | SE_DEBUG(DBG_LVL_8, "In beiscsi_ep_disconnect for ep_cid = %d\n", |
| 678 | beiscsi_ep->ep_cid); |
| 679 | |
| 680 | if (!beiscsi_ep->conn) { |
| 681 | SE_DEBUG(DBG_LVL_8, "In beiscsi_ep_disconnect, no " |
| 682 | "beiscsi_ep\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 683 | return; |
| 684 | } |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 685 | beiscsi_conn = beiscsi_ep->conn; |
| 686 | iscsi_suspend_queue(beiscsi_conn->conn); |
| 687 | |
| 688 | SE_DEBUG(DBG_LVL_8, "In beiscsi_ep_disconnect ep_cid = %d\n", |
| 689 | beiscsi_ep->ep_cid); |
| 690 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 691 | tag = mgmt_invalidate_connection(phba, beiscsi_ep, |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 692 | beiscsi_ep->ep_cid, 1, |
| 693 | savecfg_flag); |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 694 | if (!tag) { |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 695 | SE_DEBUG(DBG_LVL_1, |
Jayamohan Kallickal | 457ff3b | 2010-07-22 04:16:00 +0530 | [diff] [blame] | 696 | "mgmt_invalidate_connection Failed for cid=%d\n", |
Jayamohan Kallickal | 90a289e | 2010-02-20 08:04:28 +0530 | [diff] [blame] | 697 | beiscsi_ep->ep_cid); |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 698 | } else { |
| 699 | wait_event_interruptible(phba->ctrl.mcc_wait[tag], |
| 700 | phba->ctrl.mcc_numtag[tag]); |
| 701 | free_mcc_tag(&phba->ctrl, tag); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 702 | } |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 703 | |
Jayamohan Kallickal | c246228 | 2010-01-05 05:05:34 +0530 | [diff] [blame] | 704 | beiscsi_close_conn(beiscsi_ep, CONNECTION_UPLOAD_GRACEFUL); |
| 705 | beiscsi_free_ep(beiscsi_ep); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 706 | beiscsi_unbind_conn_to_cid(phba, beiscsi_ep->ep_cid); |
Mike Christie | fa95d20 | 2010-06-09 03:30:08 -0500 | [diff] [blame] | 707 | iscsi_destroy_endpoint(beiscsi_ep->openiscsi_ep); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 708 | } |