[dpdk-dev] [PATCH 01/10] examples/tep_termination:initialize the VXLAN sample

2015-05-18 Thread Liu, Jijiang
Hi Stephen, Thanks for reviewing the patch. > -Original Message- > From: Stephen Hemminger [mailto:stephen at networkplumber.org] > Sent: Saturday, May 16, 2015 7:54 AM > To: Liu, Jijiang > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 01/10] examples/tep_termination:initialize the

[dpdk-dev] [PATCH] fm10k: support XEN domain0

2015-05-18 Thread Liu, Jijiang
Hi guys, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Stephen Hemminger > Sent: Saturday, May 16, 2015 7:58 AM > To: He, Shaopeng > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] fm10k: support XEN domain0 > > On Fri, 15 May 2015 16:56:02 +0800 > S

[dpdk-dev] [PATCH 01/10] examples/tep_termination:initialize the VXLAN sample

2015-05-18 Thread Liu, Jijiang
> -Original Message- > From: Stephen Hemminger [mailto:stephen at networkplumber.org] > Sent: Saturday, May 16, 2015 7:56 AM > To: Liu, Jijiang > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 01/10] examples/tep_termination:initialize the > VXLAN sample > > On Fri, 15 May 2015 14:

[dpdk-dev] [PATCH 00/10] Add a VXLAN sample

2015-05-18 Thread Liu, Jijiang
Hi John, Though it is an example, I think we had better split these changes into multiple patch so as to understand what I have changed here. It will be clear and easy if you can review these changes in the mail list http://dpdk.org/ml/archives/dev/2015-May/017693.html Thanks Jijiang Liu > ---

[dpdk-dev] [PATCH v4 1/5] vhost: eventfd_link: moving ioctl to a function

2015-05-18 Thread Xie, Huawei
On 5/7/2015 9:17 PM, Pavel Boldin wrote: On Thu, May 7, 2015 at 10:57 AM, Xie, Huawei mailto:huawei.xie at intel.com>> wrote: On 4/3/2015 1:02 AM, Pavel Boldin wrote: > Move ioctl `EVENTFD_COPY' handler code to an inline function. Pavel: There is no necessity to inline this function. Xie, there i

[dpdk-dev] Can't compile master branch with icc

2015-05-18 Thread Tetsuya Mukawa
Hi Helin, It seems master branch cannot be compiled with icc like below. $ T=x86_64-native-linuxapp-icc make install ...snip dpdk/lib/librte_pmd_i40e/i40e/i40e_nvm.c(1022): error #188: enumerated type mixed with another type hw->aq.asq_last_status = old_asq_status; As a

[dpdk-dev] [PATCH v2] vhost: flush used->idx update before reading avail->flags

2015-05-18 Thread Nikita Kalyazin
Ah, sorry. I looked at it without the context. Thanks. -- Best regards, Nikita Kalyazin, n.kalyazin at samsung.com Software Engineer CE OS Group Samsung R&D Institute Russia Tel: +7 (495) 797-25-00 #3816 Tel: +7 (495) 797-25-03 Office #1501, 12-1, Dvintsev str., Moscow, 127018, Russia On Fri,

[dpdk-dev] Can't compile master branch with icc

2015-05-18 Thread Zhang, Helin
Thank you very much for the good catch on ICC! Please try gcc for now. Sorry for any inconvenience! I will send out the patch soon. Regards, Helin > -Original Message- > From: Tetsuya Mukawa [mailto:mukawa at igel.co.jp] > Sent: Monday, May 18, 2015 2:09 PM > To: Zhang, Helin > Cc: dev a

[dpdk-dev] [PATCH 0/4] misc compilation fixes

2015-05-18 Thread Olivier Matz
This series contains compilation fixes. Olivier Matz (4): examples/bond: fix compilation with clang examples/netmap: fix compilation for x86_x32-native-linuxapp-gcc pmds: fix 32 bits compilation with debug enabled examples/mk: add dependencies for timer and vm_power_manager examples/Make

[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Olivier Matz
Fix the following compilation error: examples/bond/main.c:717:1: error: control reaches end of non-void function [-Werror,-Wreturn-type] The prompt() function does not return anything, so fix its prototype to be void. Signed-off-by: Olivier Matz --- examples/bond/main.c | 2 +- 1 file change

[dpdk-dev] [PATCH 2/4] examples/netmap: fix compilation for x86_x32-native-linuxapp-gcc

2015-05-18 Thread Olivier Matz
Fix a cast issue: examples/netmap_compat/lib/compat_netmap.c:827:10: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast] Signed-off-by: Olivier Matz --- examples/netmap_compat/lib/compat_netmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[dpdk-dev] [PATCH 3/4] pmds: fix 32 bits compilation with debug enabled

2015-05-18 Thread Olivier Matz
When debug is enabled for 32 bits targets, it triggers some format errors that are not visible in 64 bits. Fix them by using the proper format from inttypes.h or the proper cast. Signed-off-by: Olivier Matz --- lib/librte_pmd_fm10k/fm10k_rxtx.c | 5 +- lib/librte_pmd_i40e/i40e_ethdev.c

[dpdk-dev] [PATCH 4/4] examples/mk: add dependencies for timer and vm_power_manager

2015-05-18 Thread Olivier Matz
Do not compile these examples if the related dpdk option is not enabled, as it's done for other examples. It allows to build the examples directory with a reduced dpdk configuration. Signed-off-by: Olivier Matz --- examples/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

[dpdk-dev] dpdk 2.0.0: Issue mapping mempool into guest using IVSHMEM

2015-05-18 Thread Mauricio Vásquez
Hi all, I'm trying to map a mempool into a guest using the IVSHMEM library but the mempool is not visible from the guest. The code I'm running is quite simple, on the host I run a primary DPDK process that creates the mempool, creates a metadata file and then adds the mempool to it. The code is:

[dpdk-dev] [PATCH v4 1/5] vhost: eventfd_link: moving ioctl to a function

2015-05-18 Thread Pavel Boldin
On Mon, May 18, 2015 at 9:06 AM, Xie, Huawei wrote: > On 5/7/2015 9:17 PM, Pavel Boldin wrote: > > > On Thu, May 7, 2015 at 10:57 AM, Xie, Huawei huawei.xie at intel.com>> wrote: > On 4/3/2015 1:02 AM, Pavel Boldin wrote: > > Move ioctl `EVENTFD_COPY' handler code to an inline function. > Pavel:

[dpdk-dev] [PATCH 1/5] ixgbe: remove unnecessary casts

2015-05-18 Thread Bruce Richardson
On Fri, May 15, 2015 at 10:08:23AM -0700, Stephen Hemminger wrote: > Don't do unnecessary casts when logging messages. Better to use > the correct printf format code. > > Signed-off-by: Stephen Hemminger +1 Acked-by: Bruce Richardson > --- > lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 25

[dpdk-dev] [PATCH 3/5] ixgbe: raise priority of significant events

2015-05-18 Thread Bruce Richardson
On Fri, May 15, 2015 at 10:08:25AM -0700, Stephen Hemminger wrote: > The driver does lots of logging at INFO level, but some setup > events are significant and should be at NOTICE or ERR level > since they are problems that user should see. > > Also never put tabs in log messages because they get

[dpdk-dev] [PATCH 4/5] ixgbe: use RTE_LOG not rte_log

2015-05-18 Thread Bruce Richardson
On Fri, May 15, 2015 at 10:08:26AM -0700, Stephen Hemminger wrote: > This driver should follow standard DPDK practice and use > RTE_LOG macro which allows setting config option to remove > the debug log messages. > > Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson > --- > lib/libr

[dpdk-dev] [PATCH 5/5] ixgbe: silence noisy log messages

2015-05-18 Thread Bruce Richardson
On Fri, May 15, 2015 at 10:08:27AM -0700, Stephen Hemminger wrote: > The ixgbe driver likes to be far to chatty in the system log > which is good for the original developer but not good for a production > product. All the normal messages should be changed from INFO to DEBUG. > > Signed-off-by: Ste

[dpdk-dev] [PATCH 2/5] ixgbe: don't print PCI address on link change

2015-05-18 Thread Bruce Richardson
On Fri, May 15, 2015 at 10:08:24AM -0700, Stephen Hemminger wrote: > Printing PCI information on link state change is unnecessary since > the same information has already been displayed earlier in the log. > > Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson > --- > lib/librte_pmd_

[dpdk-dev] No probed ethernet devices with shared library

2015-05-18 Thread Panu Matilainen
On 05/18/2015 12:55 AM, Stuart Andrews wrote: > Hello, > > I've been trying to create an app which uses the DPDK shared library and > therefore I have > > CONFIG_RTE_BUILD_SHARED_LIB=y > > However, when I try to run 'test-pmd' I get > > EAL: No probed ethernet devices > > This is strange because wh

[dpdk-dev] [PATCH v2 05/19] e1000: move e1000 pmd to drivers/net directory

2015-05-18 Thread Bruce Richardson
On Sat, May 16, 2015 at 02:11:14PM -0400, Thomas F Herbert wrote: > On 5/15/15 11:56 AM, Bruce Richardson wrote:> Move e1000 pmd to drivers/net > directory > > As part of move, rename "e1000" subdirectory, which contains the code > > from the "base driver", to "base". > > > > Signed-off-by: Bruce R

[dpdk-dev] [PATCH] virtio: Fix enqueue/dequeue can't handle chained vring descriptors.

2015-05-18 Thread Xie, Huawei
On 5/4/2015 2:27 PM, Ouyang Changchun wrote: > Vring enqueue need consider the 2 cases: > 1. Vring descriptors chained together, the first one is for virtio header, > the rest are for real data; > 2. Only one descriptor, virtio header and real data share one single > descriptor; > > So does vri

[dpdk-dev] How do you setup a VM in Promiscuous Mode using PCI Pass-Through (SR-IOV)?

2015-05-18 Thread Qiu, Michael
Hi, Sami Could you mind to supply the syslog? Especially iommu related parts. Also you could update the qemu or kernel to see if this issue still exists. Thanks, Michael On 5/16/2015 3:31 AM, Assaad, Sami (Sami) wrote: > On Fri, May 15, 2015 at 12:54:19PM +, Assaad, Sami (Sami) wrote: >> T

[dpdk-dev] [PATCH 0/2] doc: refactored fig and table nums into references

2015-05-18 Thread Mcnamara, John
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, May 13, 2015 8:08 PM > To: Mcnamara, John > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 0/2] doc: refactored fig and table nums > into references > > > Unfortunately it gives t

[dpdk-dev] [PATCH v2 05/19] e1000: move e1000 pmd to drivers/net directory

2015-05-18 Thread Bruce Richardson
On Sat, May 16, 2015 at 02:11:14PM -0400, Thomas F Herbert wrote: > On 5/15/15 11:56 AM, Bruce Richardson wrote:> Move e1000 pmd to drivers/net > directory > > As part of move, rename "e1000" subdirectory, which contains the code > > from the "base driver", to "base". > > > > Signed-off-by: Bruce R

[dpdk-dev] [PATCH v2 0/3] doc: refactored fig and table nums into references

2015-05-18 Thread John McNamara
This patchset adds automatic figure and table references to the docs. The figure and table numbers in the generated Html and PDF docs can now be automatically numbered by the build system. It replaces all hardcoded figure/table numbers and references. The numfig/numref feature requires Sphinx >=

[dpdk-dev] [PATCH v2 3/3] doc: add sphinx numref compatibility workaround

2015-05-18 Thread John McNamara
From: John McNamara This change adds some simple handling for the :numref: directive for Sphinx versions prior to 1.3.1. This allows the Guides documentation to be built with older versions of Sphinx and still produce reasonable results. The patch replaces the :numref: reference with a link to t

[dpdk-dev] [PATCH 1/3] doc: refactored figure numbers into references

2015-05-18 Thread John McNamara
This change adds automatic figure references to the docs. The figure numbers in the generated Html and PDF docs are now automatically numbered based on section. Requires Sphinx >= 1.3.1. The patch makes the following changes. * Changes image:: tag to figure:: and moves image caption to the fig

[dpdk-dev] [PATCH v3 0/3] doc: refactored fig and table nums into references

2015-05-18 Thread John McNamara
This patchset adds automatic figure and table references to the docs. The figure and table numbers in the generated Html and PDF docs can now be automatically numbered. It replaces all hardcoded figure/table numbers and references. The numfig/numref feature requires Sphinx >= 1.3.1. For backward

[dpdk-dev] [PATCH v3 1/3] doc: refactored figure numbers into references

2015-05-18 Thread John McNamara
This change adds automatic figure references to the docs. The figure numbers in the generated Html and PDF docs are now automatically numbered based on section. Requires Sphinx >= 1.3.1. The patch makes the following changes. * Changes image:: tag to figure:: and moves image caption to the fig

[dpdk-dev] [PATCH v3 3/3] doc: add sphinx numref compatibility workaround

2015-05-18 Thread John McNamara
This change adds some simple handling for the :numref: directive for Sphinx versions prior to 1.3.1. This allows the Guides documentation to be built with older versions of Sphinx and still produce reasonable results. The patch replaces the :numref: reference with a link to the target (for all Sph

[dpdk-dev] [PATCH v2] l3fwd: make destination mac address configurable

2015-05-18 Thread Andrey Chilikin
Add a command-line parameter to l3fwd, to allow the user to specify the destination mac address for each ethernet port used. v2 changes: - apply command-line parameter to fast path as well (val_eth) Signed-off-by: Andrey Chilikin Signed-off-by: Bruce Richardson --- examples/l3fwd/main.c | 9

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Zoltan Kiss
Hi, Any opinion on this patch? Regards, Zoltan On 13/05/15 19:59, Zoltan Kiss wrote: > Otherwise cache_flushthresh can be bigger than n, and > a consumer can starve others by keeping every element > either in use or in the cache. > > Signed-off-by: Zoltan Kiss > --- > lib/librte_mempool/rte_

[dpdk-dev] [PATCH v2] pipeline: add statistics for librte_pipeline ports and tables

2015-05-18 Thread Thomas Monjalon
2015-05-05 15:11, Dumitrescu, Cristian: > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Michal Jastrzebski > > From: Pawel Wodkowski > > > > This patch adds statistics collection for librte_pipeline. > > Those statistics ale disabled by default during build time. > > > > Signed-off-by:

[dpdk-dev] [PATCH v2 02/10] table: added acl table stats

2015-05-18 Thread Thomas Monjalon
2015-04-30 08:55, Stephen Hemminger: > > From: Maciej Gajdzica > > > > Added statistics for ACL table. > > > > Signed-off-by: Maciej Gajdzica > > --- > > config/common_bsdapp |1 + > > config/common_linuxapp |1 + [...] > > # Compile librte_table > > # > > CONFI

[dpdk-dev] [PATCH v2 02/13] port: added port_ethdev_reader stats

2015-05-18 Thread Thomas Monjalon
2015-04-30 14:07, Michal Jastrzebski: > From: Maciej Gajdzica > > Added statistics for ethdev reader port. > > Signed-off-by: Maciej Gajdzica > --- > config/common_bsdapp |1 + > config/common_linuxapp|1 + [...] > # Compile librte_port > # > CONFIG_RTE_LIBRT

[dpdk-dev] [PATCH v2 01/13] port: added structures for port stats

2015-05-18 Thread Thomas Monjalon
2015-04-30 14:07, Michal Jastrzebski: > From: Maciej Gajdzica [...] > struct rte_port_out_ops { > - rte_port_out_op_create f_create; /**< Create */ > - rte_port_out_op_free f_free; /**< Free */ > - rte_port_out_op_tx f_tx; /**< Packet TX (single packet) */ > - rt

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 01:27:45PM +0100, Zoltan Kiss wrote: > Hi, > > Any opinion on this patch? > > Regards, > > Zoltan > > On 13/05/15 19:59, Zoltan Kiss wrote: > >Otherwise cache_flushthresh can be bigger than n, and > >a consumer can starve others by keeping every element > >either in use

[dpdk-dev] [PATCH v3 08/19] i40e: move i40e PMD to drivers/net directory

2015-05-18 Thread Bruce Richardson
Move i40e PMD to drivers/net directory. As part of the move, rename the "i40e" directory, containing the "base driver" code, from "i40e" to "base". Signed-off-by: Bruce Richardson --- V3: Rebased post base-code update --- drivers/net/Makefile |2 +- drivers/net/i40e

[dpdk-dev] [PATCH v3 2/3] doc: refactored table numbers into references

2015-05-18 Thread John McNamara
This change adds automatic table references to the docs. The table numbers in the generated Html and PDF docs are now automatically numbered based on section. Requires Sphinx >= 1.3.1. This change: * Adds a RST table:: directive to each table caption. * Indents the tables to the required direct

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zoltan Kiss > Sent: Monday, May 18, 2015 1:28 PM > To: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] mempool: limit cache_size > > Hi, > > Any opinion on this patch? > > Regards, > > Zoltan > > On 13/0

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Zoltan Kiss
On 18/05/15 13:41, Ananyev, Konstantin wrote: > > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zoltan Kiss >> Sent: Monday, May 18, 2015 1:28 PM >> To: dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH] mempool: limit cache_size >> >> Hi, >> >> Any opin

[dpdk-dev] [PATCH v2 0/3] port: added frag_ipv6 and ras_ipv6 ports

2015-05-18 Thread Thomas Monjalon
2015-05-05 15:08, Dumitrescu, Cristian: > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Michal Jastrzebski > > From: Maciej Gajdzica > > > > Added ipv6 versions of ip fragmentation and ip reassembly ports. > > > > Maciej Gajdzica (3): > > port: removed IPV4_MTU_DEFAULT define > > p

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Ananyev, Konstantin
> -Original Message- > From: Zoltan Kiss [mailto:zoltan.kiss at linaro.org] > Sent: Monday, May 18, 2015 1:50 PM > To: Ananyev, Konstantin; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] mempool: limit cache_size > > > > On 18/05/15 13:41, Ananyev, Konstantin wrote: > > > > > >> ---

[dpdk-dev] [PATCH v2 0/2] cmdline: add polling mode for command line

2015-05-18 Thread Thomas Monjalon
2015-05-13 15:20, Olivier MATZ: > On 05/13/2015 01:59 PM, Pawel Wodkowski wrote: > > This patchset adds the ability to process console input in the same thread > > as packet processing by using poll() function and fixes some minor issues. > > > > v2 changes: > > - add doxygen documentation for cm

[dpdk-dev] [PATCH] virtio: Fix enqueue/dequeue can't handle chained vring descriptors.

2015-05-18 Thread Ouyang, Changchun
Hi Huawei, > -Original Message- > From: Xie, Huawei > Sent: Monday, May 18, 2015 5:39 PM > To: Ouyang, Changchun; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] virtio: Fix enqueue/dequeue can't handle > chained vring descriptors. > > On 5/4/2015 2:27 PM, Ouyang Changchun wrote: > > Vr

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Zoltan Kiss
On 18/05/15 14:14, Ananyev, Konstantin wrote: > > >> -Original Message- >> From: Zoltan Kiss [mailto:zoltan.kiss at linaro.org] >> Sent: Monday, May 18, 2015 1:50 PM >> To: Ananyev, Konstantin; dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH] mempool: limit cache_size >> >> >> >> On 18/

[dpdk-dev] [PATCH] i40e: compile fix on ICC 13.0.0

2015-05-18 Thread Helin Zhang
Below compile error can be found on ICC 13.0.0, which is a warning treated as error. Forcedly disabling the warning can fix it. Error log: lib/librte_pmd_i40e/i40e/i40e_nvm.c(1022): error #188: enumerated type mixed with another type hw->aq.asq_last_status = old_asq_status;

[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 10:17:58AM +0200, Olivier Matz wrote: > Fix the following compilation error: > > examples/bond/main.c:717:1: error: control reaches end of > non-void function [-Werror,-Wreturn-type] > > The prompt() function does not return anything, so fix its prototype > to be void. >

[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Olivier MATZ
Hi Bruce, On 05/18/2015 03:53 PM, Bruce Richardson wrote: > On Mon, May 18, 2015 at 10:17:58AM +0200, Olivier Matz wrote: >> Fix the following compilation error: >> >> examples/bond/main.c:717:1: error: control reaches end of >> non-void function [-Werror,-Wreturn-type] >> >> The prompt() functi

[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 03:57:00PM +0200, Olivier MATZ wrote: > Hi Bruce, > > On 05/18/2015 03:53 PM, Bruce Richardson wrote: > > On Mon, May 18, 2015 at 10:17:58AM +0200, Olivier Matz wrote: > >> Fix the following compilation error: > >> > >> examples/bond/main.c:717:1: error: control reaches end

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Ananyev, Konstantin
> -Original Message- > From: Zoltan Kiss [mailto:zoltan.kiss at linaro.org] > Sent: Monday, May 18, 2015 2:31 PM > To: Ananyev, Konstantin; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] mempool: limit cache_size > > > > On 18/05/15 14:14, Ananyev, Konstantin wrote: > > > > > >> ---

[dpdk-dev] [PATCH v2 2/2] i40e/base: compile fix on clang 3.3

2015-05-18 Thread Helin Zhang
Below compile error can be found on clang 3.3, which is a warning treated as error. Forcedly disabling the warning can fix it. Error log: lib/librte_pmd_i40e/i40e/i40e_nvm.c:708:20: error: unused variable 'i40e_nvm_update_state_str' [-Werror,-Wunused-variable] STATIC const char *i40e_nvm_update_st

[dpdk-dev] [PATCH v2 0/2] compile fixes on ICC and clang

2015-05-18 Thread Helin Zhang
Compile warnings on ICC and clang can be found, and treated as errors. Disabling those warnings forcedly can fix them. v2 changes: Added the fix for the compile error on clang. Helin Zhang (2): i40e: compile fix on ICC 13.0.0 i40e: compile fix on clang 3.3 lib/librte_pmd_i40e/Makefile | 3 +

[dpdk-dev] [PATCH v2 1/2] i40e/base: compile fix on ICC 13.0.0

2015-05-18 Thread Helin Zhang
Below compile error can be found on ICC 13.0.0, which is a warning treated as error. Forcedly disabling the warning can fix it. Error log: lib/librte_pmd_i40e/i40e/i40e_nvm.c(1022): error #188: enumerated type mixed with another type hw->aq.asq_last_status = old_asq_status;

[dpdk-dev] [PATCH v2 1/2] i40e/base: compile fix on ICC 13.0.0

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 11:03:28PM +0800, Helin Zhang wrote: > Below compile error can be found on ICC 13.0.0, which is a warning > treated as error. Forcedly disabling the warning can fix it. > > Error log: > lib/librte_pmd_i40e/i40e/i40e_nvm.c(1022): error #188: enumerated > type mixed with anot

[dpdk-dev] [PATCH v2 2/2] i40e/base: compile fix on clang 3.3

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 11:03:29PM +0800, Helin Zhang wrote: > Below compile error can be found on clang 3.3, which is a warning > treated as error. Forcedly disabling the warning can fix it. > > Error log: > lib/librte_pmd_i40e/i40e/i40e_nvm.c:708:20: error: unused variable > 'i40e_nvm_update_sta

[dpdk-dev] [PATCH v2 1/2] i40e/base: compile fix on ICC 13.0.0

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 04:11:06PM +0100, Bruce Richardson wrote: > On Mon, May 18, 2015 at 11:03:28PM +0800, Helin Zhang wrote: > > Below compile error can be found on ICC 13.0.0, which is a warning > > treated as error. Forcedly disabling the warning can fix it. > > > > Error log: > > lib/librte

[dpdk-dev] [PATCH v2 05/19] e1000: move e1000 pmd to drivers/net directory

2015-05-18 Thread Thomas F Herbert
On 5/18/15 6:54 AM, Bruce Richardson wrote: > On Sat, May 16, 2015 at 02:11:14PM -0400, Thomas F Herbert wrote: >> On 5/15/15 11:56 AM, Bruce Richardson wrote:> Move e1000 pmd to drivers/net >> directory >>> As part of move, rename "e1000" subdirectory, which contains the code >>> from the "base

[dpdk-dev] [PATCH v2] mempool: limit cache_size

2015-05-18 Thread Zoltan Kiss
Otherwise cache_flushthresh can be bigger than n, and a consumer can starve others by keeping every element either in use or in the cache. Signed-off-by: Zoltan Kiss --- v2: use macro for calculation, with proper casting lib/librte_mempool/rte_mempool.c | 8 +--- lib/librte_mempool/rte_memp

[dpdk-dev] [PATCH v3 1/2] i40e/base: fix compile with ICC 13.0.0

2015-05-18 Thread Helin Zhang
Below compile error can be found on ICC 13.0.0, which is a warning treated as error. Forcedly disabling the warning can fix it. Error log: lib/librte_pmd_i40e/i40e/i40e_nvm.c(1022): error #188: enumerated type mixed with another type hw->aq.asq_last_status = old_asq_status;

[dpdk-dev] [PATCH v3 0/2] fix compile with ICC and clang

2015-05-18 Thread Helin Zhang
Compile warnings on ICC and clang can be found, and treated as errors. Disabling those warnings forcedly can fix them. v2 changes: Added the fix for the compile error on clang. v3 changes: Reworded the commit titles. Helin Zhang (2): i40e: compile fix on ICC 13.0.0 i40e: compile fix on clang

[dpdk-dev] [PATCH v3 2/2] i40e/base: fix compile with clang 3.3

2015-05-18 Thread Helin Zhang
Below compile error can be found on clang 3.3, which is a warning treated as error. Forcedly disabling the warning can fix it. Error log: lib/librte_pmd_i40e/i40e/i40e_nvm.c:708:20: error: unused variable 'i40e_nvm_update_state_str' [-Werror,-Wunused-variable] STATIC const char *i40e_nvm_update_st

[dpdk-dev] [PATCH v3 0/2] fix compile with ICC and clang

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 11:40:54PM +0800, Helin Zhang wrote: > Compile warnings on ICC and clang can be found, and treated as errors. > Disabling those warnings forcedly can fix them. > > v2 changes: > Added the fix for the compile error on clang. > > v3 changes: > Reworded the commit titles. >

[dpdk-dev] [PATCH] mempool: limit cache_size

2015-05-18 Thread Zoltan Kiss
On 18/05/15 15:13, Ananyev, Konstantin wrote: > > >> -Original Message- >> From: Zoltan Kiss [mailto:zoltan.kiss at linaro.org] >> Sent: Monday, May 18, 2015 2:31 PM >> To: Ananyev, Konstantin; dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH] mempool: limit cache_size >> >> >> >> On 18/

[dpdk-dev] [PATCH v2] mempool: limit cache_size

2015-05-18 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zoltan Kiss > Sent: Monday, May 18, 2015 4:35 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v2] mempool: limit cache_size > > Otherwise cache_flushthresh can be bigger than n, and > a consumer can star

[dpdk-dev] [PATCH v4 0/6] update jhash function

2015-05-18 Thread Bruce Richardson
On Tue, May 12, 2015 at 12:02:32PM +0100, Pablo de Lara wrote: > Jenkins hash function was developed originally in 1996, > and was integrated in first versions of DPDK. > The function has been improved in 2006, > achieving up to 60% better performance, compared to the original one. > > This patchs

[dpdk-dev] [PATCH 5/5] ixgbe: silence noisy log messages

2015-05-18 Thread Stephen Hemminger
On Mon, 18 May 2015 10:32:01 +0100 Bruce Richardson wrote: > For the most part, this looks fine. However, I'm unsure about changing the log > level of the messages stating what the RX and TX burst functions in use are. I > would view this as important information that should generally be displaye

[dpdk-dev] [PATCH 0/5] receive IRQ related patches

2015-05-18 Thread Stephen Hemminger
These are some of the patches to enhance the still as not yet merged receive interrupt functionality. The big piece is support of UIO-MSI interrupts which is required to make the virtio and vmxnet3 receive IRQ functionality work. After this piece is reviewed, I will send those bits. Stephen Hemmi

[dpdk-dev] [PATCH 1/5] ethdev: check for rxq interrupt support

2015-05-18 Thread Stephen Hemminger
Not all devices support rxq interrupt yet. It is better to check for interrupt support in driver at configuration time than waiting for later failures. Signed-off-by: Stephen Hemminger --- lib/librte_ether/rte_ethdev.c | 8 1 file changed, 8 insertions(+) diff --git a/lib/librte_ether/

[dpdk-dev] [PATCH 2/5] ethdev: remove unnecessary checks

2015-05-18 Thread Stephen Hemminger
Since the code has just called rte_eth_dev_is_valid_port the following checks are unnecessary. Signed-off-by: Stephen Hemminger --- lib/librte_ether/rte_ethdev.c | 16 1 file changed, 16 deletions(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c ind

[dpdk-dev] [PATCH 3/5] ethdev: fix errors if RTE_ETHDEV_DEBUG enabled

2015-05-18 Thread Stephen Hemminger
The interrupt mode patches introduced some obvious errors if RTE_ETHDEV_DEBUG is defined. Signed-off-by: Stephen Hemminger --- lib/librte_ether/rte_ethdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index

[dpdk-dev] [PATCH 4/5] uio: new driver with MSI-X support

2015-05-18 Thread Stephen Hemminger
This is a merge of igb_uio with the MSI-X support through eventfd (similar to VFIO). The driver requires a small change to upstream UIO driver to allow UIO drivers to support ioctl's. See: http://marc.info/?l=linux-kernel&m=143197030217434&w=2 http://www.spinics.net/lists/kernel/msg1993359.html S

[dpdk-dev] [PATCH 5/5] uio: integrate MSI-X support

2015-05-18 Thread Stephen Hemminger
Add the new uio_msi as a supported driver model. Signed-off-by: Stephen Hemminger --- lib/librte_eal/common/include/rte_pci.h| 1 + lib/librte_eal/linuxapp/eal/eal_interrupts.c | 94 +++--- lib/librte_eal/linuxapp/eal/eal_pci.c | 4 + lib/librte_e

[dpdk-dev] [PATCH v3] Implement memcmp using SIMD intrinsics

2015-05-18 Thread Ravi Kerur
Background: After preliminary discussion with John (Zhihong) and Tim from Intel it was decided that it would be beneficial to use AVX/SSE intrinsics for memcmp similar to memcpy that had been implemeneted. In addition, we decided to use librte_hash as a test candidate to test both functionality and

[dpdk-dev] [PATCH v3] Implement memcmp using Intel SIMD instrinsics.

2015-05-18 Thread Ravi Kerur
This patch implements memcmp and use librte_hash as the first candidate to use rte_memcmp which is implemented using AVX/SSE intrinsics. Tested with GCC(4.8.2) and Clang(3.4-1) compilers and both tests show better performance on Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz, Ubuntu 14.04 x86_64 shows wh

[dpdk-dev] [PATCH] kni: Add link status update

2015-05-18 Thread Vijayakumar Muthuvel Manickam
Add an ioctl command in rte_kni module to enable DPDK applications to propagate link state changes to kni virtual interfaces. Signed-off-by: Vijayakumar Muthuvel Manickam --- .../linuxapp/eal/include/exec-env/rte_kni_common.h | 2 ++ lib/librte_eal/linuxapp/kni/kni_misc.c | 39 +

[dpdk-dev] [PATCH] kni: Add link status update

2015-05-18 Thread Stephen Hemminger
I agree that this looks like a good facility to have but this is not the right way to do it. There are already several facilities to accomplish the same thing. 1. You can use the operstate functionality in kernel to manipulate carrier from another application (read Documentation/operstate.txt)