Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 214433
b: refs/heads/master
c: 1cc2228
h: refs/heads/master
i:
  214431: 2152ab8
v: v3
  • Loading branch information
Chris Mason authored and Andy Grover committed Sep 9, 2010
1 parent ad9b7d8 commit fe99345
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bcf50ef2ce3c5d8f2fe995259da16677898cb300
refs/heads/master: 1cc2228c599f173d77000a250bf0541294e1a7be
10 changes: 9 additions & 1 deletion trunk/net/rds/ib_send.c
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,8 @@ int rds_ib_xmit_atomic(struct rds_connection *conn, struct rm_atomic_op *op)
send->s_wr.next = NULL;
send->s_wr.wr.atomic.remote_addr = op->op_remote_addr;
send->s_wr.wr.atomic.rkey = op->op_rkey;
send->s_op = op;
rds_message_addref(container_of(send->s_op, struct rds_message, atomic));

/* map 8 byte retval buffer to the device */
ret = ib_dma_map_sg(ic->i_cm_id->device, op->op_sg, 1, DMA_FROM_DEVICE);
Expand Down Expand Up @@ -857,13 +859,13 @@ int rds_ib_xmit_rdma(struct rds_connection *conn, struct rm_rdma_op *op)
for (i = 0; i < work_alloc && scat != &op->op_sg[op->op_count]; i++) {
send->s_wr.send_flags = 0;
send->s_queued = jiffies;
send->s_op = NULL;

rds_ib_set_wr_signal_state(ic, send, op->op_notify);

send->s_wr.opcode = op->op_write ? IB_WR_RDMA_WRITE : IB_WR_RDMA_READ;
send->s_wr.wr.rdma.remote_addr = remote_addr;
send->s_wr.wr.rdma.rkey = op->op_rkey;
send->s_op = op;

if (num_sge > rds_ibdev->max_sge) {
send->s_wr.num_sge = rds_ibdev->max_sge;
Expand Down Expand Up @@ -899,6 +901,12 @@ int rds_ib_xmit_rdma(struct rds_connection *conn, struct rm_rdma_op *op)
send = ic->i_sends;
}

/* give a reference to the last op */
if (scat == &op->op_sg[op->op_count]) {
prev->s_op = op;
rds_message_addref(container_of(op, struct rds_message, rdma));
}

if (i < work_alloc) {
rds_ib_ring_unalloc(&ic->i_send_ring, work_alloc - i);
work_alloc = i;
Expand Down
10 changes: 2 additions & 8 deletions trunk/net/rds/send.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,13 +233,10 @@ int rds_send_xmit(struct rds_connection *conn)

/* The transport either sends the whole rdma or none of it */
if (rm->rdma.op_active && !conn->c_xmit_rdma_sent) {
rds_message_addref(rm);
rm->m_final_op = &rm->rdma;
ret = conn->c_trans->xmit_rdma(conn, &rm->rdma);
if (ret) {
rds_message_put(rm);
if (ret)
break;
}
conn->c_xmit_rdma_sent = 1;

/* The transport owns the mapped memory for now.
Expand All @@ -248,13 +245,10 @@ int rds_send_xmit(struct rds_connection *conn)
}

if (rm->atomic.op_active && !conn->c_xmit_atomic_sent) {
rds_message_addref(rm);
rm->m_final_op = &rm->atomic;
ret = conn->c_trans->xmit_atomic(conn, &rm->atomic);
if (ret) {
rds_message_put(rm);
if (ret)
break;
}
conn->c_xmit_atomic_sent = 1;

/* The transport owns the mapped memory for now.
Expand Down

0 comments on commit fe99345

Please sign in to comment.