From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B41FCA0555; Fri, 26 Aug 2022 13:21:42 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B20FF427F6; Fri, 26 Aug 2022 13:21:34 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id A3F0940143 for ; Fri, 26 Aug 2022 13:21:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1661512891; x=1693048891; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=a+ZGfVh0lwX8bp1pVauqmtyRwEJ5vFF6+GqztZwiTSA=; b=KffN+WytXden/uEkaMdiGDVevkIOiXbDL/R+RgariS3z3hfe8VGF63Aq sW+Ot1nqgPrvnZpsnTJcUkFu9DG0CB7QJv6QkMhf2KtU4DNKfLrRgLOf+ A5Wm7famHpuLoLWcNFJAvHKBYzVwVw7km6wFQ1f/aOmb9u6oKSFVfictg XuxADvc6rZ4JiVQjuGolU57JA/znxc+vUTgyWdERHbHtTm4MyoZGESY3F 9LYrTzxyHni7cBOdZBxmNv0gZEQpplG9zEjqouc2YuIY0Akc8uRG2W8OA tnPmCerHYNfA9dKs9sANEkNROvXfIj1TV/pi+4McsCkvMJ2lkhnZlVpD7 Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10450"; a="295264073" X-IronPort-AV: E=Sophos;i="5.93,265,1654585200"; d="scan'208";a="295264073" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Aug 2022 04:21:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,265,1654585200"; d="scan'208";a="678834795" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com.) ([10.237.223.157]) by fmsmga004.fm.intel.com with ESMTP; 26 Aug 2022 04:21:30 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Subject: [PATCH V2 2/7] table: add entry ID for learner tables Date: Fri, 26 Aug 2022 11:21:22 +0000 Message-Id: <20220826112127.1580044-3-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220826112127.1580044-1-cristian.dumitrescu@intel.com> References: <20220826103605.1579589-1-cristian.dumitrescu@intel.com> <20220826112127.1580044-1-cristian.dumitrescu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add support for unique ID for each learner table entry. The entry ID is retrieved as part of the learner table lookup operation and is saved by the pipeline for later use. Signed-off-by: Cristian Dumitrescu --- lib/pipeline/rte_swx_pipeline.c | 8 ++++++++ lib/table/rte_swx_table_learner.c | 13 ++++++++++++- lib/table/rte_swx_table_learner.h | 12 ++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/lib/pipeline/rte_swx_pipeline.c b/lib/pipeline/rte_swx_pipeline.c index e271cc50eb..80108b8916 100644 --- a/lib/pipeline/rte_swx_pipeline.c +++ b/lib/pipeline/rte_swx_pipeline.c @@ -2556,6 +2556,7 @@ instr_learner_exec(struct rte_swx_pipeline *p) struct learner_statistics *stats = &p->learner_stats[learner_id]; uint64_t action_id, n_pkts_hit, n_pkts_action, time; uint8_t *action_data; + size_t entry_id; int done, hit; /* Table. */ @@ -2567,6 +2568,7 @@ instr_learner_exec(struct rte_swx_pipeline *p) l->key, &action_id, &action_data, + &entry_id, &hit); if (!done) { /* Thread. */ @@ -2580,6 +2582,7 @@ instr_learner_exec(struct rte_swx_pipeline *p) action_id = hit ? action_id : ts->default_action_id; action_data = hit ? action_data : ts->default_action_data; + entry_id = hit ? (1 + entry_id) : 0; n_pkts_hit = stats->n_pkts_hit[hit]; n_pkts_action = stats->n_pkts_action[action_id]; @@ -2591,6 +2594,7 @@ instr_learner_exec(struct rte_swx_pipeline *p) t->action_id = action_id; t->structs[0] = action_data; + t->entry_id = entry_id; t->hit = hit; t->learner_id = learner_id; t->time = time; @@ -2613,6 +2617,7 @@ instr_learner_af_exec(struct rte_swx_pipeline *p) struct learner_statistics *stats = &p->learner_stats[learner_id]; uint64_t action_id, n_pkts_hit, n_pkts_action, time; uint8_t *action_data; + size_t entry_id; action_func_t action_func; int done, hit; @@ -2625,6 +2630,7 @@ instr_learner_af_exec(struct rte_swx_pipeline *p) l->key, &action_id, &action_data, + &entry_id, &hit); if (!done) { /* Thread. */ @@ -2638,6 +2644,7 @@ instr_learner_af_exec(struct rte_swx_pipeline *p) action_id = hit ? action_id : ts->default_action_id; action_data = hit ? action_data : ts->default_action_data; + entry_id = hit ? (1 + entry_id) : 0; action_func = p->action_funcs[action_id]; n_pkts_hit = stats->n_pkts_hit[hit]; n_pkts_action = stats->n_pkts_action[action_id]; @@ -2650,6 +2657,7 @@ instr_learner_af_exec(struct rte_swx_pipeline *p) t->action_id = action_id; t->structs[0] = action_data; + t->entry_id = entry_id; t->hit = hit; t->learner_id = learner_id; t->time = time; diff --git a/lib/table/rte_swx_table_learner.c b/lib/table/rte_swx_table_learner.c index c1045a1082..996fd3de5b 100644 --- a/lib/table/rte_swx_table_learner.c +++ b/lib/table/rte_swx_table_learner.c @@ -72,6 +72,7 @@ table_keycpy(void *dst, void *src, uint32_t n_bytes) } #define TABLE_KEYS_PER_BUCKET 4 +#define TABLE_KEYS_PER_BUCKET_LOG2 2 #define TABLE_BUCKET_USEFUL_SIZE \ (TABLE_KEYS_PER_BUCKET * (sizeof(uint32_t) + sizeof(uint32_t) + sizeof(uint8_t))) @@ -263,6 +264,14 @@ table_bucket_data_get(struct table *t, struct table_bucket *b, size_t bucket_key (bucket_key_pos << t->params.data_size_log2)]; } +static inline size_t +table_entry_id_get(struct table *t, struct table_bucket *b, size_t bucket_key_pos) +{ + size_t bucket_id = ((uint8_t *)b - t->buckets) >> t->params.bucket_size_log2; + + return (bucket_id << TABLE_KEYS_PER_BUCKET_LOG2) + bucket_key_pos; +} + uint64_t rte_swx_table_learner_footprint_get(struct rte_swx_table_learner_params *params) { @@ -332,7 +341,7 @@ struct mailbox { /* Writer: lookup state 0. Reader(s): lookup state 1, add(). */ uint32_t input_sig; - /* Writer: lookup state 1. Reader(s): add(). */ + /* Writer: lookup state 0. Reader(s): lookup state 1, add(). */ uint8_t *input_key; /* Writer: lookup state 1. Reader(s): add(). Values: 0 = miss; 1 = hit. */ @@ -358,6 +367,7 @@ rte_swx_table_learner_lookup(void *table, uint8_t **key, uint64_t *action_id, uint8_t **action_data, + size_t *entry_id, int *hit) { struct table *t = table; @@ -412,6 +422,7 @@ rte_swx_table_learner_lookup(void *table, *action_id = data[0]; *action_data = (uint8_t *)&data[1]; + *entry_id = table_entry_id_get(t, b, i); *hit = 1; return 1; } diff --git a/lib/table/rte_swx_table_learner.h b/lib/table/rte_swx_table_learner.h index d72b6b88ff..62cac3f225 100644 --- a/lib/table/rte_swx_table_learner.h +++ b/lib/table/rte_swx_table_learner.h @@ -173,6 +173,14 @@ rte_swx_table_learner_timeout_update(void *table, * possibly an associated key add operation. The mailbox mechanism allows for multiple concurrent * table key lookup and add operations into the same table. * + * The table entry consists of the action ID and the action data. Each table entry is unique, even + * though different table entries can have identical content, i.e. same values for the action ID and + * the action data. The table entry ID is also returned by the table lookup operation. It can be + * used to index into an external array of resources such as counters, registers or meters to + * identify the resource directly associated with the current table entry with no need to store the + * corresponding index into the table entry. The index of the external resource is thus + * auto-generated instead of being stored in the table entry. + * * @param[in] table * Table handle. * @param[in] mailbox @@ -187,6 +195,9 @@ rte_swx_table_learner_timeout_update(void *table, * @param[out] action_data * Action data for the *action_id* action. Must point to a valid array of table *action_data_size* * bytes. Only valid when the function returns 1 and *hit* is set to true. + * @param[out] entry_id + * Table entry unique ID. Must point to a valid 32-bit variable. Only valid when the function + * returns 1 and *hit* is set to true. * @param[out] hit * Only valid when the function returns 1. Set to non-zero (true) on table lookup hit and to zero * (false) on table lookup miss. @@ -202,6 +213,7 @@ rte_swx_table_learner_lookup(void *table, uint8_t **key, uint64_t *action_id, uint8_t **action_data, + size_t *entry_id, int *hit); /** -- 2.34.1