diff options
author | Majd Dibbiny <majd@mellanox.com> | 2016-04-17 17:19:36 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-05-14 02:40:28 +0300 |
commit | b531b909481933f78493e4d2fcda25c606acf120 (patch) | |
tree | ebd0fdd442284aec875798b0942946c365fd4e5b /drivers/infiniband/core | |
parent | 45686f2d6535525a9875e4a77a35da013814de82 (diff) | |
download | linux-b531b909481933f78493e4d2fcda25c606acf120.tar.xz |
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 'drivers/infiniband/core')
-rw-r--r-- | drivers/infiniband/core/uverbs_cmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c index 9acb84983bd9..03e39c2aaf66 100644 --- a/drivers/infiniband/core/uverbs_cmd.c +++ b/drivers/infiniband/core/uverbs_cmd.c @@ -1833,7 +1833,8 @@ static int create_qp(struct ib_uverbs_file *file, if (attr.create_flags & ~(IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK | IB_QP_CREATE_CROSS_CHANNEL | IB_QP_CREATE_MANAGED_SEND | - IB_QP_CREATE_MANAGED_RECV)) { + IB_QP_CREATE_MANAGED_RECV | + IB_QP_CREATE_SCATTER_FCS)) { ret = -EINVAL; goto err_put; } |