diff options
author | Noa Osherovich <noaos@mellanox.com> | 2017-01-18 14:39:57 +0100 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-02-14 17:41:11 +0100 |
commit | 27b0df1175d543c46f63de6dccba98d0e5cf2276 (patch) | |
tree | f9de5aee6daf314ae7cd3aad757975f286910cf2 /include/rdma/ib_verbs.h | |
parent | IB/core: Enable QP creation with cvlan offload (diff) | |
download | linux-27b0df1175d543c46f63de6dccba98d0e5cf2276.tar.xz linux-27b0df1175d543c46f63de6dccba98d0e5cf2276.zip |
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 '')
-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 { |