diff options
author | Noa Osherovich <noaos@mellanox.com> | 2017-01-18 16:39:57 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-02-14 19:41:11 +0300 |
commit | 27b0df1175d543c46f63de6dccba98d0e5cf2276 (patch) | |
tree | f9de5aee6daf314ae7cd3aad757975f286910cf2 /include/rdma | |
parent | 9c2b270e69da3ea3ef76f1c14ba4ee7ca60863fd (diff) | |
download | linux-27b0df1175d543c46f63de6dccba98d0e5cf2276.tar.xz |
IB/core: Add scatter FCS flag to use in WQ creation
Add a new creation flag to set the scatter FCS capability of a WQ.
Signed-off-by: Noa Osherovich <noaos@mellanox.com>
Reviewed-by: Majd Dibbiny <majd@mellanox.com>
Reviewed-by: Yishai Hadas <yishaih@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/ib_verbs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 44d58510c020..62fb9c61b354 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -1497,6 +1497,7 @@ struct ib_wq { enum ib_wq_flags { IB_WQ_FLAGS_CVLAN_STRIPPING = 1 << 0, + IB_WQ_FLAGS_SCATTER_FCS = 1 << 1, }; struct ib_wq_init_attr { |