]> git.openfabrics.org - ~shefty/librdmacm.git/log
~shefty/librdmacm.git
10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 15:37:50 +0000 (08:37 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 15:37:50 +0000 (08:37 -0700)]
refresh (create temporary patch)

10 years agoRefresh of fixed-ctrl
Sean Hefty [Thu, 17 Apr 2014 15:37:50 +0000 (08:37 -0700)]
Refresh of fixed-ctrl

10 years agonew
Sean Hefty [Thu, 17 Apr 2014 15:37:47 +0000 (08:37 -0700)]
new

10 years agonew
Sean Hefty [Thu, 17 Apr 2014 15:37:47 +0000 (08:37 -0700)]
new

10 years agorsocket: Dedicate a fixed number of SQEs for control messages
Sean Hefty [Thu, 17 Apr 2014 15:37:47 +0000 (08:37 -0700)]
rsocket: Dedicate a fixed number of SQEs for control messages

The number of SQEs allocated for control messages is set
to 1 of 2 constant values (either 4 or 2).  A default
value is used unless the size of the SQ is below a certain
threshold (16 entries).  This results in additional code
complexity, and it is highly unlikely that the SQ would
ever be allocated smaller than 16 entries.

Simplify the code to use a single constant value for the
number of SQEs allocated for control messages.  This will
also help in subsequent patches that will need to deal
with HCAs that do not support inline data.

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 15:30:48 +0000 (08:30 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 15:30:48 +0000 (08:30 -0700)]
pop

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 15:30:45 +0000 (08:30 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 15:30:45 +0000 (08:30 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 15:30:45 +0000 (08:30 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 15:30:45 +0000 (08:30 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-ctrl
Sean Hefty [Thu, 17 Apr 2014 15:30:45 +0000 (08:30 -0700)]
Refresh of rs-ctrl

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 07:07:35 +0000 (00:07 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 07:07:35 +0000 (00:07 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 07:07:34 +0000 (00:07 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 07:07:34 +0000 (00:07 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-ctrl
Sean Hefty [Thu, 17 Apr 2014 07:07:34 +0000 (00:07 -0700)]
Refresh of rs-ctrl

10 years agorsocket: Modify when control messages are available
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
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>
10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:56:37 +0000 (23:56 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:56:37 +0000 (23:56 -0700)]
pop

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:56:26 +0000 (23:56 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:56:26 +0000 (23:56 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:56:26 +0000 (23:56 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:56:26 +0000 (23:56 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-inline
Sean Hefty [Thu, 17 Apr 2014 06:56:26 +0000 (23:56 -0700)]
Refresh of rs-inline

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:55:55 +0000 (23:55 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:55:55 +0000 (23:55 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:55:36 +0000 (23:55 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:55:36 +0000 (23:55 -0700)]
pop

10 years agorsocket: Modify when control messages are available
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
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>
10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:55:34 +0000 (23:55 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:55:34 +0000 (23:55 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:55:34 +0000 (23:55 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:55:34 +0000 (23:55 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-inline
Sean Hefty [Thu, 17 Apr 2014 06:55:34 +0000 (23:55 -0700)]
Refresh of rs-inline

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:55:17 +0000 (23:55 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 06:55:17 +0000 (23:55 -0700)]
pop

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:55:14 +0000 (23:55 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:55:14 +0000 (23:55 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:55:14 +0000 (23:55 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:55:14 +0000 (23:55 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-ctrl
Sean Hefty [Thu, 17 Apr 2014 06:55:13 +0000 (23:55 -0700)]
Refresh of rs-ctrl

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:51:45 +0000 (23:51 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 06:51:45 +0000 (23:51 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:51:45 +0000 (23:51 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 06:51:45 +0000 (23:51 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-ctrl
Sean Hefty [Thu, 17 Apr 2014 06:51:45 +0000 (23:51 -0700)]
Refresh of rs-ctrl

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 05:33:41 +0000 (22:33 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 05:33:41 +0000 (22:33 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 05:33:41 +0000 (22:33 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 05:33:41 +0000 (22:33 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-ctrl
Sean Hefty [Thu, 17 Apr 2014 05:33:41 +0000 (22:33 -0700)]
Refresh of rs-ctrl

10 years agorsocket: Modify when control messages are available
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
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>
10 years agorsocket: Modify when control messages are available
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
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>
10 years agorsocket: Modify when control messages are available
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
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>
10 years agonew
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
new

10 years agonew
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
new

10 years agorsocket: Modify when control messages are available
Sean Hefty [Thu, 17 Apr 2014 05:33:38 +0000 (22:33 -0700)]
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.

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 05:26:05 +0000 (22:26 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 05:26:05 +0000 (22:26 -0700)]
pop

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 05:01:56 +0000 (22:01 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 05:01:56 +0000 (22:01 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 05:01:55 +0000 (22:01 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 05:01:55 +0000 (22:01 -0700)]
refresh (create temporary patch)

10 years agoRefresh of inline0
Sean Hefty [Thu, 17 Apr 2014 05:01:55 +0000 (22:01 -0700)]
Refresh of inline0

10 years agonew
Sean Hefty [Thu, 17 Apr 2014 05:01:52 +0000 (22:01 -0700)]
new

10 years agonew
Sean Hefty [Thu, 17 Apr 2014 05:01:52 +0000 (22:01 -0700)]
new

10 years agorsocket: Remove requirement for minimal inline data
Sean Hefty [Thu, 17 Apr 2014 05:01:51 +0000 (22:01 -0700)]
rsocket: Remove requirement for minimal inline data

Inline data support is optional.  Allow rsockets to work
with devices that do not support inline data, such as the
Intel TrueScale HCA.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
10 years agorsocket: Remove requirement for minimal inline data
Sean Hefty [Thu, 17 Apr 2014 05:01:51 +0000 (22:01 -0700)]
rsocket: Remove requirement for minimal inline data

Inline data support is optional.  Allow rsockets to work
with devices that do not support inline data, such as the
Intel TrueScale HCA.

10 years agorsocket: Check max inline data after creating QP
Sean Hefty [Thu, 17 Apr 2014 04:42:06 +0000 (21:42 -0700)]
rsocket: Check max inline data after creating QP

The ipath provider will ignore the max_inline_size
specified as input into ibv_create_qp and instead
return the size that it supports (which is 0) on
output.

Update the actual inline size returned from create QP,
and check that it meets the minimum requirement for
rsockets.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
10 years agorsocket: Check max inline data after creating QP
Sean Hefty [Thu, 17 Apr 2014 04:42:06 +0000 (21:42 -0700)]
rsocket: Check max inline data after creating QP

The ipath provider will ignore the max_inline_size
specified as input into ibv_create_qp and instead
return the size that it supports (which is 0) on
output.

Update the actual inline size returned from create QP,
and check that it meets the minimum requirement for
rsockets.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
10 years agorsocket: Check max inline data after creating QP
Sean Hefty [Thu, 17 Apr 2014 04:42:06 +0000 (21:42 -0700)]
rsocket: Check max inline data after creating QP

The ipath provider will ignore the max_inline_size
specified as input into ibv_create_qp and instead
return the size that it supports (which is 0) on
output.

Update the actual inline size returned from create QP,
and check that it meets the minimum requirement for
rsockets.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
10 years agopop
Sean Hefty [Thu, 17 Apr 2014 04:54:28 +0000 (21:54 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 04:54:28 +0000 (21:54 -0700)]
pop

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:53:47 +0000 (21:53 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:53:47 +0000 (21:53 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:53:47 +0000 (21:53 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:53:47 +0000 (21:53 -0700)]
refresh (create temporary patch)

10 years agoRefresh of lazy-init
Sean Hefty [Thu, 17 Apr 2014 04:53:47 +0000 (21:53 -0700)]
Refresh of lazy-init

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 04:52:55 +0000 (21:52 -0700)]
pop

10 years agopop
Sean Hefty [Thu, 17 Apr 2014 04:52:55 +0000 (21:52 -0700)]
pop

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:52:27 +0000 (21:52 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:52:27 +0000 (21:52 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:52:26 +0000 (21:52 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:52:26 +0000 (21:52 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-inline
Sean Hefty [Thu, 17 Apr 2014 04:52:26 +0000 (21:52 -0700)]
Refresh of rs-inline

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:50:22 +0000 (21:50 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:50:22 +0000 (21:50 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:49:23 +0000 (21:49 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:49:23 +0000 (21:49 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-inline
Sean Hefty [Thu, 17 Apr 2014 04:49:23 +0000 (21:49 -0700)]
Refresh of rs-inline

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:42:10 +0000 (21:42 -0700)]
refresh

10 years agorefresh
Sean Hefty [Thu, 17 Apr 2014 04:42:10 +0000 (21:42 -0700)]
refresh

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:42:10 +0000 (21:42 -0700)]
refresh (create temporary patch)

10 years agorefresh (create temporary patch)
Sean Hefty [Thu, 17 Apr 2014 04:42:10 +0000 (21:42 -0700)]
refresh (create temporary patch)

10 years agoRefresh of rs-inline
Sean Hefty [Thu, 17 Apr 2014 04:42:09 +0000 (21:42 -0700)]
Refresh of rs-inline

10 years agorsocket: Check max inline data after creating QP
Sean Hefty [Thu, 17 Apr 2014 04:42:06 +0000 (21:42 -0700)]
rsocket: Check max inline data after creating QP

The ipath provider will ignore the max_inline_size
specified as input into ibv_create_qp and instead
return the size that it supports (which is 0) on
output.

Update the actual inline size returned from create QP,
and check that it meets the minimum requirement for
rsockets.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
10 years agorsocket: Check max inline data after creating QP
Sean Hefty [Thu, 17 Apr 2014 04:42:06 +0000 (21:42 -0700)]
rsocket: Check max inline data after creating QP

The ipath provider will ignore the max_inline_size
specified as input into ibv_create_qp and instead
return the size that it supports (which is 0) on
output.

Update the actual inline size returned from create QP,
and check that it meets the minimum requirement for
rsockets.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
10 years agorsocket: Check max inline data after creating QP
Sean Hefty [Thu, 17 Apr 2014 04:42:06 +0000 (21:42 -0700)]
rsocket: Check max inline data after creating QP

The ipath provider will ignore the max_inline_size
specified as input into ibv_create_qp and instead
return the size that it supports (which is 0) on
output.  Check that the max_inline_size returned
from ibv_create_qp is the size needed.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>