RDMA: Make counters destroy symmetrical
authorLeon Romanovsky <leonro@mellanox.com>
Mon, 7 Sep 2020 12:09:21 +0000 (15:09 +0300)
committerJason Gunthorpe <jgg@nvidia.com>
Wed, 9 Sep 2020 17:14:29 +0000 (14:14 -0300)
Change counters to return failure like any other verbs destroy, however
this flow shouldn't return error at all.

Link: https://lore.kernel.org/r/20200907120921.476363-10-leon@kernel.org
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/core/uverbs_std_types_counters.c
drivers/infiniband/hw/mlx5/counters.c
include/rdma/ib_verbs.h

index c7e7438752bc3e5f174c38d6d6e216e4e223a538..b3c6c066b60100ad97bb4231047c65bd7f7ac8d8 100644 (file)
@@ -46,7 +46,9 @@ static int uverbs_free_counters(struct ib_uobject *uobject,
        if (ret)
                return ret;
 
-       counters->device->ops.destroy_counters(counters);
+       ret = counters->device->ops.destroy_counters(counters);
+       if (ret)
+               return ret;
        kfree(counters);
        return 0;
 }
index 145f3cb40ccbaefd9b76e677c01f7fb19264b2ed..8d77fea0eb483ba4abce651247562109e800dc0b 100644 (file)
@@ -117,7 +117,7 @@ err_bound:
        return ret;
 }
 
-static void mlx5_ib_destroy_counters(struct ib_counters *counters)
+static int mlx5_ib_destroy_counters(struct ib_counters *counters)
 {
        struct mlx5_ib_mcounters *mcounters = to_mcounters(counters);
 
@@ -125,6 +125,7 @@ static void mlx5_ib_destroy_counters(struct ib_counters *counters)
        if (mcounters->hw_cntrs_hndl)
                mlx5_fc_destroy(to_mdev(counters->device)->mdev,
                                mcounters->hw_cntrs_hndl);
+       return 0;
 }
 
 static int mlx5_ib_create_counters(struct ib_counters *counters,
index 23209bca8c1b395079083cecd55a0a47556f97ec..29a36ec662b56f4df0126f2789a1148786ad78d0 100644 (file)
@@ -2498,7 +2498,7 @@ struct ib_device_ops {
                                   struct uverbs_attr_bundle *attrs);
        int (*create_counters)(struct ib_counters *counters,
                               struct uverbs_attr_bundle *attrs);
-       void (*destroy_counters)(struct ib_counters *counters);
+       int (*destroy_counters)(struct ib_counters *counters);
        int (*read_counters)(struct ib_counters *counters,
                             struct ib_counters_read_attr *counters_read_attr,
                             struct uverbs_attr_bundle *attrs);