From: Prudvi Deti <prudvi.deti@intel.com>
To: dev@dpdk.org
Cc: bruce.richardson@intel.com, orika@nvidia.com,
nirint.shah@intel.com, prudvi.deti@intel.com
Subject: [RFC 6/7] regex/hs: add start stop close and device dump
Date: Fri, 28 Aug 2026 11:05:55 +0530 [thread overview]
Message-ID: <20260828053629.1224611-7-prudvi.deti@intel.com> (raw)
In-Reply-To: <20260828053629.1224611-1-prudvi.deti@intel.com>
Add device lifecycle state machine with validation: start requires
a compiled database, stop resets QP ring pointers, close releases
all resources and may be called without explicit stop.
Add dev_dump printing driver state, Hyperscan version, rule list,
and aggregated per-QP statistics.
Signed-off-by: Prudvi Deti <prudvi.deti@intel.com>
---
drivers/regex/hs/hs_regex.c | 176 ++++++++++++++++++++++++++++++++++++
1 file changed, 176 insertions(+)
diff --git a/drivers/regex/hs/hs_regex.c b/drivers/regex/hs/hs_regex.c
index 7841a83..b42f791 100644
--- a/drivers/regex/hs/hs_regex.c
+++ b/drivers/regex/hs/hs_regex.c
@@ -685,6 +685,174 @@ hs_regex_rule_db_export(struct rte_regexdev *dev, char *rule_db)
return 0;
}
+/* Start */
+static int
+hs_regex_start(struct rte_regexdev *dev)
+{
+ struct hs_regex_priv *priv;
+
+ if (dev == NULL)
+ return -EINVAL;
+
+ priv = dev->data->dev_private;
+ if (priv == NULL)
+ return -EINVAL;
+
+ /* Start requires configure and a compiled/imported database. */
+ if (priv->dev_state == HS_REGEX_DEV_CREATED) {
+ HS_LOG(ERR, "Cannot start: device not configured");
+ return -EINVAL;
+ }
+ if (priv->dev_state == HS_REGEX_DEV_STARTED) {
+ HS_LOG(ERR, "Device already started");
+ return -EBUSY;
+ }
+
+ if (!priv->db_compiled) {
+ HS_LOG(ERR, "Cannot start: database not compiled/imported");
+ return -EINVAL;
+ }
+
+ priv->dev_state = HS_REGEX_DEV_STARTED;
+ HS_LOG(INFO, "Device started (%u rules, %u queue pairs)",
+ priv->nb_rules, priv->nb_queue_pairs);
+ return 0;
+}
+
+/* Stop */
+static int
+hs_regex_stop(struct rte_regexdev *dev)
+{
+ struct hs_regex_priv *priv;
+ uint16_t i;
+
+ if (dev == NULL)
+ return -EINVAL;
+
+ priv = dev->data->dev_private;
+ if (priv == NULL)
+ return -EINVAL;
+
+ /* Stop is valid only from STARTED state. */
+ if (priv->dev_state != HS_REGEX_DEV_STARTED) {
+ HS_LOG(ERR, "Device not started, cannot stop");
+ return -EINVAL;
+ }
+
+ if (priv->qps == NULL)
+ goto stopped;
+
+ for (i = 0; i < priv->nb_queue_pairs; i++) {
+ struct hs_regex_qp *qp = &priv->qps[i];
+
+ qp->head = 0;
+ qp->tail = 0;
+ qp->count = 0;
+ }
+
+stopped:
+ priv->dev_state = HS_REGEX_DEV_STOPPED;
+ HS_LOG(INFO, "Device stopped");
+ return 0;
+}
+
+/* Close */
+static int
+hs_regex_close(struct rte_regexdev *dev)
+{
+ struct hs_regex_priv *priv;
+ uint32_t i;
+
+ if (dev == NULL)
+ return -EINVAL;
+
+ priv = dev->data->dev_private;
+ if (priv == NULL)
+ return -EINVAL;
+
+ /* Close may be called without an explicit stop. */
+ if (priv->dev_state == HS_REGEX_DEV_STARTED) {
+ HS_LOG(WARNING, "Device still started, stopping before close");
+ hs_regex_stop(dev);
+ }
+
+ if (priv->qps) {
+ for (i = 0; i < priv->nb_queue_pairs; i++) {
+ if (priv->qps[i].scratch)
+ hs_free_scratch(priv->qps[i].scratch);
+ rte_free(priv->qps[i].ops);
+ }
+ rte_free(priv->qps);
+ priv->qps = NULL;
+ }
+
+ if (priv->db) {
+ hs_free_database(priv->db);
+ priv->db = NULL;
+ }
+
+ for (i = 0; i < priv->nb_rules; i++)
+ rte_free(priv->rules[i].pattern);
+ rte_free(priv->rules);
+ priv->rules = NULL;
+ priv->nb_rules = 0;
+ priv->rules_cap = 0;
+ priv->db_compiled = 0;
+
+ if (priv->rule_id_hash) {
+ rte_hash_free(priv->rule_id_hash);
+ priv->rule_id_hash = NULL;
+ }
+
+ /* Return to initial state. */
+ priv->dev_state = HS_REGEX_DEV_CREATED;
+
+ HS_LOG(INFO, "Device closed");
+ return 0;
+}
+
+/* Dump */
+static int
+hs_regex_dump(struct rte_regexdev *dev, FILE *f)
+{
+ struct hs_regex_priv *priv;
+ uint64_t total_enq = 0, total_deq = 0, total_match = 0;
+ uint32_t i;
+
+ if (dev == NULL || f == NULL)
+ return -EINVAL;
+
+ priv = dev->data->dev_private;
+ if (priv == NULL)
+ return -EINVAL;
+
+ if (priv->qps != NULL) {
+ for (i = 0; i < priv->nb_queue_pairs; i++) {
+ total_enq += priv->qps[i].qp_enqueued;
+ total_deq += priv->qps[i].qp_dequeued;
+ total_match += priv->qps[i].qp_matches;
+ }
+ }
+
+ fprintf(f, "=== Hyperscan RegEx PMD ===\n");
+ fprintf(f, " Driver: %s\n", HS_REGEX_DRIVER_NAME);
+ fprintf(f, " HS Version: %s\n", hs_version());
+ fprintf(f, " Rules: %u\n", priv->nb_rules);
+ fprintf(f, " Compiled: %s\n", priv->db_compiled ? "yes" : "no");
+ fprintf(f, " Queue Pairs: %u\n", priv->nb_queue_pairs);
+ fprintf(f, " Max Matches: %u\n", priv->max_matches);
+ fprintf(f, " Enqueued: %" PRIu64 "\n", total_enq);
+ fprintf(f, " Dequeued: %" PRIu64 "\n", total_deq);
+ fprintf(f, " Matches: %" PRIu64 "\n", total_match);
+
+ for (i = 0; i < priv->nb_rules; i++)
+ fprintf(f, " Rule[%u]: id=%u group=%u pattern=%s\n", i,
+ priv->rules[i].rule_id, priv->rules[i].group_id,
+ priv->rules[i].pattern);
+
+ return 0;
+}
+
/*
* Fast Path
*
@@ -1009,6 +1177,11 @@ static const struct rte_regexdev_ops hs_regexdev_ops = {
.dev_info_get = hs_regex_info_get,
.dev_configure = hs_regex_configure,
.dev_qp_setup = hs_regex_qp_setup,
+ .dev_start = hs_regex_start,
+ .dev_stop = hs_regex_stop,
+ .dev_close = hs_regex_close,
+ .dev_attr_get = NULL,
+ .dev_attr_set = NULL,
.dev_rule_db_update = hs_regex_rule_db_update,
.dev_rule_db_compile_activate = hs_regex_rule_db_compile_activate,
.dev_db_import = hs_regex_rule_db_import,
@@ -1017,6 +1190,8 @@ static const struct rte_regexdev_ops hs_regexdev_ops = {
.dev_xstats_get = hs_regex_xstats_get,
.dev_xstats_by_name_get = NULL,
.dev_xstats_reset = hs_regex_xstats_reset,
+ .dev_selftest = NULL,
+ .dev_dump = hs_regex_dump,
};
/* Device Lifecycle */
@@ -1072,6 +1247,7 @@ hs_regex_dev_destroy(const char *name)
priv = dev->data->dev_private;
if (priv) {
+ hs_regex_close(dev);
rte_free(priv);
dev->data->dev_private = NULL;
}
--
2.43.0
next prev parent reply other threads:[~2026-08-28 5:37 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-28 5:35 [RFC 0/7] regex/hs: introduce Hyperscan regex PMD Prudvi Deti
2026-08-28 5:35 ` [RFC 1/7] regex/hs: add driver skeleton and build integration Prudvi Deti
2026-08-28 5:35 ` [RFC 2/7] regex/hs: add device configure and queue pair setup Prudvi Deti
2026-08-28 5:35 ` [RFC 3/7] regex/hs: add rule database update and compilation Prudvi Deti
2026-08-28 5:35 ` [RFC 4/7] regex/hs: add enqueue and dequeue burst paths Prudvi Deti
2026-08-28 5:35 ` [RFC 5/7] regex/hs: add per-queue-pair extended statistics Prudvi Deti
2026-08-28 5:35 ` Prudvi Deti [this message]
2026-08-28 5:35 ` [RFC 7/7] regex/hs: add Hyperscan compile flag support Prudvi Deti
2026-08-28 16:34 ` [RFC 0/7] regex/hs: introduce Hyperscan regex PMD Stephen Hemminger
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=20260828053629.1224611-7-prudvi.deti@intel.com \
--to=prudvi.deti@intel.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=nirint.shah@intel.com \
--cc=orika@nvidia.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