* [dpdk-stable] [PATCH 1/3 v2] net/i40e: disable vector PMD for i686 [not found] <20170427065726.65325-1-qi.z.zhang@intel.com> @ 2017-04-27 6:57 ` Qi Zhang 2017-04-27 6:57 ` [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: " Qi Zhang 2017-04-27 6:57 ` [dpdk-stable] [PATCH 3/3 v2] net/fm10k: " Qi Zhang 2 siblings, 0 replies; 4+ messages in thread From: Qi Zhang @ 2017-04-27 6:57 UTC (permalink / raw) To: qi.z.zhang; +Cc: 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] 4+ messages in thread
* [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: disable vector PMD for i686 [not found] <20170427065726.65325-1-qi.z.zhang@intel.com> 2017-04-27 6:57 ` [dpdk-stable] [PATCH 1/3 v2] net/i40e: disable vector PMD for i686 Qi Zhang @ 2017-04-27 6:57 ` Qi Zhang 2017-04-27 6:57 ` [dpdk-stable] [PATCH 3/3 v2] net/fm10k: " Qi Zhang 2 siblings, 0 replies; 4+ messages in thread From: Qi Zhang @ 2017-04-27 6:57 UTC (permalink / raw) To: qi.z.zhang; +Cc: 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] 4+ messages in thread
* [dpdk-stable] [PATCH 3/3 v2] net/fm10k: disable vector PMD for i686 [not found] <20170427065726.65325-1-qi.z.zhang@intel.com> 2017-04-27 6:57 ` [dpdk-stable] [PATCH 1/3 v2] net/i40e: disable vector PMD for i686 Qi Zhang 2017-04-27 6:57 ` [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: " Qi Zhang @ 2017-04-27 6:57 ` Qi Zhang 2 siblings, 0 replies; 4+ messages in thread From: Qi Zhang @ 2017-04-27 6:57 UTC (permalink / raw) To: qi.z.zhang; +Cc: 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] 4+ messages in thread
[parent not found: <20170424145848.18544-1-qi.z.zhang@intel.com>]
[parent not found: <20170427070107.65465-1-qi.z.zhang@intel.com>]
* [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 ` Qi Zhang 0 siblings, 0 replies; 4+ 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] 4+ messages in thread
end of thread, other threads:[~2017-04-27 6:10 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- [not found] <20170427065726.65325-1-qi.z.zhang@intel.com> 2017-04-27 6:57 ` [dpdk-stable] [PATCH 1/3 v2] net/i40e: disable vector PMD for i686 Qi Zhang 2017-04-27 6:57 ` [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: " Qi Zhang 2017-04-27 6:57 ` [dpdk-stable] [PATCH 3/3 v2] net/fm10k: " Qi Zhang [not found] <20170424145848.18544-1-qi.z.zhang@intel.com> [not found] ` <20170427070107.65465-1-qi.z.zhang@intel.com> 2017-04-27 7:01 ` [dpdk-stable] [PATCH 2/3 v2] net/ixgbe: " 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).