[dpdk-dev] [PATCH 1/3] mk: introduce helper to check valid compiler argument

2019-01-06 Thread Jerin Jacob Kollanukkaran
Introduce rte_cc_has_argument() Makefile helper to check a given argument is support by the compiler. Example Usage: include $(RTE_SDK)/mk/rte.helper.mk MACHINE_CFLAGS += $(call rte_cc_has_argument, -mcpu=octeontx2) This would allow adding -mcpu=octeontx2 in MACHINE_CFLAGS if it is only supporte

[dpdk-dev] [PATCH 2/3] config: add thunderx2 machine config

2019-01-06 Thread Jerin Jacob Kollanukkaran
Optimized configuration for Marvell thunderx2 SoC. Product details are here: https://www.marvell.com/server-processors/thunderx2-arm-processors/ Signed-off-by: Jerin Jacob --- config/defconfig_arm64-thunderx2-linuxapp-gcc | 11 ++ mk/machine/thunderx2/rte.vars.mk | 34

[dpdk-dev] [PATCH 3/3] config: add octeontx2 machine config

2019-01-06 Thread Jerin Jacob Kollanukkaran
Optimized configuration for Marvell octeontx2 SoC. Signed-off-by: Jerin Jacob --- config/defconfig_arm64-octeontx2-linuxapp-gcc | 18 ++ mk/machine/octeontx2/rte.vars.mk | 34 +++ 2 files changed, 52 insertions(+) create mode 100644 config/defconfig_arm64-oc

Re: [dpdk-dev] [PATCH 2/3] config: add thunderx2 machine config

2019-01-06 Thread Thomas Monjalon
Hi Jerin, 06/01/2019 14:20, Jerin Jacob Kollanukkaran: > Optimized configuration for Marvell thunderx2 SoC. > > Product details are here: > > https://www.marvell.com/server-processors/thunderx2-arm-processors/ > > Signed-off-by: Jerin Jacob > --- > config/defconfig_arm64-thunderx2-linuxapp-gc

Re: [dpdk-dev] [PATCH 2/3] config: add thunderx2 machine config

2019-01-06 Thread Gavin Hu (Arm Technology China)
> -Original Message- > From: Jerin Jacob Kollanukkaran > Sent: Sunday, January 6, 2019 9:20 PM > To: tho...@monjalon.net > Cc: dev@dpdk.org; Gavin Hu (Arm Technology China) ; > jer...@marvell.com > Subject: [dpdk-dev] [PATCH 2/3] config: add thunderx2 machine config > > Optimized config

Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix multicast table enable error for VF

2019-01-06 Thread Zhao1, Wei
Hi,qi > -Original Message- > From: Zhang, Qi Z > Sent: Friday, January 4, 2019 8:20 PM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org; Wu, Jingjing > Subject: RE: [PATCH v2] net/ixgbe: fix multicast table enable error for VF > > > > > -Original Message- > > From: Zhao1,

[dpdk-dev] [PATCH] doc: fix a typo in programmer's guide

2019-01-06 Thread Yong Wang
This patch fixes a typo in programmer's guide. It should be Frequence, not Fequence. Fixes: 450f0791312c ("power: add traffic pattern aware power control") Signed-off-by: Yong Wang --- doc/guides/prog_guide/power_man.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/gu

Re: [dpdk-dev] [EXT] Re: [PATCH 2/3] config: add thunderx2 machine config

2019-01-06 Thread Jerin Jacob Kollanukkaran
On Sun, 2019-01-06 at 21:56 +0100, Thomas Monjalon wrote: > Hi Jerin, Hi Thomas, > 06/01/2019 14:20, Jerin Jacob Kollanukkaran: > > Optimized configuration for Marvell thunderx2 SoC. > > > > Product details are here: > > > > https://www.marvell.com/server-processors/thunderx2-arm-processors/ >

Re: [dpdk-dev] [EXT] RE: [PATCH 2/3] config: add thunderx2 machine config

2019-01-06 Thread Jerin Jacob Kollanukkaran
On Mon, 2019-01-07 at 00:21 +, Gavin Hu (Arm Technology China) wrote: > > -Original Message- > > From: Jerin Jacob Kollanukkaran > > Sent: Sunday, January 6, 2019 9:20 PM > > To: tho...@monjalon.net > > Cc: dev@dpdk.org; Gavin Hu (Arm Technology China) > >; > > jer...@marvell.com > >

[dpdk-dev] [PATCH v3] net/ixgbe: fix multicast table enable error for VF

2019-01-06 Thread Wei Zhao
In ixgbe PMD code, all vf ars set with bit IXGBE_VMOLR_ROMPE, which make vf accept packets that match the MTA table, if some vf update IXGBE_MTA in function ixgbe_vf_set_multicast, then all vf will receive packets from these address. So there is need to set VMOLR register bit ROPE only after this v

[dpdk-dev] [Bug 182] make doc-guides-pdf fails with error 'make[3]: latexmk: Command not found'

2019-01-06 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=182 Bug ID: 182 Summary: make doc-guides-pdf fails with error 'make[3]: latexmk: Command not found' Product: DPDK Version: 19.02 Hardware: All OS: All Status

[dpdk-dev] [PATCH v4] net/ixgbe: fix multicast table enable error for VF

2019-01-06 Thread Wei Zhao
In ixgbe PMD code, all vf ars set with bit IXGBE_VMOLR_ROMPE, which make vf accept packets that match the MTA table, if some vf update IXGBE_MTA in function ixgbe_vf_set_multicast, then all vf will receive packets from these address. So there is need to set VMOLR register bit ROPE only after this v

Re: [dpdk-dev] [PATCH] net/ixgbe: add support of loopback for X540/X550

2019-01-06 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Julien Meunier > Sent: Thursday, January 3, 2019 12:01 AM > To: Ananyev, Konstantin ; Lu, Wenzhuo > > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH] net/ixgbe: add support of loopback for X540/X550 > > Loopback

[dpdk-dev] [PATCH v2] eal: fix core number validation

2019-01-06 Thread Hari Kumar Vemula
From: Hari kumar Vemula When incorrect core value or range provided, as part of -l command line option, a crash occurs. Added valid range checks to fix the crash. Added ut check for negative core values. Added unit test case for invalid core number range. Fixes: d888cb8b9613 ("eal: add core li

Re: [dpdk-dev] [PATCH v4] net/ixgbe: fix multicast table enable error for VF

2019-01-06 Thread Zhang, Qi Z
> -Original Message- > From: Zhao1, Wei > Sent: Monday, January 7, 2019 2:16 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Zhang, Qi Z ; Wu, Jingjing > ; Zhao1, Wei > Subject: [PATCH v4] net/ixgbe: fix multicast table enable error for VF How about change the title to: "fix over using m

Re: [dpdk-dev] [PATCH v4 1/2] lib/librte_meter: add RFC4115 trTCM meter support

2019-01-06 Thread Eelco Chaudron
On 4 Jan 2019, at 20:42, Stephen Hemminger wrote: On Fri, 4 Jan 2019 13:59:42 + Eelco Chaudron wrote: This patch adds support for RFC4115 trTCM meters. Signed-off-by: Eelco Chaudron Fix comment formatting. Hi Stephen, I left these warnings in on purpose, to match the existing

[dpdk-dev] [PATCH v5] net/ixgbe: fix over using multicast table for VF

2019-01-06 Thread Wei Zhao
From: Zhao Wei According to the current implementation, all VFs will set bit IXGBE_VMOLR_ROMPE during initialization, this cause any VF will accept packets that match the MTA table. Since the MTA table is shared by all VFs which means if one VF update MTA table in function ixgbe_vf_set_multicast,

[dpdk-dev] [PATCH v5] net/ixgbe: fix over using multicast table for VF

2019-01-06 Thread Wei Zhao
According to the current implementation, all VFs will set bit IXGBE_VMOLR_ROMPE during initialization, this cause any VF will accept packets that match the MTA table. Since the MTA table is shared by all VFs which means if one VF update MTA table in function ixgbe_vf_set_multicast, then all other V