[dpdk-dev] [PATCH 1/6] config: enable lpm, port, table, pipeline, acl, sched libraries for ppc64le

2016-07-09 Thread Thomas Monjalon
2016-07-09 20:08, gowrishankar: > Hi Thomas, > > On Friday 08 July 2016 06:27 PM, Thomas Monjalon wrote: > > The comment and these lines can be removed and rely on default > > enabling in config/common_base. I suggest to enable (remove disabling) > > a feature at a time in the patch fixing the

[dpdk-dev] [PATCH 1/6] config: enable lpm, port, table, pipeline, acl, sched libraries for ppc64le

2016-07-09 Thread gowrishankar
Hi Thomas, On Friday 08 July 2016 06:27 PM, Thomas Monjalon wrote: > The comment and these lines can be removed and rely on default > enabling in config/common_base. I suggest to enable (remove disabling) > a feature at a time in the patch fixing the feature for PPC. Sure. So, do you suggest

[dpdk-dev] [PATCH] doc: announce driver name changes

2016-07-09 Thread Pablo de Lara
Driver names for all the supported devices in DPDK do not have a naming convention. Some are using a prefix, some are not and some have long names. Driver names are used when creating virtual devices, so it is useful to have consistency in the names. Signed-off-by: Pablo de Lara ---

[dpdk-dev] [PATCH] app/test: fix hexdump length of cipher/plaintexts

2016-07-09 Thread Pablo de Lara
Plaintexts and ciphertexts are dumped when debugging is enabled, using TEST_HEXDUMP. For Snow3G and KASUMI, their lengths are in bits, but TEST_HEXDUMP uses bytes, so lenghts are passed in bytes now. Fixes: 47df73a1a62f ("app/test: use hexdump if debug log is enabled") Signed-off-by: Pablo de

[dpdk-dev] [PATCH] crypto: normalize cryptodev pmd names with macros

2016-07-09 Thread Mcnamara, John
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Saturday, July 9, 2016 2:34 PM > To: Mcnamara, John > Cc: Thomas Monjalon ; De Lara Guarch, Pablo > ; dev at dpdk.org; Richardson, Bruce > ; Stephen Hemminger > ; Panu Matilainen > Subject: Re: [dpdk-dev]

[dpdk-dev] [PATCH 0/5] Driver register fixes

2016-07-09 Thread Neil Horman
On Sat, Jul 09, 2016 at 02:06:09AM +0100, Pablo de Lara wrote: > This patchset makes some extra changes after the modification > of the PMD_REGISTER_DRIVER macro, including renaming back > some virtual device driver names (virtio could not be renamed) > and fixing/adding arguments of some drivers.

[dpdk-dev] [PATCH] crypto: normalize cryptodev pmd names with macros

2016-07-09 Thread Neil Horman
On Fri, Jul 08, 2016 at 07:03:10PM +, Mcnamara, John wrote: > > -Original Message- > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Neil Horman > > Sent: Friday, July 8, 2016 2:42 PM > > To: Thomas Monjalon > > Cc: De Lara Guarch, Pablo ; dev at > > dpdk.org; > >

[dpdk-dev] [PATCH v1] igu_uio: fix IOMMU domain issue

2016-07-09 Thread Ferruh Yigit
On 7/8/2016 6:27 PM, Thomas Monjalon wrote: > 2016-05-11 18:24, Ferruh Yigit: >> On 5/11/2016 8:35 AM, Alejandro Lucero wrote: >>> On Tue, May 10, 2016 at 4:59 PM, Stephen Hemminger < >>> stephen at networkplumber.org> wrote: >>> On Tue, 10 May 2016 19:21:41 +0800 Zhe Tao wrote:

[dpdk-dev] [PATCH 5/5] net/bonding: fix range of mode argument

2016-07-09 Thread Pablo de Lara
The range of the supported bonding modes is 0-6, instead of 0-4. Fixes: cb6696d22023 ("drivers: update registration macro usage") Signed-off-by: Pablo de Lara --- drivers/net/bonding/rte_eth_bond_pmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[dpdk-dev] [PATCH 4/5] drivers: add missing virtio and xenvirt arguments

2016-07-09 Thread Pablo de Lara
Virtio and Xenvirt are two virtual device drivers that admit arguments, so DRIVER_REGISTER_PARAM_STRING should be used in them. Fixes: cb6696d22023 ("drivers: update registration macro usage") Signed-off-by: Pablo de Lara --- drivers/net/virtio/virtio_user_ethdev.c | 6 ++

[dpdk-dev] [PATCH 3/5] drivers: split driver arguments in multiple lines

2016-07-09 Thread Pablo de Lara
Driver arguments shown with DRIVER_REGISTER_PARAM_STRING have been separated in multiple lines and indented to ease their readability. Signed-off-by: Pablo de Lara --- drivers/crypto/aesni_gcm/aesni_gcm_pmd.c | 6 -- drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c | 6 --

[dpdk-dev] [PATCH 2/5] drivers: remove static driver names

2016-07-09 Thread Pablo de Lara
Since now the PMD_REGISTER_DRIVER macro sets the driver names, there is no need to have the rte_driver structure setting it statically, as it will get overridden. Signed-off-by: Pablo de Lara --- drivers/net/af_packet/rte_eth_af_packet.c | 1 - drivers/net/bnxt/bnxt_ethdev.c| 1 -

[dpdk-dev] [PATCH 1/5] drivers: revert vdev driver names to original

2016-07-09 Thread Pablo de Lara
In order to avoid API breakage, the driver names of the virtual devices have been renamed to their original name, before the modification of the PMD_REGISTER_DRIVER macro, which sets now the driver names. Fixes: cb6696d22023 ("drivers: update registration macro usage") Signed-off-by: Pablo de

[dpdk-dev] [PATCH 0/5] Driver register fixes

2016-07-09 Thread Pablo de Lara
This patchset makes some extra changes after the modification of the PMD_REGISTER_DRIVER macro, including renaming back some virtual device driver names (virtio could not be renamed) and fixing/adding arguments of some drivers. Pablo de Lara (5): drivers: revert vdev driver names to original