mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
4061ff7aa3
Add RDMA nldev netlink interface for dumping MR statistics information. Output example: $ ./ibv_rc_pingpong -o -P -s 500000000 local address: LID 0x0001, QPN 0x00008a, PSN 0xf81096, GID :: $ rdma stat show mr dev mlx5_0 mrn 2 page_faults 122071 page_invalidations 0 Link: https://lore.kernel.org/r/20191016062308.11886-5-leon@kernel.org Signed-off-by: Erez Alfasi <ereza@mellanox.com> Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Reviewed-by: Jason Gunthorpe <jgg@mellanox.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
91 lines
2.0 KiB
C
91 lines
2.0 KiB
C
// SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
|
|
/*
|
|
* Copyright (c) 2019, Mellanox Technologies inc. All rights reserved.
|
|
*/
|
|
|
|
#include <uapi/rdma/rdma_netlink.h>
|
|
#include <rdma/ib_umem_odp.h>
|
|
#include <rdma/restrack.h>
|
|
#include "mlx5_ib.h"
|
|
|
|
static int fill_stat_mr_entry(struct sk_buff *msg,
|
|
struct rdma_restrack_entry *res)
|
|
{
|
|
struct ib_mr *ibmr = container_of(res, struct ib_mr, res);
|
|
struct mlx5_ib_mr *mr = to_mmr(ibmr);
|
|
struct nlattr *table_attr;
|
|
|
|
if (!(mr->access_flags & IB_ACCESS_ON_DEMAND))
|
|
return 0;
|
|
|
|
table_attr = nla_nest_start(msg,
|
|
RDMA_NLDEV_ATTR_STAT_HWCOUNTERS);
|
|
|
|
if (!table_attr)
|
|
goto err;
|
|
|
|
if (rdma_nl_stat_hwcounter_entry(msg, "page_faults",
|
|
atomic64_read(&mr->odp_stats.faults)))
|
|
goto err_table;
|
|
if (rdma_nl_stat_hwcounter_entry(
|
|
msg, "page_invalidations",
|
|
atomic64_read(&mr->odp_stats.invalidations)))
|
|
goto err_table;
|
|
|
|
nla_nest_end(msg, table_attr);
|
|
return 0;
|
|
|
|
err_table:
|
|
nla_nest_cancel(msg, table_attr);
|
|
err:
|
|
return -EMSGSIZE;
|
|
}
|
|
|
|
static int fill_res_mr_entry(struct sk_buff *msg,
|
|
struct rdma_restrack_entry *res)
|
|
{
|
|
struct ib_mr *ibmr = container_of(res, struct ib_mr, res);
|
|
struct mlx5_ib_mr *mr = to_mmr(ibmr);
|
|
struct nlattr *table_attr;
|
|
|
|
if (!(mr->access_flags & IB_ACCESS_ON_DEMAND))
|
|
return 0;
|
|
|
|
table_attr = nla_nest_start(msg, RDMA_NLDEV_ATTR_DRIVER);
|
|
if (!table_attr)
|
|
goto err;
|
|
|
|
if (mr->is_odp_implicit) {
|
|
if (rdma_nl_put_driver_string(msg, "odp", "implicit"))
|
|
goto err;
|
|
} else {
|
|
if (rdma_nl_put_driver_string(msg, "odp", "explicit"))
|
|
goto err;
|
|
}
|
|
|
|
nla_nest_end(msg, table_attr);
|
|
return 0;
|
|
|
|
err:
|
|
nla_nest_cancel(msg, table_attr);
|
|
return -EMSGSIZE;
|
|
}
|
|
|
|
int mlx5_ib_fill_res_entry(struct sk_buff *msg,
|
|
struct rdma_restrack_entry *res)
|
|
{
|
|
if (res->type == RDMA_RESTRACK_MR)
|
|
return fill_res_mr_entry(msg, res);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int mlx5_ib_fill_stat_entry(struct sk_buff *msg,
|
|
struct rdma_restrack_entry *res)
|
|
{
|
|
if (res->type == RDMA_RESTRACK_MR)
|
|
return fill_stat_mr_entry(msg, res);
|
|
|
|
return 0;
|
|
}
|