From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH v2 08/15] net/ifc: rename to ifcvf Date: Fri, 8 Jun 2018 22:20:41 +0100 Message-ID: <20180608212048.67261-9-bruce.richardson@intel.com> References: <20180517201526.28658-1-bruce.richardson@intel.com> <20180608212048.67261-1-bruce.richardson@intel.com> Cc: Bruce Richardson , Xiao Wang To: dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 464C91D063 for ; Fri, 8 Jun 2018 23:21:13 +0200 (CEST) In-Reply-To: <20180608212048.67261-1-bruce.richardson@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" All files in the directory and the resulting driver have prefix of ifcvf, not just ifc, so rename directory for accuracy. Also rename the map file to standard name for meson build in the process. CC: Xiao Wang Signed-off-by: Bruce Richardson --- MAINTAINERS | 4 ++-- drivers/net/Makefile | 2 +- drivers/net/{ifc => ifcvf}/Makefile | 2 +- drivers/net/{ifc => ifcvf}/base/ifcvf.c | 0 drivers/net/{ifc => ifcvf}/base/ifcvf.h | 0 drivers/net/{ifc => ifcvf}/base/ifcvf_osdep.h | 0 drivers/net/{ifc => ifcvf}/ifcvf_vdpa.c | 0 .../rte_ifcvf_version.map => ifcvf/rte_pmd_ifcvf_version.map} | 0 8 files changed, 4 insertions(+), 4 deletions(-) rename drivers/net/{ifc => ifcvf}/Makefile (94%) rename drivers/net/{ifc => ifcvf}/base/ifcvf.c (100%) rename drivers/net/{ifc => ifcvf}/base/ifcvf.h (100%) rename drivers/net/{ifc => ifcvf}/base/ifcvf_osdep.h (100%) rename drivers/net/{ifc => ifcvf}/ifcvf_vdpa.c (100%) rename drivers/net/{ifc/rte_ifcvf_version.map => ifcvf/rte_pmd_ifcvf_version.map} (100%) diff --git a/MAINTAINERS b/MAINTAINERS index 4667fa7fb..4f6055590 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -559,10 +559,10 @@ T: git://dpdk.org/next/dpdk-next-net-intel F: drivers/net/avf/ F: doc/guides/nics/features/avf*.ini -Intel ifc +Intel ifcvf M: Xiao Wang T: git://dpdk.org/next/dpdk-next-net-intel -F: drivers/net/ifc/ +F: drivers/net/ifcvf/ F: doc/guides/nics/ifcvf.rst F: doc/guides/nics/features/ifcvf.ini diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 9f9da6651..9308f9a7b 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -59,7 +59,7 @@ endif # $(CONFIG_RTE_LIBRTE_SCHED) ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y) DIRS-$(CONFIG_RTE_LIBRTE_PMD_VHOST) += vhost ifeq ($(CONFIG_RTE_EAL_VFIO),y) -DIRS-$(CONFIG_RTE_LIBRTE_IFCVF_VDPA_PMD) += ifc +DIRS-$(CONFIG_RTE_LIBRTE_IFCVF_VDPA_PMD) += ifcvf endif endif # $(CONFIG_RTE_LIBRTE_VHOST) diff --git a/drivers/net/ifc/Makefile b/drivers/net/ifcvf/Makefile similarity index 94% rename from drivers/net/ifc/Makefile rename to drivers/net/ifcvf/Makefile index 1011995bc..a022faaad 100644 --- a/drivers/net/ifc/Makefile +++ b/drivers/net/ifcvf/Makefile @@ -22,7 +22,7 @@ BASE_DRIVER_OBJS=$(sort $(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*. VPATH += $(SRCDIR)/base -EXPORT_MAP := rte_ifcvf_version.map +EXPORT_MAP := rte_pmd_ifcvf_version.map LIBABIVER := 1 diff --git a/drivers/net/ifc/base/ifcvf.c b/drivers/net/ifcvf/base/ifcvf.c similarity index 100% rename from drivers/net/ifc/base/ifcvf.c rename to drivers/net/ifcvf/base/ifcvf.c diff --git a/drivers/net/ifc/base/ifcvf.h b/drivers/net/ifcvf/base/ifcvf.h similarity index 100% rename from drivers/net/ifc/base/ifcvf.h rename to drivers/net/ifcvf/base/ifcvf.h diff --git a/drivers/net/ifc/base/ifcvf_osdep.h b/drivers/net/ifcvf/base/ifcvf_osdep.h similarity index 100% rename from drivers/net/ifc/base/ifcvf_osdep.h rename to drivers/net/ifcvf/base/ifcvf_osdep.h diff --git a/drivers/net/ifc/ifcvf_vdpa.c b/drivers/net/ifcvf/ifcvf_vdpa.c similarity index 100% rename from drivers/net/ifc/ifcvf_vdpa.c rename to drivers/net/ifcvf/ifcvf_vdpa.c diff --git a/drivers/net/ifc/rte_ifcvf_version.map b/drivers/net/ifcvf/rte_pmd_ifcvf_version.map similarity index 100% rename from drivers/net/ifc/rte_ifcvf_version.map rename to drivers/net/ifcvf/rte_pmd_ifcvf_version.map -- 2.17.1