aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2010-05-11 19:15:35 -0400
committerAndy Grover <andy.grover@oracle.com>2010-09-08 21:15:13 -0400
commit1cc2228c599f173d77000a250bf0541294e1a7be (patch)
treecc84662c1fd550274e8bba759074873b7c8e017d
parentbcf50ef2ce3c5d8f2fe995259da16677898cb300 (diff)
rds: Fix reference counting on the for xmit_atomic and xmit_rdma
This makes sure we have the proper number of references in rds_ib_xmit_atomic and rds_ib_xmit_rdma. We also consistently drop references the same way for all message types as the IOs end. Signed-off-by: Chris Mason <chris.mason@oracle.com>
-rw-r--r--net/rds/ib_send.c10
-rw-r--r--net/rds/send.c10
2 files changed, 11 insertions, 9 deletions
diff --git a/net/rds/ib_send.c b/net/rds/ib_send.c
index 82459e52c771..209dbc6d159d 100644
--- a/net/rds/ib_send.c
+++ b/net/rds/ib_send.c
@@ -757,6 +757,8 @@ int rds_ib_xmit_atomic(struct rds_connection *conn, struct rm_atomic_op *op)
757 send->s_wr.next = NULL; 757 send->s_wr.next = NULL;
758 send->s_wr.wr.atomic.remote_addr = op->op_remote_addr; 758 send->s_wr.wr.atomic.remote_addr = op->op_remote_addr;
759 send->s_wr.wr.atomic.rkey = op->op_rkey; 759 send->s_wr.wr.atomic.rkey = op->op_rkey;
760 send->s_op = op;
761 rds_message_addref(container_of(send->s_op, struct rds_message, atomic));
760 762
761 /* map 8 byte retval buffer to the device */ 763 /* map 8 byte retval buffer to the device */
762 ret = ib_dma_map_sg(ic->i_cm_id->device, op->op_sg, 1, DMA_FROM_DEVICE); 764 ret = ib_dma_map_sg(ic->i_cm_id->device, op->op_sg, 1, DMA_FROM_DEVICE);
@@ -857,13 +859,13 @@ int rds_ib_xmit_rdma(struct rds_connection *conn, struct rm_rdma_op *op)
857 for (i = 0; i < work_alloc && scat != &op->op_sg[op->op_count]; i++) { 859 for (i = 0; i < work_alloc && scat != &op->op_sg[op->op_count]; i++) {
858 send->s_wr.send_flags = 0; 860 send->s_wr.send_flags = 0;
859 send->s_queued = jiffies; 861 send->s_queued = jiffies;
862 send->s_op = NULL;
860 863
861 rds_ib_set_wr_signal_state(ic, send, op->op_notify); 864 rds_ib_set_wr_signal_state(ic, send, op->op_notify);
862 865
863 send->s_wr.opcode = op->op_write ? IB_WR_RDMA_WRITE : IB_WR_RDMA_READ; 866 send->s_wr.opcode = op->op_write ? IB_WR_RDMA_WRITE : IB_WR_RDMA_READ;
864 send->s_wr.wr.rdma.remote_addr = remote_addr; 867 send->s_wr.wr.rdma.remote_addr = remote_addr;
865 send->s_wr.wr.rdma.rkey = op->op_rkey; 868 send->s_wr.wr.rdma.rkey = op->op_rkey;
866 send->s_op = op;
867 869
868 if (num_sge > rds_ibdev->max_sge) { 870 if (num_sge > rds_ibdev->max_sge) {
869 send->s_wr.num_sge = rds_ibdev->max_sge; 871 send->s_wr.num_sge = rds_ibdev->max_sge;
@@ -899,6 +901,12 @@ int rds_ib_xmit_rdma(struct rds_connection *conn, struct rm_rdma_op *op)
899 send = ic->i_sends; 901 send = ic->i_sends;
900 } 902 }
901 903
904 /* give a reference to the last op */
905 if (scat == &op->op_sg[op->op_count]) {
906 prev->s_op = op;
907 rds_message_addref(container_of(op, struct rds_message, rdma));
908 }
909
902 if (i < work_alloc) { 910 if (i < work_alloc) {
903 rds_ib_ring_unalloc(&ic->i_send_ring, work_alloc - i); 911 rds_ib_ring_unalloc(&ic->i_send_ring, work_alloc - i);
904 work_alloc = i; 912 work_alloc = i;
diff --git a/net/rds/send.c b/net/rds/send.c
index 5c6d4a0be0d7..437f1e72609c 100644
--- a/net/rds/send.c
+++ b/net/rds/send.c
@@ -233,13 +233,10 @@ restart:
233 233
234 /* The transport either sends the whole rdma or none of it */ 234 /* The transport either sends the whole rdma or none of it */
235 if (rm->rdma.op_active && !conn->c_xmit_rdma_sent) { 235 if (rm->rdma.op_active && !conn->c_xmit_rdma_sent) {
236 rds_message_addref(rm);
237 rm->m_final_op = &rm->rdma; 236 rm->m_final_op = &rm->rdma;
238 ret = conn->c_trans->xmit_rdma(conn, &rm->rdma); 237 ret = conn->c_trans->xmit_rdma(conn, &rm->rdma);
239 if (ret) { 238 if (ret)
240 rds_message_put(rm);
241 break; 239 break;
242 }
243 conn->c_xmit_rdma_sent = 1; 240 conn->c_xmit_rdma_sent = 1;
244 241
245 /* The transport owns the mapped memory for now. 242 /* The transport owns the mapped memory for now.
@@ -248,13 +245,10 @@ restart:
248 } 245 }
249 246
250 if (rm->atomic.op_active && !conn->c_xmit_atomic_sent) { 247 if (rm->atomic.op_active && !conn->c_xmit_atomic_sent) {
251 rds_message_addref(rm);
252 rm->m_final_op = &rm->atomic; 248 rm->m_final_op = &rm->atomic;
253 ret = conn->c_trans->xmit_atomic(conn, &rm->atomic); 249 ret = conn->c_trans->xmit_atomic(conn, &rm->atomic);
254 if (ret) { 250 if (ret)
255 rds_message_put(rm);
256 break; 251 break;
257 }
258 conn->c_xmit_atomic_sent = 1; 252 conn->c_xmit_atomic_sent = 1;
259 253
260 /* The transport owns the mapped memory for now. 254 /* The transport owns the mapped memory for now.