1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2020 Marvell International Ltd.
*/
#include <fnmatch.h>
#include <stdbool.h>
#include <stdlib.h>
#include <eal_export.h>
#include <rte_common.h>
#include <rte_errno.h>
#include <rte_malloc.h>
#include "graph_private.h"
/* Capture all graphs of cluster */
struct cluster {
rte_graph_t nb_graphs;
rte_graph_t size;
struct graph **graphs;
};
/* Capture same node ID across cluster */
struct cluster_node {
struct rte_graph_cluster_node_stats stat;
rte_node_t nb_nodes;
struct rte_node *nodes[];
};
struct __rte_cache_aligned rte_graph_cluster_stats {
/* Header */
rte_graph_cluster_stats_cb_t fn;
uint32_t cluster_node_size; /* Size of struct cluster_node */
rte_node_t max_nodes;
int socket_id;
bool dispatch;
void *cookie;
struct cluster_node clusters[];
};
#define boarder_model_dispatch() \
fprintf(f, "+-------------------------------+---------------+--------" \
"-------+---------------+---------------+---------------+" \
"---------------+---------------+-" \
"----------+\n")
#define boarder() \
fprintf(f, "+-------------------------------+---------------+--------" \
"-------+---------------+---------------+---------------+-" \
"----------+\n")
static inline void
print_banner_default(FILE *f)
{
boarder();
fprintf(f, "%-32s%-16s%-16s%-16s%-16s%-16s%-16s\n", "|Node", "|calls",
"|objs", "|realloc_count", "|objs/call", "|objs/sec(10E6)",
"|cycles/call|");
boarder();
}
static inline void
print_banner_dispatch(FILE *f)
{
boarder_model_dispatch();
fprintf(f, "%-32s%-16s%-16s%-16s%-16s%-16s%-16s%-16s%-16s\n",
"|Node", "|calls",
"|objs", "|sched objs", "|sched fail",
"|realloc_count", "|objs/call", "|objs/sec(10E6)",
"|cycles/call|");
boarder_model_dispatch();
}
static inline void
print_banner(FILE *f, bool dispatch)
{
if (dispatch)
print_banner_dispatch(f);
else
print_banner_default(f);
}
static inline void
print_node(FILE *f, const struct rte_graph_cluster_node_stats *stat, bool dispatch)
{
double objs_per_call, objs_per_sec, cycles_per_call, ts_per_hz;
const uint64_t prev_calls = stat->prev_calls;
const uint64_t prev_objs = stat->prev_objs;
const uint64_t cycles = stat->cycles;
const uint64_t calls = stat->calls;
const uint64_t objs = stat->objs;
uint64_t call_delta;
call_delta = calls - prev_calls;
objs_per_call =
call_delta ? (double)((objs - prev_objs) / call_delta) : 0;
cycles_per_call =
call_delta ? (double)((cycles - stat->prev_cycles) / call_delta)
: 0;
ts_per_hz = (double)((stat->ts - stat->prev_ts) / stat->hz);
objs_per_sec = ts_per_hz ? (objs - prev_objs) / ts_per_hz : 0;
objs_per_sec /= 1000000;
if (dispatch) {
fprintf(f,
"|%-31s|%-15" PRIu64 "|%-15" PRIu64 "|%-15" PRIu64
"|%-15" PRIu64 "|%-15" PRIu64
"|%-15.3f|%-15.6f|%-11.4f|\n",
stat->name, calls, objs, stat->dispatch.sched_objs,
stat->dispatch.sched_fail, stat->realloc_count, objs_per_call,
objs_per_sec, cycles_per_call);
} else {
fprintf(f,
"|%-31s|%-15" PRIu64 "|%-15" PRIu64 "|%-15" PRIu64
"|%-15.3f|%-15.6f|%-11.4f|\n",
stat->name, calls, objs, stat->realloc_count, objs_per_call,
objs_per_sec, cycles_per_call);
}
}
static inline void
print_xstat(FILE *f, const struct rte_graph_cluster_node_stats *stat, bool dispatch)
{
int i;
if (dispatch) {
for (i = 0; i < stat->xstat_cntrs; i++)
fprintf(f,
"|\t%-24s|%15s|%-15" PRIu64 "|%15s|%15s|%15s|%15s|%15s|%11.4s|\n",
stat->xstat_desc[i], "", stat->xstat_count[i], "", "", "", "", "",
"");
} else {
for (i = 0; i < stat->xstat_cntrs; i++)
fprintf(f,
"|\t%-24s|%15s|%-15" PRIu64 "|%15s|%15.3s|%15.6s|%11.4s|\n",
stat->xstat_desc[i], "", stat->xstat_count[i], "", "", "", "");
}
}
static int
graph_cluster_stats_cb(bool dispatch, bool is_first, bool is_last, void *cookie,
const struct rte_graph_cluster_node_stats *stat)
{
FILE *f = cookie;
if (unlikely(is_first))
print_banner(f, dispatch);
if (stat->objs) {
print_node(f, stat, dispatch);
if (stat->xstat_cntrs)
print_xstat(f, stat, dispatch);
}
if (unlikely(is_last)) {
if (dispatch)
boarder_model_dispatch();
else
boarder();
}
return 0;
};
static int
graph_cluster_stats_cb_rtc(bool is_first, bool is_last, void *cookie,
const struct rte_graph_cluster_node_stats *stat)
{
return graph_cluster_stats_cb(false, is_first, is_last, cookie, stat);
};
static int
graph_cluster_stats_cb_dispatch(bool is_first, bool is_last, void *cookie,
const struct rte_graph_cluster_node_stats *stat)
{
return graph_cluster_stats_cb(true, is_first, is_last, cookie, stat);
};
static uint32_t
cluster_count_nodes(const struct cluster *cluster)
{
rte_node_t *nodes = NULL;
uint32_t max_nodes = 0;
for (unsigned int i = 0; i < cluster->nb_graphs; i++) {
struct graph_node *graph_node;
STAILQ_FOREACH(graph_node, &cluster->graphs[i]->node_list, next) {
rte_node_t *new_nodes;
unsigned int n;
for (n = 0; n < max_nodes; n++) {
if (nodes[n] != graph_node->node->id)
continue;
break;
}
if (n != max_nodes)
continue;
max_nodes++;
new_nodes = realloc(nodes, max_nodes * sizeof(nodes[0]));
if (new_nodes == NULL) {
free(nodes);
return 0;
}
nodes = new_nodes;
nodes[n] = graph_node->node->id;
}
}
free(nodes);
return max_nodes;
}
static struct rte_graph_cluster_stats *
stats_mem_init(struct cluster *cluster,
const struct rte_graph_cluster_stats_param *prm)
{
struct rte_graph_cluster_stats *stats;
rte_graph_cluster_stats_cb_t fn;
int socket_id = prm->socket_id;
uint32_t cluster_node_size;
uint32_t max_nodes;
max_nodes = cluster_count_nodes(cluster);
if (max_nodes == 0)
return NULL;
/* Fix up callback */
fn = prm->fn;
if (fn == NULL) {
const struct rte_graph *graph = cluster->graphs[0]->graph;
if (graph->model == RTE_GRAPH_MODEL_MCORE_DISPATCH)
fn = graph_cluster_stats_cb_dispatch;
else
fn = graph_cluster_stats_cb_rtc;
}
cluster_node_size = sizeof(struct cluster_node);
/* For a given cluster, max nodes will be the max number of graphs */
cluster_node_size += cluster->nb_graphs * sizeof(struct rte_node *);
cluster_node_size = RTE_ALIGN(cluster_node_size, RTE_CACHE_LINE_SIZE);
stats = rte_zmalloc_socket(NULL, sizeof(struct rte_graph_cluster_stats) +
max_nodes * cluster_node_size, 0, socket_id);
if (stats) {
stats->fn = fn;
stats->cluster_node_size = cluster_node_size;
stats->max_nodes = 0;
stats->socket_id = socket_id;
stats->cookie = prm->cookie;
}
return stats;
}
static int
stats_mem_populate(struct rte_graph_cluster_stats *stats,
struct rte_graph *graph, struct graph_node *graph_node)
{
rte_node_t id = graph_node->node->id;
struct cluster_node *cluster;
struct rte_node *node;
rte_node_t count;
uint8_t i;
cluster = stats->clusters;
/* Iterate over cluster node array to find node ID match */
for (count = 0; count < stats->max_nodes; count++) {
/* Found an existing node in the reel */
if (cluster->stat.id == id) {
node = graph_node_id_to_ptr(graph, id);
if (node == NULL)
SET_ERR_JMP(
ENOENT, err,
"Failed to find node %s in graph %s",
graph_node->node->name, graph->name);
cluster->nodes[cluster->nb_nodes++] = node;
return 0;
}
cluster = RTE_PTR_ADD(cluster, stats->cluster_node_size);
}
memcpy(cluster->stat.name, graph_node->node->name, RTE_NODE_NAMESIZE);
cluster->stat.id = graph_node->node->id;
cluster->stat.hz = rte_get_timer_hz();
node = graph_node_id_to_ptr(graph, id);
if (node == NULL)
SET_ERR_JMP(ENOENT, err, "Failed to find node %s in graph %s",
graph_node->node->name, graph->name);
cluster->nodes[cluster->nb_nodes++] = node;
if (graph_node->node->xstats) {
cluster->stat.xstat_cntrs = graph_node->node->xstats->nb_xstats;
cluster->stat.xstat_count = rte_zmalloc_socket(NULL,
sizeof(uint64_t) * graph_node->node->xstats->nb_xstats,
RTE_CACHE_LINE_SIZE, stats->socket_id);
if (cluster->stat.xstat_count == NULL)
SET_ERR_JMP(ENOMEM, err, "Failed to allocate memory node %s graph %s",
graph_node->node->name, graph->name);
cluster->stat.xstat_desc = rte_zmalloc_socket(NULL,
RTE_NODE_XSTAT_DESC_SIZE * graph_node->node->xstats->nb_xstats,
RTE_CACHE_LINE_SIZE, stats->socket_id);
if (cluster->stat.xstat_desc == NULL) {
rte_free(cluster->stat.xstat_count);
SET_ERR_JMP(ENOMEM, err, "Failed to allocate memory node %s graph %s",
graph_node->node->name, graph->name);
}
for (i = 0; i < cluster->stat.xstat_cntrs; i++) {
if (rte_strscpy(cluster->stat.xstat_desc[i],
graph_node->node->xstats->xstat_desc[i],
RTE_NODE_XSTAT_DESC_SIZE) < 0) {
rte_free(cluster->stat.xstat_count);
rte_free(cluster->stat.xstat_desc);
SET_ERR_JMP(E2BIG, err,
"Error description overflow node %s graph %s",
graph_node->node->name, graph->name);
}
}
}
stats->max_nodes++;
return 0;
err:
return -rte_errno;
}
static void
cluster_init(struct cluster *cluster)
{
memset(cluster, 0, sizeof(*cluster));
}
static int
cluster_add(struct cluster *cluster, struct graph *graph)
{
rte_graph_t count;
size_t sz;
/* Skip the if graph is already added to cluster */
for (count = 0; count < cluster->nb_graphs; count++)
if (cluster->graphs[count] == graph)
return 0;
/* Expand the cluster if required to store graph objects */
if (cluster->nb_graphs + 1 > cluster->size) {
cluster->size = RTE_MAX(1, cluster->size * 2);
sz = sizeof(struct graph *) * cluster->size;
cluster->graphs = realloc(cluster->graphs, sz);
if (cluster->graphs == NULL)
SET_ERR_JMP(ENOMEM, free, "Failed to realloc");
}
/* Add graph to cluster */
cluster->graphs[cluster->nb_graphs++] = graph;
return 0;
free:
return -rte_errno;
}
static void
cluster_fini(struct cluster *cluster)
{
free(cluster->graphs);
}
static int
expand_pattern_to_cluster(struct cluster *cluster, const char *pattern)
{
struct graph_head *graph_head = graph_list_head_get();
struct graph *graph;
bool found = false;
/* Check for pattern match */
STAILQ_FOREACH(graph, graph_head, next) {
if (fnmatch(pattern, graph->name, 0) == 0) {
if (cluster_add(cluster, graph))
goto fail;
found = true;
}
}
if (found == false)
SET_ERR_JMP(EFAULT, fail, "Pattern %s graph not found",
pattern);
return 0;
fail:
return -rte_errno;
}
RTE_EXPORT_SYMBOL(rte_graph_cluster_stats_create)
struct rte_graph_cluster_stats *
rte_graph_cluster_stats_create(const struct rte_graph_cluster_stats_param *prm)
{
struct rte_graph_cluster_stats *stats, *rc = NULL;
struct cluster cluster;
rte_graph_t i;
/* Sanity checks */
if (!rte_graph_has_stats_feature())
SET_ERR_JMP(EINVAL, fail, "Stats feature is not enabled");
if (prm == NULL)
SET_ERR_JMP(EINVAL, fail, "Invalid param");
if (prm->graph_patterns == NULL || prm->nb_graph_patterns == 0)
SET_ERR_JMP(EINVAL, fail, "Invalid graph param");
cluster_init(&cluster);
graph_spinlock_lock();
/* Expand graph pattern and add the graph to the cluster */
for (i = 0; i < prm->nb_graph_patterns; i++) {
if (expand_pattern_to_cluster(&cluster, prm->graph_patterns[i]))
goto bad_pattern;
}
/* Alloc the stats memory */
stats = stats_mem_init(&cluster, prm);
if (stats == NULL)
SET_ERR_JMP(ENOMEM, bad_pattern, "Failed rte_malloc for stats memory");
/* Iterate over M(Graph) x N (Nodes in graph) */
for (i = 0; i < cluster.nb_graphs; i++) {
struct graph_node *graph_node;
struct graph *graph;
graph = cluster.graphs[i];
STAILQ_FOREACH(graph_node, &graph->node_list, next) {
struct rte_graph *graph_fp = graph->graph;
if (stats_mem_populate(stats, graph_fp, graph_node))
goto realloc_fail;
}
if (graph->graph->model == RTE_GRAPH_MODEL_MCORE_DISPATCH)
stats->dispatch = true;
}
rc = stats;
stats = NULL;
realloc_fail:
if (stats != NULL)
rte_graph_cluster_stats_destroy(stats);
bad_pattern:
graph_spinlock_unlock();
cluster_fini(&cluster);
fail:
return rc;
}
RTE_EXPORT_SYMBOL(rte_graph_cluster_stats_destroy)
void
rte_graph_cluster_stats_destroy(struct rte_graph_cluster_stats *stat)
{
struct cluster_node *cluster;
rte_node_t count;
cluster = stat->clusters;
for (count = 0; count < stat->max_nodes; count++) {
if (cluster->stat.xstat_cntrs) {
rte_free(cluster->stat.xstat_count);
rte_free(cluster->stat.xstat_desc);
}
cluster = RTE_PTR_ADD(cluster, stat->cluster_node_size);
}
return rte_free(stat);
}
static inline void
cluster_node_arregate_stats(struct cluster_node *cluster, bool dispatch)
{
uint64_t calls = 0, cycles = 0, objs = 0, realloc_count = 0;
struct rte_graph_cluster_node_stats *stat = &cluster->stat;
uint64_t sched_objs = 0, sched_fail = 0;
struct rte_node *node;
rte_node_t count;
uint64_t *xstat;
uint8_t i;
if (stat->xstat_cntrs != 0)
memset(stat->xstat_count, 0, sizeof(uint64_t) * stat->xstat_cntrs);
for (count = 0; count < cluster->nb_nodes; count++) {
node = cluster->nodes[count];
if (dispatch) {
sched_objs += node->dispatch.total_sched_objs;
sched_fail += node->dispatch.total_sched_fail;
}
calls += node->total_calls;
objs += node->total_objs;
cycles += node->total_cycles;
realloc_count += node->realloc_count;
if (node->xstat_off == 0)
continue;
xstat = RTE_PTR_ADD(node, node->xstat_off);
for (i = 0; i < stat->xstat_cntrs; i++)
stat->xstat_count[i] += xstat[i];
}
stat->calls = calls;
stat->objs = objs;
stat->cycles = cycles;
if (dispatch) {
stat->dispatch.sched_objs = sched_objs;
stat->dispatch.sched_fail = sched_fail;
}
stat->ts = rte_get_timer_cycles();
stat->realloc_count = realloc_count;
}
static inline void
cluster_node_store_prev_stats(struct cluster_node *cluster)
{
struct rte_graph_cluster_node_stats *stat = &cluster->stat;
stat->prev_ts = stat->ts;
stat->prev_calls = stat->calls;
stat->prev_objs = stat->objs;
stat->prev_cycles = stat->cycles;
}
RTE_EXPORT_SYMBOL(rte_graph_cluster_stats_get)
void
rte_graph_cluster_stats_get(struct rte_graph_cluster_stats *stat, bool skip_cb)
{
struct cluster_node *cluster;
rte_node_t count;
int rc = 0;
cluster = stat->clusters;
for (count = 0; count < stat->max_nodes; count++) {
cluster_node_arregate_stats(cluster, stat->dispatch);
if (!skip_cb)
rc = stat->fn(!count, (count == stat->max_nodes - 1),
stat->cookie, &cluster->stat);
cluster_node_store_prev_stats(cluster);
if (rc)
break;
cluster = RTE_PTR_ADD(cluster, stat->cluster_node_size);
}
}
RTE_EXPORT_SYMBOL(rte_graph_cluster_stats_reset)
void
rte_graph_cluster_stats_reset(struct rte_graph_cluster_stats *stat)
{
struct cluster_node *cluster;
rte_node_t count;
uint8_t i;
cluster = stat->clusters;
for (count = 0; count < stat->max_nodes; count++) {
struct rte_graph_cluster_node_stats *node = &cluster->stat;
node->ts = 0;
node->calls = 0;
node->objs = 0;
node->cycles = 0;
node->prev_ts = 0;
node->prev_calls = 0;
node->prev_objs = 0;
node->prev_cycles = 0;
node->realloc_count = 0;
for (i = 0; i < node->xstat_cntrs; i++)
node->xstat_count[i] = 0;
cluster = RTE_PTR_ADD(cluster, stat->cluster_node_size);
}
}
|