]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
IB/mlx5: Return error for unsupported signature type
authorLeon Romanovsky <leonro@mellanox.com>
Wed, 18 Jan 2017 12:10:31 +0000 (14:10 +0200)
committerDoug Ledford <dledford@redhat.com>
Tue, 14 Feb 2017 15:14:25 +0000 (10:14 -0500)
In case of unsupported singature, we returned positive
value, while the better approach is to return -EINVAL.

In addition, in this change, the error print is enriched
to provide an actual supplied signature type.

Fixes: e6631814fb3a ("IB/mlx5: Support IB_WR_REG_SIG_MR")
Cc: Sagi Grimberg <sagi@grimberg.me>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/mlx5/qp.c

index 6a83fb32599dc8dfe8ac5dfe6eb3c2dd02906f43..90210745366a87ef0b731a416997496a80cc2f72 100644 (file)
@@ -3637,8 +3637,9 @@ static int set_psv_wr(struct ib_sig_domain *domain,
                psv_seg->ref_tag = cpu_to_be32(domain->sig.dif.ref_tag);
                break;
        default:
-               pr_err("Bad signature type given.\n");
-               return 1;
+               pr_err("Bad signature type (%d) is given.\n",
+                      domain->sig_type);
+               return -EINVAL;
        }
 
        *seg += sizeof(*psv_seg);