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 C08D748B41; Tue, 18 Nov 2025 17:30:39 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F098C40674; Tue, 18 Nov 2025 17:29:43 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.14]) by mails.dpdk.org (Postfix) with ESMTP id 62AF440667 for ; Tue, 18 Nov 2025 17:29:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1763483379; x=1795019379; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=j9SgHJiGkDd2VBttVtw+GIPkAxZmalcaBq2l12Hht9k=; b=iXxhb8uDc45W4agOqVkFUOJzHXzM+qcYL7x1cl91ceR9LWfMrN/8XFt0 YkncUtuFHA96fChBWegujSqvzC66nf6XekNqCubhDSSJW7851eI1H5jkb KbJMq7tG29iBcUuHbx2uaU8sedOA5kcS9Q4auLto5utTuSKN2EtsToA7d /0wb4htuT1mt8Yx5juWuVE/7La31M+z3+csatytncb6o6PTaFeBaT6dWi WGuskwjRdtg3EtSMLbj2nc+nBLUfTXYHw8pK1Hn03AcLKbsJ1Voli00jW W/k0DIOCNWIH1lyGxUiutZ6Rpg3afRrZYKGpUfcYwqzGxr30JV+ti2ZJj Q==; X-CSE-ConnectionGUID: TvTitIl8Rsmmsi2cRMQIPg== X-CSE-MsgGUID: bVrWJ2N+R1y1towdv14Xkg== X-IronPort-AV: E=McAfee;i="6800,10657,11617"; a="65550611" X-IronPort-AV: E=Sophos;i="6.19,314,1754982000"; d="scan'208";a="65550611" Received: from fmviesa003.fm.intel.com ([10.60.135.143]) by fmvoesa108.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Nov 2025 08:29:39 -0800 X-CSE-ConnectionGUID: m+4EHhnSSmiYFYl40Ran7g== X-CSE-MsgGUID: Gbq4ycf0SYahkf7PWbHEvg== X-ExtLoop1: 1 Received: from silpixa00401119.ir.intel.com ([10.20.224.206]) by fmviesa003.fm.intel.com with ESMTP; 18 Nov 2025 08:29:38 -0800 From: Anatoly Burakov To: dev@dpdk.org Subject: [PATCH v3 09/20] vdpa/ifc: use container device assignment API Date: Tue, 18 Nov 2025 16:29:10 +0000 Message-ID: <7ac66bcd5722d2d444c494a93433aa732fab523f.1763483254.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: References: 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 The IFC vDPA driver uses VFIO group bind/unbind functionality for container device assignment purposes. Use the new container device assignment API instead to provide clearer semantics. Signed-off-by: Anatoly Burakov --- drivers/vdpa/ifc/ifcvf_vdpa.c | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/drivers/vdpa/ifc/ifcvf_vdpa.c b/drivers/vdpa/ifc/ifcvf_vdpa.c index f319d455ba..6f1c050787 100644 --- a/drivers/vdpa/ifc/ifcvf_vdpa.c +++ b/drivers/vdpa/ifc/ifcvf_vdpa.c @@ -174,28 +174,19 @@ ifcvf_vfio_setup(struct ifcvf_internal *internal) { struct rte_pci_device *dev = internal->pdev; char devname[RTE_DEV_NAME_MAX_LEN] = {0}; - int iommu_group_num; - int i, ret; + int i; internal->vfio_dev_fd = -1; - internal->vfio_group_fd = -1; internal->vfio_container_fd = -1; rte_pci_device_name(&dev->addr, devname, RTE_DEV_NAME_MAX_LEN); - ret = rte_vfio_get_group_num(rte_pci_get_sysfs_path(), devname, - &iommu_group_num); - if (ret <= 0) { - DRV_LOG(ERR, "%s failed to get IOMMU group", devname); - return -1; - } internal->vfio_container_fd = rte_vfio_container_create(); if (internal->vfio_container_fd < 0) return -1; - internal->vfio_group_fd = rte_vfio_container_group_bind( - internal->vfio_container_fd, iommu_group_num); - if (internal->vfio_group_fd < 0) + if (rte_vfio_container_assign_device(internal->vfio_container_fd, + rte_pci_get_sysfs_path(), devname) < 0) goto err; if (rte_pci_map_device(dev)) -- 2.47.3