diff options
| -rw-r--r-- | transport/ib-verbs/src/ib-verbs.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/transport/ib-verbs/src/ib-verbs.c b/transport/ib-verbs/src/ib-verbs.c index 469287489a2..0df10439fef 100644 --- a/transport/ib-verbs/src/ib-verbs.c +++ b/transport/ib-verbs/src/ib-verbs.c @@ -1281,8 +1281,8 @@ ib_verbs_options_init (transport_t *this)          /* TODO: validate arguments from options below */ -        options->send_size = this->xl->ctx->page_size; -        options->recv_size = this->xl->ctx->page_size; +        options->send_size = this->xl->ctx->page_size * 4; /* 512 KB */ +        options->recv_size = this->xl->ctx->page_size * 4; /* 512 KB */          options->send_count = 32;          options->recv_count = 32;  | 
