RDS: Perform unmapping ops in stages
authorAndy Grover <andy.grover@oracle.com>
Mon, 1 Mar 2010 22:03:09 +0000 (14:03 -0800)
committerAndy Grover <andy.grover@oracle.com>
Thu, 9 Sep 2010 01:12:08 +0000 (18:12 -0700)
commitff3d7d36134ef7138803734fdbf91cc986ea7976
tree77ef55e071f84f1b97550dbc6d6755cb3089339b
parentaa0a4ef4ac3a3c5ffa35e32520bfbc0922ef3630
RDS: Perform unmapping ops in stages

Previously, RDS would wait until the final send WR had completed
and then handle cleanup. With silent ops, we do not know
if an atomic, rdma, or data op will be last. This patch
handles any of these cases by keeping a pointer to the last
op in the message in m_last_op.

When the TX completion event fires, rds dispatches to per-op-type
cleanup functions, and then does whole-message cleanup, if the
last op equalled m_last_op.

This patch also moves towards having op-specific functions take
the op struct, instead of the overall rm struct.

rds_ib_connection has a pointer to keep track of a a partially-
completed data send operation. This patch changes it from an
rds_message pointer to the narrower rm_data_op pointer, and
modifies places that use this pointer as needed.

Signed-off-by: Andy Grover <andy.grover@oracle.com>
net/rds/ib.h
net/rds/ib_cm.c
net/rds/ib_send.c
net/rds/rds.h
net/rds/send.c