[1/4] event/dlb: remove DLB V1 from build

Message ID 1614618060-12773-2-git-send-email-timothy.mcdaniel@intel.com (mailing list archive)
State Changes Requested, archived
Delegated to: Jerin Jacob
Headers
Series Remove Support For DLB V1 |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Timothy McDaniel March 1, 2021, 5 p.m. UTC
  Support for DLB v1 is being removed from dpdk in 21.05.

Signed-off-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
---
 config/rte_config.h       | 6 ------
 drivers/event/meson.build | 2 +-
 2 files changed, 1 insertion(+), 7 deletions(-)
  

Patch

diff --git a/config/rte_config.h b/config/rte_config.h
index 55a2fc50e..aedb68c42 100644
--- a/config/rte_config.h
+++ b/config/rte_config.h
@@ -138,12 +138,6 @@ 
 /* QEDE PMD defines */
 #define RTE_LIBRTE_QEDE_FW ""
 
-/* DLB PMD defines */
-#define RTE_LIBRTE_PMD_DLB_POLL_INTERVAL 1000
-#define RTE_LIBRTE_PMD_DLB_UMWAIT_CTL_STATE  0
-#undef RTE_LIBRTE_PMD_DLB_QUELL_STATS
-#define RTE_LIBRTE_PMD_DLB_SW_CREDIT_QUANTA 32
-
 /* DLB2 defines */
 #define RTE_LIBRTE_PMD_DLB2_POLL_INTERVAL 1000
 #define RTE_LIBRTE_PMD_DLB2_UMWAIT_CTL_STATE  0
diff --git a/drivers/event/meson.build b/drivers/event/meson.build
index a49288a5d..b7f9bf7c6 100644
--- a/drivers/event/meson.build
+++ b/drivers/event/meson.build
@@ -5,7 +5,7 @@  if is_windows
 	subdir_done()
 endif
 
-drivers = ['dlb', 'dlb2', 'dpaa', 'dpaa2', 'octeontx2', 'opdl', 'skeleton', 'sw',
+drivers = ['dlb2', 'dpaa', 'dpaa2', 'octeontx2', 'opdl', 'skeleton', 'sw',
 	   'dsw']
 if not (toolchain == 'gcc' and cc.version().version_compare('<4.8.6') and
 	dpdk_conf.has('RTE_ARCH_ARM64'))