Skip to content

Commit

Permalink
Use RoCE instead of Infiniband
Browse files Browse the repository at this point in the history
  • Loading branch information
vsbenas committed Oct 15, 2018
1 parent c255434 commit 2aa7d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/transport_impl/infiniband/ib_transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ namespace erpc {
class IBTransport : public Transport {
public:
// Transport-specific constants
static constexpr TransportType kTransportType = TransportType::kInfiniBand;
static constexpr size_t kMTU = 3840; ///< Make (kRecvSize / 64) prime
static constexpr TransportType kTransportType = TransportType::kRoCE;
static constexpr size_t kMTU = 1024; ///< Make (kRecvSize / 64) prime
static constexpr size_t kRecvSize = (kMTU + 64); ///< RECV size (with GRH)
static constexpr size_t kRQDepth = kNumRxRingEntries; ///< RECV queue depth
static constexpr size_t kSQDepth = 128; ///< Send queue depth
Expand Down

0 comments on commit 2aa7d3c

Please sign in to comment.