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 49C8CA00C4; Thu, 4 Aug 2022 19:01:10 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EBA6842C59; Thu, 4 Aug 2022 18:59:13 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 5E33242C56 for ; Thu, 4 Aug 2022 18:59:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1659632351; x=1691168351; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=yLmVT3oKQc6Iv9Dh9d5UBt+0E2mfKNBnG4uzcmwVsEA=; b=jKXchup4MSygkBj34HkcCCfWfy1HYJtv8ekGtwDSrjLIJ0rZwnYkLThK e9imOFvliakOz6rZiq99NkAW+nT8GZugCAlLIIUxadLv2FVsSr+45T+FR GNKChXwuQXDYQ/qoVL/XRVdUC7bRgM5VUr8P+mrzEiuva7Bm6heE++N+H 28d531NPurbgp3qg610qfsxV9BAp1hppWBgR0nq+W6hxoSWKaXHFSzuoS BbaS2dSg9cn39EYJKxxq6JdXK+HMxOatH5RFtu6FzVQzzZotSHABeJmlf m/DB6+t7Opip6BEtLCyhc1+Gek5Mco6MKwyvDL86/IkYis5d02rYyHALQ A==; X-IronPort-AV: E=McAfee;i="6400,9594,10429"; a="290000184" X-IronPort-AV: E=Sophos;i="5.93,216,1654585200"; d="scan'208";a="290000184" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2022 09:59:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,216,1654585200"; d="scan'208";a="636163251" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.223.157]) by orsmga001.jf.intel.com with ESMTP; 04 Aug 2022 09:59:09 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Cc: jasvinder.singh@intel.com, yogesh.jangra@intel.com Subject: [PATCH 16/21] net/softnic: add pipeline commit and abort CLI commands Date: Thu, 4 Aug 2022 16:58:34 +0000 Message-Id: <20220804165839.1074817-17-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220804165839.1074817-1-cristian.dumitrescu@intel.com> References: <20220804165839.1074817-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 CLI commands for pipeline table update commit and abort. Signed-off-by: Cristian Dumitrescu Signed-off-by: Yogesh Jangra --- drivers/net/softnic/rte_eth_softnic_cli.c | 70 +++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/drivers/net/softnic/rte_eth_softnic_cli.c b/drivers/net/softnic/rte_eth_softnic_cli.c index 5710ea6a73..064a1906d9 100644 --- a/drivers/net/softnic/rte_eth_softnic_cli.c +++ b/drivers/net/softnic/rte_eth_softnic_cli.c @@ -1345,6 +1345,66 @@ cmd_softnic_pipeline_learner_default(struct pmd_internals *softnic, fclose(file); } +/** + * pipeline commit + */ +static void +cmd_softnic_pipeline_commit(struct pmd_internals *softnic, + char **tokens, + uint32_t n_tokens, + char *out, + size_t out_size) +{ + struct pipeline *p; + char *pipeline_name; + int status; + + if (n_tokens != 3) { + snprintf(out, out_size, MSG_ARG_MISMATCH, tokens[0]); + return; + } + + pipeline_name = tokens[1]; + p = softnic_pipeline_find(softnic, pipeline_name); + if (!p) { + snprintf(out, out_size, MSG_ARG_INVALID, "pipeline_name"); + return; + } + + status = rte_swx_ctl_pipeline_commit(p->ctl, 1); + if (status) + snprintf(out, out_size, "Commit failed. " + "Use \"commit\" to retry or \"abort\" to discard the pending work.\n"); +} + +/** + * pipeline abort + */ +static void +cmd_softnic_pipeline_abort(struct pmd_internals *softnic, + char **tokens, + uint32_t n_tokens, + char *out, + size_t out_size) +{ + struct pipeline *p; + char *pipeline_name; + + if (n_tokens != 3) { + snprintf(out, out_size, MSG_ARG_MISMATCH, tokens[0]); + return; + } + + pipeline_name = tokens[1]; + p = softnic_pipeline_find(softnic, pipeline_name); + if (!p) { + snprintf(out, out_size, MSG_ARG_INVALID, "pipeline_name"); + return; + } + + rte_swx_ctl_pipeline_abort(p->ctl); +} + /** * thread pipeline enable [ period ] */ @@ -1571,6 +1631,16 @@ softnic_cli_process(char *in, char *out, size_t out_size, void *arg) out, out_size); return; } + + if ((n_tokens >= 3) && !strcmp(tokens[2], "commit")) { + cmd_softnic_pipeline_commit(softnic, tokens, n_tokens, out, out_size); + return; + } + + if ((n_tokens >= 3) && !strcmp(tokens[2], "abort")) { + cmd_softnic_pipeline_abort(softnic, tokens, n_tokens, out, out_size); + return; + } } if (strcmp(tokens[0], "thread") == 0) { -- 2.34.1