From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (xvm-189-124.dc0.ghst.net [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7ED44A0524; Fri, 8 Jan 2021 14:53:07 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EC3EE140FC5; Fri, 8 Jan 2021 14:53:06 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id A2E37140FC3 for ; Fri, 8 Jan 2021 14:53:05 +0100 (CET) IronPort-SDR: zceR+5FeVJPp7YK7yBnymme2Szivn8ak5wFm+phMoIlulSA+B1HEi1b3I4kLlhp8m7SVHMvfIy aymqHl8HlspA== X-IronPort-AV: E=McAfee;i="6000,8403,9857"; a="175018108" X-IronPort-AV: E=Sophos;i="5.79,331,1602572400"; d="scan'208";a="175018108" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jan 2021 05:53:04 -0800 IronPort-SDR: X2FVKWAGOVCVYsYXMHAwxI30eEQG8nqG3vFzT3x9/p/HP0FvS+OjywhRO5JGF6NtpZDm1DPm4N pHB1KiqyjW2g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,331,1602572400"; d="scan'208";a="497859124" Received: from bmca4bf01706bbf.iind.intel.com (HELO localhost.localdomain) ([10.190.213.111]) by orsmga004.jf.intel.com with ESMTP; 08 Jan 2021 05:53:02 -0800 From: Kumar Amber To: dev@dpdk.org Date: Fri, 8 Jan 2021 19:14:56 +0530 Message-Id: <20210108134456.636211-1-kumar.amber@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210107122312.564619-1-kumar.amber@intel.com> References: <20210107122312.564619-1-kumar.amber@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v8] raw/ioat: add secondary process support 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 Sender: "dev" Add support for secondary processes in ioat devices. The update allocates a memzone for a primary process or returns it in a secondary process. Signed-off-by: Kumar Amber --- v5 * add error check for memzone lookup v6 * fix compilation v7 * include dev ops for secondary v8 * fix wrong memzone alloaction --- drivers/raw/ioat/ioat_common.c | 16 ++++++++++++++++ drivers/raw/ioat/ioat_rawdev.c | 15 +++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/drivers/raw/ioat/ioat_common.c b/drivers/raw/ioat/ioat_common.c index 142e171bc9..da464181a5 100644 --- a/drivers/raw/ioat/ioat_common.c +++ b/drivers/raw/ioat/ioat_common.c @@ -215,14 +215,30 @@ idxd_rawdev_create(const char *name, struct rte_device *dev, goto cleanup; } + /* Allocate memory for the primary process or else return the memory + * of primary memzone for the secondary process. + */ snprintf(mz_name, sizeof(mz_name), "rawdev%u_private", rawdev->dev_id); mz = rte_memzone_reserve(mz_name, sizeof(struct idxd_rawdev), dev->numa_node, RTE_MEMZONE_IOVA_CONTIG); + if (rte_eal_process_type() == RTE_PROC_SECONDARY) { + mz = rte_memzone_lookup(mz_name); + if (mz == NULL) { + IOAT_PMD_ERR("Unable lookup memzone for private data\n"); + ret = -ENOMEM; + goto cleanup; + } + rawdev->dev_private = mz->addr; + rawdev->dev_ops = ops; + rawdev->device = dev; + return 0; + } if (mz == NULL) { IOAT_PMD_ERR("Unable to reserve memzone for private data\n"); ret = -ENOMEM; goto cleanup; } + rawdev->dev_private = mz->addr; rawdev->dev_ops = ops; rawdev->device = dev; diff --git a/drivers/raw/ioat/ioat_rawdev.c b/drivers/raw/ioat/ioat_rawdev.c index 2c88b4369f..922fa20e32 100644 --- a/drivers/raw/ioat/ioat_rawdev.c +++ b/drivers/raw/ioat/ioat_rawdev.c @@ -165,9 +165,24 @@ ioat_rawdev_create(const char *name, struct rte_pci_device *dev) goto cleanup; } + /* Allocate memory for the primary process or else return the memory + * of primary memzone for the secondary process. + */ snprintf(mz_name, sizeof(mz_name), "rawdev%u_private", rawdev->dev_id); mz = rte_memzone_reserve(mz_name, sizeof(struct rte_ioat_rawdev), dev->device.numa_node, RTE_MEMZONE_IOVA_CONTIG); + if (rte_eal_process_type() == RTE_PROC_SECONDARY) { + mz = rte_memzone_lookup(mz_name); + if (mz == NULL) { + IOAT_PMD_ERR("Unable lookup memzone for private data\n"); + ret = -ENOMEM; + goto cleanup; + } + rawdev->dev_private = mz->addr; + rawdev->dev_ops = &ioat_rawdev_ops; + rawdev->device = &dev->device; + return 0; + } if (mz == NULL) { IOAT_PMD_ERR("Unable to reserve memzone for private data\n"); ret = -ENOMEM; -- 2.25.1