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