From: Maor Gottlieb <maorg@xxxxxxxxxxxx> When fill_res_entry is not implemented by the vendor, then we just need to return 0. Reduce some code and make it more clear by set dummy ops. Signed-off-by: Maor Gottlieb <maorg@xxxxxxxxxxxx> Signed-off-by: Leon Romanovsky <leonro@xxxxxxxxxxxx> --- drivers/infiniband/core/nldev.c | 46 ++++-------------------------- drivers/infiniband/core/restrack.c | 13 +++++++++ 2 files changed, 19 insertions(+), 40 deletions(-) diff --git a/drivers/infiniband/core/nldev.c b/drivers/infiniband/core/nldev.c index 8548f09746ab..8b4115bc26b2 100644 --- a/drivers/infiniband/core/nldev.c +++ b/drivers/infiniband/core/nldev.c @@ -446,22 +446,6 @@ static int fill_res_name_pid(struct sk_buff *msg, return err ? -EMSGSIZE : 0; } -static bool fill_res_entry(struct ib_device *dev, struct sk_buff *msg, - struct rdma_restrack_entry *res) -{ - if (!dev->ops.fill_res_entry) - return false; - return dev->ops.fill_res_entry(msg, res); -} - -static bool fill_stat_entry(struct ib_device *dev, struct sk_buff *msg, - struct rdma_restrack_entry *res) -{ - if (!dev->ops.fill_stat_entry) - return false; - return dev->ops.fill_stat_entry(msg, res); -} - static int fill_res_qp_entry(struct sk_buff *msg, bool has_cap_net_admin, struct rdma_restrack_entry *res, uint32_t port) { @@ -515,10 +499,7 @@ static int fill_res_qp_entry(struct sk_buff *msg, bool has_cap_net_admin, if (fill_res_name_pid(msg, res)) goto err; - if (fill_res_entry(dev, msg, res)) - goto err; - - return 0; + return dev->ops.fill_res_entry(msg, res); err: return -EMSGSIZE; } @@ -568,10 +549,7 @@ static int fill_res_cm_id_entry(struct sk_buff *msg, bool has_cap_net_admin, if (fill_res_name_pid(msg, res)) goto err; - if (fill_res_entry(dev, msg, res)) - goto err; - - return 0; + return dev->ops.fill_res_entry(msg, res); err: return -EMSGSIZE; } @@ -606,10 +584,7 @@ static int fill_res_cq_entry(struct sk_buff *msg, bool has_cap_net_admin, if (fill_res_name_pid(msg, res)) goto err; - if (fill_res_entry(dev, msg, res)) - goto err; - - return 0; + return dev->ops.fill_res_entry(msg, res); err: return -EMSGSIZE; } @@ -641,10 +616,7 @@ static int fill_res_mr_entry(struct sk_buff *msg, bool has_cap_net_admin, if (fill_res_name_pid(msg, res)) goto err; - if (fill_res_entry(dev, msg, res)) - goto err; - - return 0; + return dev->ops.fill_res_entry(msg, res); err: return -EMSGSIZE; } @@ -784,15 +756,9 @@ static int fill_stat_mr_entry(struct sk_buff *msg, bool has_cap_net_admin, struct ib_device *dev = mr->pd->device; if (nla_put_u32(msg, RDMA_NLDEV_ATTR_RES_MRN, res->id)) - goto err; - - if (fill_stat_entry(dev, msg, res)) - goto err; - - return 0; + return -EMSGSIZE; -err: - return -EMSGSIZE; + return dev->ops.fill_stat_entry(msg, res); } static int fill_stat_counter_hwcounters(struct sk_buff *msg, diff --git a/drivers/infiniband/core/restrack.c b/drivers/infiniband/core/restrack.c index 62fbb0ae9cb4..093b27c0bbe6 100644 --- a/drivers/infiniband/core/restrack.c +++ b/drivers/infiniband/core/restrack.c @@ -14,6 +14,17 @@ #include "cma_priv.h" #include "restrack.h" +static int fill_res_dummy(struct sk_buff *msg, + struct rdma_restrack_entry *entry) +{ + return 0; +} + +static const struct ib_device_ops restrack_dummy_ops = { + .fill_res_entry = fill_res_dummy, + .fill_stat_entry = fill_res_dummy, +}; + /** * rdma_restrack_init() - initialize and allocate resource tracking * @dev: IB device @@ -34,6 +45,8 @@ int rdma_restrack_init(struct ib_device *dev) for (i = 0; i < RDMA_RESTRACK_MAX; i++) xa_init_flags(&rt[i].xa, XA_FLAGS_ALLOC); + ib_set_device_ops(dev, &restrack_dummy_ops); + return 0; } -- 2.26.2