DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Yan, Zhirun" <zhirun.yan@intel.com>
To: "pbhagavatula@marvell.com" <pbhagavatula@marvell.com>,
	"jerinj@marvell.com" <jerinj@marvell.com>,
	"ndabilpuram@marvell.com" <ndabilpuram@marvell.com>,
	"kirankumark@marvell.com" <kirankumark@marvell.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [24.11 PATCH v3 2/5] graph: add node fastpath error counters
Date: Fri, 23 Feb 2024 07:15:06 +0000	[thread overview]
Message-ID: <SN7PR11MB6775648F1DB681E9A5D63C8485552@SN7PR11MB6775.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20240222122342.16375-2-pbhagavatula@marvell.com>



> -----Original Message-----
> From: pbhagavatula@marvell.com <pbhagavatula@marvell.com>
> Sent: Thursday, February 22, 2024 8:24 PM
> To: jerinj@marvell.com; ndabilpuram@marvell.com; kirankumark@marvell.com;
> Yan, Zhirun <zhirun.yan@intel.com>
> Cc: dev@dpdk.org; Pavan Nikhilesh <pbhagavatula@marvell.com>
> Subject: [24.11 PATCH v3 2/5] graph: add node fastpath error counters
> 
> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> 
> Add node fastpath error counters advertised during node registration.
> 
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
> ---
>  lib/graph/graph_populate.c          | 22 +++++++++++++++++++---
>  lib/graph/graph_private.h           |  2 ++
>  lib/graph/rte_graph_worker_common.h |  1 +
>  3 files changed, 22 insertions(+), 3 deletions(-)
> 
> diff --git a/lib/graph/graph_populate.c b/lib/graph/graph_populate.c index
> ed596a7711..924f5a3034 100644
> --- a/lib/graph/graph_populate.c
> +++ b/lib/graph/graph_populate.c
> @@ -39,6 +39,15 @@ graph_fp_mem_calc_size(struct graph *graph)
>  		/* Pointer to next nodes(edges) */
>  		sz += sizeof(struct rte_node *) * graph_node->node->nb_edges;
>  	}
> +	sz = RTE_ALIGN(sz, RTE_CACHE_LINE_SIZE);
> +	graph->errors_start = sz;
> +	/* For 0..N node objects with error counters */
> +	STAILQ_FOREACH (graph_node, &graph->node_list, next) {
> +		if (graph_node->node->errs == NULL)
> +			continue;
> +		sz = RTE_ALIGN(sz, RTE_CACHE_LINE_SIZE);
> +		sz += sizeof(uint64_t) * graph_node->node->errs->nb_errors;
> +	}
> 
>  	graph->mem_sz = sz;
>  	return sz;
> @@ -64,6 +73,7 @@ graph_header_popluate(struct graph *_graph)  static void
> graph_nodes_populate(struct graph *_graph)  {
> +	rte_graph_off_t err_off = _graph->errors_start;
>  	rte_graph_off_t off = _graph->nodes_start;
>  	struct rte_graph *graph = _graph->graph;
>  	struct graph_node *graph_node;
> @@ -99,6 +109,12 @@ graph_nodes_populate(struct graph *_graph)
>  						     ->adjacency_list[count]
>  						     ->node->name[0];
> 
> +		if (graph_node->node->errs != NULL) {
> +			node->err_off = err_off - off;
> +			err_off += sizeof(uint64_t) * graph_node->node->errs-
> >nb_errors;
> +			err_off = RTE_ALIGN(err_off, RTE_CACHE_LINE_SIZE);
> +		}
> +
>  		off += sizeof(struct rte_node *) * nb_edges;
>  		off = RTE_ALIGN(off, RTE_CACHE_LINE_SIZE);
>  		node->next = off;
> @@ -158,7 +174,7 @@ graph_node_nexts_populate(struct graph *_graph)  }
> 
>  static int
> -graph_src_nodes_populate(struct graph *_graph)
> +graph_src_nodes_offset_populate(struct graph *_graph)
>  {
>  	struct rte_graph *graph = _graph->graph;
>  	struct graph_node *graph_node;
> @@ -193,7 +209,7 @@ graph_fp_mem_populate(struct graph *graph)
>  		graph_pcap_init(graph);
>  	graph_nodes_populate(graph);
>  	rc = graph_node_nexts_populate(graph);
> -	rc |= graph_src_nodes_populate(graph);
> +	rc |= graph_src_nodes_offset_populate(graph);
> 
>  	return rc;
>  }
> @@ -228,7 +244,7 @@ graph_nodes_mem_destroy(struct rte_graph *graph)
>  	if (graph == NULL)
>  		return;
> 
> -	rte_graph_foreach_node(count, off, graph, node)
> +	rte_graph_foreach_node (count, off, graph, node)
No need to add space here.


  reply	other threads:[~2024-02-23  7:15 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-21 16:26 [PATCH 1/5] graph: add support for node specific errors pbhagavatula
2024-02-21 16:26 ` [PATCH 2/5] graph: add node fastpath error counters pbhagavatula
2024-02-21 16:26 ` [PATCH 3/5] graph: add stats for node specific errors pbhagavatula
2024-02-21 16:26 ` [PATCH 4/5] node: add error stats for ip4 lookup node pbhagavatula
2024-02-21 16:26 ` [PATCH 5/5] node: add error stats for ip4 reassembly node pbhagavatula
2024-02-22  5:36 ` [24.11 PATCH v2 1/5] graph: add support for node specific errors pbhagavatula
2024-02-22  5:36   ` [24.11 PATCH v2 2/5] graph: add node fastpath error counters pbhagavatula
2024-02-22  5:36   ` [24.11 PATCH v2 3/5] graph: add stats for node specific errors pbhagavatula
2024-02-22  5:36   ` [24.11 PATCH v2 4/5] node: add error stats for ip4 lookup node pbhagavatula
2024-02-22  5:36   ` [24.11 PATCH v2 5/5] node: add error stats for ip4 reassembly node pbhagavatula
2024-02-22 12:23   ` [24.11 PATCH v3 1/5] graph: add support for node specific errors pbhagavatula
2024-02-22 12:23     ` [24.11 PATCH v3 2/5] graph: add node fastpath error counters pbhagavatula
2024-02-23  7:15       ` Yan, Zhirun [this message]
2024-02-22 12:23     ` [24.11 PATCH v3 3/5] graph: add stats for node specific errors pbhagavatula
2024-02-22 12:23     ` [24.11 PATCH v3 4/5] node: add error stats for ip4 lookup node pbhagavatula
2024-02-23  7:18       ` Yan, Zhirun
2024-02-26  7:46         ` Pavan Nikhilesh Bhagavatula
2024-02-22 12:23     ` [24.11 PATCH v3 5/5] node: add error stats for ip4 reassembly node pbhagavatula
2024-02-23  7:13     ` [24.11 PATCH v3 1/5] graph: add support for node specific errors Yan, Zhirun
2024-02-26  7:49       ` Pavan Nikhilesh Bhagavatula

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=SN7PR11MB6775648F1DB681E9A5D63C8485552@SN7PR11MB6775.namprd11.prod.outlook.com \
    --to=zhirun.yan@intel.com \
    --cc=dev@dpdk.org \
    --cc=jerinj@marvell.com \
    --cc=kirankumark@marvell.com \
    --cc=ndabilpuram@marvell.com \
    --cc=pbhagavatula@marvell.com \
    /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;
as well as URLs for NNTP newsgroup(s).