diff options
author | Majd Dibbiny <majd@mellanox.com> | 2016-04-17 17:19:36 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-05-13 19:40:28 -0400 |
commit | b531b909481933f78493e4d2fcda25c606acf120 (patch) | |
tree | ebd0fdd442284aec875798b0942946c365fd4e5b /include/rdma | |
parent | 45686f2d6535525a9875e4a77a35da013814de82 (diff) | |
download | op-kernel-dev-b531b909481933f78493e4d2fcda25c606acf120.zip op-kernel-dev-b531b909481933f78493e4d2fcda25c606acf120.tar.gz |
IB/core: Add Scatter FCS create flag
Raw Packet QPs that were created with Scatter FCS flag, will scatter
the FCS into the receive buffers.
Signed-off-by: Majd Dibbiny <majd@mellanox.com>
Signed-off-by: Matan Barak <matanb@mellanox.com>
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 6d6172d..195b233 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -982,6 +982,7 @@ enum ib_qp_create_flags { IB_QP_CREATE_NETIF_QP = 1 << 5, IB_QP_CREATE_SIGNATURE_EN = 1 << 6, IB_QP_CREATE_USE_GFP_NOIO = 1 << 7, + IB_QP_CREATE_SCATTER_FCS = 1 << 8, /* reserve bits 26-31 for low level drivers' internal use */ IB_QP_CREATE_RESERVED_START = 1 << 26, IB_QP_CREATE_RESERVED_END = 1 << 31, |