IB/core: Allow setting create flags in QP init attribute
authorEran Ben Elisha <[email protected]>
Thu, 15 Oct 2015 11:44:37 +0000 (14:44 +0300)
committerDoug Ledford <[email protected]>
Thu, 22 Oct 2015 03:16:46 +0000 (23:16 -0400)
Allow setting IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK at create_flags in
ib_uverbs_create_qp_ex.

Signed-off-by: Eran Ben Elisha <[email protected]>
Reviewed-by: Haggai Eran <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
drivers/infiniband/core/uverbs_cmd.c

index b2a37d545e0b23622c18c0c25fcb5a8293698c33..ece9f4c5e4a4a19a3fb223842b583e3921c9027b 100644 (file)
@@ -1843,7 +1843,7 @@ static int create_qp(struct ib_uverbs_file *file,
                      sizeof(cmd->create_flags))
                attr.create_flags = cmd->create_flags;
 
-       if (attr.create_flags) {
+       if (attr.create_flags & ~IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK) {
                ret = -EINVAL;
                goto err_put;
        }