Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004, 2005, 2006 Voltaire, Inc. All rights reserved. |
Or Gerlitz | 3ee07d2 | 2014-04-01 16:28:41 +0300 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved. |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 4 | * |
| 5 | * This software is available to you under a choice of one of two |
| 6 | * licenses. You may choose to be licensed under the terms of the GNU |
| 7 | * General Public License (GPL) Version 2, available from the file |
| 8 | * COPYING in the main directory of this source tree, or the |
| 9 | * OpenIB.org BSD license below: |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or |
| 12 | * without modification, are permitted provided that the following |
| 13 | * conditions are met: |
| 14 | * |
| 15 | * - Redistributions of source code must retain the above |
| 16 | * copyright notice, this list of conditions and the following |
| 17 | * disclaimer. |
| 18 | * |
| 19 | * - Redistributions in binary form must reproduce the above |
| 20 | * copyright notice, this list of conditions and the following |
| 21 | * disclaimer in the documentation and/or other materials |
| 22 | * provided with the distribution. |
| 23 | * |
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 25 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 26 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 27 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 28 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 29 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 30 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 31 | * SOFTWARE. |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 32 | */ |
| 33 | #include <linux/kernel.h> |
| 34 | #include <linux/slab.h> |
| 35 | #include <linux/mm.h> |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 36 | #include <linux/scatterlist.h> |
| 37 | #include <linux/kfifo.h> |
| 38 | #include <scsi/scsi_cmnd.h> |
| 39 | #include <scsi/scsi_host.h> |
| 40 | |
| 41 | #include "iscsi_iser.h" |
| 42 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 43 | /* Register user buffer memory and initialize passive rdma |
Sagi Grimberg | d77e653 | 2014-06-11 12:09:58 +0300 | [diff] [blame] | 44 | * dto descriptor. Data size is stored in |
| 45 | * task->data[ISER_DIR_IN].data_len, Protection size |
| 46 | * os stored in task->prot[ISER_DIR_IN].data_len |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 47 | */ |
Sagi Grimberg | d77e653 | 2014-06-11 12:09:58 +0300 | [diff] [blame] | 48 | static int iser_prepare_read_cmd(struct iscsi_task *task) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 49 | |
| 50 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 51 | struct iscsi_iser_task *iser_task = task->dd_data; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 52 | struct iser_device *device = iser_task->iser_conn->ib_conn.device; |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 53 | struct iser_mem_reg *mem_reg; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 54 | int err; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 55 | struct iser_hdr *hdr = &iser_task->desc.iser_header; |
| 56 | struct iser_data_buf *buf_in = &iser_task->data[ISER_DIR_IN]; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 57 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 58 | err = iser_dma_map_task_data(iser_task, |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 59 | buf_in, |
| 60 | ISER_DIR_IN, |
| 61 | DMA_FROM_DEVICE); |
| 62 | if (err) |
| 63 | return err; |
| 64 | |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 65 | if (scsi_prot_sg_count(iser_task->sc)) { |
| 66 | struct iser_data_buf *pbuf_in = &iser_task->prot[ISER_DIR_IN]; |
| 67 | |
| 68 | err = iser_dma_map_task_data(iser_task, |
| 69 | pbuf_in, |
| 70 | ISER_DIR_IN, |
| 71 | DMA_FROM_DEVICE); |
| 72 | if (err) |
| 73 | return err; |
| 74 | } |
| 75 | |
Sagi Grimberg | b4e155f | 2013-07-28 12:35:39 +0300 | [diff] [blame] | 76 | err = device->iser_reg_rdma_mem(iser_task, ISER_DIR_IN); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 77 | if (err) { |
| 78 | iser_err("Failed to set up Data-IN RDMA\n"); |
| 79 | return err; |
| 80 | } |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 81 | mem_reg = &iser_task->rdma_reg[ISER_DIR_IN]; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 82 | |
| 83 | hdr->flags |= ISER_RSV; |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 84 | hdr->read_stag = cpu_to_be32(mem_reg->rkey); |
Sagi Grimberg | 90a6684 | 2015-04-14 18:08:24 +0300 | [diff] [blame] | 85 | hdr->read_va = cpu_to_be64(mem_reg->sge.addr); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 86 | |
| 87 | iser_dbg("Cmd itt:%d READ tags RKEY:%#.4X VA:%#llX\n", |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 88 | task->itt, mem_reg->rkey, |
Sagi Grimberg | 90a6684 | 2015-04-14 18:08:24 +0300 | [diff] [blame] | 89 | (unsigned long long)mem_reg->sge.addr); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | /* Register user buffer memory and initialize passive rdma |
Sagi Grimberg | d77e653 | 2014-06-11 12:09:58 +0300 | [diff] [blame] | 95 | * dto descriptor. Data size is stored in |
| 96 | * task->data[ISER_DIR_OUT].data_len, Protection size |
| 97 | * is stored at task->prot[ISER_DIR_OUT].data_len |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 98 | */ |
| 99 | static int |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 100 | iser_prepare_write_cmd(struct iscsi_task *task, |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 101 | unsigned int imm_sz, |
| 102 | unsigned int unsol_sz, |
| 103 | unsigned int edtl) |
| 104 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 105 | struct iscsi_iser_task *iser_task = task->dd_data; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 106 | struct iser_device *device = iser_task->iser_conn->ib_conn.device; |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 107 | struct iser_mem_reg *mem_reg; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 108 | int err; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 109 | struct iser_hdr *hdr = &iser_task->desc.iser_header; |
| 110 | struct iser_data_buf *buf_out = &iser_task->data[ISER_DIR_OUT]; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 111 | struct ib_sge *tx_dsg = &iser_task->desc.tx_sg[1]; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 112 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 113 | err = iser_dma_map_task_data(iser_task, |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 114 | buf_out, |
| 115 | ISER_DIR_OUT, |
| 116 | DMA_TO_DEVICE); |
| 117 | if (err) |
| 118 | return err; |
| 119 | |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 120 | if (scsi_prot_sg_count(iser_task->sc)) { |
| 121 | struct iser_data_buf *pbuf_out = &iser_task->prot[ISER_DIR_OUT]; |
| 122 | |
| 123 | err = iser_dma_map_task_data(iser_task, |
| 124 | pbuf_out, |
| 125 | ISER_DIR_OUT, |
| 126 | DMA_TO_DEVICE); |
| 127 | if (err) |
| 128 | return err; |
| 129 | } |
| 130 | |
Sagi Grimberg | b4e155f | 2013-07-28 12:35:39 +0300 | [diff] [blame] | 131 | err = device->iser_reg_rdma_mem(iser_task, ISER_DIR_OUT); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 132 | if (err != 0) { |
| 133 | iser_err("Failed to register write cmd RDMA mem\n"); |
| 134 | return err; |
| 135 | } |
| 136 | |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 137 | mem_reg = &iser_task->rdma_reg[ISER_DIR_OUT]; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 138 | |
| 139 | if (unsol_sz < edtl) { |
| 140 | hdr->flags |= ISER_WSV; |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 141 | hdr->write_stag = cpu_to_be32(mem_reg->rkey); |
Sagi Grimberg | 90a6684 | 2015-04-14 18:08:24 +0300 | [diff] [blame] | 142 | hdr->write_va = cpu_to_be64(mem_reg->sge.addr + unsol_sz); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 143 | |
| 144 | iser_dbg("Cmd itt:%d, WRITE tags, RKEY:%#.4X " |
| 145 | "VA:%#llX + unsol:%d\n", |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 146 | task->itt, mem_reg->rkey, |
Sagi Grimberg | 90a6684 | 2015-04-14 18:08:24 +0300 | [diff] [blame] | 147 | (unsigned long long)mem_reg->sge.addr, unsol_sz); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | if (imm_sz > 0) { |
| 151 | iser_dbg("Cmd itt:%d, WRITE, adding imm.data sz: %d\n", |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 152 | task->itt, imm_sz); |
Sagi Grimberg | 90a6684 | 2015-04-14 18:08:24 +0300 | [diff] [blame] | 153 | tx_dsg->addr = mem_reg->sge.addr; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 154 | tx_dsg->length = imm_sz; |
Sagi Grimberg | 90a6684 | 2015-04-14 18:08:24 +0300 | [diff] [blame] | 155 | tx_dsg->lkey = mem_reg->sge.lkey; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 156 | iser_task->desc.num_sge = 2; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | return 0; |
| 160 | } |
| 161 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 162 | /* creates a new tx descriptor and adds header regd buffer */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 163 | static void iser_create_send_desc(struct iser_conn *iser_conn, |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 164 | struct iser_tx_desc *tx_desc) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 165 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 166 | struct iser_device *device = iser_conn->ib_conn.device; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 167 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 168 | ib_dma_sync_single_for_cpu(device->ib_device, |
| 169 | tx_desc->dma_addr, ISER_HEADERS_LEN, DMA_TO_DEVICE); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 170 | |
| 171 | memset(&tx_desc->iser_header, 0, sizeof(struct iser_hdr)); |
| 172 | tx_desc->iser_header.flags = ISER_VER; |
| 173 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 174 | tx_desc->num_sge = 1; |
| 175 | |
| 176 | if (tx_desc->tx_sg[0].lkey != device->mr->lkey) { |
| 177 | tx_desc->tx_sg[0].lkey = device->mr->lkey; |
| 178 | iser_dbg("sdesc %p lkey mismatch, fixing\n", tx_desc); |
| 179 | } |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 180 | } |
| 181 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 182 | static void iser_free_login_buf(struct iser_conn *iser_conn) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 183 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 184 | struct iser_device *device = iser_conn->ib_conn.device; |
| 185 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 186 | if (!iser_conn->login_buf) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 187 | return; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 188 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 189 | if (iser_conn->login_req_dma) |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 190 | ib_dma_unmap_single(device->ib_device, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 191 | iser_conn->login_req_dma, |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 192 | ISCSI_DEF_MAX_RECV_SEG_LEN, DMA_TO_DEVICE); |
| 193 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 194 | if (iser_conn->login_resp_dma) |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 195 | ib_dma_unmap_single(device->ib_device, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 196 | iser_conn->login_resp_dma, |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 197 | ISER_RX_LOGIN_SIZE, DMA_FROM_DEVICE); |
| 198 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 199 | kfree(iser_conn->login_buf); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 200 | |
| 201 | /* make sure we never redo any unmapping */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 202 | iser_conn->login_req_dma = 0; |
| 203 | iser_conn->login_resp_dma = 0; |
| 204 | iser_conn->login_buf = NULL; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 205 | } |
| 206 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 207 | static int iser_alloc_login_buf(struct iser_conn *iser_conn) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 208 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 209 | struct iser_device *device = iser_conn->ib_conn.device; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 210 | int req_err, resp_err; |
| 211 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 212 | BUG_ON(device == NULL); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 213 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 214 | iser_conn->login_buf = kmalloc(ISCSI_DEF_MAX_RECV_SEG_LEN + |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 215 | ISER_RX_LOGIN_SIZE, GFP_KERNEL); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 216 | if (!iser_conn->login_buf) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 217 | goto out_err; |
| 218 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 219 | iser_conn->login_req_buf = iser_conn->login_buf; |
| 220 | iser_conn->login_resp_buf = iser_conn->login_buf + |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 221 | ISCSI_DEF_MAX_RECV_SEG_LEN; |
| 222 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 223 | iser_conn->login_req_dma = ib_dma_map_single(device->ib_device, |
| 224 | iser_conn->login_req_buf, |
| 225 | ISCSI_DEF_MAX_RECV_SEG_LEN, |
| 226 | DMA_TO_DEVICE); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 227 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 228 | iser_conn->login_resp_dma = ib_dma_map_single(device->ib_device, |
| 229 | iser_conn->login_resp_buf, |
| 230 | ISER_RX_LOGIN_SIZE, |
| 231 | DMA_FROM_DEVICE); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 232 | |
| 233 | req_err = ib_dma_mapping_error(device->ib_device, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 234 | iser_conn->login_req_dma); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 235 | resp_err = ib_dma_mapping_error(device->ib_device, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 236 | iser_conn->login_resp_dma); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 237 | |
| 238 | if (req_err || resp_err) { |
| 239 | if (req_err) |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 240 | iser_conn->login_req_dma = 0; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 241 | if (resp_err) |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 242 | iser_conn->login_resp_dma = 0; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 243 | goto free_login_buf; |
| 244 | } |
| 245 | return 0; |
| 246 | |
| 247 | free_login_buf: |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 248 | iser_free_login_buf(iser_conn); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 249 | |
| 250 | out_err: |
| 251 | iser_err("unable to alloc or map login buf\n"); |
| 252 | return -ENOMEM; |
| 253 | } |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 254 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 255 | int iser_alloc_rx_descriptors(struct iser_conn *iser_conn, |
| 256 | struct iscsi_session *session) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 257 | { |
| 258 | int i, j; |
| 259 | u64 dma_addr; |
| 260 | struct iser_rx_desc *rx_desc; |
| 261 | struct ib_sge *rx_sg; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 262 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
| 263 | struct iser_device *device = ib_conn->device; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 264 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 265 | iser_conn->qp_max_recv_dtos = session->cmds_max; |
| 266 | iser_conn->qp_max_recv_dtos_mask = session->cmds_max - 1; /* cmds_max is 2^N */ |
| 267 | iser_conn->min_posted_rx = iser_conn->qp_max_recv_dtos >> 2; |
Shlomo Pongratz | b7f0451 | 2013-07-28 12:35:38 +0300 | [diff] [blame] | 268 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 269 | if (device->iser_alloc_rdma_reg_res(ib_conn, session->scsi_cmds_max)) |
Sagi Grimberg | b4e155f | 2013-07-28 12:35:39 +0300 | [diff] [blame] | 270 | goto create_rdma_reg_res_failed; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 271 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 272 | if (iser_alloc_login_buf(iser_conn)) |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 273 | goto alloc_login_buf_fail; |
| 274 | |
Sagi Grimberg | 6aabfa7 | 2014-10-01 14:02:09 +0300 | [diff] [blame] | 275 | iser_conn->num_rx_descs = session->cmds_max; |
| 276 | iser_conn->rx_descs = kmalloc(iser_conn->num_rx_descs * |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 277 | sizeof(struct iser_rx_desc), GFP_KERNEL); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 278 | if (!iser_conn->rx_descs) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 279 | goto rx_desc_alloc_fail; |
| 280 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 281 | rx_desc = iser_conn->rx_descs; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 282 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 283 | for (i = 0; i < iser_conn->qp_max_recv_dtos; i++, rx_desc++) { |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 284 | dma_addr = ib_dma_map_single(device->ib_device, (void *)rx_desc, |
| 285 | ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE); |
| 286 | if (ib_dma_mapping_error(device->ib_device, dma_addr)) |
| 287 | goto rx_desc_dma_map_failed; |
| 288 | |
| 289 | rx_desc->dma_addr = dma_addr; |
| 290 | |
| 291 | rx_sg = &rx_desc->rx_sg; |
| 292 | rx_sg->addr = rx_desc->dma_addr; |
| 293 | rx_sg->length = ISER_RX_PAYLOAD_SIZE; |
| 294 | rx_sg->lkey = device->mr->lkey; |
| 295 | } |
| 296 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 297 | iser_conn->rx_desc_head = 0; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 298 | return 0; |
| 299 | |
| 300 | rx_desc_dma_map_failed: |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 301 | rx_desc = iser_conn->rx_descs; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 302 | for (j = 0; j < i; j++, rx_desc++) |
| 303 | ib_dma_unmap_single(device->ib_device, rx_desc->dma_addr, |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 304 | ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 305 | kfree(iser_conn->rx_descs); |
| 306 | iser_conn->rx_descs = NULL; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 307 | rx_desc_alloc_fail: |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 308 | iser_free_login_buf(iser_conn); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 309 | alloc_login_buf_fail: |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 310 | device->iser_free_rdma_reg_res(ib_conn); |
Sagi Grimberg | b4e155f | 2013-07-28 12:35:39 +0300 | [diff] [blame] | 311 | create_rdma_reg_res_failed: |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 312 | iser_err("failed allocating rx descriptors / data buffers\n"); |
| 313 | return -ENOMEM; |
| 314 | } |
| 315 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 316 | void iser_free_rx_descriptors(struct iser_conn *iser_conn) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 317 | { |
| 318 | int i; |
| 319 | struct iser_rx_desc *rx_desc; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 320 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
| 321 | struct iser_device *device = ib_conn->device; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 322 | |
Sagi Grimberg | 2e02d653 | 2013-08-15 17:04:42 +0300 | [diff] [blame] | 323 | if (device->iser_free_rdma_reg_res) |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 324 | device->iser_free_rdma_reg_res(ib_conn); |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 325 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 326 | rx_desc = iser_conn->rx_descs; |
| 327 | for (i = 0; i < iser_conn->qp_max_recv_dtos; i++, rx_desc++) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 328 | ib_dma_unmap_single(device->ib_device, rx_desc->dma_addr, |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 329 | ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 330 | kfree(iser_conn->rx_descs); |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 331 | /* make sure we never redo any unmapping */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 332 | iser_conn->rx_descs = NULL; |
Shlomo Pongratz | 986db0d | 2013-07-28 12:35:37 +0300 | [diff] [blame] | 333 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 334 | iser_free_login_buf(iser_conn); |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Or Gerlitz | 89e984e2 | 2012-03-05 18:21:44 +0200 | [diff] [blame] | 337 | static int iser_post_rx_bufs(struct iscsi_conn *conn, struct iscsi_hdr *req) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 338 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 339 | struct iser_conn *iser_conn = conn->dd_data; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 340 | struct ib_conn *ib_conn = &iser_conn->ib_conn; |
Or Gerlitz | 6a06a4b | 2013-08-08 13:44:29 +0300 | [diff] [blame] | 341 | struct iscsi_session *session = conn->session; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 342 | |
Or Gerlitz | 89e984e2 | 2012-03-05 18:21:44 +0200 | [diff] [blame] | 343 | iser_dbg("req op %x flags %x\n", req->opcode, req->flags); |
| 344 | /* check if this is the last login - going to full feature phase */ |
| 345 | if ((req->flags & ISCSI_FULL_FEATURE_PHASE) != ISCSI_FULL_FEATURE_PHASE) |
| 346 | return 0; |
| 347 | |
| 348 | /* |
Sagi Grimberg | ff3dd52 | 2014-10-01 14:02:10 +0300 | [diff] [blame] | 349 | * Check that there is one posted recv buffer |
| 350 | * (for the last login response). |
Or Gerlitz | 89e984e2 | 2012-03-05 18:21:44 +0200 | [diff] [blame] | 351 | */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 352 | WARN_ON(ib_conn->post_recv_buf_count != 1); |
Or Gerlitz | 89e984e2 | 2012-03-05 18:21:44 +0200 | [diff] [blame] | 353 | |
Or Gerlitz | 6a06a4b | 2013-08-08 13:44:29 +0300 | [diff] [blame] | 354 | if (session->discovery_sess) { |
| 355 | iser_info("Discovery session, re-using login RX buffer\n"); |
| 356 | return 0; |
| 357 | } else |
| 358 | iser_info("Normal session, posting batch of RX %d buffers\n", |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 359 | iser_conn->min_posted_rx); |
Or Gerlitz | 6a06a4b | 2013-08-08 13:44:29 +0300 | [diff] [blame] | 360 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 361 | /* Initial post receive buffers */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 362 | if (iser_post_recvm(iser_conn, iser_conn->min_posted_rx)) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 363 | return -ENOMEM; |
| 364 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 365 | return 0; |
| 366 | } |
| 367 | |
Max Gurtovoy | 6ec9d4d | 2014-12-07 16:09:56 +0200 | [diff] [blame] | 368 | static inline bool iser_signal_comp(u8 sig_count) |
Sagi Grimberg | 6df5a12 | 2014-10-01 14:02:12 +0300 | [diff] [blame] | 369 | { |
| 370 | return ((sig_count % ISER_SIGNAL_CMD_COUNT) == 0); |
| 371 | } |
| 372 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 373 | /** |
| 374 | * iser_send_command - send command PDU |
| 375 | */ |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 376 | int iser_send_command(struct iscsi_conn *conn, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 377 | struct iscsi_task *task) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 378 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 379 | struct iser_conn *iser_conn = conn->dd_data; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 380 | struct iscsi_iser_task *iser_task = task->dd_data; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 381 | unsigned long edtl; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 382 | int err; |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 383 | struct iser_data_buf *data_buf, *prot_buf; |
Nicholas Bellinger | 1235218 | 2011-05-27 11:16:33 +0000 | [diff] [blame] | 384 | struct iscsi_scsi_req *hdr = (struct iscsi_scsi_req *)task->hdr; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 385 | struct scsi_cmnd *sc = task->sc; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 386 | struct iser_tx_desc *tx_desc = &iser_task->desc; |
Max Gurtovoy | 6ec9d4d | 2014-12-07 16:09:56 +0200 | [diff] [blame] | 387 | u8 sig_count = ++iser_conn->ib_conn.sig_count; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 388 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 389 | edtl = ntohl(hdr->data_length); |
| 390 | |
| 391 | /* build the tx desc regd header and add it to the tx desc dto */ |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 392 | tx_desc->type = ISCSI_TX_SCSI_COMMAND; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 393 | iser_create_send_desc(iser_conn, tx_desc); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 394 | |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 395 | if (hdr->flags & ISCSI_FLAG_CMD_READ) { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 396 | data_buf = &iser_task->data[ISER_DIR_IN]; |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 397 | prot_buf = &iser_task->prot[ISER_DIR_IN]; |
| 398 | } else { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 399 | data_buf = &iser_task->data[ISER_DIR_OUT]; |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 400 | prot_buf = &iser_task->prot[ISER_DIR_OUT]; |
| 401 | } |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 402 | |
FUJITA Tomonori | da9c0c7 | 2007-06-01 18:56:21 +0900 | [diff] [blame] | 403 | if (scsi_sg_count(sc)) { /* using a scatter list */ |
Sagi Grimberg | e3784bd | 2015-04-14 18:08:15 +0300 | [diff] [blame] | 404 | data_buf->sg = scsi_sglist(sc); |
FUJITA Tomonori | da9c0c7 | 2007-06-01 18:56:21 +0900 | [diff] [blame] | 405 | data_buf->size = scsi_sg_count(sc); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 406 | } |
FUJITA Tomonori | da9c0c7 | 2007-06-01 18:56:21 +0900 | [diff] [blame] | 407 | data_buf->data_len = scsi_bufflen(sc); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 408 | |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 409 | if (scsi_prot_sg_count(sc)) { |
Sagi Grimberg | e3784bd | 2015-04-14 18:08:15 +0300 | [diff] [blame] | 410 | prot_buf->sg = scsi_prot_sglist(sc); |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 411 | prot_buf->size = scsi_prot_sg_count(sc); |
Sagi Grimberg | a065fe6 | 2015-04-14 18:08:13 +0300 | [diff] [blame] | 412 | prot_buf->data_len = (data_buf->data_len >> |
| 413 | ilog2(sc->device->sector_size)) * 8; |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 414 | } |
| 415 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 416 | if (hdr->flags & ISCSI_FLAG_CMD_READ) { |
Sagi Grimberg | d77e653 | 2014-06-11 12:09:58 +0300 | [diff] [blame] | 417 | err = iser_prepare_read_cmd(task); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 418 | if (err) |
| 419 | goto send_command_error; |
| 420 | } |
| 421 | if (hdr->flags & ISCSI_FLAG_CMD_WRITE) { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 422 | err = iser_prepare_write_cmd(task, |
| 423 | task->imm_count, |
| 424 | task->imm_count + |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 425 | task->unsol_r2t.data_length, |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 426 | edtl); |
| 427 | if (err) |
| 428 | goto send_command_error; |
| 429 | } |
| 430 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 431 | iser_task->status = ISER_TASK_STATUS_STARTED; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 432 | |
Sagi Grimberg | 6df5a12 | 2014-10-01 14:02:12 +0300 | [diff] [blame] | 433 | err = iser_post_send(&iser_conn->ib_conn, tx_desc, |
Max Gurtovoy | 6ec9d4d | 2014-12-07 16:09:56 +0200 | [diff] [blame] | 434 | iser_signal_comp(sig_count)); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 435 | if (!err) |
| 436 | return 0; |
| 437 | |
| 438 | send_command_error: |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 439 | iser_err("conn %p failed task->itt %d err %d\n",conn, task->itt, err); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 440 | return err; |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * iser_send_data_out - send data out PDU |
| 445 | */ |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 446 | int iser_send_data_out(struct iscsi_conn *conn, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 447 | struct iscsi_task *task, |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 448 | struct iscsi_data *hdr) |
| 449 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 450 | struct iser_conn *iser_conn = conn->dd_data; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 451 | struct iscsi_iser_task *iser_task = task->dd_data; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 452 | struct iser_tx_desc *tx_desc = NULL; |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 453 | struct iser_mem_reg *mem_reg; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 454 | unsigned long buf_offset; |
| 455 | unsigned long data_seg_len; |
Erez Zilber | 0a22ab9 | 2008-04-16 21:09:35 -0700 | [diff] [blame] | 456 | uint32_t itt; |
Sagi Grimberg | d167390 | 2015-08-06 18:32:48 +0300 | [diff] [blame^] | 457 | int err; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 458 | struct ib_sge *tx_dsg; |
| 459 | |
Erez Zilber | 0a22ab9 | 2008-04-16 21:09:35 -0700 | [diff] [blame] | 460 | itt = (__force uint32_t)hdr->itt; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 461 | data_seg_len = ntoh24(hdr->dlength); |
| 462 | buf_offset = ntohl(hdr->offset); |
| 463 | |
| 464 | iser_dbg("%s itt %d dseg_len %d offset %d\n", |
| 465 | __func__,(int)itt,(int)data_seg_len,(int)buf_offset); |
| 466 | |
Or Gerlitz | 528f4e8 | 2010-02-08 13:20:43 +0000 | [diff] [blame] | 467 | tx_desc = kmem_cache_zalloc(ig.desc_cache, GFP_ATOMIC); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 468 | if (tx_desc == NULL) { |
| 469 | iser_err("Failed to alloc desc for post dataout\n"); |
| 470 | return -ENOMEM; |
| 471 | } |
| 472 | |
| 473 | tx_desc->type = ISCSI_TX_DATAOUT; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 474 | tx_desc->iser_header.flags = ISER_VER; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 475 | memcpy(&tx_desc->iscsi_header, hdr, sizeof(struct iscsi_hdr)); |
| 476 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 477 | /* build the tx desc */ |
Sagi Grimberg | d167390 | 2015-08-06 18:32:48 +0300 | [diff] [blame^] | 478 | err = iser_initialize_task_headers(task, tx_desc); |
| 479 | if (err) |
| 480 | goto send_data_out_error; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 481 | |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 482 | mem_reg = &iser_task->rdma_reg[ISER_DIR_OUT]; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 483 | tx_dsg = &tx_desc->tx_sg[1]; |
Sagi Grimberg | 90a6684 | 2015-04-14 18:08:24 +0300 | [diff] [blame] | 484 | tx_dsg->addr = mem_reg->sge.addr + buf_offset; |
| 485 | tx_dsg->length = data_seg_len; |
| 486 | tx_dsg->lkey = mem_reg->sge.lkey; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 487 | tx_desc->num_sge = 2; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 488 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 489 | if (buf_offset + data_seg_len > iser_task->data[ISER_DIR_OUT].data_len) { |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 490 | iser_err("Offset:%ld & DSL:%ld in Data-Out " |
| 491 | "inconsistent with total len:%ld, itt:%d\n", |
| 492 | buf_offset, data_seg_len, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 493 | iser_task->data[ISER_DIR_OUT].data_len, itt); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 494 | err = -EINVAL; |
| 495 | goto send_data_out_error; |
| 496 | } |
| 497 | iser_dbg("data-out itt: %d, offset: %ld, sz: %ld\n", |
| 498 | itt, buf_offset, data_seg_len); |
| 499 | |
| 500 | |
Sagi Grimberg | 6df5a12 | 2014-10-01 14:02:12 +0300 | [diff] [blame] | 501 | err = iser_post_send(&iser_conn->ib_conn, tx_desc, true); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 502 | if (!err) |
| 503 | return 0; |
| 504 | |
| 505 | send_data_out_error: |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 506 | kmem_cache_free(ig.desc_cache, tx_desc); |
Sagi Grimberg | d167390 | 2015-08-06 18:32:48 +0300 | [diff] [blame^] | 507 | iser_err("conn %p failed err %d\n", conn, err); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 508 | return err; |
| 509 | } |
| 510 | |
| 511 | int iser_send_control(struct iscsi_conn *conn, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 512 | struct iscsi_task *task) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 513 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 514 | struct iser_conn *iser_conn = conn->dd_data; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 515 | struct iscsi_iser_task *iser_task = task->dd_data; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 516 | struct iser_tx_desc *mdesc = &iser_task->desc; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 517 | unsigned long data_seg_len; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 518 | int err = 0; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 519 | struct iser_device *device; |
| 520 | |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 521 | /* build the tx desc regd header and add it to the tx desc dto */ |
| 522 | mdesc->type = ISCSI_TX_CONTROL; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 523 | iser_create_send_desc(iser_conn, mdesc); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 524 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 525 | device = iser_conn->ib_conn.device; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 526 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 527 | data_seg_len = ntoh24(task->hdr->dlength); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 528 | |
| 529 | if (data_seg_len > 0) { |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 530 | struct ib_sge *tx_dsg = &mdesc->tx_sg[1]; |
| 531 | if (task != conn->login_task) { |
| 532 | iser_err("data present on non login task!!!\n"); |
| 533 | goto send_control_error; |
| 534 | } |
Or Gerlitz | 2c4ce60 | 2011-11-04 00:19:46 +0200 | [diff] [blame] | 535 | |
| 536 | ib_dma_sync_single_for_cpu(device->ib_device, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 537 | iser_conn->login_req_dma, task->data_count, |
Or Gerlitz | 2c4ce60 | 2011-11-04 00:19:46 +0200 | [diff] [blame] | 538 | DMA_TO_DEVICE); |
| 539 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 540 | memcpy(iser_conn->login_req_buf, task->data, task->data_count); |
Or Gerlitz | 2c4ce60 | 2011-11-04 00:19:46 +0200 | [diff] [blame] | 541 | |
| 542 | ib_dma_sync_single_for_device(device->ib_device, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 543 | iser_conn->login_req_dma, task->data_count, |
Or Gerlitz | 2c4ce60 | 2011-11-04 00:19:46 +0200 | [diff] [blame] | 544 | DMA_TO_DEVICE); |
| 545 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 546 | tx_dsg->addr = iser_conn->login_req_dma; |
Or Gerlitz | 200ae1a | 2011-08-01 21:14:09 +0000 | [diff] [blame] | 547 | tx_dsg->length = task->data_count; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 548 | tx_dsg->lkey = device->mr->lkey; |
| 549 | mdesc->num_sge = 2; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 550 | } |
| 551 | |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 552 | if (task == conn->login_task) { |
Or Gerlitz | 6a06a4b | 2013-08-08 13:44:29 +0300 | [diff] [blame] | 553 | iser_dbg("op %x dsl %lx, posting login rx buffer\n", |
| 554 | task->hdr->opcode, data_seg_len); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 555 | err = iser_post_recvl(iser_conn); |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 556 | if (err) |
| 557 | goto send_control_error; |
Or Gerlitz | 89e984e2 | 2012-03-05 18:21:44 +0200 | [diff] [blame] | 558 | err = iser_post_rx_bufs(conn, task->hdr); |
| 559 | if (err) |
| 560 | goto send_control_error; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 561 | } |
| 562 | |
Sagi Grimberg | 6df5a12 | 2014-10-01 14:02:12 +0300 | [diff] [blame] | 563 | err = iser_post_send(&iser_conn->ib_conn, mdesc, true); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 564 | if (!err) |
| 565 | return 0; |
| 566 | |
| 567 | send_control_error: |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 568 | iser_err("conn %p failed err %d\n",conn, err); |
| 569 | return err; |
| 570 | } |
| 571 | |
| 572 | /** |
| 573 | * iser_rcv_dto_completion - recv DTO completion |
| 574 | */ |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 575 | void iser_rcv_completion(struct iser_rx_desc *rx_desc, |
| 576 | unsigned long rx_xfer_len, |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 577 | struct ib_conn *ib_conn) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 578 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 579 | struct iser_conn *iser_conn = container_of(ib_conn, struct iser_conn, |
| 580 | ib_conn); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 581 | struct iscsi_hdr *hdr; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 582 | u64 rx_dma; |
| 583 | int rx_buflen, outstanding, count, err; |
| 584 | |
| 585 | /* differentiate between login to all other PDUs */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 586 | if ((char *)rx_desc == iser_conn->login_resp_buf) { |
| 587 | rx_dma = iser_conn->login_resp_dma; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 588 | rx_buflen = ISER_RX_LOGIN_SIZE; |
| 589 | } else { |
| 590 | rx_dma = rx_desc->dma_addr; |
| 591 | rx_buflen = ISER_RX_PAYLOAD_SIZE; |
| 592 | } |
| 593 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 594 | ib_dma_sync_single_for_cpu(ib_conn->device->ib_device, rx_dma, |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 595 | rx_buflen, DMA_FROM_DEVICE); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 596 | |
| 597 | hdr = &rx_desc->iscsi_header; |
| 598 | |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 599 | iser_dbg("op 0x%x itt 0x%x dlen %d\n", hdr->opcode, |
| 600 | hdr->itt, (int)(rx_xfer_len - ISER_HEADERS_LEN)); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 601 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 602 | iscsi_iser_recv(iser_conn->iscsi_conn, hdr, rx_desc->data, |
Ariel Nahum | 4667f5d | 2014-04-01 16:28:39 +0300 | [diff] [blame] | 603 | rx_xfer_len - ISER_HEADERS_LEN); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 604 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 605 | ib_dma_sync_single_for_device(ib_conn->device->ib_device, rx_dma, |
Ariel Nahum | 4667f5d | 2014-04-01 16:28:39 +0300 | [diff] [blame] | 606 | rx_buflen, DMA_FROM_DEVICE); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 607 | |
| 608 | /* decrementing conn->post_recv_buf_count only --after-- freeing the * |
| 609 | * task eliminates the need to worry on tasks which are completed in * |
| 610 | * parallel to the execution of iser_conn_term. So the code that waits * |
| 611 | * for the posted rx bufs refcount to become zero handles everything */ |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 612 | ib_conn->post_recv_buf_count--; |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 613 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 614 | if (rx_dma == iser_conn->login_resp_dma) |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 615 | return; |
| 616 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 617 | outstanding = ib_conn->post_recv_buf_count; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 618 | if (outstanding + iser_conn->min_posted_rx <= iser_conn->qp_max_recv_dtos) { |
| 619 | count = min(iser_conn->qp_max_recv_dtos - outstanding, |
| 620 | iser_conn->min_posted_rx); |
| 621 | err = iser_post_recvm(iser_conn, count); |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 622 | if (err) |
| 623 | iser_err("posting %d rx bufs err %d\n", count, err); |
| 624 | } |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 625 | } |
| 626 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 627 | void iser_snd_completion(struct iser_tx_desc *tx_desc, |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 628 | struct ib_conn *ib_conn) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 629 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 630 | struct iscsi_task *task; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 631 | struct iser_device *device = ib_conn->device; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 632 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 633 | if (tx_desc->type == ISCSI_TX_DATAOUT) { |
| 634 | ib_dma_unmap_single(device->ib_device, tx_desc->dma_addr, |
| 635 | ISER_HEADERS_LEN, DMA_TO_DEVICE); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 636 | kmem_cache_free(ig.desc_cache, tx_desc); |
Dan Carpenter | fd8b48b | 2014-01-29 16:18:51 +0300 | [diff] [blame] | 637 | tx_desc = NULL; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 638 | } |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 639 | |
Dan Carpenter | fd8b48b | 2014-01-29 16:18:51 +0300 | [diff] [blame] | 640 | if (tx_desc && tx_desc->type == ISCSI_TX_CONTROL) { |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 641 | /* this arithmetic is legal by libiscsi dd_data allocation */ |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 642 | task = (void *) ((long)(void *)tx_desc - |
| 643 | sizeof(struct iscsi_task)); |
| 644 | if (task->hdr->itt == RESERVED_ITT) |
| 645 | iscsi_put_task(task); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 646 | } |
| 647 | } |
| 648 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 649 | void iser_task_rdma_init(struct iscsi_iser_task *iser_task) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 650 | |
| 651 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 652 | iser_task->status = ISER_TASK_STATUS_INIT; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 653 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 654 | iser_task->dir[ISER_DIR_IN] = 0; |
| 655 | iser_task->dir[ISER_DIR_OUT] = 0; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 656 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 657 | iser_task->data[ISER_DIR_IN].data_len = 0; |
| 658 | iser_task->data[ISER_DIR_OUT].data_len = 0; |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 659 | |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 660 | iser_task->prot[ISER_DIR_IN].data_len = 0; |
| 661 | iser_task->prot[ISER_DIR_OUT].data_len = 0; |
| 662 | |
Sagi Grimberg | b130ede | 2015-04-14 18:08:19 +0300 | [diff] [blame] | 663 | memset(&iser_task->rdma_reg[ISER_DIR_IN], 0, |
| 664 | sizeof(struct iser_mem_reg)); |
| 665 | memset(&iser_task->rdma_reg[ISER_DIR_OUT], 0, |
| 666 | sizeof(struct iser_mem_reg)); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 667 | } |
| 668 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 669 | void iser_task_rdma_finalize(struct iscsi_iser_task *iser_task) |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 670 | { |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 671 | struct iser_device *device = iser_task->iser_conn->ib_conn.device; |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 672 | int is_rdma_data_aligned = 1; |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 673 | int is_rdma_prot_aligned = 1; |
| 674 | int prot_count = scsi_prot_sg_count(iser_task->sc); |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 675 | |
| 676 | /* if we were reading, copy back to unaligned sglist, |
| 677 | * anyway dma_unmap and free the copy |
| 678 | */ |
Sagi Grimberg | ba943fb | 2015-04-14 18:08:28 +0300 | [diff] [blame] | 679 | if (iser_task->data[ISER_DIR_IN].orig_sg) { |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 680 | is_rdma_data_aligned = 0; |
| 681 | iser_finalize_rdma_unaligned_sg(iser_task, |
| 682 | &iser_task->data[ISER_DIR_IN], |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 683 | ISER_DIR_IN); |
Erez Zilber | 74a2078 | 2006-09-27 16:43:06 +0300 | [diff] [blame] | 684 | } |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 685 | |
Sagi Grimberg | ba943fb | 2015-04-14 18:08:28 +0300 | [diff] [blame] | 686 | if (iser_task->data[ISER_DIR_OUT].orig_sg) { |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 687 | is_rdma_data_aligned = 0; |
| 688 | iser_finalize_rdma_unaligned_sg(iser_task, |
| 689 | &iser_task->data[ISER_DIR_OUT], |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 690 | ISER_DIR_OUT); |
Erez Zilber | 74a2078 | 2006-09-27 16:43:06 +0300 | [diff] [blame] | 691 | } |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 692 | |
Sagi Grimberg | ba943fb | 2015-04-14 18:08:28 +0300 | [diff] [blame] | 693 | if (iser_task->prot[ISER_DIR_IN].orig_sg) { |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 694 | is_rdma_prot_aligned = 0; |
| 695 | iser_finalize_rdma_unaligned_sg(iser_task, |
| 696 | &iser_task->prot[ISER_DIR_IN], |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 697 | ISER_DIR_IN); |
| 698 | } |
| 699 | |
Sagi Grimberg | ba943fb | 2015-04-14 18:08:28 +0300 | [diff] [blame] | 700 | if (iser_task->prot[ISER_DIR_OUT].orig_sg) { |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 701 | is_rdma_prot_aligned = 0; |
| 702 | iser_finalize_rdma_unaligned_sg(iser_task, |
| 703 | &iser_task->prot[ISER_DIR_OUT], |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 704 | ISER_DIR_OUT); |
| 705 | } |
| 706 | |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 707 | if (iser_task->dir[ISER_DIR_IN]) { |
Sagi Grimberg | b4e155f | 2013-07-28 12:35:39 +0300 | [diff] [blame] | 708 | device->iser_unreg_rdma_mem(iser_task, ISER_DIR_IN); |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 709 | if (is_rdma_data_aligned) |
| 710 | iser_dma_unmap_task_data(iser_task, |
Roi Dayan | c6c95ef | 2014-12-28 14:26:11 +0200 | [diff] [blame] | 711 | &iser_task->data[ISER_DIR_IN], |
| 712 | DMA_FROM_DEVICE); |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 713 | if (prot_count && is_rdma_prot_aligned) |
| 714 | iser_dma_unmap_task_data(iser_task, |
Roi Dayan | c6c95ef | 2014-12-28 14:26:11 +0200 | [diff] [blame] | 715 | &iser_task->prot[ISER_DIR_IN], |
| 716 | DMA_FROM_DEVICE); |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | if (iser_task->dir[ISER_DIR_OUT]) { |
Sagi Grimberg | b4e155f | 2013-07-28 12:35:39 +0300 | [diff] [blame] | 720 | device->iser_unreg_rdma_mem(iser_task, ISER_DIR_OUT); |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 721 | if (is_rdma_data_aligned) |
| 722 | iser_dma_unmap_task_data(iser_task, |
Roi Dayan | c6c95ef | 2014-12-28 14:26:11 +0200 | [diff] [blame] | 723 | &iser_task->data[ISER_DIR_OUT], |
| 724 | DMA_TO_DEVICE); |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 725 | if (prot_count && is_rdma_prot_aligned) |
| 726 | iser_dma_unmap_task_data(iser_task, |
Roi Dayan | c6c95ef | 2014-12-28 14:26:11 +0200 | [diff] [blame] | 727 | &iser_task->prot[ISER_DIR_OUT], |
| 728 | DMA_TO_DEVICE); |
Sagi Grimberg | 9a8b08f | 2014-03-05 19:43:44 +0200 | [diff] [blame] | 729 | } |
Or Gerlitz | e85b24b | 2006-05-11 10:02:19 +0300 | [diff] [blame] | 730 | } |