Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004, 2005, 2006 Voltaire, Inc. All rights reserved. |
| 3 | * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved. |
Or Gerlitz | 3ee07d2 | 2014-04-01 16:28:41 +0300 | [diff] [blame] | 4 | * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved. |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 5 | * |
| 6 | * This software is available to you under a choice of one of two |
| 7 | * licenses. You may choose to be licensed under the terms of the GNU |
| 8 | * General Public License (GPL) Version 2, available from the file |
| 9 | * COPYING in the main directory of this source tree, or the |
| 10 | * OpenIB.org BSD license below: |
| 11 | * |
| 12 | * Redistribution and use in source and binary forms, with or |
| 13 | * without modification, are permitted provided that the following |
| 14 | * conditions are met: |
| 15 | * |
| 16 | * - Redistributions of source code must retain the above |
| 17 | * copyright notice, this list of conditions and the following |
| 18 | * disclaimer. |
| 19 | * |
| 20 | * - Redistributions in binary form must reproduce the above |
| 21 | * copyright notice, this list of conditions and the following |
| 22 | * disclaimer in the documentation and/or other materials |
| 23 | * provided with the distribution. |
| 24 | * |
| 25 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 26 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 27 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 28 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 29 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 30 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 31 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 32 | * SOFTWARE. |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 33 | */ |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 34 | #include <linux/kernel.h> |
| 35 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 36 | #include <linux/slab.h> |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 37 | #include <linux/delay.h> |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 38 | |
| 39 | #include "iscsi_iser.h" |
| 40 | |
| 41 | #define ISCSI_ISER_MAX_CONN 8 |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 42 | #define ISER_MAX_RX_LEN (ISER_QP_MAX_RECV_DTOS * ISCSI_ISER_MAX_CONN) |
| 43 | #define ISER_MAX_TX_LEN (ISER_QP_MAX_REQ_DTOS * ISCSI_ISER_MAX_CONN) |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 44 | #define ISER_MAX_CQ_LEN (ISER_MAX_RX_LEN + ISER_MAX_TX_LEN + \ |
| 45 | ISCSI_ISER_MAX_CONN) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 46 | |
Sagi Grimberg | 183cfa4 | 2014-10-01 14:02:08 +0300 | [diff] [blame] | 47 | static int iser_cq_poll_limit = 512; |
| 48 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 49 | static void iser_cq_tasklet_fn(unsigned long data); |
| 50 | static void iser_cq_callback(struct ib_cq *cq, void *cq_context); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 51 | |
| 52 | static void iser_cq_event_callback(struct ib_event *cause, void *context) |
| 53 | { |
Sagi Grimberg | 871e00a | 2015-05-18 13:40:30 +0300 | [diff] [blame] | 54 | iser_err("cq event %s (%d)\n", |
| 55 | ib_event_msg(cause->event), cause->event); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | static void iser_qp_event_callback(struct ib_event *cause, void *context) |
| 59 | { |
Sagi Grimberg | 871e00a | 2015-05-18 13:40:30 +0300 | [diff] [blame] | 60 | iser_err("qp event %s (%d)\n", |
| 61 | ib_event_msg(cause->event), cause->event); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 62 | } |
| 63 | |
Or Gerlitz | 2110f9b | 2010-05-05 17:30:10 +0300 | [diff] [blame] | 64 | static void iser_event_handler(struct ib_event_handler *handler, |
| 65 | struct ib_event *event) |
| 66 | { |
Sagi Grimberg | 871e00a | 2015-05-18 13:40:30 +0300 | [diff] [blame] | 67 | iser_err("async event %s (%d) on device %s port %d\n", |
| 68 | ib_event_msg(event->event), event->event, |
| 69 | event->device->name, event->element.port_num); |
Or Gerlitz | 2110f9b | 2010-05-05 17:30:10 +0300 | [diff] [blame] | 70 | } |
| 71 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 72 | /** |
| 73 | * iser_create_device_ib_res - creates Protection Domain (PD), Completion |
| 74 | * Queue (CQ), DMA Memory Region (DMA MR) with the device associated with |
| 75 | * the adapator. |
| 76 | * |
| 77 | * returns 0 on success, -1 on failure |
| 78 | */ |
| 79 | static int iser_create_device_ib_res(struct iser_device *device) |
| 80 | { |
Sagi Grimberg | 65198d6 | 2014-03-05 19:43:42 +0200 | [diff] [blame] | 81 | struct ib_device_attr *dev_attr = &device->dev_attr; |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 82 | int ret, i, max_cqe; |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 83 | |
Sagi Grimberg | 65198d6 | 2014-03-05 19:43:42 +0200 | [diff] [blame] | 84 | ret = ib_query_device(device->ib_device, dev_attr); |
| 85 | if (ret) { |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 86 | pr_warn("Query device failed for %s\n", device->ib_device->name); |
Sagi Grimberg | 65198d6 | 2014-03-05 19:43:42 +0200 | [diff] [blame] | 87 | return ret; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | /* Assign function handles - based on FMR support */ |
| 91 | if (device->ib_device->alloc_fmr && device->ib_device->dealloc_fmr && |
| 92 | device->ib_device->map_phys_fmr && device->ib_device->unmap_fmr) { |
| 93 | iser_info("FMR supported, using FMR for registration\n"); |
| 94 | device->iser_alloc_rdma_reg_res = iser_create_fmr_pool; |
| 95 | device->iser_free_rdma_reg_res = iser_free_fmr_pool; |
| 96 | device->iser_reg_rdma_mem = iser_reg_rdma_mem_fmr; |
| 97 | device->iser_unreg_rdma_mem = iser_unreg_mem_fmr; |
| 98 | } else |
| 99 | if (dev_attr->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS) { |
Sagi Grimberg | 7306b8f | 2014-03-05 19:43:39 +0200 | [diff] [blame] | 100 | iser_info("FastReg supported, using FastReg for registration\n"); |
| 101 | device->iser_alloc_rdma_reg_res = iser_create_fastreg_pool; |
| 102 | device->iser_free_rdma_reg_res = iser_free_fastreg_pool; |
| 103 | device->iser_reg_rdma_mem = iser_reg_rdma_mem_fastreg; |
| 104 | device->iser_unreg_rdma_mem = iser_unreg_mem_fastreg; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 105 | } else { |
Sagi Grimberg | 7306b8f | 2014-03-05 19:43:39 +0200 | [diff] [blame] | 106 | iser_err("IB device does not support FMRs nor FastRegs, can't register memory\n"); |
Sagi Grimberg | 65198d6 | 2014-03-05 19:43:42 +0200 | [diff] [blame] | 107 | return -1; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 108 | } |
Sagi Grimberg | b4e155f | 2013-07-28 12:35:39 +0300 | [diff] [blame] | 109 | |
Sagi Grimberg | da64bdb | 2014-12-07 16:10:03 +0200 | [diff] [blame] | 110 | device->comps_used = min_t(int, num_online_cpus(), |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 111 | device->ib_device->num_comp_vectors); |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 112 | |
Sagi Grimberg | da64bdb | 2014-12-07 16:10:03 +0200 | [diff] [blame] | 113 | device->comps = kcalloc(device->comps_used, sizeof(*device->comps), |
| 114 | GFP_KERNEL); |
| 115 | if (!device->comps) |
| 116 | goto comps_err; |
| 117 | |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 118 | max_cqe = min(ISER_MAX_CQ_LEN, dev_attr->max_cqe); |
| 119 | |
| 120 | iser_info("using %d CQs, device %s supports %d vectors max_cqe %d\n", |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 121 | device->comps_used, device->ib_device->name, |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 122 | device->ib_device->num_comp_vectors, max_cqe); |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 123 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 124 | device->pd = ib_alloc_pd(device->ib_device); |
| 125 | if (IS_ERR(device->pd)) |
| 126 | goto pd_err; |
| 127 | |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 128 | for (i = 0; i < device->comps_used; i++) { |
Matan Barak | 8e37210 | 2015-06-11 16:35:21 +0300 | [diff] [blame] | 129 | struct ib_cq_init_attr cq_attr = {}; |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 130 | struct iser_comp *comp = &device->comps[i]; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 131 | |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 132 | comp->device = device; |
Matan Barak | 8e37210 | 2015-06-11 16:35:21 +0300 | [diff] [blame] | 133 | cq_attr.cqe = max_cqe; |
| 134 | cq_attr.comp_vector = i; |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 135 | comp->cq = ib_create_cq(device->ib_device, |
| 136 | iser_cq_callback, |
| 137 | iser_cq_event_callback, |
| 138 | (void *)comp, |
Matan Barak | 8e37210 | 2015-06-11 16:35:21 +0300 | [diff] [blame] | 139 | &cq_attr); |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 140 | if (IS_ERR(comp->cq)) { |
| 141 | comp->cq = NULL; |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 142 | goto cq_err; |
Roi Dayan | c33b15f | 2014-09-02 17:08:41 +0300 | [diff] [blame] | 143 | } |
Or Gerlitz | 78ad0a3 | 2010-02-08 13:19:21 +0000 | [diff] [blame] | 144 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 145 | if (ib_req_notify_cq(comp->cq, IB_CQ_NEXT_COMP)) |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 146 | goto cq_err; |
| 147 | |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 148 | tasklet_init(&comp->tasklet, iser_cq_tasklet_fn, |
| 149 | (unsigned long)comp); |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 150 | } |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 151 | |
Erez Zilber | d811102 | 2006-09-11 12:26:33 +0300 | [diff] [blame] | 152 | device->mr = ib_get_dma_mr(device->pd, IB_ACCESS_LOCAL_WRITE | |
| 153 | IB_ACCESS_REMOTE_WRITE | |
| 154 | IB_ACCESS_REMOTE_READ); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 155 | if (IS_ERR(device->mr)) |
| 156 | goto dma_mr_err; |
| 157 | |
Or Gerlitz | 2110f9b | 2010-05-05 17:30:10 +0300 | [diff] [blame] | 158 | INIT_IB_EVENT_HANDLER(&device->event_handler, device->ib_device, |
| 159 | iser_event_handler); |
| 160 | if (ib_register_event_handler(&device->event_handler)) |
| 161 | goto handler_err; |
| 162 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 163 | return 0; |
| 164 | |
Or Gerlitz | 2110f9b | 2010-05-05 17:30:10 +0300 | [diff] [blame] | 165 | handler_err: |
| 166 | ib_dereg_mr(device->mr); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 167 | dma_mr_err: |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 168 | for (i = 0; i < device->comps_used; i++) |
| 169 | tasklet_kill(&device->comps[i].tasklet); |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 170 | cq_err: |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 171 | for (i = 0; i < device->comps_used; i++) { |
| 172 | struct iser_comp *comp = &device->comps[i]; |
| 173 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 174 | if (comp->cq) |
| 175 | ib_destroy_cq(comp->cq); |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 176 | } |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 177 | ib_dealloc_pd(device->pd); |
| 178 | pd_err: |
Sagi Grimberg | da64bdb | 2014-12-07 16:10:03 +0200 | [diff] [blame] | 179 | kfree(device->comps); |
| 180 | comps_err: |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 181 | iser_err("failed to allocate an IB resource\n"); |
| 182 | return -1; |
| 183 | } |
| 184 | |
| 185 | /** |
Oliver Pinter | 38dc732 | 2008-01-25 14:15:32 -0800 | [diff] [blame] | 186 | * iser_free_device_ib_res - destroy/dealloc/dereg the DMA MR, |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 187 | * CQ and PD created with the device associated with the adapator. |
| 188 | */ |
| 189 | static void iser_free_device_ib_res(struct iser_device *device) |
| 190 | { |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 191 | int i; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 192 | BUG_ON(device->mr == NULL); |
| 193 | |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 194 | for (i = 0; i < device->comps_used; i++) { |
| 195 | struct iser_comp *comp = &device->comps[i]; |
| 196 | |
| 197 | tasklet_kill(&comp->tasklet); |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 198 | ib_destroy_cq(comp->cq); |
| 199 | comp->cq = NULL; |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Or Gerlitz | 2110f9b | 2010-05-05 17:30:10 +0300 | [diff] [blame] | 202 | (void)ib_unregister_event_handler(&device->event_handler); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 203 | (void)ib_dereg_mr(device->mr); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 204 | (void)ib_dealloc_pd(device->pd); |
| 205 | |
Sagi Grimberg | da64bdb | 2014-12-07 16:10:03 +0200 | [diff] [blame] | 206 | kfree(device->comps); |
| 207 | device->comps = NULL; |
| 208 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 209 | device->mr = NULL; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 210 | device->pd = NULL; |
| 211 | } |
| 212 | |
| 213 | /** |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 214 | * iser_create_fmr_pool - Creates FMR pool and page_vector |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 215 | * |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 216 | * returns 0 on success, or errno code on failure |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 217 | */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 218 | int iser_create_fmr_pool(struct ib_conn *ib_conn, unsigned cmds_max) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 219 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 220 | struct iser_device *device = ib_conn->device; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 221 | struct ib_fmr_pool_param params; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 222 | int ret = -ENOMEM; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 223 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 224 | ib_conn->fmr.page_vec = kmalloc(sizeof(*ib_conn->fmr.page_vec) + |
Sagi Grimberg | 7306b8f | 2014-03-05 19:43:39 +0200 | [diff] [blame] | 225 | (sizeof(u64)*(ISCSI_ISER_SG_TABLESIZE + 1)), |
| 226 | GFP_KERNEL); |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 227 | if (!ib_conn->fmr.page_vec) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 228 | return ret; |
Dan Carpenter | 9fda1ac | 2010-05-06 16:22:21 +0300 | [diff] [blame] | 229 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 230 | ib_conn->fmr.page_vec->pages = (u64 *)(ib_conn->fmr.page_vec + 1); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 231 | |
Erez Zilber | 8dfa087 | 2006-09-11 12:22:30 +0300 | [diff] [blame] | 232 | params.page_shift = SHIFT_4K; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 233 | /* when the first/last SG element are not start/end * |
| 234 | * page aligned, the map whould be of N+1 pages */ |
| 235 | params.max_pages_per_fmr = ISCSI_ISER_SG_TABLESIZE + 1; |
| 236 | /* make the pool size twice the max number of SCSI commands * |
| 237 | * the ML is expected to queue, watermark for unmap at 50% */ |
Shlomo Pongratz | b7f0451 | 2013-07-28 12:35:38 +0300 | [diff] [blame] | 238 | params.pool_size = cmds_max * 2; |
| 239 | params.dirty_watermark = cmds_max; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 240 | params.cache = 0; |
| 241 | params.flush_function = NULL; |
| 242 | params.access = (IB_ACCESS_LOCAL_WRITE | |
| 243 | IB_ACCESS_REMOTE_WRITE | |
| 244 | IB_ACCESS_REMOTE_READ); |
| 245 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 246 | ib_conn->fmr.pool = ib_create_fmr_pool(device->pd, ¶ms); |
Sagi Grimberg | 8c18ed0 | 2015-08-06 18:32:55 +0300 | [diff] [blame^] | 247 | if (IS_ERR(ib_conn->fmr.pool)) { |
| 248 | ret = PTR_ERR(ib_conn->fmr.pool); |
| 249 | iser_err("FMR allocation failed, err %d\n", ret); |
| 250 | goto err; |
| 251 | } |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 252 | |
Sagi Grimberg | 8c18ed0 | 2015-08-06 18:32:55 +0300 | [diff] [blame^] | 253 | return 0; |
| 254 | |
| 255 | err: |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 256 | kfree(ib_conn->fmr.page_vec); |
| 257 | ib_conn->fmr.page_vec = NULL; |
Sagi Grimberg | 8c18ed0 | 2015-08-06 18:32:55 +0300 | [diff] [blame^] | 258 | return ret; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | /** |
| 262 | * iser_free_fmr_pool - releases the FMR pool and page vec |
| 263 | */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 264 | void iser_free_fmr_pool(struct ib_conn *ib_conn) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 265 | { |
| 266 | iser_info("freeing conn %p fmr pool %p\n", |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 267 | ib_conn, ib_conn->fmr.pool); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 268 | |
Sagi Grimberg | 8c18ed0 | 2015-08-06 18:32:55 +0300 | [diff] [blame^] | 269 | ib_destroy_fmr_pool(ib_conn->fmr.pool); |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 270 | ib_conn->fmr.pool = NULL; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 271 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 272 | kfree(ib_conn->fmr.page_vec); |
| 273 | ib_conn->fmr.page_vec = NULL; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 274 | } |
| 275 | |
Sagi Grimberg | 310b347 | 2014-03-05 19:43:41 +0200 | [diff] [blame] | 276 | static int |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 277 | iser_alloc_reg_res(struct ib_device *ib_device, struct ib_pd *pd, |
| 278 | struct iser_reg_resources *res) |
| 279 | { |
| 280 | int ret; |
| 281 | |
| 282 | res->frpl = ib_alloc_fast_reg_page_list(ib_device, |
| 283 | ISCSI_ISER_SG_TABLESIZE + 1); |
| 284 | if (IS_ERR(res->frpl)) { |
| 285 | ret = PTR_ERR(res->frpl); |
| 286 | iser_err("Failed to allocate ib_fast_reg_page_list err=%d\n", |
| 287 | ret); |
| 288 | return PTR_ERR(res->frpl); |
| 289 | } |
| 290 | |
| 291 | res->mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG, |
| 292 | ISCSI_ISER_SG_TABLESIZE + 1); |
| 293 | if (IS_ERR(res->mr)) { |
| 294 | ret = PTR_ERR(res->mr); |
| 295 | iser_err("Failed to allocate ib_fast_reg_mr err=%d\n", ret); |
| 296 | goto fast_reg_mr_failure; |
| 297 | } |
| 298 | res->mr_valid = 1; |
| 299 | |
| 300 | return 0; |
| 301 | |
| 302 | fast_reg_mr_failure: |
| 303 | ib_free_fast_reg_page_list(res->frpl); |
| 304 | |
| 305 | return ret; |
| 306 | } |
| 307 | |
| 308 | static void |
| 309 | iser_free_reg_res(struct iser_reg_resources *rsc) |
| 310 | { |
| 311 | ib_dereg_mr(rsc->mr); |
| 312 | ib_free_fast_reg_page_list(rsc->frpl); |
| 313 | } |
| 314 | |
| 315 | static int |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 316 | iser_alloc_pi_ctx(struct ib_device *ib_device, struct ib_pd *pd, |
Sagi Grimberg | 5190cc2 | 2015-08-06 18:32:54 +0300 | [diff] [blame] | 317 | struct iser_fr_desc *desc) |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 318 | { |
| 319 | struct iser_pi_context *pi_ctx = NULL; |
Sagi Grimberg | 9bee178 | 2015-07-30 10:32:35 +0300 | [diff] [blame] | 320 | int ret; |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 321 | |
| 322 | desc->pi_ctx = kzalloc(sizeof(*desc->pi_ctx), GFP_KERNEL); |
| 323 | if (!desc->pi_ctx) |
| 324 | return -ENOMEM; |
| 325 | |
| 326 | pi_ctx = desc->pi_ctx; |
| 327 | |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 328 | ret = iser_alloc_reg_res(ib_device, pd, &pi_ctx->rsc); |
| 329 | if (ret) { |
| 330 | iser_err("failed to allocate reg_resources\n"); |
| 331 | goto alloc_reg_res_err; |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 332 | } |
| 333 | |
Sagi Grimberg | 9bee178 | 2015-07-30 10:32:35 +0300 | [diff] [blame] | 334 | pi_ctx->sig_mr = ib_alloc_mr(pd, IB_MR_TYPE_SIGNATURE, 2); |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 335 | if (IS_ERR(pi_ctx->sig_mr)) { |
| 336 | ret = PTR_ERR(pi_ctx->sig_mr); |
| 337 | goto sig_mr_failure; |
| 338 | } |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 339 | pi_ctx->sig_mr_valid = 1; |
| 340 | desc->pi_ctx->sig_protected = 0; |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 341 | |
| 342 | return 0; |
| 343 | |
| 344 | sig_mr_failure: |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 345 | iser_free_reg_res(&pi_ctx->rsc); |
| 346 | alloc_reg_res_err: |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 347 | kfree(desc->pi_ctx); |
| 348 | |
| 349 | return ret; |
| 350 | } |
| 351 | |
| 352 | static void |
| 353 | iser_free_pi_ctx(struct iser_pi_context *pi_ctx) |
| 354 | { |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 355 | iser_free_reg_res(&pi_ctx->rsc); |
Sagi Grimberg | 8b91ffc | 2015-07-30 10:32:34 +0300 | [diff] [blame] | 356 | ib_dereg_mr(pi_ctx->sig_mr); |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 357 | kfree(pi_ctx); |
| 358 | } |
| 359 | |
| 360 | static int |
Sagi Grimberg | 310b347 | 2014-03-05 19:43:41 +0200 | [diff] [blame] | 361 | iser_create_fastreg_desc(struct ib_device *ib_device, struct ib_pd *pd, |
Sagi Grimberg | 5190cc2 | 2015-08-06 18:32:54 +0300 | [diff] [blame] | 362 | bool pi_enable, struct iser_fr_desc *desc) |
Sagi Grimberg | 310b347 | 2014-03-05 19:43:41 +0200 | [diff] [blame] | 363 | { |
| 364 | int ret; |
| 365 | |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 366 | ret = iser_alloc_reg_res(ib_device, pd, &desc->rsc); |
| 367 | if (ret) { |
| 368 | iser_err("failed to allocate reg_resources\n"); |
| 369 | return ret; |
Sagi Grimberg | 310b347 | 2014-03-05 19:43:41 +0200 | [diff] [blame] | 370 | } |
| 371 | |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 372 | if (pi_enable) { |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 373 | ret = iser_alloc_pi_ctx(ib_device, pd, desc); |
| 374 | if (ret) |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 375 | goto pi_ctx_alloc_failure; |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 376 | } |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 377 | |
| 378 | return 0; |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 379 | |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 380 | pi_ctx_alloc_failure: |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 381 | iser_free_reg_res(&desc->rsc); |
Sagi Grimberg | 310b347 | 2014-03-05 19:43:41 +0200 | [diff] [blame] | 382 | |
| 383 | return ret; |
| 384 | } |
| 385 | |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 386 | /** |
Sagi Grimberg | 7306b8f | 2014-03-05 19:43:39 +0200 | [diff] [blame] | 387 | * iser_create_fastreg_pool - Creates pool of fast_reg descriptors |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 388 | * for fast registration work requests. |
| 389 | * returns 0 on success, or errno code on failure |
| 390 | */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 391 | int iser_create_fastreg_pool(struct ib_conn *ib_conn, unsigned cmds_max) |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 392 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 393 | struct iser_device *device = ib_conn->device; |
Sagi Grimberg | 5190cc2 | 2015-08-06 18:32:54 +0300 | [diff] [blame] | 394 | struct iser_fr_desc *desc; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 395 | int i, ret; |
| 396 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 397 | INIT_LIST_HEAD(&ib_conn->fastreg.pool); |
| 398 | ib_conn->fastreg.pool_size = 0; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 399 | for (i = 0; i < cmds_max; i++) { |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 400 | desc = kzalloc(sizeof(*desc), GFP_KERNEL); |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 401 | if (!desc) { |
| 402 | iser_err("Failed to allocate a new fast_reg descriptor\n"); |
| 403 | ret = -ENOMEM; |
| 404 | goto err; |
| 405 | } |
| 406 | |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 407 | ret = iser_create_fastreg_desc(device->ib_device, device->pd, |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 408 | ib_conn->pi_support, desc); |
Sagi Grimberg | 310b347 | 2014-03-05 19:43:41 +0200 | [diff] [blame] | 409 | if (ret) { |
| 410 | iser_err("Failed to create fastreg descriptor err=%d\n", |
| 411 | ret); |
| 412 | kfree(desc); |
| 413 | goto err; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 414 | } |
| 415 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 416 | list_add_tail(&desc->list, &ib_conn->fastreg.pool); |
| 417 | ib_conn->fastreg.pool_size++; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | return 0; |
Roi Dayan | 27ae2d1 | 2013-08-19 16:41:51 +0300 | [diff] [blame] | 421 | |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 422 | err: |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 423 | iser_free_fastreg_pool(ib_conn); |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 424 | return ret; |
| 425 | } |
| 426 | |
| 427 | /** |
Sagi Grimberg | 7306b8f | 2014-03-05 19:43:39 +0200 | [diff] [blame] | 428 | * iser_free_fastreg_pool - releases the pool of fast_reg descriptors |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 429 | */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 430 | void iser_free_fastreg_pool(struct ib_conn *ib_conn) |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 431 | { |
Sagi Grimberg | 5190cc2 | 2015-08-06 18:32:54 +0300 | [diff] [blame] | 432 | struct iser_fr_desc *desc, *tmp; |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 433 | int i = 0; |
| 434 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 435 | if (list_empty(&ib_conn->fastreg.pool)) |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 436 | return; |
| 437 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 438 | iser_info("freeing conn %p fr pool\n", ib_conn); |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 439 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 440 | list_for_each_entry_safe(desc, tmp, &ib_conn->fastreg.pool, list) { |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 441 | list_del(&desc->list); |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 442 | iser_free_reg_res(&desc->rsc); |
Sagi Grimberg | 4dec2a2 | 2015-04-14 18:08:22 +0300 | [diff] [blame] | 443 | if (desc->pi_ctx) |
| 444 | iser_free_pi_ctx(desc->pi_ctx); |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 445 | kfree(desc); |
| 446 | ++i; |
| 447 | } |
| 448 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 449 | if (i < ib_conn->fastreg.pool_size) |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 450 | iser_warn("pool still has %d regions registered\n", |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 451 | ib_conn->fastreg.pool_size - i); |
Sagi Grimberg | 5587856 | 2013-07-28 12:35:42 +0300 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | /** |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 455 | * iser_create_ib_conn_res - Queue-Pair (QP) |
| 456 | * |
| 457 | * returns 0 on success, -1 on failure |
| 458 | */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 459 | static int iser_create_ib_conn_res(struct ib_conn *ib_conn) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 460 | { |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 461 | struct iser_conn *iser_conn = container_of(ib_conn, struct iser_conn, |
| 462 | ib_conn); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 463 | struct iser_device *device; |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 464 | struct ib_device_attr *dev_attr; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 465 | struct ib_qp_init_attr init_attr; |
| 466 | int ret = -ENOMEM; |
| 467 | int index, min_index = 0; |
| 468 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 469 | BUG_ON(ib_conn->device == NULL); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 470 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 471 | device = ib_conn->device; |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 472 | dev_attr = &device->dev_attr; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 473 | |
| 474 | memset(&init_attr, 0, sizeof init_attr); |
| 475 | |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 476 | mutex_lock(&ig.connlist_mutex); |
| 477 | /* select the CQ with the minimal number of usages */ |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 478 | for (index = 0; index < device->comps_used; index++) { |
| 479 | if (device->comps[index].active_qps < |
| 480 | device->comps[min_index].active_qps) |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 481 | min_index = index; |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 482 | } |
| 483 | ib_conn->comp = &device->comps[min_index]; |
| 484 | ib_conn->comp->active_qps++; |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 485 | mutex_unlock(&ig.connlist_mutex); |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 486 | iser_info("cq index %d used for ib_conn %p\n", min_index, ib_conn); |
Alex Tabachnik | 5a33a66 | 2012-09-23 15:17:44 +0000 | [diff] [blame] | 487 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 488 | init_attr.event_handler = iser_qp_event_callback; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 489 | init_attr.qp_context = (void *)ib_conn; |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 490 | init_attr.send_cq = ib_conn->comp->cq; |
| 491 | init_attr.recv_cq = ib_conn->comp->cq; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 492 | init_attr.cap.max_recv_wr = ISER_QP_MAX_RECV_DTOS; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 493 | init_attr.cap.max_send_sge = 2; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 494 | init_attr.cap.max_recv_sge = 1; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 495 | init_attr.sq_sig_type = IB_SIGNAL_REQ_WR; |
| 496 | init_attr.qp_type = IB_QPT_RC; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 497 | if (ib_conn->pi_support) { |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 498 | init_attr.cap.max_send_wr = ISER_QP_SIG_MAX_REQ_DTOS + 1; |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 499 | init_attr.create_flags |= IB_QP_CREATE_SIGNATURE_EN; |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 500 | iser_conn->max_cmds = |
| 501 | ISER_GET_MAX_XMIT_CMDS(ISER_QP_SIG_MAX_REQ_DTOS); |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 502 | } else { |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 503 | if (dev_attr->max_qp_wr > ISER_QP_MAX_REQ_DTOS) { |
| 504 | init_attr.cap.max_send_wr = ISER_QP_MAX_REQ_DTOS + 1; |
| 505 | iser_conn->max_cmds = |
| 506 | ISER_GET_MAX_XMIT_CMDS(ISER_QP_MAX_REQ_DTOS); |
| 507 | } else { |
| 508 | init_attr.cap.max_send_wr = dev_attr->max_qp_wr; |
| 509 | iser_conn->max_cmds = |
| 510 | ISER_GET_MAX_XMIT_CMDS(dev_attr->max_qp_wr); |
| 511 | iser_dbg("device %s supports max_send_wr %d\n", |
| 512 | device->ib_device->name, dev_attr->max_qp_wr); |
| 513 | } |
Alex Tabachnik | 6b5a8fb | 2014-03-05 19:43:47 +0200 | [diff] [blame] | 514 | } |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 515 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 516 | ret = rdma_create_qp(ib_conn->cma_id, device->pd, &init_attr); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 517 | if (ret) |
Dan Carpenter | 9fda1ac | 2010-05-06 16:22:21 +0300 | [diff] [blame] | 518 | goto out_err; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 519 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 520 | ib_conn->qp = ib_conn->cma_id->qp; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 521 | iser_info("setting conn %p cma_id %p qp %p\n", |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 522 | ib_conn, ib_conn->cma_id, |
| 523 | ib_conn->cma_id->qp); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 524 | return ret; |
| 525 | |
Dan Carpenter | 9fda1ac | 2010-05-06 16:22:21 +0300 | [diff] [blame] | 526 | out_err: |
Sagi Grimberg | 93acb7b | 2014-12-07 16:09:55 +0200 | [diff] [blame] | 527 | mutex_lock(&ig.connlist_mutex); |
| 528 | ib_conn->comp->active_qps--; |
| 529 | mutex_unlock(&ig.connlist_mutex); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 530 | iser_err("unable to alloc mem or create resource, err %d\n", ret); |
Sagi Grimberg | 93acb7b | 2014-12-07 16:09:55 +0200 | [diff] [blame] | 531 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 532 | return ret; |
| 533 | } |
| 534 | |
| 535 | /** |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 536 | * based on the resolved device node GUID see if there already allocated |
| 537 | * device for this device. If there's no such, create one. |
| 538 | */ |
| 539 | static |
| 540 | struct iser_device *iser_device_find_by_ib_device(struct rdma_cm_id *cma_id) |
| 541 | { |
Arne Redlich | 9a37827 | 2008-03-04 14:07:22 +0200 | [diff] [blame] | 542 | struct iser_device *device; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 543 | |
| 544 | mutex_lock(&ig.device_list_mutex); |
| 545 | |
Arne Redlich | 9a37827 | 2008-03-04 14:07:22 +0200 | [diff] [blame] | 546 | list_for_each_entry(device, &ig.device_list, ig_list) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 547 | /* find if there's a match using the node GUID */ |
| 548 | if (device->ib_device->node_guid == cma_id->device->node_guid) |
Arne Redlich | d33ed42 | 2008-03-04 14:11:54 +0200 | [diff] [blame] | 549 | goto inc_refcnt; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 550 | |
Arne Redlich | 9a37827 | 2008-03-04 14:07:22 +0200 | [diff] [blame] | 551 | device = kzalloc(sizeof *device, GFP_KERNEL); |
| 552 | if (device == NULL) |
| 553 | goto out; |
| 554 | |
| 555 | /* assign this device to the device */ |
| 556 | device->ib_device = cma_id->device; |
| 557 | /* init the device and link it into ig device list */ |
| 558 | if (iser_create_device_ib_res(device)) { |
| 559 | kfree(device); |
| 560 | device = NULL; |
| 561 | goto out; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 562 | } |
Arne Redlich | 9a37827 | 2008-03-04 14:07:22 +0200 | [diff] [blame] | 563 | list_add(&device->ig_list, &ig.device_list); |
| 564 | |
Arne Redlich | d33ed42 | 2008-03-04 14:11:54 +0200 | [diff] [blame] | 565 | inc_refcnt: |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 566 | device->refcount++; |
Arne Redlich | d33ed42 | 2008-03-04 14:11:54 +0200 | [diff] [blame] | 567 | out: |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 568 | mutex_unlock(&ig.device_list_mutex); |
| 569 | return device; |
| 570 | } |
| 571 | |
| 572 | /* if there's no demand for this device, release it */ |
| 573 | static void iser_device_try_release(struct iser_device *device) |
| 574 | { |
| 575 | mutex_lock(&ig.device_list_mutex); |
| 576 | device->refcount--; |
Roi Dayan | 4f36388 | 2013-05-01 13:25:25 +0000 | [diff] [blame] | 577 | iser_info("device %p refcount %d\n", device, device->refcount); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 578 | if (!device->refcount) { |
| 579 | iser_free_device_ib_res(device); |
| 580 | list_del(&device->ig_list); |
| 581 | kfree(device); |
| 582 | } |
| 583 | mutex_unlock(&ig.device_list_mutex); |
| 584 | } |
| 585 | |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 586 | /** |
| 587 | * Called with state mutex held |
| 588 | **/ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 589 | static int iser_conn_state_comp_exch(struct iser_conn *iser_conn, |
| 590 | enum iser_conn_state comp, |
| 591 | enum iser_conn_state exch) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 592 | { |
| 593 | int ret; |
| 594 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 595 | ret = (iser_conn->state == comp); |
| 596 | if (ret) |
| 597 | iser_conn->state = exch; |
| 598 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 599 | return ret; |
| 600 | } |
| 601 | |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 602 | void iser_release_work(struct work_struct *work) |
| 603 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 604 | struct iser_conn *iser_conn; |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 605 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 606 | iser_conn = container_of(work, struct iser_conn, release_work); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 607 | |
Sagi Grimberg | c107a6c | 2014-10-01 14:02:02 +0300 | [diff] [blame] | 608 | /* Wait for conn_stop to complete */ |
| 609 | wait_for_completion(&iser_conn->stop_completion); |
| 610 | /* Wait for IB resouces cleanup to complete */ |
| 611 | wait_for_completion(&iser_conn->ib_completion); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 612 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 613 | mutex_lock(&iser_conn->state_mutex); |
| 614 | iser_conn->state = ISER_CONN_DOWN; |
| 615 | mutex_unlock(&iser_conn->state_mutex); |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 616 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 617 | iser_conn_release(iser_conn); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 618 | } |
| 619 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 620 | /** |
Sagi Grimberg | 96f1519 | 2014-10-01 14:02:00 +0300 | [diff] [blame] | 621 | * iser_free_ib_conn_res - release IB related resources |
| 622 | * @iser_conn: iser connection struct |
Sagi Grimberg | 6606e6a | 2015-01-18 16:51:06 +0200 | [diff] [blame] | 623 | * @destroy: indicator if we need to try to release the |
| 624 | * iser device and memory regoins pool (only iscsi |
| 625 | * shutdown and DEVICE_REMOVAL will use this). |
Sagi Grimberg | 96f1519 | 2014-10-01 14:02:00 +0300 | [diff] [blame] | 626 | * |
| 627 | * This routine is called with the iser state mutex held |
| 628 | * so the cm_id removal is out of here. It is Safe to |
| 629 | * be invoked multiple times. |
| 630 | */ |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 631 | static void iser_free_ib_conn_res(struct iser_conn *iser_conn, |
Sagi Grimberg | 6606e6a | 2015-01-18 16:51:06 +0200 | [diff] [blame] | 632 | bool destroy) |
Sagi Grimberg | 96f1519 | 2014-10-01 14:02:00 +0300 | [diff] [blame] | 633 | { |
| 634 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
| 635 | struct iser_device *device = ib_conn->device; |
| 636 | |
| 637 | iser_info("freeing conn %p cma_id %p qp %p\n", |
| 638 | iser_conn, ib_conn->cma_id, ib_conn->qp); |
| 639 | |
Sagi Grimberg | 96f1519 | 2014-10-01 14:02:00 +0300 | [diff] [blame] | 640 | if (ib_conn->qp != NULL) { |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 641 | ib_conn->comp->active_qps--; |
Sagi Grimberg | 96f1519 | 2014-10-01 14:02:00 +0300 | [diff] [blame] | 642 | rdma_destroy_qp(ib_conn->cma_id); |
| 643 | ib_conn->qp = NULL; |
| 644 | } |
| 645 | |
Sagi Grimberg | 6606e6a | 2015-01-18 16:51:06 +0200 | [diff] [blame] | 646 | if (destroy) { |
| 647 | if (iser_conn->rx_descs) |
| 648 | iser_free_rx_descriptors(iser_conn); |
| 649 | |
| 650 | if (device != NULL) { |
| 651 | iser_device_try_release(device); |
| 652 | ib_conn->device = NULL; |
| 653 | } |
Sagi Grimberg | 96f1519 | 2014-10-01 14:02:00 +0300 | [diff] [blame] | 654 | } |
| 655 | } |
| 656 | |
| 657 | /** |
Roland Dreier | 41179e2 | 2007-07-17 18:37:42 -0700 | [diff] [blame] | 658 | * Frees all conn objects and deallocs conn descriptor |
| 659 | */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 660 | void iser_conn_release(struct iser_conn *iser_conn) |
Roland Dreier | 41179e2 | 2007-07-17 18:37:42 -0700 | [diff] [blame] | 661 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 662 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
Roland Dreier | 41179e2 | 2007-07-17 18:37:42 -0700 | [diff] [blame] | 663 | |
Roland Dreier | 41179e2 | 2007-07-17 18:37:42 -0700 | [diff] [blame] | 664 | mutex_lock(&ig.connlist_mutex); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 665 | list_del(&iser_conn->conn_list); |
Roland Dreier | 41179e2 | 2007-07-17 18:37:42 -0700 | [diff] [blame] | 666 | mutex_unlock(&ig.connlist_mutex); |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 667 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 668 | mutex_lock(&iser_conn->state_mutex); |
Ariel Nahum | 9a3119e | 2015-01-18 16:51:07 +0200 | [diff] [blame] | 669 | /* In case we endup here without ep_disconnect being invoked. */ |
Ariel Nahum | 5426b17 | 2014-12-07 16:09:54 +0200 | [diff] [blame] | 670 | if (iser_conn->state != ISER_CONN_DOWN) { |
Ariel Nahum | aea8f4d | 2014-10-01 14:02:06 +0300 | [diff] [blame] | 671 | iser_warn("iser conn %p state %d, expected state down.\n", |
| 672 | iser_conn, iser_conn->state); |
Ariel Nahum | 9a3119e | 2015-01-18 16:51:07 +0200 | [diff] [blame] | 673 | iscsi_destroy_endpoint(iser_conn->ep); |
Ariel Nahum | 5426b17 | 2014-12-07 16:09:54 +0200 | [diff] [blame] | 674 | iser_conn->state = ISER_CONN_DOWN; |
| 675 | } |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 676 | /* |
| 677 | * In case we never got to bind stage, we still need to |
| 678 | * release IB resources (which is safe to call more than once). |
| 679 | */ |
| 680 | iser_free_ib_conn_res(iser_conn, true); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 681 | mutex_unlock(&iser_conn->state_mutex); |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 682 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 683 | if (ib_conn->cma_id != NULL) { |
| 684 | rdma_destroy_id(ib_conn->cma_id); |
| 685 | ib_conn->cma_id = NULL; |
Roi Dayan | 5b61ff4 | 2013-05-08 12:21:17 +0000 | [diff] [blame] | 686 | } |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 687 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 688 | kfree(iser_conn); |
Roland Dreier | 41179e2 | 2007-07-17 18:37:42 -0700 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | /** |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 692 | * triggers start of the disconnect procedures and wait for them to be done |
| 693 | * Called with state mutex held |
| 694 | */ |
| 695 | int iser_conn_terminate(struct iser_conn *iser_conn) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 696 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 697 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 698 | struct ib_send_wr *bad_wr; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 699 | int err = 0; |
| 700 | |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 701 | /* terminate the iser conn only if the conn state is UP */ |
| 702 | if (!iser_conn_state_comp_exch(iser_conn, ISER_CONN_UP, |
| 703 | ISER_CONN_TERMINATING)) |
| 704 | return 0; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 705 | |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 706 | iser_info("iser_conn %p state %d\n", iser_conn, iser_conn->state); |
| 707 | |
| 708 | /* suspend queuing of new iscsi commands */ |
| 709 | if (iser_conn->iscsi_conn) |
| 710 | iscsi_suspend_queue(iser_conn->iscsi_conn); |
| 711 | |
| 712 | /* |
| 713 | * In case we didn't already clean up the cma_id (peer initiated |
| 714 | * a disconnection), we need to Cause the CMA to change the QP |
| 715 | * state to ERROR. |
| 716 | */ |
| 717 | if (ib_conn->cma_id) { |
| 718 | err = rdma_disconnect(ib_conn->cma_id); |
| 719 | if (err) |
| 720 | iser_err("Failed to disconnect, conn: 0x%p err %d\n", |
| 721 | iser_conn, err); |
| 722 | |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 723 | /* post an indication that all flush errors were consumed */ |
| 724 | err = ib_post_send(ib_conn->qp, &ib_conn->beacon, &bad_wr); |
Sagi Grimberg | 16df2a2 | 2014-12-07 16:09:53 +0200 | [diff] [blame] | 725 | if (err) { |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 726 | iser_err("conn %p failed to post beacon", ib_conn); |
Sagi Grimberg | 16df2a2 | 2014-12-07 16:09:53 +0200 | [diff] [blame] | 727 | return 1; |
| 728 | } |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 729 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 730 | wait_for_completion(&ib_conn->flush_comp); |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 731 | } |
| 732 | |
| 733 | return 1; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 734 | } |
| 735 | |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 736 | /** |
| 737 | * Called with state mutex held |
| 738 | **/ |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 739 | static void iser_connect_error(struct rdma_cm_id *cma_id) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 740 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 741 | struct iser_conn *iser_conn; |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 742 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 743 | iser_conn = (struct iser_conn *)cma_id->context; |
Sagi Grimberg | c4de466 | 2015-04-14 18:08:11 +0300 | [diff] [blame] | 744 | iser_conn->state = ISER_CONN_TERMINATING; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 745 | } |
| 746 | |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 747 | /** |
| 748 | * Called with state mutex held |
| 749 | **/ |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 750 | static void iser_addr_handler(struct rdma_cm_id *cma_id) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 751 | { |
| 752 | struct iser_device *device; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 753 | struct iser_conn *iser_conn; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 754 | struct ib_conn *ib_conn; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 755 | int ret; |
| 756 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 757 | iser_conn = (struct iser_conn *)cma_id->context; |
| 758 | if (iser_conn->state != ISER_CONN_PENDING) |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 759 | /* bailout */ |
| 760 | return; |
| 761 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 762 | ib_conn = &iser_conn->ib_conn; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 763 | device = iser_device_find_by_ib_device(cma_id); |
Arne Redlich | d33ed42 | 2008-03-04 14:11:54 +0200 | [diff] [blame] | 764 | if (!device) { |
| 765 | iser_err("device lookup/creation failed\n"); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 766 | iser_connect_error(cma_id); |
| 767 | return; |
Arne Redlich | d33ed42 | 2008-03-04 14:11:54 +0200 | [diff] [blame] | 768 | } |
| 769 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 770 | ib_conn->device = device; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 771 | |
Alex Tabachnik | 7f73384 | 2014-03-05 19:43:46 +0200 | [diff] [blame] | 772 | /* connection T10-PI support */ |
| 773 | if (iser_pi_enable) { |
| 774 | if (!(device->dev_attr.device_cap_flags & |
| 775 | IB_DEVICE_SIGNATURE_HANDOVER)) { |
| 776 | iser_warn("T10-PI requested but not supported on %s, " |
| 777 | "continue without T10-PI\n", |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 778 | ib_conn->device->ib_device->name); |
| 779 | ib_conn->pi_support = false; |
Alex Tabachnik | 7f73384 | 2014-03-05 19:43:46 +0200 | [diff] [blame] | 780 | } else { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 781 | ib_conn->pi_support = true; |
Alex Tabachnik | 7f73384 | 2014-03-05 19:43:46 +0200 | [diff] [blame] | 782 | } |
| 783 | } |
| 784 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 785 | ret = rdma_resolve_route(cma_id, 1000); |
| 786 | if (ret) { |
| 787 | iser_err("resolve route failed: %d\n", ret); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 788 | iser_connect_error(cma_id); |
| 789 | return; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 790 | } |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 791 | } |
| 792 | |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 793 | /** |
| 794 | * Called with state mutex held |
| 795 | **/ |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 796 | static void iser_route_handler(struct rdma_cm_id *cma_id) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 797 | { |
| 798 | struct rdma_conn_param conn_param; |
| 799 | int ret; |
Or Gerlitz | 8d8399d | 2013-05-01 13:25:27 +0000 | [diff] [blame] | 800 | struct iser_cm_hdr req_hdr; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 801 | struct iser_conn *iser_conn = (struct iser_conn *)cma_id->context; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 802 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
| 803 | struct iser_device *device = ib_conn->device; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 804 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 805 | if (iser_conn->state != ISER_CONN_PENDING) |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 806 | /* bailout */ |
| 807 | return; |
| 808 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 809 | ret = iser_create_ib_conn_res(ib_conn); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 810 | if (ret) |
| 811 | goto failure; |
| 812 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 813 | memset(&conn_param, 0, sizeof conn_param); |
Sagi Grimberg | 2ea3293 | 2014-07-31 13:27:46 +0300 | [diff] [blame] | 814 | conn_param.responder_resources = device->dev_attr.max_qp_rd_atom; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 815 | conn_param.initiator_depth = 1; |
| 816 | conn_param.retry_count = 7; |
| 817 | conn_param.rnr_retry_count = 6; |
| 818 | |
Or Gerlitz | 8d8399d | 2013-05-01 13:25:27 +0000 | [diff] [blame] | 819 | memset(&req_hdr, 0, sizeof(req_hdr)); |
| 820 | req_hdr.flags = (ISER_ZBVA_NOT_SUPPORTED | |
| 821 | ISER_SEND_W_INV_NOT_SUPPORTED); |
| 822 | conn_param.private_data = (void *)&req_hdr; |
| 823 | conn_param.private_data_len = sizeof(struct iser_cm_hdr); |
| 824 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 825 | ret = rdma_connect(cma_id, &conn_param); |
| 826 | if (ret) { |
| 827 | iser_err("failure connecting: %d\n", ret); |
| 828 | goto failure; |
| 829 | } |
| 830 | |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 831 | return; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 832 | failure: |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 833 | iser_connect_error(cma_id); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static void iser_connected_handler(struct rdma_cm_id *cma_id) |
| 837 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 838 | struct iser_conn *iser_conn; |
Or Gerlitz | 4f9208a | 2014-04-01 16:28:40 +0300 | [diff] [blame] | 839 | struct ib_qp_attr attr; |
| 840 | struct ib_qp_init_attr init_attr; |
| 841 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 842 | iser_conn = (struct iser_conn *)cma_id->context; |
| 843 | if (iser_conn->state != ISER_CONN_PENDING) |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 844 | /* bailout */ |
| 845 | return; |
| 846 | |
Or Gerlitz | 4f9208a | 2014-04-01 16:28:40 +0300 | [diff] [blame] | 847 | (void)ib_query_qp(cma_id->qp, &attr, ~0, &init_attr); |
| 848 | iser_info("remote qpn:%x my qpn:%x\n", attr.dest_qp_num, cma_id->qp->qp_num); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 849 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 850 | iser_conn->state = ISER_CONN_UP; |
| 851 | complete(&iser_conn->up_completion); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 852 | } |
| 853 | |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 854 | static void iser_disconnected_handler(struct rdma_cm_id *cma_id) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 855 | { |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 856 | struct iser_conn *iser_conn = (struct iser_conn *)cma_id->context; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 857 | |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 858 | if (iser_conn_terminate(iser_conn)) { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 859 | if (iser_conn->iscsi_conn) |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 860 | iscsi_conn_failure(iser_conn->iscsi_conn, |
| 861 | ISCSI_ERR_CONN_FAILED); |
Roi Dayan | 7d9eacf | 2014-02-04 16:54:54 +0200 | [diff] [blame] | 862 | else |
| 863 | iser_err("iscsi_iser connection isn't bound\n"); |
| 864 | } |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 865 | } |
| 866 | |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 867 | static void iser_cleanup_handler(struct rdma_cm_id *cma_id, |
Sagi Grimberg | 6606e6a | 2015-01-18 16:51:06 +0200 | [diff] [blame] | 868 | bool destroy) |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 869 | { |
| 870 | struct iser_conn *iser_conn = (struct iser_conn *)cma_id->context; |
| 871 | |
| 872 | /* |
| 873 | * We are not guaranteed that we visited disconnected_handler |
| 874 | * by now, call it here to be safe that we handle CM drep |
| 875 | * and flush errors. |
| 876 | */ |
| 877 | iser_disconnected_handler(cma_id); |
Sagi Grimberg | 6606e6a | 2015-01-18 16:51:06 +0200 | [diff] [blame] | 878 | iser_free_ib_conn_res(iser_conn, destroy); |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 879 | complete(&iser_conn->ib_completion); |
| 880 | }; |
| 881 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 882 | static int iser_cma_handler(struct rdma_cm_id *cma_id, struct rdma_cm_event *event) |
| 883 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 884 | struct iser_conn *iser_conn; |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 885 | int ret = 0; |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 886 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 887 | iser_conn = (struct iser_conn *)cma_id->context; |
Sagi Grimberg | 871e00a | 2015-05-18 13:40:30 +0300 | [diff] [blame] | 888 | iser_info("%s (%d): status %d conn %p id %p\n", |
| 889 | rdma_event_msg(event->event), event->event, |
| 890 | event->status, cma_id->context, cma_id); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 891 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 892 | mutex_lock(&iser_conn->state_mutex); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 893 | switch (event->event) { |
| 894 | case RDMA_CM_EVENT_ADDR_RESOLVED: |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 895 | iser_addr_handler(cma_id); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 896 | break; |
| 897 | case RDMA_CM_EVENT_ROUTE_RESOLVED: |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 898 | iser_route_handler(cma_id); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 899 | break; |
| 900 | case RDMA_CM_EVENT_ESTABLISHED: |
| 901 | iser_connected_handler(cma_id); |
| 902 | break; |
| 903 | case RDMA_CM_EVENT_ADDR_ERROR: |
| 904 | case RDMA_CM_EVENT_ROUTE_ERROR: |
| 905 | case RDMA_CM_EVENT_CONNECT_ERROR: |
| 906 | case RDMA_CM_EVENT_UNREACHABLE: |
| 907 | case RDMA_CM_EVENT_REJECTED: |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 908 | iser_connect_error(cma_id); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 909 | break; |
| 910 | case RDMA_CM_EVENT_DISCONNECTED: |
Or Gerlitz | 2f5de15 | 2008-07-22 14:16:21 -0700 | [diff] [blame] | 911 | case RDMA_CM_EVENT_ADDR_CHANGE: |
Ariel Nahum | 5426b17 | 2014-12-07 16:09:54 +0200 | [diff] [blame] | 912 | case RDMA_CM_EVENT_TIMEWAIT_EXIT: |
| 913 | iser_cleanup_handler(cma_id, false); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 914 | break; |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 915 | case RDMA_CM_EVENT_DEVICE_REMOVAL: |
| 916 | /* |
| 917 | * we *must* destroy the device as we cannot rely |
| 918 | * on iscsid to be around to initiate error handling. |
Ariel Nahum | 5426b17 | 2014-12-07 16:09:54 +0200 | [diff] [blame] | 919 | * also if we are not in state DOWN implicitly destroy |
| 920 | * the cma_id. |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 921 | */ |
| 922 | iser_cleanup_handler(cma_id, true); |
Ariel Nahum | 5426b17 | 2014-12-07 16:09:54 +0200 | [diff] [blame] | 923 | if (iser_conn->state != ISER_CONN_DOWN) { |
| 924 | iser_conn->ib_conn.cma_id = NULL; |
| 925 | ret = 1; |
| 926 | } |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 927 | break; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 928 | default: |
Sagi Grimberg | 871e00a | 2015-05-18 13:40:30 +0300 | [diff] [blame] | 929 | iser_err("Unexpected RDMA CM event: %s (%d)\n", |
| 930 | rdma_event_msg(event->event), event->event); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 931 | break; |
| 932 | } |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 933 | mutex_unlock(&iser_conn->state_mutex); |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 934 | |
| 935 | return ret; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 936 | } |
| 937 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 938 | void iser_conn_init(struct iser_conn *iser_conn) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 939 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 940 | iser_conn->state = ISER_CONN_INIT; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 941 | iser_conn->ib_conn.post_recv_buf_count = 0; |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 942 | init_completion(&iser_conn->ib_conn.flush_comp); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 943 | init_completion(&iser_conn->stop_completion); |
Sagi Grimberg | c47a3c9 | 2014-10-01 14:02:01 +0300 | [diff] [blame] | 944 | init_completion(&iser_conn->ib_completion); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 945 | init_completion(&iser_conn->up_completion); |
| 946 | INIT_LIST_HEAD(&iser_conn->conn_list); |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 947 | spin_lock_init(&iser_conn->ib_conn.lock); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 948 | mutex_init(&iser_conn->state_mutex); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | /** |
| 952 | * starts the process of connecting to the target |
Thadeu Lima de Souza Cascardo | 94e2bd6 | 2009-10-16 15:20:49 +0200 | [diff] [blame] | 953 | * sleeps until the connection is established or rejected |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 954 | */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 955 | int iser_connect(struct iser_conn *iser_conn, |
Roi Dayan | 96ed02d | 2014-07-31 13:27:44 +0300 | [diff] [blame] | 956 | struct sockaddr *src_addr, |
| 957 | struct sockaddr *dst_addr, |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 958 | int non_blocking) |
| 959 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 960 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 961 | int err = 0; |
| 962 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 963 | mutex_lock(&iser_conn->state_mutex); |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 964 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 965 | sprintf(iser_conn->name, "%pISp", dst_addr); |
Roi Dayan | 96ed02d | 2014-07-31 13:27:44 +0300 | [diff] [blame] | 966 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 967 | iser_info("connecting to: %s\n", iser_conn->name); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 968 | |
| 969 | /* the device is known only --after-- address resolution */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 970 | ib_conn->device = NULL; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 971 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 972 | iser_conn->state = ISER_CONN_PENDING; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 973 | |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 974 | ib_conn->beacon.wr_id = ISER_BEACON_WRID; |
| 975 | ib_conn->beacon.opcode = IB_WR_SEND; |
| 976 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 977 | ib_conn->cma_id = rdma_create_id(iser_cma_handler, |
| 978 | (void *)iser_conn, |
| 979 | RDMA_PS_TCP, IB_QPT_RC); |
| 980 | if (IS_ERR(ib_conn->cma_id)) { |
| 981 | err = PTR_ERR(ib_conn->cma_id); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 982 | iser_err("rdma_create_id failed: %d\n", err); |
| 983 | goto id_failure; |
| 984 | } |
| 985 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 986 | err = rdma_resolve_addr(ib_conn->cma_id, src_addr, dst_addr, 1000); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 987 | if (err) { |
| 988 | iser_err("rdma_resolve_addr failed: %d\n", err); |
| 989 | goto addr_failure; |
| 990 | } |
| 991 | |
| 992 | if (!non_blocking) { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 993 | wait_for_completion_interruptible(&iser_conn->up_completion); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 994 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 995 | if (iser_conn->state != ISER_CONN_UP) { |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 996 | err = -EIO; |
| 997 | goto connect_failure; |
| 998 | } |
| 999 | } |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1000 | mutex_unlock(&iser_conn->state_mutex); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1001 | |
| 1002 | mutex_lock(&ig.connlist_mutex); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1003 | list_add(&iser_conn->conn_list, &ig.connlist); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1004 | mutex_unlock(&ig.connlist_mutex); |
| 1005 | return 0; |
| 1006 | |
| 1007 | id_failure: |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1008 | ib_conn->cma_id = NULL; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1009 | addr_failure: |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1010 | iser_conn->state = ISER_CONN_DOWN; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1011 | connect_failure: |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1012 | mutex_unlock(&iser_conn->state_mutex); |
| 1013 | iser_conn_release(iser_conn); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1014 | return err; |
| 1015 | } |
| 1016 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1017 | int iser_post_recvl(struct iser_conn *iser_conn) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1018 | { |
| 1019 | struct ib_recv_wr rx_wr, *rx_wr_failed; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1020 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1021 | struct ib_sge sge; |
| 1022 | int ib_ret; |
| 1023 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1024 | sge.addr = iser_conn->login_resp_dma; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1025 | sge.length = ISER_RX_LOGIN_SIZE; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1026 | sge.lkey = ib_conn->device->mr->lkey; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1027 | |
Sagi Grimberg | 49df278 | 2014-12-07 16:09:57 +0200 | [diff] [blame] | 1028 | rx_wr.wr_id = (uintptr_t)iser_conn->login_resp_buf; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1029 | rx_wr.sg_list = &sge; |
| 1030 | rx_wr.num_sge = 1; |
| 1031 | rx_wr.next = NULL; |
| 1032 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1033 | ib_conn->post_recv_buf_count++; |
| 1034 | ib_ret = ib_post_recv(ib_conn->qp, &rx_wr, &rx_wr_failed); |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1035 | if (ib_ret) { |
| 1036 | iser_err("ib_post_recv failed ret=%d\n", ib_ret); |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1037 | ib_conn->post_recv_buf_count--; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1038 | } |
| 1039 | return ib_ret; |
| 1040 | } |
| 1041 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1042 | int iser_post_recvm(struct iser_conn *iser_conn, int count) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1043 | { |
| 1044 | struct ib_recv_wr *rx_wr, *rx_wr_failed; |
| 1045 | int i, ib_ret; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1046 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1047 | unsigned int my_rx_head = iser_conn->rx_desc_head; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1048 | struct iser_rx_desc *rx_desc; |
| 1049 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1050 | for (rx_wr = ib_conn->rx_wr, i = 0; i < count; i++, rx_wr++) { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1051 | rx_desc = &iser_conn->rx_descs[my_rx_head]; |
Sagi Grimberg | 49df278 | 2014-12-07 16:09:57 +0200 | [diff] [blame] | 1052 | rx_wr->wr_id = (uintptr_t)rx_desc; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1053 | rx_wr->sg_list = &rx_desc->rx_sg; |
| 1054 | rx_wr->num_sge = 1; |
| 1055 | rx_wr->next = rx_wr + 1; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1056 | my_rx_head = (my_rx_head + 1) & iser_conn->qp_max_recv_dtos_mask; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1057 | } |
| 1058 | |
| 1059 | rx_wr--; |
| 1060 | rx_wr->next = NULL; /* mark end of work requests list */ |
| 1061 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1062 | ib_conn->post_recv_buf_count += count; |
| 1063 | ib_ret = ib_post_recv(ib_conn->qp, ib_conn->rx_wr, &rx_wr_failed); |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1064 | if (ib_ret) { |
| 1065 | iser_err("ib_post_recv failed ret=%d\n", ib_ret); |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1066 | ib_conn->post_recv_buf_count -= count; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1067 | } else |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1068 | iser_conn->rx_desc_head = my_rx_head; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 1069 | return ib_ret; |
| 1070 | } |
| 1071 | |
| 1072 | |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1073 | /** |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1074 | * iser_start_send - Initiate a Send DTO operation |
| 1075 | * |
| 1076 | * returns 0 on success, -1 on failure |
| 1077 | */ |
Sagi Grimberg | 6df5a12 | 2014-10-01 14:02:12 +0300 | [diff] [blame] | 1078 | int iser_post_send(struct ib_conn *ib_conn, struct iser_tx_desc *tx_desc, |
| 1079 | bool signal) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1080 | { |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 1081 | int ib_ret; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1082 | struct ib_send_wr send_wr, *send_wr_failed; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1083 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1084 | ib_dma_sync_single_for_device(ib_conn->device->ib_device, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1085 | tx_desc->dma_addr, ISER_HEADERS_LEN, |
| 1086 | DMA_TO_DEVICE); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1087 | |
| 1088 | send_wr.next = NULL; |
Sagi Grimberg | 49df278 | 2014-12-07 16:09:57 +0200 | [diff] [blame] | 1089 | send_wr.wr_id = (uintptr_t)tx_desc; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 1090 | send_wr.sg_list = tx_desc->tx_sg; |
| 1091 | send_wr.num_sge = tx_desc->num_sge; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1092 | send_wr.opcode = IB_WR_SEND; |
Sagi Grimberg | 6df5a12 | 2014-10-01 14:02:12 +0300 | [diff] [blame] | 1093 | send_wr.send_flags = signal ? IB_SEND_SIGNALED : 0; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1094 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 1095 | ib_ret = ib_post_send(ib_conn->qp, &send_wr, &send_wr_failed); |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 1096 | if (ib_ret) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1097 | iser_err("ib_post_send failed, ret:%d\n", ib_ret); |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 1098 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 1099 | return ib_ret; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1100 | } |
| 1101 | |
Sagi Grimberg | 8c204e6 | 2014-10-01 14:02:05 +0300 | [diff] [blame] | 1102 | /** |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1103 | * is_iser_tx_desc - Indicate if the completion wr_id |
| 1104 | * is a TX descriptor or not. |
| 1105 | * @iser_conn: iser connection |
| 1106 | * @wr_id: completion WR identifier |
| 1107 | * |
| 1108 | * Since we cannot rely on wc opcode in FLUSH errors |
| 1109 | * we must work around it by checking if the wr_id address |
| 1110 | * falls in the iser connection rx_descs buffer. If so |
| 1111 | * it is an RX descriptor, otherwize it is a TX. |
| 1112 | */ |
| 1113 | static inline bool |
| 1114 | is_iser_tx_desc(struct iser_conn *iser_conn, void *wr_id) |
| 1115 | { |
| 1116 | void *start = iser_conn->rx_descs; |
| 1117 | int len = iser_conn->num_rx_descs * sizeof(*iser_conn->rx_descs); |
| 1118 | |
| 1119 | if (wr_id >= start && wr_id < start + len) |
| 1120 | return false; |
| 1121 | |
| 1122 | return true; |
| 1123 | } |
| 1124 | |
| 1125 | /** |
Sagi Grimberg | 8c204e6 | 2014-10-01 14:02:05 +0300 | [diff] [blame] | 1126 | * iser_handle_comp_error() - Handle error completion |
Sagi Grimberg | 8c204e6 | 2014-10-01 14:02:05 +0300 | [diff] [blame] | 1127 | * @ib_conn: connection RDMA resources |
| 1128 | * @wc: work completion |
| 1129 | * |
| 1130 | * Notes: We may handle a FLUSH error completion and in this case |
| 1131 | * we only cleanup in case TX type was DATAOUT. For non-FLUSH |
| 1132 | * error completion we should also notify iscsi layer that |
| 1133 | * connection is failed (in case we passed bind stage). |
| 1134 | */ |
| 1135 | static void |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1136 | iser_handle_comp_error(struct ib_conn *ib_conn, |
Sagi Grimberg | 8c204e6 | 2014-10-01 14:02:05 +0300 | [diff] [blame] | 1137 | struct ib_wc *wc) |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1138 | { |
Sagi Grimberg | 49df278 | 2014-12-07 16:09:57 +0200 | [diff] [blame] | 1139 | void *wr_id = (void *)(uintptr_t)wc->wr_id; |
Sagi Grimberg | 8c204e6 | 2014-10-01 14:02:05 +0300 | [diff] [blame] | 1140 | struct iser_conn *iser_conn = container_of(ib_conn, struct iser_conn, |
| 1141 | ib_conn); |
| 1142 | |
| 1143 | if (wc->status != IB_WC_WR_FLUSH_ERR) |
| 1144 | if (iser_conn->iscsi_conn) |
| 1145 | iscsi_conn_failure(iser_conn->iscsi_conn, |
| 1146 | ISCSI_ERR_CONN_FAILED); |
| 1147 | |
Sagi Grimberg | 30bf1d5 | 2015-04-14 18:08:12 +0300 | [diff] [blame] | 1148 | if (wc->wr_id == ISER_FASTREG_LI_WRID) |
| 1149 | return; |
| 1150 | |
Sagi Grimberg | 49df278 | 2014-12-07 16:09:57 +0200 | [diff] [blame] | 1151 | if (is_iser_tx_desc(iser_conn, wr_id)) { |
| 1152 | struct iser_tx_desc *desc = wr_id; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1153 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1154 | if (desc->type == ISCSI_TX_DATAOUT) |
| 1155 | kmem_cache_free(ig.desc_cache, desc); |
| 1156 | } else { |
| 1157 | ib_conn->post_recv_buf_count--; |
Or Gerlitz | 78ad0a3 | 2010-02-08 13:19:21 +0000 | [diff] [blame] | 1158 | } |
Or Gerlitz | 78ad0a3 | 2010-02-08 13:19:21 +0000 | [diff] [blame] | 1159 | } |
| 1160 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1161 | /** |
| 1162 | * iser_handle_wc - handle a single work completion |
| 1163 | * @wc: work completion |
| 1164 | * |
| 1165 | * Soft-IRQ context, work completion can be either |
| 1166 | * SEND or RECV, and can turn out successful or |
| 1167 | * with error (or flush error). |
| 1168 | */ |
| 1169 | static void iser_handle_wc(struct ib_wc *wc) |
| 1170 | { |
| 1171 | struct ib_conn *ib_conn; |
| 1172 | struct iser_tx_desc *tx_desc; |
| 1173 | struct iser_rx_desc *rx_desc; |
Or Gerlitz | 78ad0a3 | 2010-02-08 13:19:21 +0000 | [diff] [blame] | 1174 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1175 | ib_conn = wc->qp->qp_context; |
Sagi Grimberg | 06c7fb6 | 2014-12-07 16:10:05 +0200 | [diff] [blame] | 1176 | if (likely(wc->status == IB_WC_SUCCESS)) { |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1177 | if (wc->opcode == IB_WC_RECV) { |
Sagi Grimberg | 49df278 | 2014-12-07 16:09:57 +0200 | [diff] [blame] | 1178 | rx_desc = (struct iser_rx_desc *)(uintptr_t)wc->wr_id; |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1179 | iser_rcv_completion(rx_desc, wc->byte_len, |
| 1180 | ib_conn); |
| 1181 | } else |
| 1182 | if (wc->opcode == IB_WC_SEND) { |
Sagi Grimberg | 49df278 | 2014-12-07 16:09:57 +0200 | [diff] [blame] | 1183 | tx_desc = (struct iser_tx_desc *)(uintptr_t)wc->wr_id; |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1184 | iser_snd_completion(tx_desc, ib_conn); |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1185 | } else { |
| 1186 | iser_err("Unknown wc opcode %d\n", wc->opcode); |
| 1187 | } |
| 1188 | } else { |
| 1189 | if (wc->status != IB_WC_WR_FLUSH_ERR) |
Sagi Grimberg | 871e00a | 2015-05-18 13:40:30 +0300 | [diff] [blame] | 1190 | iser_err("%s (%d): wr id %llx vend_err %x\n", |
| 1191 | ib_wc_status_msg(wc->status), wc->status, |
| 1192 | wc->wr_id, wc->vendor_err); |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1193 | else |
Sagi Grimberg | 871e00a | 2015-05-18 13:40:30 +0300 | [diff] [blame] | 1194 | iser_dbg("%s (%d): wr id %llx\n", |
| 1195 | ib_wc_status_msg(wc->status), wc->status, |
| 1196 | wc->wr_id); |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1197 | |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 1198 | if (wc->wr_id == ISER_BEACON_WRID) |
Sagi Grimberg | 30bf1d5 | 2015-04-14 18:08:12 +0300 | [diff] [blame] | 1199 | /* all flush errors were consumed */ |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1200 | complete(&ib_conn->flush_comp); |
Sagi Grimberg | 30bf1d5 | 2015-04-14 18:08:12 +0300 | [diff] [blame] | 1201 | else |
| 1202 | iser_handle_comp_error(ib_conn, wc); |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | /** |
| 1207 | * iser_cq_tasklet_fn - iSER completion polling loop |
| 1208 | * @data: iSER completion context |
| 1209 | * |
| 1210 | * Soft-IRQ context, polling connection CQ until |
| 1211 | * either CQ was empty or we exausted polling budget |
| 1212 | */ |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1213 | static void iser_cq_tasklet_fn(unsigned long data) |
| 1214 | { |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 1215 | struct iser_comp *comp = (struct iser_comp *)data; |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1216 | struct ib_cq *cq = comp->cq; |
Sagi Grimberg | 6e6fe2f | 2014-10-01 14:02:11 +0300 | [diff] [blame] | 1217 | struct ib_wc *const wcs = comp->wcs; |
| 1218 | int i, n, completed = 0; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1219 | |
Sagi Grimberg | 6e6fe2f | 2014-10-01 14:02:11 +0300 | [diff] [blame] | 1220 | while ((n = ib_poll_cq(cq, ARRAY_SIZE(comp->wcs), wcs)) > 0) { |
| 1221 | for (i = 0; i < n; i++) |
| 1222 | iser_handle_wc(&wcs[i]); |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1223 | |
Sagi Grimberg | 6e6fe2f | 2014-10-01 14:02:11 +0300 | [diff] [blame] | 1224 | completed += n; |
| 1225 | if (completed >= iser_cq_poll_limit) |
Sagi Grimberg | 183cfa4 | 2014-10-01 14:02:08 +0300 | [diff] [blame] | 1226 | break; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1227 | } |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1228 | |
| 1229 | /* |
| 1230 | * It is assumed here that arming CQ only once its empty |
| 1231 | * would not cause interrupts to be missed. |
| 1232 | */ |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1233 | ib_req_notify_cq(cq, IB_CQ_NEXT_COMP); |
Or Gerlitz | 78ad0a3 | 2010-02-08 13:19:21 +0000 | [diff] [blame] | 1234 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 1235 | iser_dbg("got %d completions\n", completed); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | static void iser_cq_callback(struct ib_cq *cq, void *cq_context) |
| 1239 | { |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 1240 | struct iser_comp *comp = cq_context; |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1241 | |
Sagi Grimberg | bf17554 | 2014-10-01 14:02:07 +0300 | [diff] [blame] | 1242 | tasklet_schedule(&comp->tasklet); |
Or Gerlitz | 1cfa0a7 | 2006-05-11 10:02:46 +0300 | [diff] [blame] | 1243 | } |
Sagi Grimberg | 0a7a08a | 2014-03-05 19:43:50 +0200 | [diff] [blame] | 1244 | |
| 1245 | u8 iser_check_task_pi_status(struct iscsi_iser_task *iser_task, |
| 1246 | enum iser_data_dir cmd_dir, sector_t *sector) |
| 1247 | { |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 1248 | struct iser_mem_reg *reg = &iser_task->rdma_reg[cmd_dir]; |
Sagi Grimberg | 5190cc2 | 2015-08-06 18:32:54 +0300 | [diff] [blame] | 1249 | struct iser_fr_desc *desc = reg->mem_h; |
Sagi Grimberg | 0a7a08a | 2014-03-05 19:43:50 +0200 | [diff] [blame] | 1250 | unsigned long sector_size = iser_task->sc->device->sector_size; |
| 1251 | struct ib_mr_status mr_status; |
| 1252 | int ret; |
| 1253 | |
Sagi Grimberg | d711d81 | 2015-08-06 18:32:53 +0300 | [diff] [blame] | 1254 | if (desc && desc->pi_ctx->sig_protected) { |
| 1255 | desc->pi_ctx->sig_protected = 0; |
Sagi Grimberg | 0a7a08a | 2014-03-05 19:43:50 +0200 | [diff] [blame] | 1256 | ret = ib_check_mr_status(desc->pi_ctx->sig_mr, |
| 1257 | IB_MR_CHECK_SIG_STATUS, &mr_status); |
| 1258 | if (ret) { |
| 1259 | pr_err("ib_check_mr_status failed, ret %d\n", ret); |
| 1260 | goto err; |
| 1261 | } |
| 1262 | |
| 1263 | if (mr_status.fail_status & IB_MR_CHECK_SIG_STATUS) { |
| 1264 | sector_t sector_off = mr_status.sig_err.sig_err_offset; |
| 1265 | |
| 1266 | do_div(sector_off, sector_size + 8); |
| 1267 | *sector = scsi_get_lba(iser_task->sc) + sector_off; |
| 1268 | |
Randy Dunlap | 39c978c | 2014-03-28 14:03:40 -0700 | [diff] [blame] | 1269 | pr_err("PI error found type %d at sector %llx " |
Sagi Grimberg | 0a7a08a | 2014-03-05 19:43:50 +0200 | [diff] [blame] | 1270 | "expected %x vs actual %x\n", |
Randy Dunlap | 39c978c | 2014-03-28 14:03:40 -0700 | [diff] [blame] | 1271 | mr_status.sig_err.err_type, |
| 1272 | (unsigned long long)*sector, |
Sagi Grimberg | 0a7a08a | 2014-03-05 19:43:50 +0200 | [diff] [blame] | 1273 | mr_status.sig_err.expected, |
| 1274 | mr_status.sig_err.actual); |
| 1275 | |
| 1276 | switch (mr_status.sig_err.err_type) { |
| 1277 | case IB_SIG_BAD_GUARD: |
| 1278 | return 0x1; |
| 1279 | case IB_SIG_BAD_REFTAG: |
| 1280 | return 0x3; |
| 1281 | case IB_SIG_BAD_APPTAG: |
| 1282 | return 0x2; |
| 1283 | } |
| 1284 | } |
| 1285 | } |
| 1286 | |
| 1287 | return 0; |
| 1288 | err: |
| 1289 | /* Not alot we can do here, return ambiguous guard error */ |
| 1290 | return 0x1; |
| 1291 | } |