iser_initiator.c 19.3 KB
Newer Older
1 2
/*
 * Copyright (c) 2004, 2005, 2006 Voltaire, Inc. All rights reserved.
3
 * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *	- Redistributions of source code must retain the above
 *	  copyright notice, this list of conditions and the following
 *	  disclaimer.
 *
 *	- Redistributions in binary form must reproduce the above
 *	  copyright notice, this list of conditions and the following
 *	  disclaimer in the documentation and/or other materials
 *	  provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/scatterlist.h>
#include <linux/kfifo.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_host.h>

#include "iscsi_iser.h"

/* Register user buffer memory and initialize passive rdma
44 45 46
 *  dto descriptor. Data size is stored in
 *  task->data[ISER_DIR_IN].data_len, Protection size
 *  os stored in task->prot[ISER_DIR_IN].data_len
47
 */
48
static int iser_prepare_read_cmd(struct iscsi_task *task)
49 50

{
51
	struct iscsi_iser_task *iser_task = task->dd_data;
52
	struct iser_mem_reg *mem_reg;
53
	int err;
54 55
	struct iser_hdr *hdr = &iser_task->desc.iser_header;
	struct iser_data_buf *buf_in = &iser_task->data[ISER_DIR_IN];
56

57
	err = iser_dma_map_task_data(iser_task,
58 59 60 61 62 63
				     buf_in,
				     ISER_DIR_IN,
				     DMA_FROM_DEVICE);
	if (err)
		return err;

64 65 66 67 68 69 70 71 72 73 74
	if (scsi_prot_sg_count(iser_task->sc)) {
		struct iser_data_buf *pbuf_in = &iser_task->prot[ISER_DIR_IN];

		err = iser_dma_map_task_data(iser_task,
					     pbuf_in,
					     ISER_DIR_IN,
					     DMA_FROM_DEVICE);
		if (err)
			return err;
	}

75
	err = iser_reg_rdma_mem(iser_task, ISER_DIR_IN);
76 77 78 79
	if (err) {
		iser_err("Failed to set up Data-IN RDMA\n");
		return err;
	}
80
	mem_reg = &iser_task->rdma_reg[ISER_DIR_IN];
81 82

	hdr->flags    |= ISER_RSV;
83
	hdr->read_stag = cpu_to_be32(mem_reg->rkey);
84
	hdr->read_va   = cpu_to_be64(mem_reg->sge.addr);
85 86

	iser_dbg("Cmd itt:%d READ tags RKEY:%#.4X VA:%#llX\n",
87
		 task->itt, mem_reg->rkey,
88
		 (unsigned long long)mem_reg->sge.addr);
89 90 91 92 93

	return 0;
}

/* Register user buffer memory and initialize passive rdma
94 95 96
 *  dto descriptor. Data size is stored in
 *  task->data[ISER_DIR_OUT].data_len, Protection size
 *  is stored at task->prot[ISER_DIR_OUT].data_len
97 98
 */
static int
99
iser_prepare_write_cmd(struct iscsi_task *task,
100 101 102 103
		       unsigned int imm_sz,
		       unsigned int unsol_sz,
		       unsigned int edtl)
{
104
	struct iscsi_iser_task *iser_task = task->dd_data;
105
	struct iser_mem_reg *mem_reg;
106
	int err;
107 108
	struct iser_hdr *hdr = &iser_task->desc.iser_header;
	struct iser_data_buf *buf_out = &iser_task->data[ISER_DIR_OUT];
109
	struct ib_sge *tx_dsg = &iser_task->desc.tx_sg[1];
110

111
	err = iser_dma_map_task_data(iser_task,
112 113 114 115 116 117
				     buf_out,
				     ISER_DIR_OUT,
				     DMA_TO_DEVICE);
	if (err)
		return err;

118 119 120 121 122 123 124 125 126 127 128
	if (scsi_prot_sg_count(iser_task->sc)) {
		struct iser_data_buf *pbuf_out = &iser_task->prot[ISER_DIR_OUT];

		err = iser_dma_map_task_data(iser_task,
					     pbuf_out,
					     ISER_DIR_OUT,
					     DMA_TO_DEVICE);
		if (err)
			return err;
	}

129
	err = iser_reg_rdma_mem(iser_task, ISER_DIR_OUT);
130 131 132 133 134
	if (err != 0) {
		iser_err("Failed to register write cmd RDMA mem\n");
		return err;
	}

135
	mem_reg = &iser_task->rdma_reg[ISER_DIR_OUT];
136 137 138

	if (unsol_sz < edtl) {
		hdr->flags     |= ISER_WSV;
139
		hdr->write_stag = cpu_to_be32(mem_reg->rkey);
140
		hdr->write_va   = cpu_to_be64(mem_reg->sge.addr + unsol_sz);
141 142 143

		iser_dbg("Cmd itt:%d, WRITE tags, RKEY:%#.4X "
			 "VA:%#llX + unsol:%d\n",
144
			 task->itt, mem_reg->rkey,
145
			 (unsigned long long)mem_reg->sge.addr, unsol_sz);
146 147 148 149
	}

	if (imm_sz > 0) {
		iser_dbg("Cmd itt:%d, WRITE, adding imm.data sz: %d\n",
150
			 task->itt, imm_sz);
151
		tx_dsg->addr = mem_reg->sge.addr;
152
		tx_dsg->length = imm_sz;
153
		tx_dsg->lkey = mem_reg->sge.lkey;
154
		iser_task->desc.num_sge = 2;
155 156 157 158 159 160
	}

	return 0;
}

/* creates a new tx descriptor and adds header regd buffer */
161
static void iser_create_send_desc(struct iser_conn	*iser_conn,
162
				  struct iser_tx_desc	*tx_desc)
163
{
S
Sagi Grimberg 已提交
164
	struct iser_device *device = iser_conn->ib_conn.device;
165

166 167
	ib_dma_sync_single_for_cpu(device->ib_device,
		tx_desc->dma_addr, ISER_HEADERS_LEN, DMA_TO_DEVICE);
168 169 170

	memset(&tx_desc->iser_header, 0, sizeof(struct iser_hdr));
	tx_desc->iser_header.flags = ISER_VER;
171
	tx_desc->num_sge = 1;
172 173
}

174
static void iser_free_login_buf(struct iser_conn *iser_conn)
175
{
S
Sagi Grimberg 已提交
176 177
	struct iser_device *device = iser_conn->ib_conn.device;

178
	if (!iser_conn->login_buf)
179 180
		return;

181
	if (iser_conn->login_req_dma)
S
Sagi Grimberg 已提交
182
		ib_dma_unmap_single(device->ib_device,
183
				    iser_conn->login_req_dma,
184 185
				    ISCSI_DEF_MAX_RECV_SEG_LEN, DMA_TO_DEVICE);

186
	if (iser_conn->login_resp_dma)
S
Sagi Grimberg 已提交
187
		ib_dma_unmap_single(device->ib_device,
188
				    iser_conn->login_resp_dma,
189 190
				    ISER_RX_LOGIN_SIZE, DMA_FROM_DEVICE);

191
	kfree(iser_conn->login_buf);
192 193

	/* make sure we never redo any unmapping */
194 195 196
	iser_conn->login_req_dma = 0;
	iser_conn->login_resp_dma = 0;
	iser_conn->login_buf = NULL;
197 198
}

199
static int iser_alloc_login_buf(struct iser_conn *iser_conn)
200
{
S
Sagi Grimberg 已提交
201
	struct iser_device *device = iser_conn->ib_conn.device;
202 203
	int			req_err, resp_err;

S
Sagi Grimberg 已提交
204
	BUG_ON(device == NULL);
205

206
	iser_conn->login_buf = kmalloc(ISCSI_DEF_MAX_RECV_SEG_LEN +
207
				     ISER_RX_LOGIN_SIZE, GFP_KERNEL);
208
	if (!iser_conn->login_buf)
209 210
		goto out_err;

211 212
	iser_conn->login_req_buf  = iser_conn->login_buf;
	iser_conn->login_resp_buf = iser_conn->login_buf +
213 214
						ISCSI_DEF_MAX_RECV_SEG_LEN;

215 216 217 218
	iser_conn->login_req_dma = ib_dma_map_single(device->ib_device,
						     iser_conn->login_req_buf,
						     ISCSI_DEF_MAX_RECV_SEG_LEN,
						     DMA_TO_DEVICE);
219

220 221 222 223
	iser_conn->login_resp_dma = ib_dma_map_single(device->ib_device,
						      iser_conn->login_resp_buf,
						      ISER_RX_LOGIN_SIZE,
						      DMA_FROM_DEVICE);
224 225

	req_err  = ib_dma_mapping_error(device->ib_device,
226
					iser_conn->login_req_dma);
227
	resp_err = ib_dma_mapping_error(device->ib_device,
228
					iser_conn->login_resp_dma);
229

230 231
	if (req_err || resp_err) {
		if (req_err)
232
			iser_conn->login_req_dma = 0;
233
		if (resp_err)
234
			iser_conn->login_resp_dma = 0;
235 236 237 238 239
		goto free_login_buf;
	}
	return 0;

free_login_buf:
240
	iser_free_login_buf(iser_conn);
241 242 243 244 245

out_err:
	iser_err("unable to alloc or map login buf\n");
	return -ENOMEM;
}
246

247 248
int iser_alloc_rx_descriptors(struct iser_conn *iser_conn,
			      struct iscsi_session *session)
249 250 251 252 253
{
	int i, j;
	u64 dma_addr;
	struct iser_rx_desc *rx_desc;
	struct ib_sge       *rx_sg;
S
Sagi Grimberg 已提交
254 255
	struct ib_conn *ib_conn = &iser_conn->ib_conn;
	struct iser_device *device = ib_conn->device;
256

257 258 259
	iser_conn->qp_max_recv_dtos = session->cmds_max;
	iser_conn->qp_max_recv_dtos_mask = session->cmds_max - 1; /* cmds_max is 2^N */
	iser_conn->min_posted_rx = iser_conn->qp_max_recv_dtos >> 2;
260

261
	if (device->reg_ops->alloc_reg_res(ib_conn, session->scsi_cmds_max,
262
					   iser_conn->scsi_sg_tablesize))
263
		goto create_rdma_reg_res_failed;
264

265
	if (iser_alloc_login_buf(iser_conn))
266 267
		goto alloc_login_buf_fail;

268 269
	iser_conn->num_rx_descs = session->cmds_max;
	iser_conn->rx_descs = kmalloc(iser_conn->num_rx_descs *
270
				sizeof(struct iser_rx_desc), GFP_KERNEL);
271
	if (!iser_conn->rx_descs)
272 273
		goto rx_desc_alloc_fail;

274
	rx_desc = iser_conn->rx_descs;
275

276
	for (i = 0; i < iser_conn->qp_max_recv_dtos; i++, rx_desc++)  {
277 278 279 280 281 282 283 284 285 286
		dma_addr = ib_dma_map_single(device->ib_device, (void *)rx_desc,
					ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
		if (ib_dma_mapping_error(device->ib_device, dma_addr))
			goto rx_desc_dma_map_failed;

		rx_desc->dma_addr = dma_addr;

		rx_sg = &rx_desc->rx_sg;
		rx_sg->addr   = rx_desc->dma_addr;
		rx_sg->length = ISER_RX_PAYLOAD_SIZE;
287
		rx_sg->lkey   = device->pd->local_dma_lkey;
288 289
	}

290
	iser_conn->rx_desc_head = 0;
291 292 293
	return 0;

rx_desc_dma_map_failed:
294
	rx_desc = iser_conn->rx_descs;
295 296
	for (j = 0; j < i; j++, rx_desc++)
		ib_dma_unmap_single(device->ib_device, rx_desc->dma_addr,
297
				    ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
298 299
	kfree(iser_conn->rx_descs);
	iser_conn->rx_descs = NULL;
300
rx_desc_alloc_fail:
301
	iser_free_login_buf(iser_conn);
302
alloc_login_buf_fail:
S
Sagi Grimberg 已提交
303
	device->reg_ops->free_reg_res(ib_conn);
304
create_rdma_reg_res_failed:
305 306 307 308
	iser_err("failed allocating rx descriptors / data buffers\n");
	return -ENOMEM;
}

309
void iser_free_rx_descriptors(struct iser_conn *iser_conn)
310 311 312
{
	int i;
	struct iser_rx_desc *rx_desc;
S
Sagi Grimberg 已提交
313 314
	struct ib_conn *ib_conn = &iser_conn->ib_conn;
	struct iser_device *device = ib_conn->device;
315

S
Sagi Grimberg 已提交
316 317
	if (device->reg_ops->free_reg_res)
		device->reg_ops->free_reg_res(ib_conn);
318

319 320
	rx_desc = iser_conn->rx_descs;
	for (i = 0; i < iser_conn->qp_max_recv_dtos; i++, rx_desc++)
321
		ib_dma_unmap_single(device->ib_device, rx_desc->dma_addr,
322
				    ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
323
	kfree(iser_conn->rx_descs);
324
	/* make sure we never redo any unmapping */
325
	iser_conn->rx_descs = NULL;
326

327
	iser_free_login_buf(iser_conn);
328 329
}

330
static int iser_post_rx_bufs(struct iscsi_conn *conn, struct iscsi_hdr *req)
331
{
332
	struct iser_conn *iser_conn = conn->dd_data;
S
Sagi Grimberg 已提交
333
	struct ib_conn *ib_conn = &iser_conn->ib_conn;
334
	struct iscsi_session *session = conn->session;
335

336 337 338 339
	iser_dbg("req op %x flags %x\n", req->opcode, req->flags);
	/* check if this is the last login - going to full feature phase */
	if ((req->flags & ISCSI_FULL_FEATURE_PHASE) != ISCSI_FULL_FEATURE_PHASE)
		return 0;
340

341
	/*
342 343
	 * Check that there is one posted recv buffer
	 * (for the last login response).
344
	 */
S
Sagi Grimberg 已提交
345
	WARN_ON(ib_conn->post_recv_buf_count != 1);
346

347 348 349 350 351
	if (session->discovery_sess) {
		iser_info("Discovery session, re-using login RX buffer\n");
		return 0;
	} else
		iser_info("Normal session, posting batch of RX %d buffers\n",
352
			  iser_conn->min_posted_rx);
353

354
	/* Initial post receive buffers */
355
	if (iser_post_recvm(iser_conn, iser_conn->min_posted_rx))
356 357
		return -ENOMEM;

358 359 360
	return 0;
}

M
Max Gurtovoy 已提交
361
static inline bool iser_signal_comp(u8 sig_count)
362 363 364 365
{
	return ((sig_count % ISER_SIGNAL_CMD_COUNT) == 0);
}

366 367 368
/**
 * iser_send_command - send command PDU
 */
369
int iser_send_command(struct iscsi_conn *conn,
370
		      struct iscsi_task *task)
371
{
372
	struct iser_conn *iser_conn = conn->dd_data;
373
	struct iscsi_iser_task *iser_task = task->dd_data;
374
	unsigned long edtl;
375
	int err;
376
	struct iser_data_buf *data_buf, *prot_buf;
377
	struct iscsi_scsi_req *hdr = (struct iscsi_scsi_req *)task->hdr;
378
	struct scsi_cmnd *sc  =  task->sc;
379
	struct iser_tx_desc *tx_desc = &iser_task->desc;
M
Max Gurtovoy 已提交
380
	u8 sig_count = ++iser_conn->ib_conn.sig_count;
381 382 383 384

	edtl = ntohl(hdr->data_length);

	/* build the tx desc regd header and add it to the tx desc dto */
385
	tx_desc->type = ISCSI_TX_SCSI_COMMAND;
386
	iser_create_send_desc(iser_conn, tx_desc);
387

388
	if (hdr->flags & ISCSI_FLAG_CMD_READ) {
389
		data_buf = &iser_task->data[ISER_DIR_IN];
390 391
		prot_buf = &iser_task->prot[ISER_DIR_IN];
	} else {
392
		data_buf = &iser_task->data[ISER_DIR_OUT];
393 394
		prot_buf = &iser_task->prot[ISER_DIR_OUT];
	}
395

396
	if (scsi_sg_count(sc)) { /* using a scatter list */
397
		data_buf->sg = scsi_sglist(sc);
398
		data_buf->size = scsi_sg_count(sc);
399
	}
400
	data_buf->data_len = scsi_bufflen(sc);
401

402
	if (scsi_prot_sg_count(sc)) {
403
		prot_buf->sg  = scsi_prot_sglist(sc);
404
		prot_buf->size = scsi_prot_sg_count(sc);
405 406
		prot_buf->data_len = (data_buf->data_len >>
				     ilog2(sc->device->sector_size)) * 8;
407 408
	}

409
	if (hdr->flags & ISCSI_FLAG_CMD_READ) {
410
		err = iser_prepare_read_cmd(task);
411 412 413 414
		if (err)
			goto send_command_error;
	}
	if (hdr->flags & ISCSI_FLAG_CMD_WRITE) {
415 416 417
		err = iser_prepare_write_cmd(task,
					     task->imm_count,
				             task->imm_count +
418
					     task->unsol_r2t.data_length,
419 420 421 422 423
					     edtl);
		if (err)
			goto send_command_error;
	}

424
	iser_task->status = ISER_TASK_STATUS_STARTED;
425

426
	err = iser_post_send(&iser_conn->ib_conn, tx_desc,
M
Max Gurtovoy 已提交
427
			     iser_signal_comp(sig_count));
428 429 430 431
	if (!err)
		return 0;

send_command_error:
432
	iser_err("conn %p failed task->itt %d err %d\n",conn, task->itt, err);
433 434 435 436 437 438
	return err;
}

/**
 * iser_send_data_out - send data out PDU
 */
439
int iser_send_data_out(struct iscsi_conn *conn,
440
		       struct iscsi_task *task,
441 442
		       struct iscsi_data *hdr)
{
443
	struct iser_conn *iser_conn = conn->dd_data;
444
	struct iscsi_iser_task *iser_task = task->dd_data;
445
	struct iser_tx_desc *tx_desc = NULL;
446
	struct iser_mem_reg *mem_reg;
447 448
	unsigned long buf_offset;
	unsigned long data_seg_len;
449
	uint32_t itt;
450
	int err;
451 452
	struct ib_sge *tx_dsg;

453
	itt = (__force uint32_t)hdr->itt;
454 455 456 457 458 459
	data_seg_len = ntoh24(hdr->dlength);
	buf_offset   = ntohl(hdr->offset);

	iser_dbg("%s itt %d dseg_len %d offset %d\n",
		 __func__,(int)itt,(int)data_seg_len,(int)buf_offset);

O
Or Gerlitz 已提交
460
	tx_desc = kmem_cache_zalloc(ig.desc_cache, GFP_ATOMIC);
461 462 463 464 465 466
	if (tx_desc == NULL) {
		iser_err("Failed to alloc desc for post dataout\n");
		return -ENOMEM;
	}

	tx_desc->type = ISCSI_TX_DATAOUT;
467
	tx_desc->iser_header.flags = ISER_VER;
468 469
	memcpy(&tx_desc->iscsi_header, hdr, sizeof(struct iscsi_hdr));

470
	/* build the tx desc */
471 472 473
	err = iser_initialize_task_headers(task, tx_desc);
	if (err)
		goto send_data_out_error;
474

475
	mem_reg = &iser_task->rdma_reg[ISER_DIR_OUT];
476
	tx_dsg = &tx_desc->tx_sg[1];
477 478 479
	tx_dsg->addr = mem_reg->sge.addr + buf_offset;
	tx_dsg->length = data_seg_len;
	tx_dsg->lkey = mem_reg->sge.lkey;
480
	tx_desc->num_sge = 2;
481

482
	if (buf_offset + data_seg_len > iser_task->data[ISER_DIR_OUT].data_len) {
483 484 485
		iser_err("Offset:%ld & DSL:%ld in Data-Out "
			 "inconsistent with total len:%ld, itt:%d\n",
			 buf_offset, data_seg_len,
486
			 iser_task->data[ISER_DIR_OUT].data_len, itt);
487 488 489 490 491 492 493
		err = -EINVAL;
		goto send_data_out_error;
	}
	iser_dbg("data-out itt: %d, offset: %ld, sz: %ld\n",
		 itt, buf_offset, data_seg_len);


494
	err = iser_post_send(&iser_conn->ib_conn, tx_desc, true);
495 496 497 498 499
	if (!err)
		return 0;

send_data_out_error:
	kmem_cache_free(ig.desc_cache, tx_desc);
500
	iser_err("conn %p failed err %d\n", conn, err);
501 502 503 504
	return err;
}

int iser_send_control(struct iscsi_conn *conn,
505
		      struct iscsi_task *task)
506
{
507
	struct iser_conn *iser_conn = conn->dd_data;
508
	struct iscsi_iser_task *iser_task = task->dd_data;
509
	struct iser_tx_desc *mdesc = &iser_task->desc;
510
	unsigned long data_seg_len;
511
	int err = 0;
512 513 514 515
	struct iser_device *device;

	/* build the tx desc regd header and add it to the tx desc dto */
	mdesc->type = ISCSI_TX_CONTROL;
516
	iser_create_send_desc(iser_conn, mdesc);
517

S
Sagi Grimberg 已提交
518
	device = iser_conn->ib_conn.device;
519

520
	data_seg_len = ntoh24(task->hdr->dlength);
521 522

	if (data_seg_len > 0) {
523 524 525 526 527
		struct ib_sge *tx_dsg = &mdesc->tx_sg[1];
		if (task != conn->login_task) {
			iser_err("data present on non login task!!!\n");
			goto send_control_error;
		}
528 529

		ib_dma_sync_single_for_cpu(device->ib_device,
530
			iser_conn->login_req_dma, task->data_count,
531 532
			DMA_TO_DEVICE);

533
		memcpy(iser_conn->login_req_buf, task->data, task->data_count);
534 535

		ib_dma_sync_single_for_device(device->ib_device,
536
			iser_conn->login_req_dma, task->data_count,
537 538
			DMA_TO_DEVICE);

539
		tx_dsg->addr    = iser_conn->login_req_dma;
O
Or Gerlitz 已提交
540
		tx_dsg->length  = task->data_count;
541
		tx_dsg->lkey    = device->pd->local_dma_lkey;
542
		mdesc->num_sge = 2;
543 544
	}

545
	if (task == conn->login_task) {
546 547
		iser_dbg("op %x dsl %lx, posting login rx buffer\n",
			 task->hdr->opcode, data_seg_len);
548
		err = iser_post_recvl(iser_conn);
549 550
		if (err)
			goto send_control_error;
551 552 553
		err = iser_post_rx_bufs(conn, task->hdr);
		if (err)
			goto send_control_error;
554 555
	}

556
	err = iser_post_send(&iser_conn->ib_conn, mdesc, true);
557 558 559 560 561 562 563 564 565 566 567
	if (!err)
		return 0;

send_control_error:
	iser_err("conn %p failed err %d\n",conn, err);
	return err;
}

/**
 * iser_rcv_dto_completion - recv DTO completion
 */
568 569
void iser_rcv_completion(struct iser_rx_desc *rx_desc,
			 unsigned long rx_xfer_len,
S
Sagi Grimberg 已提交
570
			 struct ib_conn *ib_conn)
571
{
S
Sagi Grimberg 已提交
572 573
	struct iser_conn *iser_conn = container_of(ib_conn, struct iser_conn,
						   ib_conn);
574
	struct iscsi_hdr *hdr;
575 576 577 578
	u64 rx_dma;
	int rx_buflen, outstanding, count, err;

	/* differentiate between login to all other PDUs */
579 580
	if ((char *)rx_desc == iser_conn->login_resp_buf) {
		rx_dma = iser_conn->login_resp_dma;
581 582 583 584 585
		rx_buflen = ISER_RX_LOGIN_SIZE;
	} else {
		rx_dma = rx_desc->dma_addr;
		rx_buflen = ISER_RX_PAYLOAD_SIZE;
	}
586

S
Sagi Grimberg 已提交
587
	ib_dma_sync_single_for_cpu(ib_conn->device->ib_device, rx_dma,
588
				   rx_buflen, DMA_FROM_DEVICE);
589

590
	hdr = &rx_desc->iscsi_header;
591

592 593
	iser_dbg("op 0x%x itt 0x%x dlen %d\n", hdr->opcode,
			hdr->itt, (int)(rx_xfer_len - ISER_HEADERS_LEN));
594

595
	iscsi_iser_recv(iser_conn->iscsi_conn, hdr, rx_desc->data,
596
			rx_xfer_len - ISER_HEADERS_LEN);
597

S
Sagi Grimberg 已提交
598
	ib_dma_sync_single_for_device(ib_conn->device->ib_device, rx_dma,
599
				      rx_buflen, DMA_FROM_DEVICE);
600 601 602 603 604

	/* decrementing conn->post_recv_buf_count only --after-- freeing the   *
	 * task eliminates the need to worry on tasks which are completed in   *
	 * parallel to the execution of iser_conn_term. So the code that waits *
	 * for the posted rx bufs refcount to become zero handles everything   */
S
Sagi Grimberg 已提交
605
	ib_conn->post_recv_buf_count--;
606

607
	if (rx_dma == iser_conn->login_resp_dma)
608 609
		return;

S
Sagi Grimberg 已提交
610
	outstanding = ib_conn->post_recv_buf_count;
611 612 613 614
	if (outstanding + iser_conn->min_posted_rx <= iser_conn->qp_max_recv_dtos) {
		count = min(iser_conn->qp_max_recv_dtos - outstanding,
			    iser_conn->min_posted_rx);
		err = iser_post_recvm(iser_conn, count);
615 616 617
		if (err)
			iser_err("posting %d rx bufs err %d\n", count, err);
	}
618 619
}

620
void iser_snd_completion(struct iser_tx_desc *tx_desc,
S
Sagi Grimberg 已提交
621
			struct ib_conn *ib_conn)
622
{
623
	struct iscsi_task *task;
S
Sagi Grimberg 已提交
624
	struct iser_device *device = ib_conn->device;
625

626 627 628
	if (tx_desc->type == ISCSI_TX_DATAOUT) {
		ib_dma_unmap_single(device->ib_device, tx_desc->dma_addr,
					ISER_HEADERS_LEN, DMA_TO_DEVICE);
629
		kmem_cache_free(ig.desc_cache, tx_desc);
630
		tx_desc = NULL;
631
	}
632

633
	if (tx_desc && tx_desc->type == ISCSI_TX_CONTROL) {
634
		/* this arithmetic is legal by libiscsi dd_data allocation */
635 636 637 638
		task = (void *) ((long)(void *)tx_desc -
				  sizeof(struct iscsi_task));
		if (task->hdr->itt == RESERVED_ITT)
			iscsi_put_task(task);
639 640 641
	}
}

642
void iser_task_rdma_init(struct iscsi_iser_task *iser_task)
643 644

{
645
	iser_task->status = ISER_TASK_STATUS_INIT;
646

647 648
	iser_task->dir[ISER_DIR_IN] = 0;
	iser_task->dir[ISER_DIR_OUT] = 0;
649

650 651
	iser_task->data[ISER_DIR_IN].data_len  = 0;
	iser_task->data[ISER_DIR_OUT].data_len = 0;
652

653 654 655
	iser_task->prot[ISER_DIR_IN].data_len  = 0;
	iser_task->prot[ISER_DIR_OUT].data_len = 0;

656 657 658 659
	memset(&iser_task->rdma_reg[ISER_DIR_IN], 0,
	       sizeof(struct iser_mem_reg));
	memset(&iser_task->rdma_reg[ISER_DIR_OUT], 0,
	       sizeof(struct iser_mem_reg));
660 661
}

662
void iser_task_rdma_finalize(struct iscsi_iser_task *iser_task)
663
{
664
	int prot_count = scsi_prot_sg_count(iser_task->sc);
665

666
	if (iser_task->dir[ISER_DIR_IN]) {
667
		iser_unreg_rdma_mem(iser_task, ISER_DIR_IN);
668 669 670 671
		iser_dma_unmap_task_data(iser_task,
					 &iser_task->data[ISER_DIR_IN],
					 DMA_FROM_DEVICE);
		if (prot_count)
672
			iser_dma_unmap_task_data(iser_task,
673 674
						 &iser_task->prot[ISER_DIR_IN],
						 DMA_FROM_DEVICE);
675
	}
676

677
	if (iser_task->dir[ISER_DIR_OUT]) {
678
		iser_unreg_rdma_mem(iser_task, ISER_DIR_OUT);
679 680 681 682
		iser_dma_unmap_task_data(iser_task,
					 &iser_task->data[ISER_DIR_OUT],
					 DMA_TO_DEVICE);
		if (prot_count)
683
			iser_dma_unmap_task_data(iser_task,
684 685
						 &iser_task->prot[ISER_DIR_OUT],
						 DMA_TO_DEVICE);
686
	}
687
}