bond: move to drivers/net/
Move bonded ethdev pmd to drivers/net Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: John McNamara <john.mcnamara@intel.com> Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
df65e967a8
commit
3eb6bdd89e
@ -192,7 +192,7 @@ Drivers
|
||||
|
||||
Link bonding
|
||||
M: Declan Doherty <declan.doherty@intel.com>
|
||||
F: lib/librte_pmd_bond/
|
||||
F: drivers/net/bonding/
|
||||
F: doc/guides/prog_guide/link_bonding_poll_mode_drv_lib.rst
|
||||
F: app/test/test_link_bonding*
|
||||
F: examples/bond/
|
||||
|
@ -30,6 +30,7 @@
|
||||
|
||||
PROJECT_NAME = DPDK
|
||||
INPUT = doc/api/doxy-api-index.md \
|
||||
drivers/net/bonding \
|
||||
lib/librte_eal/common/include \
|
||||
lib/librte_eal/common/include/generic \
|
||||
lib/librte_acl \
|
||||
@ -50,7 +51,6 @@ INPUT = doc/api/doxy-api-index.md \
|
||||
lib/librte_pipeline \
|
||||
lib/librte_port \
|
||||
lib/librte_power \
|
||||
lib/librte_pmd_bond \
|
||||
lib/librte_reorder \
|
||||
lib/librte_ring \
|
||||
lib/librte_sched \
|
||||
|
@ -79,7 +79,6 @@ The lib directory contains::
|
||||
+-- librte_mempool # memory pool manager (fixedsized objects)
|
||||
+-- librte_meter # QoS metering library
|
||||
+-- librte_net # various IP-related headers
|
||||
+-- librte_pmd_bond # bonding poll mode driver
|
||||
+-- librte_pmd_e1000 # 1GbE poll mode drivers (igb and em)
|
||||
+-- librte_pmd_fm10k # Host interface PMD driver for FM10000 Series
|
||||
+-- librte_pmd_ixgbe # 10GbE poll mode driver
|
||||
@ -107,6 +106,7 @@ The drivers directory has a net subdirectory which contains::
|
||||
|
||||
drivers/net
|
||||
+-- af_packet # poll mode driver based on linux af_packet
|
||||
+-- bonding # bonding poll mode driver
|
||||
|
||||
Applications
|
||||
------------
|
||||
|
@ -32,6 +32,7 @@
|
||||
include $(RTE_SDK)/mk/rte.vars.mk
|
||||
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_PMD_AF_PACKET) += af_packet
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_PMD_BOND) += bonding
|
||||
|
||||
include $(RTE_SDK)/mk/rte.sharelib.mk
|
||||
include $(RTE_SDK)/mk/rte.subdir.mk
|
||||
|
@ -47,7 +47,6 @@ DIRS-$(CONFIG_RTE_LIBRTE_I40E_PMD) += librte_pmd_i40e
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += librte_pmd_fm10k
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += librte_pmd_mlx4
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += librte_pmd_enic
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_PMD_BOND) += librte_pmd_bond
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_PMD_RING) += librte_pmd_ring
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_PMD_PCAP) += librte_pmd_pcap
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_VIRTIO_PMD) += librte_pmd_virtio
|
||||
|
Loading…
Reference in New Issue
Block a user