]> git.openfabrics.org - ~shefty/librdmacm.git/commit
rsocket: Modify when control messages are available
authorSean Hefty <sean.hefty@intel.com>
Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)
committerSean Hefty <sean.hefty@intel.com>
Thu, 17 Apr 2014 15:43:16 +0000 (08:43 -0700)
commit5039c0e317d5507a0df5afc07e3783a650cab8e6
treecfb4e06d73107deeb818771d285c201b7e0eb692
parentfa7872e54b5ef5a986cdfcc4d2a895c3a0c733c8
rsocket: Modify when control messages are available

Rsockets currently tracks how many control messages (i.e.
entries in the send queue) that are available using a
single ctrl_avail counter.  Seems simple enough.

However, control messages currently require the use of
inline data.  In order to support control messages that
do not use inline data, we need to associate each
control message with a specific data buffer.  This will
become easier to manage if we modify how we track when
control messages are available.

We replace the single ctrl_avail counter with two new
counters.  The new counters conceptually treat control
messages as if each message had its own sequence number.
The sequence number will then be able to correspond to
a specific data buffer in a follow up patch.

ctrl_seqno will be used to indicate the current control
message being sent.  ctrl_max_seqno will track the
highest control message that may be sent.

A side effect of this change is that we will be able to
see how many control messages have been sent.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
src/rsocket.c