automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw149075 [PATCH v11 5/7] ring/soring: introduce Staged Ordered Ring
       [not found] <20241206183600.34758-6-konstantin.ananyev@huawei.com>
@ 2024-12-06 17:48 ` checkpatch
  0 siblings, 0 replies; only message in thread
From: checkpatch @ 2024-12-06 17:48 UTC (permalink / raw)
  To: test-report; +Cc: Konstantin Ananyev

Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/149075

_coding style issues_


WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#36: 
Subject: [PATCH v11 5/7] ring/soring: introduce Staged Ordered Ring

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#60: 
Staged-Ordered-Ring (SORING) provides a SW abstraction for 'ordered' queues

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#65: 
In particular, main SORING properties:

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#129: FILE: devtools/build-dict.sh:26:
+sed '/^soring->/d' |

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#141: FILE: doc/api/doxy-api-index.md:177:
+  [soring](@ref rte_soring.h),

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#141: FILE: doc/api/doxy-api-index.md:177:
+  [soring](@ref rte_soring.h),

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#164: FILE: doc/guides/prog_guide/img/soring-pic1.svg:14:
+   sodipodi:docname="soring-pic1.svg"

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#797: FILE: doc/guides/prog_guide/ring_lib.rst:497:
+Staged-Ordered-Ring (SORING) API provides a SW abstraction for *ordered* queues

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#801: FILE: doc/guides/prog_guide/ring_lib.rst:501:
+In particular, main SORING properties:

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#824: FILE: doc/guides/prog_guide/ring_lib.rst:524:
+SORING data-path API provided four main operations:

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#840: FILE: doc/guides/prog_guide/ring_lib.rst:540:
+A simplified representation of a SORING with two stages is shown below.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#845: FILE: doc/guides/prog_guide/ring_lib.rst:545:
+.. _figure_soring1:

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#847: FILE: doc/guides/prog_guide/ring_lib.rst:547:
+.. figure:: img/soring-pic1.*

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#853: FILE: doc/guides/prog_guide/ring_lib.rst:553:
+At initialization user can request within the ``soring`` supplementary and

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#854: FILE: doc/guides/prog_guide/ring_lib.rst:554:
+optional array of metadata associated with each object in the ``soring``.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#855: FILE: doc/guides/prog_guide/ring_lib.rst:555:
+While ``soring`` element size is configurable and user can specify it big

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#865: FILE: doc/guides/prog_guide/ring_lib.rst:565:
+     * use pointer to mbuf as soring element, while tx_state

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#867: FILE: doc/guides/prog_guide/ring_lib.rst:567:
+     * In this example we use a soring with just one stage.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#878: FILE: doc/guides/prog_guide/ring_lib.rst:578:
+     struct rte_soring *soring;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#878: FILE: doc/guides/prog_guide/ring_lib.rst:578:
+     struct rte_soring *soring;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#888: FILE: doc/guides/prog_guide/ring_lib.rst:588:
+     /* enqueue - writes to soring objects array no need to update metadata */

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#890: FILE: doc/guides/prog_guide/ring_lib.rst:590:
+     num = rte_soring_enqueue_burst(soring, pkts, num, NULL);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#890: FILE: doc/guides/prog_guide/ring_lib.rst:590:
+     num = rte_soring_enqueue_burst(soring, pkts, num, NULL);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#894: FILE: doc/guides/prog_guide/ring_lib.rst:594:
+     num = rte_soring_dequeux_burst(soring, pkts, txst, num, NULL);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#894: FILE: doc/guides/prog_guide/ring_lib.rst:594:
+     num = rte_soring_dequeux_burst(soring, pkts, txst, num, NULL);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#898: FILE: doc/guides/prog_guide/ring_lib.rst:598:
+      * Note that we don't need to dereference the soring objects itself

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#937: FILE: doc/guides/prog_guide/ring_lib.rst:637:
+     num = rte_soring_acquire_burst(soring, pkts, 0, num, &ftoken, NULL);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#937: FILE: doc/guides/prog_guide/ring_lib.rst:637:
+     num = rte_soring_acquire_burst(soring, pkts, 0, num, &ftoken, NULL);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#944: FILE: doc/guides/prog_guide/ring_lib.rst:644:
+      * contents of pkts[], we need to update soring metadata array only.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#946: FILE: doc/guides/prog_guide/ring_lib.rst:646:
+     rte_soring_releasx(soring, NULL, txst, 0, num, ftoken);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#946: FILE: doc/guides/prog_guide/ring_lib.rst:646:
+     rte_soring_releasx(soring, NULL, txst, 0, num, ftoken);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#955: FILE: doc/guides/prog_guide/ring_lib.rst:655:
+SORING internals

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#960: FILE: doc/guides/prog_guide/ring_lib.rst:660:
+    corresponds to exactly one object within the soring. That ``state[]``

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#964: FILE: doc/guides/prog_guide/ring_lib.rst:664:
+*   At ``acquire``, soring  moves stage's head (in a same way as ``rte_ring``

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#968: FILE: doc/guides/prog_guide/ring_lib.rst:668:
+    (``SORING_ST_START``).

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#975: FILE: doc/guides/prog_guide/ring_lib.rst:675:
+    ``SORING_ST_FINISH`` flag to indicate that given subset of objects was

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#986: FILE: doc/guides/prog_guide/ring_lib.rst:686:
+    are released (in ``SORING_ST_FINISH`` state).

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1007: FILE: doc/guides/rel_notes/release_25_03.rst:58:
+* **Add Staged-Ordered-Ring (SORING) API to the rte_ring library.**

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1028: FILE: lib/ring/meson.build:4:
+sources = files('rte_ring.c', 'rte_soring.c', 'soring.c')

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1028: FILE: lib/ring/meson.build:4:
+sources = files('rte_ring.c', 'rte_soring.c', 'soring.c')

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1029: FILE: lib/ring/meson.build:5:
+headers = files('rte_ring.h', 'rte_soring.h')

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1045: FILE: lib/ring/rte_soring.c:7:
+#include "soring.h"

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1048: FILE: lib/ring/rte_soring.c:10:
+RTE_LOG_REGISTER_DEFAULT(soring_logtype, INFO);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1051: FILE: lib/ring/rte_soring.c:13:
+soring_calc_elem_num(uint32_t count)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1057: FILE: lib/ring/rte_soring.c:19:
+soring_check_param(uint32_t esize, uint32_t msize, uint32_t count,

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1061: FILE: lib/ring/rte_soring.c:23:
+		SORING_LOG(ERR, "invalid number of stages: %u", stages);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1067: FILE: lib/ring/rte_soring.c:29:
+		SORING_LOG(ERR, "invalid element size: %u", esize);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1073: FILE: lib/ring/rte_soring.c:35:
+		SORING_LOG(ERR, "invalid metadata size: %u", msize);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1079: FILE: lib/ring/rte_soring.c:41:
+			(count > RTE_SORING_ELEM_MAX + 1)) {

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1080: FILE: lib/ring/rte_soring.c:42:
+		SORING_LOG(ERR, "invalid number of elements: %u", count);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1088: FILE: lib/ring/rte_soring.c:50:
+ * Calculate size offsets for SORING internal data layout.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1091: FILE: lib/ring/rte_soring.c:53:
+soring_get_szofs(uint32_t esize, uint32_t msize, uint32_t count,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1096: FILE: lib/ring/rte_soring.c:58:
+	const struct rte_soring * const r = NULL;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1123: FILE: lib/ring/rte_soring.c:85:
+soring_dump_stage_headtail(FILE *f, const char *prefix,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1124: FILE: lib/ring/rte_soring.c:86:
+		struct soring_stage *st)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1132: FILE: lib/ring/rte_soring.c:94:
+rte_soring_dump(FILE *f, const struct rte_soring *r)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1132: FILE: lib/ring/rte_soring.c:94:
+rte_soring_dump(FILE *f, const struct rte_soring *r)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1140: FILE: lib/ring/rte_soring.c:102:
+	fprintf(f, "soring <%s>@%p
", r->name, r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1145: FILE: lib/ring/rte_soring.c:107:
+	fprintf(f, "  used=%u
", rte_soring_count(r));

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1146: FILE: lib/ring/rte_soring.c:108:
+	fprintf(f, "  avail=%u
", rte_soring_free_count(r));

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1154: FILE: lib/ring/rte_soring.c:116:
+		soring_dump_stage_headtail(f, buf, r->stage + i);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1159: FILE: lib/ring/rte_soring.c:121:
+rte_soring_get_memsize(const struct rte_soring_param *prm)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1159: FILE: lib/ring/rte_soring.c:121:
+rte_soring_get_memsize(const struct rte_soring_param *prm)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1164: FILE: lib/ring/rte_soring.c:126:
+	count = soring_calc_elem_num(prm->elems);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1165: FILE: lib/ring/rte_soring.c:127:
+	rc = soring_check_param(prm->elem_size, prm->meta_size, count,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1170: FILE: lib/ring/rte_soring.c:132:
+	return soring_get_szofs(prm->elem_size, prm->meta_size, count,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1176: FILE: lib/ring/rte_soring.c:138:
+soring_compilation_checks(void)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1178: FILE: lib/ring/rte_soring.c:140:
+	RTE_BUILD_BUG_ON((sizeof(struct rte_soring) &

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1180: FILE: lib/ring/rte_soring.c:142:
+	RTE_BUILD_BUG_ON((offsetof(struct rte_soring, cons) &

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1182: FILE: lib/ring/rte_soring.c:144:
+	RTE_BUILD_BUG_ON((offsetof(struct rte_soring, prod) &

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1186: FILE: lib/ring/rte_soring.c:148:
+		offsetof(struct soring_stage_headtail, tail.pos));

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1188: FILE: lib/ring/rte_soring.c:150:
+		offsetof(struct soring_stage_headtail, unused));

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1192: FILE: lib/ring/rte_soring.c:154:
+rte_soring_init(struct rte_soring *r, const struct rte_soring_param *prm)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1192: FILE: lib/ring/rte_soring.c:154:
+rte_soring_init(struct rte_soring *r, const struct rte_soring_param *prm)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1192: FILE: lib/ring/rte_soring.c:154:
+rte_soring_init(struct rte_soring *r, const struct rte_soring_param *prm)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1198: FILE: lib/ring/rte_soring.c:160:
+	soring_compilation_checks();

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1203: FILE: lib/ring/rte_soring.c:165:
+	n = soring_calc_elem_num(prm->elems);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1204: FILE: lib/ring/rte_soring.c:166:
+	rc = soring_check_param(prm->elem_size, prm->meta_size, n, prm->stages);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1208: FILE: lib/ring/rte_soring.c:170:
+	soring_get_szofs(prm->elem_size, prm->meta_size, n, prm->stages,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1225: FILE: lib/ring/rte_soring.c:187:
+	r->state = (union soring_state *)((uintptr_t)r + state_ofs);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1228: FILE: lib/ring/rte_soring.c:190:
+	r->stage = (struct soring_stage *)((uintptr_t)r + stage_ofs);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1247: FILE: lib/ring/rte_soring.h:5:
+#ifndef _RTE_SORING_H_

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1248: FILE: lib/ring/rte_soring.h:6:
+#define _RTE_SORING_H_

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1252: FILE: lib/ring/rte_soring.h:10:
+ * This file contains definition of DPDK soring (Staged Ordered Ring)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1265: FILE: lib/ring/rte_soring.h:23:
+ * Extra debugging might be enabled with RTE_SORING_DEBUG macro.

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1275: FILE: lib/ring/rte_soring.h:33:
+#define RTE_SORING_ST_BIT       30

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1277: FILE: lib/ring/rte_soring.h:35:
+/** max possible number of elements in the soring */

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1278: FILE: lib/ring/rte_soring.h:36:
+#define RTE_SORING_ELEM_MAX	(RTE_BIT32(RTE_SORING_ST_BIT) - 1)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1278: FILE: lib/ring/rte_soring.h:36:
+#define RTE_SORING_ELEM_MAX	(RTE_BIT32(RTE_SORING_ST_BIT) - 1)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1280: FILE: lib/ring/rte_soring.h:38:
+struct rte_soring_param {

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1281: FILE: lib/ring/rte_soring.h:39:
+	/** expected name of the soring */

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1283: FILE: lib/ring/rte_soring.h:41:
+	/** number of elements in the soring */

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1285: FILE: lib/ring/rte_soring.h:43:
+	/** size of elements in the soring, must be a multiple of 4 */

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1290: FILE: lib/ring/rte_soring.h:48:
+	 * array of metadata associated with each object in the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1302: FILE: lib/ring/rte_soring.h:60:
+	/** number of stages in the soring */

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1310: FILE: lib/ring/rte_soring.h:68:
+struct rte_soring;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1313: FILE: lib/ring/rte_soring.h:71:
+ * Calculate the memory size needed for a soring

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1315: FILE: lib/ring/rte_soring.h:73:
+ * This function returns the number of bytes needed for a soring, given

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1318: FILE: lib/ring/rte_soring.h:76:
+ * actual soring elements and their metadata. The value is aligned to a cache

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1322: FILE: lib/ring/rte_soring.h:80:
+ *   Pointer to the structure that contains soring creation parameters.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1324: FILE: lib/ring/rte_soring.h:82:
+ *   - The memory size needed for the soring on success.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1329: FILE: lib/ring/rte_soring.h:87:
+rte_soring_get_memsize(const struct rte_soring_param *prm);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1329: FILE: lib/ring/rte_soring.h:87:
+rte_soring_get_memsize(const struct rte_soring_param *prm);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1332: FILE: lib/ring/rte_soring.h:90:
+ * Initialize a soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1334: FILE: lib/ring/rte_soring.h:92:
+ * Initialize a soring structure in memory pointed by "r".

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1335: FILE: lib/ring/rte_soring.h:93:
+ * The size of the memory area must be large enough to store the soring

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1337: FILE: lib/ring/rte_soring.h:95:
+ * It is strongly advised to use @ref rte_soring_get_memsize() to get the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1341: FILE: lib/ring/rte_soring.h:99:
+ *   Pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1343: FILE: lib/ring/rte_soring.h:101:
+ *   Pointer to the structure that contains soring creation parameters.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1349: FILE: lib/ring/rte_soring.h:107:
+rte_soring_init(struct rte_soring *r,  const struct rte_soring_param *prm);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1349: FILE: lib/ring/rte_soring.h:107:
+rte_soring_init(struct rte_soring *r,  const struct rte_soring_param *prm);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1349: FILE: lib/ring/rte_soring.h:107:
+rte_soring_init(struct rte_soring *r,  const struct rte_soring_param *prm);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1352: FILE: lib/ring/rte_soring.h:110:
+ * Return the total number of filled entries in a soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1355: FILE: lib/ring/rte_soring.h:113:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1357: FILE: lib/ring/rte_soring.h:115:
+ *   The number of entries in the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1361: FILE: lib/ring/rte_soring.h:119:
+rte_soring_count(const struct rte_soring *r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1361: FILE: lib/ring/rte_soring.h:119:
+rte_soring_count(const struct rte_soring *r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1364: FILE: lib/ring/rte_soring.h:122:
+ * Return the total number of unfilled entries in a soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1367: FILE: lib/ring/rte_soring.h:125:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1369: FILE: lib/ring/rte_soring.h:127:
+ *   The number of free entries in the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1373: FILE: lib/ring/rte_soring.h:131:
+rte_soring_free_count(const struct rte_soring *r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1373: FILE: lib/ring/rte_soring.h:131:
+rte_soring_free_count(const struct rte_soring *r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1376: FILE: lib/ring/rte_soring.h:134:
+ * Dump the status of the soring

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1381: FILE: lib/ring/rte_soring.h:139:
+ *   Pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1385: FILE: lib/ring/rte_soring.h:143:
+rte_soring_dump(FILE *f, const struct rte_soring *r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1385: FILE: lib/ring/rte_soring.h:143:
+rte_soring_dump(FILE *f, const struct rte_soring *r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1388: FILE: lib/ring/rte_soring.h:146:
+ * Enqueue several objects on the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1392: FILE: lib/ring/rte_soring.h:150:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1396: FILE: lib/ring/rte_soring.h:154:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1398: FILE: lib/ring/rte_soring.h:156:
+ *   The number of objects to add in the soring from the 'objs'.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1400: FILE: lib/ring/rte_soring.h:158:
+ *   if non-NULL, returns the amount of space in the soring after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1407: FILE: lib/ring/rte_soring.h:165:
+rte_soring_enqueue_bulk(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1407: FILE: lib/ring/rte_soring.h:165:
+rte_soring_enqueue_bulk(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1411: FILE: lib/ring/rte_soring.h:169:
+ * Enqueue several objects plus metadata on the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1415: FILE: lib/ring/rte_soring.h:173:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1419: FILE: lib/ring/rte_soring.h:177:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1425: FILE: lib/ring/rte_soring.h:183:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1425: FILE: lib/ring/rte_soring.h:183:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1429: FILE: lib/ring/rte_soring.h:187:
+ *   The number of objects to add in the soring from the 'objs'.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1431: FILE: lib/ring/rte_soring.h:189:
+ *   if non-NULL, returns the amount of space in the soring after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1438: FILE: lib/ring/rte_soring.h:196:
+rte_soring_enqueux_bulk(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1438: FILE: lib/ring/rte_soring.h:196:
+rte_soring_enqueux_bulk(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1442: FILE: lib/ring/rte_soring.h:200:
+ * Enqueue several objects on the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1446: FILE: lib/ring/rte_soring.h:204:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1450: FILE: lib/ring/rte_soring.h:208:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1452: FILE: lib/ring/rte_soring.h:210:
+ *   The number of objects to add in the soring from the 'objs'.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1454: FILE: lib/ring/rte_soring.h:212:
+ *   if non-NULL, returns the amount of space in the soring after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1461: FILE: lib/ring/rte_soring.h:219:
+rte_soring_enqueue_burst(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1461: FILE: lib/ring/rte_soring.h:219:
+rte_soring_enqueue_burst(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1465: FILE: lib/ring/rte_soring.h:223:
+ * Enqueue several objects plus metadata on the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1469: FILE: lib/ring/rte_soring.h:227:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1473: FILE: lib/ring/rte_soring.h:231:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1479: FILE: lib/ring/rte_soring.h:237:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1479: FILE: lib/ring/rte_soring.h:237:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1483: FILE: lib/ring/rte_soring.h:241:
+ *   The number of objects to add in the soring from the 'objs'.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1485: FILE: lib/ring/rte_soring.h:243:
+ *   if non-NULL, returns the amount of space in the soring after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1492: FILE: lib/ring/rte_soring.h:250:
+rte_soring_enqueux_burst(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1492: FILE: lib/ring/rte_soring.h:250:
+rte_soring_enqueux_burst(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1496: FILE: lib/ring/rte_soring.h:254:
+ * Dequeue several objects from the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1500: FILE: lib/ring/rte_soring.h:258:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1504: FILE: lib/ring/rte_soring.h:262:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1506: FILE: lib/ring/rte_soring.h:264:
+ *   The number of objects to dequeue from the soring into the objs.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1508: FILE: lib/ring/rte_soring.h:266:
+ *   If non-NULL, returns the number of remaining soring entries after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1515: FILE: lib/ring/rte_soring.h:273:
+rte_soring_dequeue_bulk(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1515: FILE: lib/ring/rte_soring.h:273:
+rte_soring_dequeue_bulk(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1519: FILE: lib/ring/rte_soring.h:277:
+ * Dequeue several objects plus metadata from the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1523: FILE: lib/ring/rte_soring.h:281:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1527: FILE: lib/ring/rte_soring.h:285:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1533: FILE: lib/ring/rte_soring.h:291:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1533: FILE: lib/ring/rte_soring.h:291:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1537: FILE: lib/ring/rte_soring.h:295:
+ *   The number of objects to dequeue from the soring into the objs.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1539: FILE: lib/ring/rte_soring.h:297:
+ *   If non-NULL, returns the number of remaining soring entries after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1546: FILE: lib/ring/rte_soring.h:304:
+rte_soring_dequeux_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1546: FILE: lib/ring/rte_soring.h:304:
+rte_soring_dequeux_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1550: FILE: lib/ring/rte_soring.h:308:
+ * Dequeue several objects from the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1554: FILE: lib/ring/rte_soring.h:312:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1558: FILE: lib/ring/rte_soring.h:316:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1560: FILE: lib/ring/rte_soring.h:318:
+ *   The number of objects to dequeue from the soring into the objs.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1562: FILE: lib/ring/rte_soring.h:320:
+ *   If non-NULL, returns the number of remaining soring entries after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1569: FILE: lib/ring/rte_soring.h:327:
+rte_soring_dequeue_burst(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1569: FILE: lib/ring/rte_soring.h:327:
+rte_soring_dequeue_burst(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1573: FILE: lib/ring/rte_soring.h:331:
+ * Dequeue several objects plus metadata from the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1577: FILE: lib/ring/rte_soring.h:335:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1581: FILE: lib/ring/rte_soring.h:339:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1587: FILE: lib/ring/rte_soring.h:345:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1587: FILE: lib/ring/rte_soring.h:345:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1591: FILE: lib/ring/rte_soring.h:349:
+ *   The number of objects to dequeue from the soring into the objs.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1593: FILE: lib/ring/rte_soring.h:351:
+ *   If non-NULL, returns the number of remaining soring entries after the

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1600: FILE: lib/ring/rte_soring.h:358:
+rte_soring_dequeux_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1600: FILE: lib/ring/rte_soring.h:358:
+rte_soring_dequeux_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1604: FILE: lib/ring/rte_soring.h:362:
+ * Acquire several objects from the soring for given stage.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1608: FILE: lib/ring/rte_soring.h:366:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1612: FILE: lib/ring/rte_soring.h:370:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1622: FILE: lib/ring/rte_soring.h:380:
+ *   If non-NULL, returns the number of remaining soring entries for given stage

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1629: FILE: lib/ring/rte_soring.h:387:
+rte_soring_acquire_bulk(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1629: FILE: lib/ring/rte_soring.h:387:
+rte_soring_acquire_bulk(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1633: FILE: lib/ring/rte_soring.h:391:
+ * Acquire several objects plus metadata from the soring for given stage.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1637: FILE: lib/ring/rte_soring.h:395:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1641: FILE: lib/ring/rte_soring.h:399:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1647: FILE: lib/ring/rte_soring.h:405:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1647: FILE: lib/ring/rte_soring.h:405:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1659: FILE: lib/ring/rte_soring.h:417:
+ *   If non-NULL, returns the number of remaining soring entries for given stage

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1666: FILE: lib/ring/rte_soring.h:424:
+rte_soring_acquirx_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1666: FILE: lib/ring/rte_soring.h:424:
+rte_soring_acquirx_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1670: FILE: lib/ring/rte_soring.h:428:
+ * Acquire several objects from the soring for given stage.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1674: FILE: lib/ring/rte_soring.h:432:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1678: FILE: lib/ring/rte_soring.h:436:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1688: FILE: lib/ring/rte_soring.h:446:
+ *   If non-NULL, returns the number of remaining soring entries for given stage

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1695: FILE: lib/ring/rte_soring.h:453:
+rte_soring_acquire_burst(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1695: FILE: lib/ring/rte_soring.h:453:
+rte_soring_acquire_burst(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1699: FILE: lib/ring/rte_soring.h:457:
+ * Acquire several objects plus metadata from the soring for given stage.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1703: FILE: lib/ring/rte_soring.h:461:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1707: FILE: lib/ring/rte_soring.h:465:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1713: FILE: lib/ring/rte_soring.h:471:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1713: FILE: lib/ring/rte_soring.h:471:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1725: FILE: lib/ring/rte_soring.h:483:
+ *   If non-NULL, returns the number of remaining soring entries for given stage

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1732: FILE: lib/ring/rte_soring.h:490:
+rte_soring_acquirx_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1732: FILE: lib/ring/rte_soring.h:490:
+rte_soring_acquirx_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1736: FILE: lib/ring/rte_soring.h:494:
+ * Release several objects for given stage back to the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1741: FILE: lib/ring/rte_soring.h:499:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1744: FILE: lib/ring/rte_soring.h:502:
+ *   Note that unless user needs to overwrite soring objects this parameter

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1747: FILE: lib/ring/rte_soring.h:505:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1758: FILE: lib/ring/rte_soring.h:516:
+rte_soring_release(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1758: FILE: lib/ring/rte_soring.h:516:
+rte_soring_release(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1762: FILE: lib/ring/rte_soring.h:520:
+ * Release several objects plus metadata for given stage back to the soring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1767: FILE: lib/ring/rte_soring.h:525:
+ *   A pointer to the soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1770: FILE: lib/ring/rte_soring.h:528:
+ *   Note that unless user needs to overwrite soring objects this parameter

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1773: FILE: lib/ring/rte_soring.h:531:
+ *   used while creating the soring. Otherwise the results are undefined.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1779: FILE: lib/ring/rte_soring.h:537:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1779: FILE: lib/ring/rte_soring.h:537:
+ *   parameter used while creating the soring. If user created the soring with

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1792: FILE: lib/ring/rte_soring.h:550:
+rte_soring_releasx(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1792: FILE: lib/ring/rte_soring.h:550:
+rte_soring_releasx(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1799: FILE: lib/ring/rte_soring.h:557:
+#endif /* _RTE_SORING_H_ */

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1812: FILE: lib/ring/soring.c:7:
+ * This file contains implementation of SORING 'datapath' functions.

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1836: FILE: lib/ring/soring.c:31:
+ * that elems are acquired (SORING_ST_START).

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1843: FILE: lib/ring/soring.c:38:
+ * * Then it marks this state[] with 'SORING_ST_FINISH' flag to indicate

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1853: FILE: lib/ring/soring.c:48:
+ * through elements that already are in SORING_ST_FINISH state.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1862: FILE: lib/ring/soring.c:57:
+#include "soring.h"

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1868: FILE: lib/ring/soring.c:63:
+__rte_soring_stage_finalize(struct soring_stage_headtail *sht, uint32_t stage,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1868: FILE: lib/ring/soring.c:63:
+__rte_soring_stage_finalize(struct soring_stage_headtail *sht, uint32_t stage,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1869: FILE: lib/ring/soring.c:64:
+	union soring_state *rstate, uint32_t rmask, uint32_t maxn)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1873: FILE: lib/ring/soring.c:68:
+	union soring_stage_tail nt, ot;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1874: FILE: lib/ring/soring.c:69:
+	union soring_state st;

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1907: FILE: lib/ring/soring.c:102:
+		ftkn = SORING_FTKN_MAKE(tail, stage);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1911: FILE: lib/ring/soring.c:106:
+		if ((st.stnum & SORING_ST_MASK) != SORING_ST_FINISH ||

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1911: FILE: lib/ring/soring.c:106:
+		if ((st.stnum & SORING_ST_MASK) != SORING_ST_FINISH ||

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#1915: FILE: lib/ring/soring.c:110:
+		k = st.stnum & ~SORING_ST_MASK;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1930: FILE: lib/ring/soring.c:125:
+__rte_soring_move_prod_head(struct rte_soring *r, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1930: FILE: lib/ring/soring.c:125:
+__rte_soring_move_prod_head(struct rte_soring *r, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1963: FILE: lib/ring/soring.c:158:
+__rte_soring_move_cons_head(struct rte_soring *r, uint32_t stage, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1963: FILE: lib/ring/soring.c:158:
+__rte_soring_move_cons_head(struct rte_soring *r, uint32_t stage, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#1997: FILE: lib/ring/soring.c:192:
+__rte_soring_update_tail(struct __rte_ring_headtail *rht,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2021: FILE: lib/ring/soring.c:216:
+__rte_soring_stage_move_head(struct soring_stage_headtail *d,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2021: FILE: lib/ring/soring.c:216:
+__rte_soring_stage_move_head(struct soring_stage_headtail *d,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2053: FILE: lib/ring/soring.c:248:
+soring_enqueue(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2053: FILE: lib/ring/soring.c:248:
+soring_enqueue(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2065: FILE: lib/ring/soring.c:260:
+	n = __rte_soring_move_prod_head(r, n, behavior, st,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2073: FILE: lib/ring/soring.c:268:
+		__rte_soring_update_tail(&r->prod, st, prod_head, prod_next, 1);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2082: FILE: lib/ring/soring.c:277:
+soring_dequeue(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2082: FILE: lib/ring/soring.c:277:
+soring_dequeue(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2096: FILE: lib/ring/soring.c:291:
+	n = __rte_soring_move_cons_head(r, ns, num, RTE_RING_QUEUE_FIXED, st,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2100: FILE: lib/ring/soring.c:295:
+		n = __rte_soring_stage_finalize(&r->stage[ns].sht, ns,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2107: FILE: lib/ring/soring.c:302:
+			n = __rte_soring_move_cons_head(r, ns, num, behavior,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2120: FILE: lib/ring/soring.c:315:
+		__rte_soring_update_tail(&r->cons, st, cons_head, cons_next, 0);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2129: FILE: lib/ring/soring.c:324:
+ * Verify internal SORING state.

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2131: FILE: lib/ring/soring.c:326:
+ * whatever reason SORING data constancy is broken. That is a very serious

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2135: FILE: lib/ring/soring.c:330:
+ * RTE_SORING_DEBUG enabled.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2138: FILE: lib/ring/soring.c:333:
+soring_verify_state(const struct rte_soring *r, uint32_t stage, uint32_t idx,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2138: FILE: lib/ring/soring.c:333:
+soring_verify_state(const struct rte_soring *r, uint32_t stage, uint32_t idx,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2139: FILE: lib/ring/soring.c:334:
+	const char *msg, union soring_state val,  union soring_state exp)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2139: FILE: lib/ring/soring.c:334:
+	const char *msg, union soring_state val,  union soring_state exp)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2142: FILE: lib/ring/soring.c:337:
+#ifdef RTE_SORING_DEBUG

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2143: FILE: lib/ring/soring.c:338:
+		rte_soring_dump(stderr, r);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2144: FILE: lib/ring/soring.c:339:
+		rte_panic("line:%d from:%s: soring=%p, stage=%#x, idx=%#x, "

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2151: FILE: lib/ring/soring.c:346:
+		SORING_LOG(EMERG, "from:%s: soring=%p, stage=%#x, idx=%#x, "

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2151: FILE: lib/ring/soring.c:346:
+		SORING_LOG(EMERG, "from:%s: soring=%p, stage=%#x, idx=%#x, "

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2163: FILE: lib/ring/soring.c:358:
+acquire_state_update(const struct rte_soring *r, uint32_t stage, uint32_t idx,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2166: FILE: lib/ring/soring.c:361:
+	union soring_state st;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2167: FILE: lib/ring/soring.c:362:
+	const union soring_state est = {.raw = 0};

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2171: FILE: lib/ring/soring.c:366:
+	soring_verify_state(r, stage, idx, __func__, st, est);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2174: FILE: lib/ring/soring.c:369:
+	st.stnum = (SORING_ST_START | num);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2181: FILE: lib/ring/soring.c:376:
+soring_acquire(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2181: FILE: lib/ring/soring.c:376:
+soring_acquire(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2186: FILE: lib/ring/soring.c:381:
+	struct soring_stage *pstg;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2187: FILE: lib/ring/soring.c:382:
+	struct soring_stage_headtail *cons;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2195: FILE: lib/ring/soring.c:390:
+		n = __rte_soring_stage_move_head(cons, &r->prod.ht, 0, num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2201: FILE: lib/ring/soring.c:396:
+		n = __rte_soring_stage_move_head(cons, &pstg->ht, 0, num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2205: FILE: lib/ring/soring.c:400:
+			n = __rte_soring_stage_finalize(&pstg->sht, stage - 1,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2212: FILE: lib/ring/soring.c:407:
+				n = __rte_soring_stage_move_head(cons,

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2223: FILE: lib/ring/soring.c:418:
+		*ftoken = SORING_FTKN_MAKE(head, stage);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2242: FILE: lib/ring/soring.c:437:
+soring_release(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2242: FILE: lib/ring/soring.c:437:
+soring_release(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2246: FILE: lib/ring/soring.c:441:
+	struct soring_stage *stg;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2247: FILE: lib/ring/soring.c:442:
+	union soring_state st;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2249: FILE: lib/ring/soring.c:444:
+	const union soring_state est = {

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2250: FILE: lib/ring/soring.c:445:
+		.stnum = (SORING_ST_START | n),

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2259: FILE: lib/ring/soring.c:454:
+	pos = SORING_FTKN_POS(ftoken, stage);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2265: FILE: lib/ring/soring.c:460:
+	soring_verify_state(r, stage, idx, __func__, st, est);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2278: FILE: lib/ring/soring.c:473:
+	st.stnum = SORING_ST_FINISH | n;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2286: FILE: lib/ring/soring.c:481:
+		__rte_soring_stage_finalize(&stg->sht, stage, r->state, r->mask,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2295: FILE: lib/ring/soring.c:490:
+rte_soring_release(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2295: FILE: lib/ring/soring.c:490:
+rte_soring_release(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2298: FILE: lib/ring/soring.c:493:
+	soring_release(r, objs, NULL, stage, n, ftoken);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2303: FILE: lib/ring/soring.c:498:
+rte_soring_releasx(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2303: FILE: lib/ring/soring.c:498:
+rte_soring_releasx(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2306: FILE: lib/ring/soring.c:501:
+	soring_release(r, objs, meta, stage, n, ftoken);

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2310: FILE: lib/ring/soring.c:505:
+rte_soring_enqueue_bulk(struct rte_soring *r, const void *objs, uint32_t n,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2310: FILE: lib/ring/soring.c:505:
+rte_soring_enqueue_bulk(struct rte_soring *r, const void *objs, uint32_t n,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2313: FILE: lib/ring/soring.c:508:
+	return soring_enqueue(r, objs, NULL, n, RTE_RING_QUEUE_FIXED,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2318: FILE: lib/ring/soring.c:513:
+rte_soring_enqueux_bulk(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2318: FILE: lib/ring/soring.c:513:
+rte_soring_enqueux_bulk(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2321: FILE: lib/ring/soring.c:516:
+	return soring_enqueue(r, objs, meta, n, RTE_RING_QUEUE_FIXED,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2326: FILE: lib/ring/soring.c:521:
+rte_soring_enqueue_burst(struct rte_soring *r, const void *objs, uint32_t n,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2326: FILE: lib/ring/soring.c:521:
+rte_soring_enqueue_burst(struct rte_soring *r, const void *objs, uint32_t n,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2329: FILE: lib/ring/soring.c:524:
+	return soring_enqueue(r, objs, NULL, n, RTE_RING_QUEUE_VARIABLE,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2334: FILE: lib/ring/soring.c:529:
+rte_soring_enqueux_burst(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2334: FILE: lib/ring/soring.c:529:
+rte_soring_enqueux_burst(struct rte_soring *r, const void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2337: FILE: lib/ring/soring.c:532:
+	return soring_enqueue(r, objs, meta, n, RTE_RING_QUEUE_VARIABLE,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2342: FILE: lib/ring/soring.c:537:
+rte_soring_dequeue_bulk(struct rte_soring *r, void *objs, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2342: FILE: lib/ring/soring.c:537:
+rte_soring_dequeue_bulk(struct rte_soring *r, void *objs, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2345: FILE: lib/ring/soring.c:540:
+	return soring_dequeue(r, objs, NULL, num, RTE_RING_QUEUE_FIXED,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2350: FILE: lib/ring/soring.c:545:
+rte_soring_dequeux_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2350: FILE: lib/ring/soring.c:545:
+rte_soring_dequeux_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2353: FILE: lib/ring/soring.c:548:
+	return soring_dequeue(r, objs, meta, num, RTE_RING_QUEUE_FIXED,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2358: FILE: lib/ring/soring.c:553:
+rte_soring_dequeue_burst(struct rte_soring *r, void *objs, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2358: FILE: lib/ring/soring.c:553:
+rte_soring_dequeue_burst(struct rte_soring *r, void *objs, uint32_t num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2361: FILE: lib/ring/soring.c:556:
+	return soring_dequeue(r, objs, NULL, num, RTE_RING_QUEUE_VARIABLE,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2366: FILE: lib/ring/soring.c:561:
+rte_soring_dequeux_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2366: FILE: lib/ring/soring.c:561:
+rte_soring_dequeux_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2369: FILE: lib/ring/soring.c:564:
+	return soring_dequeue(r, objs, meta, num, RTE_RING_QUEUE_VARIABLE,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2374: FILE: lib/ring/soring.c:569:
+rte_soring_acquire_bulk(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2374: FILE: lib/ring/soring.c:569:
+rte_soring_acquire_bulk(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2377: FILE: lib/ring/soring.c:572:
+	return soring_acquire(r, objs, NULL, stage, num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2382: FILE: lib/ring/soring.c:577:
+rte_soring_acquirx_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2382: FILE: lib/ring/soring.c:577:
+rte_soring_acquirx_bulk(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2385: FILE: lib/ring/soring.c:580:
+	return soring_acquire(r, objs, meta, stage, num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2390: FILE: lib/ring/soring.c:585:
+rte_soring_acquire_burst(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2390: FILE: lib/ring/soring.c:585:
+rte_soring_acquire_burst(struct rte_soring *r, void *objs,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2393: FILE: lib/ring/soring.c:588:
+	return soring_acquire(r, objs, NULL, stage, num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2398: FILE: lib/ring/soring.c:593:
+rte_soring_acquirx_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2398: FILE: lib/ring/soring.c:593:
+rte_soring_acquirx_burst(struct rte_soring *r, void *objs, void *meta,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2401: FILE: lib/ring/soring.c:596:
+	return soring_acquire(r, objs, meta, stage, num,

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2406: FILE: lib/ring/soring.c:601:
+rte_soring_count(const struct rte_soring *r)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2406: FILE: lib/ring/soring.c:601:
+rte_soring_count(const struct rte_soring *r)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2415: FILE: lib/ring/soring.c:610:
+rte_soring_free_count(const struct rte_soring *r)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2415: FILE: lib/ring/soring.c:610:
+rte_soring_free_count(const struct rte_soring *r)

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2417: FILE: lib/ring/soring.c:612:
+	return r->capacity - rte_soring_count(r);

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2429: FILE: lib/ring/soring.h:5:
+#ifndef _SORING_H_

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2430: FILE: lib/ring/soring.h:6:
+#define _SORING_H_

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2434: FILE: lib/ring/soring.h:10:
+ * This file contains internal structures of DPDK soring: Staged Ordered Ring.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2441: FILE: lib/ring/soring.h:17:
+ * For actual implementation details, please refer to soring.c

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2444: FILE: lib/ring/soring.h:20:
+#include <rte_soring.h>

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2446: FILE: lib/ring/soring.h:22:
+/* logging stuff, register our own tag for SORING */

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2449: FILE: lib/ring/soring.h:25:
+extern int soring_logtype;

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2450: FILE: lib/ring/soring.h:26:
+#define RTE_LOGTYPE_SORING soring_logtype

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2450: FILE: lib/ring/soring.h:26:
+#define RTE_LOGTYPE_SORING soring_logtype

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2451: FILE: lib/ring/soring.h:27:
+#define SORING_LOG(level, ...) \

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2452: FILE: lib/ring/soring.h:28:
+	RTE_LOG_LINE(level, SORING, "" __VA_ARGS__)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2455: FILE: lib/ring/soring.h:31:
+ * SORING internal state for each element

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2457: FILE: lib/ring/soring.h:33:
+union soring_state {

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2466: FILE: lib/ring/soring.h:42:
+#define SORING_ST_START		RTE_SHIFT_VAL32(1, RTE_SORING_ST_BIT)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2466: FILE: lib/ring/soring.h:42:
+#define SORING_ST_START		RTE_SHIFT_VAL32(1, RTE_SORING_ST_BIT)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2467: FILE: lib/ring/soring.h:43:
+#define SORING_ST_FINISH	RTE_SHIFT_VAL32(2, RTE_SORING_ST_BIT)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2467: FILE: lib/ring/soring.h:43:
+#define SORING_ST_FINISH	RTE_SHIFT_VAL32(2, RTE_SORING_ST_BIT)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2469: FILE: lib/ring/soring.h:45:
+#define SORING_ST_MASK	\

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2470: FILE: lib/ring/soring.h:46:
+	RTE_GENMASK32(sizeof(uint32_t) * CHAR_BIT - 1, RTE_SORING_ST_BIT)

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2472: FILE: lib/ring/soring.h:48:
+#define SORING_FTKN_MAKE(pos, stg)	((pos) + (stg))

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2473: FILE: lib/ring/soring.h:49:
+#define SORING_FTKN_POS(ftk, stg)	((ftk) - (stg))

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2476: FILE: lib/ring/soring.h:52:
+ * SORING re-uses rte_ring internal structures and implementation

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2490: FILE: lib/ring/soring.h:66:
+union soring_stage_tail {

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2499: FILE: lib/ring/soring.h:75:
+struct soring_stage_headtail {

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2500: FILE: lib/ring/soring.h:76:
+	volatile union soring_stage_tail tail;

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2506: FILE: lib/ring/soring.h:82:
+ * SORING stage head_tail structure is 'compatible' with rte_ring ones.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2511: FILE: lib/ring/soring.h:87:
+struct soring_stage {

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2515: FILE: lib/ring/soring.h:91:
+		struct soring_stage_headtail sht;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2522: FILE: lib/ring/soring.h:98:
+ * soring internal structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2524: FILE: lib/ring/soring.h:100:
+ * after the rte_soring structure.

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2526: FILE: lib/ring/soring.h:102:
+struct  __rte_cache_aligned rte_soring {

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2536: FILE: lib/ring/soring.h:112:
+	struct soring_stage *stage;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2540: FILE: lib/ring/soring.h:116:
+	union soring_state *state;

WARNING:TYPO_SPELLING: 'SORING' may be misspelled - perhaps 'SORTING'?
#2562: FILE: lib/ring/soring.h:138:
+#endif /* _SORING_H_ */

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2571: FILE: lib/ring/version.map:23:
+	rte_soring_acquire_bulk;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2572: FILE: lib/ring/version.map:24:
+	rte_soring_acquire_burst;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2573: FILE: lib/ring/version.map:25:
+	rte_soring_acquirx_bulk;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2574: FILE: lib/ring/version.map:26:
+	rte_soring_acquirx_burst;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2575: FILE: lib/ring/version.map:27:
+	rte_soring_count;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2576: FILE: lib/ring/version.map:28:
+	rte_soring_dequeue_bulk;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2577: FILE: lib/ring/version.map:29:
+	rte_soring_dequeue_burst;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2578: FILE: lib/ring/version.map:30:
+	rte_soring_dequeux_bulk;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2579: FILE: lib/ring/version.map:31:
+	rte_soring_dequeux_burst;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2580: FILE: lib/ring/version.map:32:
+	rte_soring_enqueue_bulk;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2581: FILE: lib/ring/version.map:33:
+	rte_soring_enqueue_burst;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2582: FILE: lib/ring/version.map:34:
+	rte_soring_enqueux_bulk;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2583: FILE: lib/ring/version.map:35:
+	rte_soring_enqueux_burst;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2584: FILE: lib/ring/version.map:36:
+	rte_soring_dump;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2585: FILE: lib/ring/version.map:37:
+	rte_soring_free_count;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2586: FILE: lib/ring/version.map:38:
+	rte_soring_get_memsize;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2587: FILE: lib/ring/version.map:39:
+	rte_soring_init;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2588: FILE: lib/ring/version.map:40:
+	rte_soring_release;

WARNING:TYPO_SPELLING: 'soring' may be misspelled - perhaps 'sorting'?
#2589: FILE: lib/ring/version.map:41:
+	rte_soring_releasx;

total: 0 errors, 400 warnings, 2410 lines checked
Warning in lib/ring/soring.c:
Using rte_panic/rte_exit

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-12-06 17:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20241206183600.34758-6-konstantin.ananyev@huawei.com>
2024-12-06 17:48 ` |WARNING| pw149075 [PATCH v11 5/7] ring/soring: introduce Staged Ordered Ring checkpatch

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).