diff options
author | Benoît Ganne <bganne@cisco.com> | 2020-01-07 16:08:43 +0100 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-01-08 19:51:04 +0000 |
commit | d8c1ef925af5db085a7649076047eda48ac68404 (patch) | |
tree | dfe9a8a055370b362620ecc1e178334722953bab /src/plugins/rdma/unformat.c | |
parent | affc5f6d3d3c17eb8ae1cf7b04a1a1e638516ca4 (diff) |
rdma: api: prepare support for direct verb
Prepare rdma interface creation API for direct verb support:
- add new optional 'mode' parameters to select between ibverb or direct
verb backend (optional, default to 'auto')
- set default value for rxq_num (1), rxq_size (1024) and txq_size
(1024) so they are now optional
- bump default create value for rxq_size and txq_size to 1024 if
unset (0) so they are coherent with default values above
Type: feature
Change-Id: Id9eae2b8eb0baaf34a0fcd55da6ad09515f57a93
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/plugins/rdma/unformat.c')
-rw-r--r-- | src/plugins/rdma/unformat.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/rdma/unformat.c b/src/plugins/rdma/unformat.c index 0b4a1212500..2bbb266f1bf 100644 --- a/src/plugins/rdma/unformat.c +++ b/src/plugins/rdma/unformat.c @@ -42,6 +42,12 @@ unformat_rdma_create_if_args (unformat_input_t * input, va_list * vargs) ; else if (unformat (line_input, "num-rx-queues %u", &args->rxq_num)) ; + else if (unformat (line_input, "mode auto")) + args->mode = RDMA_MODE_AUTO; + else if (unformat (line_input, "mode ibv")) + args->mode = RDMA_MODE_IBV; + else if (unformat (line_input, "mode dv")) + args->mode = RDMA_MODE_DV; else { /* return failure on unknown input */ |