patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 1/3] net/i40e: disable vector PMD for i686
       [not found] <20170424145848.18544-1-qi.z.zhang@intel.com>
@ 2017-04-24 14:58 ` Qi Zhang
  2017-04-24 14:58 ` [dpdk-stable] [PATCH 2/3] net/ixgbe: " Qi Zhang
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Qi Zhang @ 2017-04-24 14:58 UTC (permalink / raw)
  To: jingjing.wu, wenzhuo.lu, helin.zhang, jing.d.chen; +Cc: dev, Qi Zhang, stable

Vector PMD does not support i686, it should not be compiled

Fixes: 8e109464c02292 ("i40e: allow vector Rx and Tx usage")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/i40e/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/i40e/Makefile b/drivers/net/i40e/Makefile
index 56f210d..0a3824e 100644
--- a/drivers/net/i40e/Makefile
+++ b/drivers/net/i40e/Makefile
@@ -101,7 +101,7 @@ ifeq ($(CONFIG_RTE_ARCH_ARM64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_INC_VECTOR) += i40e_rxtx_vec_neon.c
 else ifeq ($(CONFIG_RTE_ARCH_PPC_64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_INC_VECTOR) += i40e_rxtx_vec_altivec.c
-else
+else ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_INC_VECTOR) += i40e_rxtx_vec_sse.c
 endif
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_PMD) += i40e_ethdev_vf.c
-- 
2.9.3

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

* [dpdk-stable] [PATCH 2/3] net/ixgbe: disable vector PMD for i686
       [not found] <20170424145848.18544-1-qi.z.zhang@intel.com>
  2017-04-24 14:58 ` [dpdk-stable] [PATCH 1/3] net/i40e: disable vector PMD for i686 Qi Zhang
@ 2017-04-24 14:58 ` Qi Zhang
  2017-04-24 14:58 ` [dpdk-stable] [PATCH 3/3] net/fm10k: " Qi Zhang
       [not found] ` <20170427070107.65465-1-qi.z.zhang@intel.com>
  3 siblings, 0 replies; 6+ messages in thread
From: Qi Zhang @ 2017-04-24 14:58 UTC (permalink / raw)
  To: jingjing.wu, wenzhuo.lu, helin.zhang, jing.d.chen; +Cc: dev, Qi Zhang, stable

Vector PMD does not support i686, so do not compile it.

Fixes: 429c6d86b371 ("ixgbe: prepare for vector pmd")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/ixgbe/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ixgbe/Makefile b/drivers/net/ixgbe/Makefile
index 0a6b7f2..8261639 100644
--- a/drivers/net/ixgbe/Makefile
+++ b/drivers/net/ixgbe/Makefile
@@ -112,7 +112,7 @@ SRCS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += ixgbe_pf.c
 SRCS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += ixgbe_flow.c
 ifeq ($(CONFIG_RTE_ARCH_ARM64),y)
 SRCS-$(CONFIG_RTE_IXGBE_INC_VECTOR) += ixgbe_rxtx_vec_neon.c
-else
+else ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
 SRCS-$(CONFIG_RTE_IXGBE_INC_VECTOR) += ixgbe_rxtx_vec_sse.c
 endif
 
-- 
2.9.3

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

* [dpdk-stable] [PATCH 3/3] net/fm10k: disable vector PMD for i686
       [not found] <20170424145848.18544-1-qi.z.zhang@intel.com>
  2017-04-24 14:58 ` [dpdk-stable] [PATCH 1/3] net/i40e: disable vector PMD for i686 Qi Zhang
  2017-04-24 14:58 ` [dpdk-stable] [PATCH 2/3] net/ixgbe: " Qi Zhang
@ 2017-04-24 14:58 ` Qi Zhang
       [not found] ` <20170427070107.65465-1-qi.z.zhang@intel.com>
  3 siblings, 0 replies; 6+ messages in thread
From: Qi Zhang @ 2017-04-24 14:58 UTC (permalink / raw)
  To: jingjing.wu, wenzhuo.lu, helin.zhang, jing.d.chen; +Cc: dev, Qi Zhang, stable

Vector PMD does not support i686, it should not be compiled.

Fixes: a6ce64a97520 ("fm10k: introduce vector driver")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/fm10k/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/fm10k/Makefile b/drivers/net/fm10k/Makefile
index a8e8136..458ad66 100644
--- a/drivers/net/fm10k/Makefile
+++ b/drivers/net/fm10k/Makefile
@@ -95,6 +95,8 @@ SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_common.c
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_mbx.c
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_vf.c
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_api.c
+ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR) += fm10k_rxtx_vec.c
+endif
 
 include $(RTE_SDK)/mk/rte.lib.mk
-- 
2.9.3

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

* [dpdk-stable] [PATCH 1/3 v2] net/i40e: disable vector PMD for i686
       [not found] ` <20170427070107.65465-1-qi.z.zhang@intel.com>
@ 2017-04-27  7:01   ` Qi Zhang
  2017-04-27  7:01   ` [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: " Qi Zhang
  2017-04-27  7:01   ` [dpdk-stable] [PATCH 3/3 v2] net/fm10k: " Qi Zhang
  2 siblings, 0 replies; 6+ messages in thread
From: Qi Zhang @ 2017-04-27  7:01 UTC (permalink / raw)
  To: jingjing.wu, helin.zhang, wenzhuo.lu, jing.d.chen, ferruh.yigit
  Cc: dev, Qi Zhang, stable

Vector PMD does not support i686, it should not be compiled

Fixes: 8e109464c02292 ("i40e: allow vector Rx and Tx usage")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/i40e/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/i40e/Makefile b/drivers/net/i40e/Makefile
index 56f210d..0a3824e 100644
--- a/drivers/net/i40e/Makefile
+++ b/drivers/net/i40e/Makefile
@@ -101,7 +101,7 @@ ifeq ($(CONFIG_RTE_ARCH_ARM64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_INC_VECTOR) += i40e_rxtx_vec_neon.c
 else ifeq ($(CONFIG_RTE_ARCH_PPC_64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_INC_VECTOR) += i40e_rxtx_vec_altivec.c
-else
+else ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_INC_VECTOR) += i40e_rxtx_vec_sse.c
 endif
 SRCS-$(CONFIG_RTE_LIBRTE_I40E_PMD) += i40e_ethdev_vf.c
-- 
2.9.3

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

* [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: disable vector PMD for i686
       [not found] ` <20170427070107.65465-1-qi.z.zhang@intel.com>
  2017-04-27  7:01   ` [dpdk-stable] [PATCH 1/3 v2] net/i40e: " Qi Zhang
@ 2017-04-27  7:01   ` Qi Zhang
  2017-04-27  7:01   ` [dpdk-stable] [PATCH 3/3 v2] net/fm10k: " Qi Zhang
  2 siblings, 0 replies; 6+ messages in thread
From: Qi Zhang @ 2017-04-27  7:01 UTC (permalink / raw)
  To: jingjing.wu, helin.zhang, wenzhuo.lu, jing.d.chen, ferruh.yigit
  Cc: dev, Qi Zhang, stable

Vector PMD does not support i686, so do not compile it.

Fixes: 429c6d86b371 ("ixgbe: prepare for vector pmd")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/ixgbe/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ixgbe/Makefile b/drivers/net/ixgbe/Makefile
index 0a6b7f2..8261639 100644
--- a/drivers/net/ixgbe/Makefile
+++ b/drivers/net/ixgbe/Makefile
@@ -112,7 +112,7 @@ SRCS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += ixgbe_pf.c
 SRCS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += ixgbe_flow.c
 ifeq ($(CONFIG_RTE_ARCH_ARM64),y)
 SRCS-$(CONFIG_RTE_IXGBE_INC_VECTOR) += ixgbe_rxtx_vec_neon.c
-else
+else ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
 SRCS-$(CONFIG_RTE_IXGBE_INC_VECTOR) += ixgbe_rxtx_vec_sse.c
 endif
 
-- 
2.9.3

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

* [dpdk-stable] [PATCH 3/3 v2] net/fm10k: disable vector PMD for i686
       [not found] ` <20170427070107.65465-1-qi.z.zhang@intel.com>
  2017-04-27  7:01   ` [dpdk-stable] [PATCH 1/3 v2] net/i40e: " Qi Zhang
  2017-04-27  7:01   ` [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: " Qi Zhang
@ 2017-04-27  7:01   ` Qi Zhang
  2 siblings, 0 replies; 6+ messages in thread
From: Qi Zhang @ 2017-04-27  7:01 UTC (permalink / raw)
  To: jingjing.wu, helin.zhang, wenzhuo.lu, jing.d.chen, ferruh.yigit
  Cc: dev, Qi Zhang, stable

Vector PMD does not support i686, it should not be compiled.

Fixes: a6ce64a97520 ("fm10k: introduce vector driver")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/fm10k/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/fm10k/Makefile b/drivers/net/fm10k/Makefile
index a8e8136..458ad66 100644
--- a/drivers/net/fm10k/Makefile
+++ b/drivers/net/fm10k/Makefile
@@ -95,6 +95,8 @@ SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_common.c
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_mbx.c
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_vf.c
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += fm10k_api.c
+ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
 SRCS-$(CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR) += fm10k_rxtx_vec.c
+endif
 
 include $(RTE_SDK)/mk/rte.lib.mk
-- 
2.9.3

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

end of thread, other threads:[~2017-04-27  6:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20170424145848.18544-1-qi.z.zhang@intel.com>
2017-04-24 14:58 ` [dpdk-stable] [PATCH 1/3] net/i40e: disable vector PMD for i686 Qi Zhang
2017-04-24 14:58 ` [dpdk-stable] [PATCH 2/3] net/ixgbe: " Qi Zhang
2017-04-24 14:58 ` [dpdk-stable] [PATCH 3/3] net/fm10k: " Qi Zhang
     [not found] ` <20170427070107.65465-1-qi.z.zhang@intel.com>
2017-04-27  7:01   ` [dpdk-stable] [PATCH 1/3 v2] net/i40e: " Qi Zhang
2017-04-27  7:01   ` [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: " Qi Zhang
2017-04-27  7:01   ` [dpdk-stable] [PATCH 3/3 v2] net/fm10k: " Qi Zhang

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).