DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/2] add ifc driver to meson build
@ 2018-06-13 11:32 Xiao Wang
  2018-06-13 11:32 ` [dpdk-dev] [PATCH 1/2] net/ifc: make driver name consistent Xiao Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Xiao Wang @ 2018-06-13 11:32 UTC (permalink / raw)
  To: ferruh.yigit; +Cc: dev, bruce.richardson, Xiao Wang

The first patch unifies the driver name in compiler flag, document.
The second patch adds ifc driver to meson build.

Xiao Wang (2):
  net/ifc: make driver name consistent
  net/ifc: add to meson build

 MAINTAINERS                                                       | 4 ++--
 config/common_base                                                | 4 ++--
 config/common_linuxapp                                            | 2 +-
 doc/guides/nics/{ifcvf.rst => ifc.rst}                            | 0
 doc/guides/nics/index.rst                                         | 2 +-
 drivers/net/Makefile                                              | 2 +-
 drivers/net/ifc/Makefile                                          | 8 ++++----
 drivers/net/ifc/meson.build                                       | 7 +++++++
 .../net/ifc/{rte_ifcvf_version.map => rte_pmd_ifc_version.map}    | 0
 drivers/net/meson.build                                           | 2 +-
 mk/rte.app.mk                                                     | 2 +-
 11 files changed, 20 insertions(+), 13 deletions(-)
 rename doc/guides/nics/{ifcvf.rst => ifc.rst} (100%)
 create mode 100644 drivers/net/ifc/meson.build
 rename drivers/net/ifc/{rte_ifcvf_version.map => rte_pmd_ifc_version.map} (100%)

-- 
2.15.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [dpdk-dev] [PATCH 1/2] net/ifc: make driver name consistent
  2018-06-13 11:32 [dpdk-dev] [PATCH 0/2] add ifc driver to meson build Xiao Wang
@ 2018-06-13 11:32 ` Xiao Wang
  2018-06-13 11:32 ` [dpdk-dev] [PATCH 2/2] net/ifc: add to meson build Xiao Wang
  2018-06-14 11:52 ` [dpdk-dev] [PATCH 0/2] add ifc driver " Ferruh Yigit
  2 siblings, 0 replies; 4+ messages in thread
From: Xiao Wang @ 2018-06-13 11:32 UTC (permalink / raw)
  To: ferruh.yigit; +Cc: dev, bruce.richardson, Xiao Wang

Make the compiler switch name and document name consistent as ``ifc`` to
avoid confusion. Also rename the map file to standard name for meson
build in the process.

Signed-off-by: Xiao Wang <xiao.w.wang@intel.com>
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 MAINTAINERS                                                       | 4 ++--
 config/common_base                                                | 4 ++--
 config/common_linuxapp                                            | 2 +-
 doc/guides/nics/{ifcvf.rst => ifc.rst}                            | 0
 doc/guides/nics/index.rst                                         | 2 +-
 drivers/net/Makefile                                              | 2 +-
 drivers/net/ifc/Makefile                                          | 8 ++++----
 .../net/ifc/{rte_ifcvf_version.map => rte_pmd_ifc_version.map}    | 0
 mk/rte.app.mk                                                     | 2 +-
 9 files changed, 12 insertions(+), 12 deletions(-)
 rename doc/guides/nics/{ifcvf.rst => ifc.rst} (100%)
 rename drivers/net/ifc/{rte_ifcvf_version.map => rte_pmd_ifc_version.map} (100%)

diff --git a/MAINTAINERS b/MAINTAINERS
index 4667fa7fb..d251c3f98 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -563,8 +563,8 @@ Intel ifc
 M: Xiao Wang <xiao.w.wang@intel.com>
 T: git://dpdk.org/next/dpdk-next-net-intel
 F: drivers/net/ifc/
-F: doc/guides/nics/ifcvf.rst
-F: doc/guides/nics/features/ifcvf.ini
+F: doc/guides/nics/ifc.rst
+F: doc/guides/nics/features/ifc*.ini
 
 Marvell mvpp2
 M: Tomasz Duszynski <tdu@semihalf.com>
diff --git a/config/common_base b/config/common_base
index 6b0d1cbbb..fcf3a1f6f 100644
--- a/config/common_base
+++ b/config/common_base
@@ -861,11 +861,11 @@ CONFIG_RTE_LIBRTE_VHOST_DEBUG=n
 CONFIG_RTE_LIBRTE_PMD_VHOST=n
 
 #
-# Compile IFCVF driver
+# Compile IFC driver
 # To compile, CONFIG_RTE_LIBRTE_VHOST and CONFIG_RTE_EAL_VFIO
 # should be enabled.
 #
-CONFIG_RTE_LIBRTE_IFCVF_VDPA_PMD=n
+CONFIG_RTE_LIBRTE_IFC_PMD=n
 
 #
 # Compile librte_bpf
diff --git a/config/common_linuxapp b/config/common_linuxapp
index 5c68cc0ff..daa49d4ef 100644
--- a/config/common_linuxapp
+++ b/config/common_linuxapp
@@ -15,7 +15,7 @@ CONFIG_RTE_LIBRTE_PMD_KNI=y
 CONFIG_RTE_LIBRTE_VHOST=y
 CONFIG_RTE_LIBRTE_VHOST_NUMA=y
 CONFIG_RTE_LIBRTE_PMD_VHOST=y
-CONFIG_RTE_LIBRTE_IFCVF_VDPA_PMD=y
+CONFIG_RTE_LIBRTE_IFC_PMD=y
 CONFIG_RTE_LIBRTE_PMD_AF_PACKET=y
 CONFIG_RTE_LIBRTE_PMD_TAP=y
 CONFIG_RTE_LIBRTE_AVP_PMD=y
diff --git a/doc/guides/nics/ifcvf.rst b/doc/guides/nics/ifc.rst
similarity index 100%
rename from doc/guides/nics/ifcvf.rst
rename to doc/guides/nics/ifc.rst
diff --git a/doc/guides/nics/index.rst b/doc/guides/nics/index.rst
index ddb9eb7a9..d68c5ed5e 100644
--- a/doc/guides/nics/index.rst
+++ b/doc/guides/nics/index.rst
@@ -24,7 +24,7 @@ Network Interface Controller Drivers
     enic
     fm10k
     i40e
-    ifcvf
+    ifc
     igb
     ixgbe
     intel_vf
diff --git a/drivers/net/Makefile b/drivers/net/Makefile
index 9f9da6651..1ae0eaffb 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_IFC_PMD) += ifc
 endif
 endif # $(CONFIG_RTE_LIBRTE_VHOST)
 
diff --git a/drivers/net/ifc/Makefile b/drivers/net/ifc/Makefile
index 1011995bc..39b36ae5d 100644
--- a/drivers/net/ifc/Makefile
+++ b/drivers/net/ifc/Makefile
@@ -6,7 +6,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 #
 # library name
 #
-LIB = librte_ifcvf_vdpa.a
+LIB = librte_pmd_ifc.a
 
 LDLIBS += -lpthread
 LDLIBS += -lrte_eal -lrte_pci -lrte_vhost -lrte_bus_pci
@@ -22,14 +22,14 @@ BASE_DRIVER_OBJS=$(sort $(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*.
 
 VPATH += $(SRCDIR)/base
 
-EXPORT_MAP := rte_ifcvf_version.map
+EXPORT_MAP := rte_pmd_ifc_version.map
 
 LIBABIVER := 1
 
 #
 # all source are stored in SRCS-y
 #
-SRCS-$(CONFIG_RTE_LIBRTE_IFCVF_VDPA_PMD) += ifcvf_vdpa.c
-SRCS-$(CONFIG_RTE_LIBRTE_IFCVF_VDPA_PMD) += ifcvf.c
+SRCS-$(CONFIG_RTE_LIBRTE_IFC_PMD) += ifcvf_vdpa.c
+SRCS-$(CONFIG_RTE_LIBRTE_IFC_PMD) += ifcvf.c
 
 include $(RTE_SDK)/mk/rte.lib.mk
diff --git a/drivers/net/ifc/rte_ifcvf_version.map b/drivers/net/ifc/rte_pmd_ifc_version.map
similarity index 100%
rename from drivers/net/ifc/rte_ifcvf_version.map
rename to drivers/net/ifc/rte_pmd_ifc_version.map
diff --git a/mk/rte.app.mk b/mk/rte.app.mk
index 1e32c83e7..87a0c80ff 100644
--- a/mk/rte.app.mk
+++ b/mk/rte.app.mk
@@ -165,7 +165,7 @@ _LDLIBS-$(CONFIG_RTE_LIBRTE_VIRTIO_PMD)     += -lrte_pmd_virtio
 ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y)
 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_VHOST)      += -lrte_pmd_vhost
 ifeq ($(CONFIG_RTE_EAL_VFIO),y)
-_LDLIBS-$(CONFIG_RTE_LIBRTE_IFCVF_VDPA_PMD) += -lrte_ifcvf_vdpa
+_LDLIBS-$(CONFIG_RTE_LIBRTE_IFC_PMD) += -lrte_pmd_ifc
 endif # $(CONFIG_RTE_EAL_VFIO)
 endif # $(CONFIG_RTE_LIBRTE_VHOST)
 _LDLIBS-$(CONFIG_RTE_LIBRTE_VMXNET3_PMD)    += -lrte_pmd_vmxnet3_uio
-- 
2.15.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [dpdk-dev] [PATCH 2/2] net/ifc: add to meson build
  2018-06-13 11:32 [dpdk-dev] [PATCH 0/2] add ifc driver to meson build Xiao Wang
  2018-06-13 11:32 ` [dpdk-dev] [PATCH 1/2] net/ifc: make driver name consistent Xiao Wang
@ 2018-06-13 11:32 ` Xiao Wang
  2018-06-14 11:52 ` [dpdk-dev] [PATCH 0/2] add ifc driver " Ferruh Yigit
  2 siblings, 0 replies; 4+ messages in thread
From: Xiao Wang @ 2018-06-13 11:32 UTC (permalink / raw)
  To: ferruh.yigit; +Cc: dev, bruce.richardson, Xiao Wang

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Signed-off-by: Xiao Wang <xiao.w.wang@intel.com>
---
 drivers/net/ifc/meson.build | 7 +++++++
 drivers/net/meson.build     | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)
 create mode 100644 drivers/net/ifc/meson.build

diff --git a/drivers/net/ifc/meson.build b/drivers/net/ifc/meson.build
new file mode 100644
index 000000000..a30aa09e6
--- /dev/null
+++ b/drivers/net/ifc/meson.build
@@ -0,0 +1,7 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2018 Intel Corporation
+
+allow_experimental_apis = true
+sources = files('ifcvf_vdpa.c', 'base/ifcvf.c')
+includes += include_directories('base')
+deps += 'vhost'
diff --git a/drivers/net/meson.build b/drivers/net/meson.build
index b7d00a04c..2042859c1 100644
--- a/drivers/net/meson.build
+++ b/drivers/net/meson.build
@@ -2,7 +2,7 @@
 # Copyright(c) 2017 Intel Corporation
 
 drivers = ['af_packet', 'axgbe', 'bonding', 'dpaa', 'dpaa2',
-	'e1000', 'enic', 'fm10k', 'i40e', 'ixgbe',
+	'e1000', 'enic', 'fm10k', 'i40e', 'ifc', 'ixgbe',
 	'mvpp2', 'null', 'octeontx', 'pcap', 'ring',
 	'sfc', 'thunderx', 'virtio']
 std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
-- 
2.15.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH 0/2] add ifc driver to meson build
  2018-06-13 11:32 [dpdk-dev] [PATCH 0/2] add ifc driver to meson build Xiao Wang
  2018-06-13 11:32 ` [dpdk-dev] [PATCH 1/2] net/ifc: make driver name consistent Xiao Wang
  2018-06-13 11:32 ` [dpdk-dev] [PATCH 2/2] net/ifc: add to meson build Xiao Wang
@ 2018-06-14 11:52 ` Ferruh Yigit
  2 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2018-06-14 11:52 UTC (permalink / raw)
  To: Xiao Wang; +Cc: dev, bruce.richardson

On 6/13/2018 12:32 PM, Xiao Wang wrote:
> The first patch unifies the driver name in compiler flag, document.
> The second patch adds ifc driver to meson build.
> 
> Xiao Wang (2):
>   net/ifc: make driver name consistent
>   net/ifc: add to meson build

Series applied to dpdk-next-net/master, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-06-14 11:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-13 11:32 [dpdk-dev] [PATCH 0/2] add ifc driver to meson build Xiao Wang
2018-06-13 11:32 ` [dpdk-dev] [PATCH 1/2] net/ifc: make driver name consistent Xiao Wang
2018-06-13 11:32 ` [dpdk-dev] [PATCH 2/2] net/ifc: add to meson build Xiao Wang
2018-06-14 11:52 ` [dpdk-dev] [PATCH 0/2] add ifc driver " Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).