public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: "Steve Wise" <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
To: 'Christoph Lameter' <cl-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>,
	dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	'Mark Bloch' <markb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	'Jason Gunthorpe'
	<jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>,
	'Steve Wise' <swise-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org>
Subject: RE: [RFC 2/2] mlx5: Sample code to exercise new device statistics
Date: Fri, 4 Mar 2016 13:12:10 -0600	[thread overview]
Message-ID: <00cb01d17649$c0deeba0$429cc2e0$@opengridcomputing.com> (raw)
In-Reply-To: <20160304183909.703201393-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>



> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Christoph Lameter
> Sent: Friday, March 04, 2016 12:39 PM
> To: dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
> Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Mark Bloch; Jason Gunthorpe; Steve Wise
> Subject: [RFC 2/2] mlx5: Sample code to exercise new device statistics
> 
> Just put some counters out to allow the testing of the new ib statistics.
> 
> Signed-off-by: Mark Bloch <markb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
>  drivers/infiniband/core/sysfs.c             | 298 ++++++++++++++++------------
>  drivers/infiniband/hw/cxgb3/iwch_provider.c | 136 +++++++++----
>  drivers/infiniband/hw/cxgb4/provider.c      |  26 ++-
>  drivers/infiniband/hw/mlx5/main.c           |  35 ++++
>  include/rdma/ib_verbs.h                     |  60 +-----
>  5 files changed, 335 insertions(+), 220 deletions(-)
>

The diffstat shows changes to cxgb3/4 yet there are no changes in the patch.

 
> Index: linux/drivers/infiniband/hw/mlx5/main.c
> ===================================================================
> --- linux.orig/drivers/infiniband/hw/mlx5/main.c	2016-03-03 13:13:50.471454368 -0600
> +++ linux/drivers/infiniband/hw/mlx5/main.c	2016-03-03 13:13:50.469454440 -0600
> @@ -2122,6 +2122,40 @@ static int mlx5_port_immutable(struct ib
>  	return 0;
>  }
> 
> +static char *names[] = {
> +	"tcpInSegs",
> +	"tcpOutSegs",
> +	"tcpRetransSegs",
> +	"tcpOutRsts",
> +	NULL
> +};
> +
> +static char *port_names[] = {
> +	"p1",
> +	NULL
> +};
> +
> +static int mlx5_get_protocol_stats(struct ib_device *ibdev,
> +				   struct rdma_protocol_stats *stats,
> +				   u8 port)
> +{
> +	if (port != 0) {
> +		stats->name = port_names;
> +		stats->dirname = "ib_stats";
> +		stats->value[0] = 1;
> +		return 0;
> +	}
> +	stats->value[0] = 1;
> +	stats->value[1] = 2;
> +	stats->value[2] = 3;
> +	stats->value[3] = 4;
> +
> +	stats->name = names;
> +	stats->dirname = "ib_stats";
> +
> +	return 0;
> +}
> +
>  static int mlx5_enable_roce(struct mlx5_ib_dev *dev)
>  {
>  	int err;
> @@ -2266,6 +2300,7 @@ static void *mlx5_ib_add(struct mlx5_cor
>  	dev->ib_dev.map_mr_sg		= mlx5_ib_map_mr_sg;
>  	dev->ib_dev.check_mr_status	= mlx5_ib_check_mr_status;
>  	dev->ib_dev.get_port_immutable  = mlx5_port_immutable;
> +	dev->ib_dev.get_protocol_stats	= mlx5_get_protocol_stats;
> 
>  	mlx5_ib_internal_fill_odp_caps(dev);
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2016-03-04 19:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-04 18:38 [RFC 0/2] Dynamically extendable device counter support Christoph Lameter
2016-03-04 18:38 ` [RFC 1/2] ib core: Make device counter infrastructure dynamic Christoph Lameter
2016-03-04 18:38 ` [RFC 2/2] mlx5: Sample code to exercise new device statistics Christoph Lameter
     [not found]   ` <20160304183909.703201393-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org>
2016-03-04 19:12     ` Steve Wise [this message]
2016-03-04 19:15       ` Christoph Lameter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='00cb01d17649$c0deeba0$429cc2e0$@opengridcomputing.com' \
    --to=swise-7bpotxp6k4+p2yhjcf5u+vpxobypeauw@public.gmane.org \
    --cc=cl-vYTEC60ixJUAvxtiuMwx3w@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=markb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=swise-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox