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 3590442C46; Wed, 7 Jun 2023 06:01:06 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 415D842D7C; Wed, 7 Jun 2023 06:00:28 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id CADD442D42 for ; Wed, 7 Jun 2023 06:00:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1686110423; x=1717646423; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=JXh/wlQFw8fp6N8uGAnSg/s9CS3hV2TY2lIg7fI74Is=; b=FwlVTWc0QShzHqz/A/LtQEfoPm6uSX5llDvFbceGQUf21mEWEw6ALdOH jWJV9Tf901a2GrcwBWqjjfBpjO+z4p6ibzKd0z6zAkLOZFw6U7k/2NME3 myMjRbdVgqkX87ar1rBH/nVZaYxYMh0LmX613SKKFm/akIlLU5wp4U8VY H8O2ACLMEnxnCkFE0L9vK+6c0OUSes95eGCkXr60XJRbIGmkL+hJOPkYM dZNUwlDCVtfRblgtN38nCU8zNEdyoSNg2yXa1pG2grP9SidjpCMkvMSCV sMurTV2g3CFbyjKu3eUFcaqKTaU99UwfMK5A3Uv/PMeVu7XrxP2C+2rS9 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10733"; a="359336666" X-IronPort-AV: E=Sophos;i="6.00,222,1681196400"; d="scan'208";a="359336666" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Jun 2023 21:00:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10733"; a="686759315" X-IronPort-AV: E=Sophos;i="6.00,222,1681196400"; d="scan'208";a="686759315" Received: from dpdk-zhirun-lmm.sh.intel.com ([10.67.119.94]) by orsmga006.jf.intel.com with ESMTP; 06 Jun 2023 21:00:19 -0700 From: Zhirun Yan To: dev@dpdk.org, jerinj@marvell.com, kirankumark@marvell.com, ndabilpuram@marvell.com, stephen@networkplumber.org, pbhagavatula@marvell.com, jerinjacobk@gmail.com Cc: cunming.liang@intel.com, haiyue.wang@intel.com, mattias.ronnblom@ericsson.com, Zhirun Yan Subject: [PATCH v9 11/17] graph: enable create and destroy graph scheduling workqueue Date: Wed, 7 Jun 2023 11:51:38 +0800 Message-Id: <20230607035144.1214492-12-zhirun.yan@intel.com> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20230607035144.1214492-1-zhirun.yan@intel.com> References: <20230606144746.708388-1-zhirun.yan@intel.com> <20230607035144.1214492-1-zhirun.yan@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 This patch enables to create and destroy scheduling workqueue into common graph operations. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/graph/graph.c b/lib/graph/graph.c index 8307ff079c..18318b5745 100644 --- a/lib/graph/graph.c +++ b/lib/graph/graph.c @@ -449,6 +449,11 @@ rte_graph_destroy(rte_graph_t id) while (graph != NULL) { tmp = STAILQ_NEXT(graph, next); if (graph->id == id) { + /* Destroy the schedule work queue if has */ + if (rte_graph_worker_model_get(graph->graph) == + RTE_GRAPH_MODEL_MCORE_DISPATCH) + graph_sched_wq_destroy(graph); + /* Call fini() of the all the nodes in the graph */ graph_node_fini(graph); /* Destroy graph fast path memory */ @@ -522,6 +527,11 @@ graph_clone(struct graph *parent_graph, const char *name, struct rte_graph_param /* Clone the graph model */ graph->graph->model = parent_graph->graph->model; + /* Create the graph schedule work queue */ + if (rte_graph_worker_model_get(graph->graph) == RTE_GRAPH_MODEL_MCORE_DISPATCH && + graph_sched_wq_create(graph, parent_graph, prm)) + goto graph_mem_destroy; + /* Call init() of the all the nodes in the graph */ if (graph_node_init(graph)) goto graph_mem_destroy; -- 2.37.2