2014-12-16 16:42, Neil Horman:
> On Tue, Dec 16, 2014 at 03:39:56PM +0100, Thomas Monjalon wrote:
> > 2014-12-16 08:58, Neil Horman:
> > > On Tue, Dec 16, 2014 at 12:04:44AM +0100, Thomas Monjalon wrote:
> > > > Some applications doesn't have the pcap link flag
> > > > when shared libraries are ena
2014-12-11 02:54, Hiroshi Shimamoto:
> From: Hiroshi Shimamoto
>
> The application should be linked to the single combined library in the
> condition that both of CONFIG_RTE_BUILD_COMBINE_LIB and
> CONFIG_RTE_BUILD_SHARED_LIB are enabled.
>
> The current makefile generates an application that li
2014-12-16 01:57, Qiu, Michael:
> On 12/16/2014 12:55 AM, Michal Jastrzebski wrote:
> > From: Pawel Wodkowski
> >
> > This change use statements in expressions C extension provided by gcc to
> > avoid
> > 'value computed is not used' warning/error when size is not known at compile
> > time.
> >
>
> A further three small patches fixing more issues highlighted by static
> analysis scans.
>
> Bruce Richardson (3):
> af_packet: ensure *internals is not null when dereferencing
> ixgbe: prevent array overflow access in vector driver
> eal: for safety, use snprintf instead of sprintf
Appl
> This patch set fixes 5 issues found during a static analysis scan of the
> latest
> DPDK code. These fixes are for possible NULL pointer references and array
> overflow/underflow.
>
> Bruce Richardson (5):
> test: after NULL check, don't free the NULL pointer
> test: check for mbuf alloc f
2014-12-16 19:48, Thomas Monjalon:
> 2014-10-28 15:48, Sergio Gonzalez Monroy:
> > If we set EXTRA_CFLAGS=-O0, build fails with following error:
> >
> > /usr/bin/ld: test: hidden symbol `mknod' in
> > /usr/lib64/libc_nonshared.a(mknod.oS) is referenced by DSO
> >
> > Fix: link combined shared li
> > For rte_ipv6_phdr_cksum() gcc 4.8.* with "-O3" not always generates
> > correct code.
> > Sometimes it 'forgets' to put len and proto fields of psd_header on the
> > stack.
> > To overcome that problem and speedup things a bit, refactored
> > rte_raw_cksum()
> > by splitting ipv6 pseudo-heade
> > Enqueue and dequeue burst functions always return a positive
> > value (including 0), so return type should be unsigned,
> > instead of int.
> >
> > Fixed also API doc for one of the functions.
> >
> > Signed-off-by: Pablo de Lara
>
> Acked-by: Olivier Matz
Applied
Thanks
--
Thomas
2014-12-12 12:39, Jincheng Miao:
> On 12/12/2014 03:33 AM, Shu Shen wrote:
> > This patch fixes build failing with undefined symbol _PAGE_IOMAP with
> > kernel 3.18.
> >
> > The Xen-specific _PAGE_IOMAP PTE flag was removed in kernel 3.18 and
> > could be used for other purpose in future. This patc
2014-12-11 17:07, Bruce Richardson:
> On Thu, Dec 11, 2014 at 04:58:42PM +, Pattan, Reshma wrote:
> > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Bruce Richardson
> > > When using multiple processes, the TX function used in all processes
> > > should be
> > > the same, otherwise th
> > On X710, performance number is far from the expectation on recent
> > firmware versions. The fix for this issue may not be integrated in
> > the following firmware version. So the workaround in software driver
> > is needed. It needs to modify the initial values of 3 internal only
> > registers
> Since commit fbde27f19ab8f "get default Rx/Tx configuration from dev info",
> a default RX/TX configuration can be used for all PMDs.
> In case of vmxnet3, the whole structure was zeroed and not filled out.
> The PMD does not support multi segments or offload functions,
> so txq_flags should have
> Since commit a155d4301 "support link bonding device initialization",
> EAL probes drivers to the PCI devices in rte_eal_init,
> then PCI resources are mapped if a device
> is bound to igb_uio driver, for instance.
> Therefore, test app probes all the devices and multiprocess unit test
> tries to
> At error app_acl_init() can return without freeing dynamically allocated
> memory.
> Not really a big problem, as if app_acl_init() fails,
> then application would terminate immediately anyway.
> Though it is a good coding practise to make a function to cleanup after
> itself.
>
> Signed-off-b
> Static analysis shows that once instance of rte_zmalloc is missing
> a return value check in the code. This is fixed by adding a return
> value check. The malloc call itself is moved to earlier in the function
> so that no work is done unless all memory allocation requests have
> succeeded - ther
> Bernard Iremonger (1):
> doc: add bsd license to exception path svg
>
> Declan Doherty (1):
> doc: add bsd license to link bonding svgs
>
> Pablo de Lara (4):
> doc: add vm power mgmt overview svg
> doc: add vm power mgmt request sequence svg
> doc: add vm power mg
> -Original Message-
> From: Ananyev, Konstantin
> Sent: Tuesday, December 16, 2014 4:17 PM
> To: 'Neil Horman'
> Cc: dev at dpdk.org
> Subject: RE: [dpdk-dev] [PATCH 10/17] librte_acl: add AVX2 as new
> rte_acl_classify() method
>
>
>
> > -Original Message-
> > From: Neil Hor
2014-12-16 16:43, Neil Horman:
> On Tue, Dec 16, 2014 at 02:39:44PM +, Bruce Richardson wrote:
> > The port mask parsing in testpmd allowed up to 64 bits to be processed,
> > even if RTE_MAX_ETHPORTS is set to a max of 32. Fix this by only
> > processing up to min(RTE_MAX_ETHPORTS,64) bits of t
> Add missing setup for X540 MAC type when setting up VF.
> Additional check exists in Linux driver but not in DPDK.
>
> Signed-off-yb: Bill Hong
> Signed-off-by: Stephen Hemminger
Applied
Thanks
--
Thomas
A new DPDK release candidate is ready for testing:
http://dpdk.org/browse/dpdk/tag/?id=v1.8.0-rc5
This release candidate includes some build fixes, some corner cases
fixes and some documentation updates.
Changelog (main changes since rc4)
- fixes for:
* building
Hi Thomas,
> -Original Message-
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> Sent: Wednesday, December 17, 2014 12:37 AM
> To: Ouyang, Changchun
> Cc: dev at dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] examples/vhost: Fix vlan offload issue
>
> 2014-12-12 12:15, Ouyang C
Hi ,
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Vlad Zolotarov
> Sent: Tuesday, December 16, 2014 11:36 PM
> To: Thomas Monjalon
> Cc: dev at dpdk.org; Avi Kivity; Gleb Natapov
> Subject: Re: [dpdk-dev] DPDK RSS support for ixgbevf PMD
>
>
> On 12/15/1
>
> From: Ravi Kerur [mailto:rkerur at gmail.com]
> Sent: Tuesday, December 16, 2014 8:14 PM
> To: Ananyev, Konstantin
> Cc: Neil Horman; dev at dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] Minor fixes in rte_common.h file.
>
>
>
> On Tue, Dec 16, 2014 at 9:23 AM, Ananyev, Konstantin intel.com
> > +{
> > + struct virtio_net *dev = get_device(ctx);
> > +
> > + /* We have to stop the queue (virtio) if it is running. */
> > + if (dev->flags & VIRTIO_DEV_RUNNING)
> > + notify_ops->destroy_device(dev);
>
> I have an one concern about finalization of vrings.
> Can vhost-backen
On 12/16/2014 11:21 PM, Thomas Monjalon wrote:
> 2014-12-11 13:27, Jincheng Miao:
>> RHEL6.5 kernel is based on 2.6.32. But there are two changing
>> from 2.6.35:
>> 1. socket struct is changed
>> It wrappered previous wait_queue_head_t of socket to
>> struct socket_wq. So for the kernel older than
(2014/12/17 10:06), Xie, Huawei wrote:
>>> +{
>>> + struct virtio_net *dev = get_device(ctx);
>>> +
>>> + /* We have to stop the queue (virtio) if it is running. */
>>> + if (dev->flags & VIRTIO_DEV_RUNNING)
>>> + notify_ops->destroy_device(dev);
>> I have an one concern about final
(2014/12/17 12:31), Tetsuya Mukawa wrote:
> (2014/12/17 10:06), Xie, Huawei wrote:
+{
+ struct virtio_net *dev = get_device(ctx);
+
+ /* We have to stop the queue (virtio) if it is running. */
+ if (dev->flags & VIRTIO_DEV_RUNNING)
+ notify_ops->destroy_dev
Hi list,
I have enic driver compiled as part of kernel. when the system comes
up, it detects all the 4 vnics in mysystem ( say eth0, eth1, eth2,
eth3). I am removing eth1, eth2 and eth3 thru sysfs remove entry (
https://www.kernel.org/doc/Documentation/filesystems/sysfs-pci.txt ).
1.After that i
Compile warning which is treated as error occurs on Oracle Linux
(kernel 2.6.39, gcc 4.4.7) as below. Aliasing
'struct i40e_aqc_debug_reg_read_write' should be avoided. Use the
elements inside that structure directly can fix the issue.
lib/librte_pmd_i40e/i40e_ethdev.c: In function 'eth_i40e_dev_i
I used unbind option...not remove. Still i face this problem
On Wed, Dec 17, 2014 at 11:02 AM, ratheesh kannoth
wrote:
> Hi list,
>
> I have enic driver compiled as part of kernel. when the system comes
> up, it detects all the 4 vnics in mysystem ( say eth0, eth1, eth2,
> eth3). I am removing e
On Tue, Dec 16, 2014 at 11:12 PM, Barak Enat wrote:
> Hi
>
>
>
> When building 1.7.1 or 1.8.0-rc4 on recent CentOS 6 (6.6) I got this error:
>
>
>
> In file included from
> /home/makerpm/rpmbuild/BUILD/dpdk-1.8.0/lib/librte_eal/linuxapp/kni/ethtool/igb/e1000_osdep.h:41,
>
> from
>
Le 17 d?c. 2014 04:15, "Stephen Hemminger" a
?crit :
>
> On Fri, 31 Oct 2014 15:53:19 -0700 (PDT)
> Thomas Monjalon wrote:
>
> > Hi,
> >
> > Talks related to DPDK can be proposed for FOSDEM 2015:
> > https://fosdem.org/2015/
> > This conference will take place in Belgium on 31 January & 1 F
thanks. i will check this
On Tue, Dec 16, 2014 at 4:04 PM, Alex Markuze wrote:
>
>
>
> On Tue, Dec 16, 2014 at 2:24 PM, Helmut Sim wrote:
>>
>> Thanks Alex,
>>
>> So i probably miss something...
>> what you are saying is correct for IP segmentation where the segmentation
>> is at the IP level, a
On 12/17/14 03:03, Ouyang, Changchun wrote:
> Hi ,
>
>> -Original Message-
>> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Vlad Zolotarov
>> Sent: Tuesday, December 16, 2014 11:36 PM
>> To: Thomas Monjalon
>> Cc: dev at dpdk.org; Avi Kivity; Gleb Natapov
>> Subject: Re: [dpdk-de
Hi Pablo and Thomas,
We use latest package DPDK-1.8-rc5, and we found some compiled errors,
Our Test Environment setup as follows:
- OS: Fedora20 3.11.10-301.fc20.x86_64
- GCC: gcc version 4.8.2 20131017 (Red Hat 4.8.2-1)
- CPU: Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
- NIC: Intel Corporati
From: Yong Liu
main.o: In function `rte_pktmbuf_free':
main.c:(.text+0x9c): undefined reference to `per_lcore__lcore_id'
Signed-off-by: Marvin liu
---
mk/rte.app.mk | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/mk/rte.app.mk b/mk/rte.app.mk
index 5fc3118..b51d814 10
On Tue, Dec 16, 2014 at 11:12:36PM -0500, Rick LaMont wrote:
> My DPDK application works fine when it's the primary process but crashes
> whenever --proc-type=secondary. The segmentation fault occurs in this call
> to mmap() within rte_eal_hugepage_attach():
>
> /*
> * fdzero is m
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Chao Zhu
> Sent: Saturday, December 13, 2014 3:06 AM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH] doc: Add IBM Power description to linux guides
>
> This patch added IBM ppc_64 descriptions, including arc
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Sergio Gonzalez Monroy
> Sent: Monday, December 15, 2014 10:33 AM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH v4] doc: add known issue for iommu and igb_uio
>
> Known issue regarding iommu/VT-d and igb_ui
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Siobhan Butler
> Sent: Tuesday, December 16, 2014 10:57 AM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH] doc: remove intel legal info from freebsd-gsg
>
> Removed redundant legal blurb from FreeBSD GSG
>
2014-12-17 00:51, Ouyang, Changchun:
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> > 2014-12-12 12:15, Ouyang Changchun:
> > > The following commit break vm2vm hard mode test cases:
> > > commit db4014f2b65cb31bf209cadd5bcec778ca137fe2
> > > Author: Huawei Xie
> > > Date: Thu N
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Siobhan Butler
> Sent: Tuesday, December 16, 2014 10:50 AM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH v2] doc: remove redundant intel references-freebsd
> gsg
>
> Updated the FreeBSD GSG to remove redun
2014-12-17 14:21, Jincheng Miao:
> On Tue, Dec 16, 2014 at 11:12 PM, Barak Enat wrote:
> > It seems the assumption that skb_set_hash is missing in CentOS prior to
> > version 7 is not valid anymore.
>
> Yes, you are right, this function skb_set_hash is added from Cent 6.6,
> so some macro should
On Wed, Dec 17, 2014 at 12:45:32AM +0100, Thomas Monjalon wrote:
> 2014-12-11 02:54, Hiroshi Shimamoto:
> > From: Hiroshi Shimamoto
> >
> > The application should be linked to the single combined library in the
> > condition that both of CONFIG_RTE_BUILD_COMBINE_LIB and
> > CONFIG_RTE_BUILD_SHARE
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> Sent: Tuesday, December 16, 2014 11:43 PM
>
> 2014-12-16 19:48, Thomas Monjalon:
> > 2014-10-28 15:48, Sergio Gonzalez Monroy:
> > > If we set EXTRA_CFLAGS=-O0, build fails with following error:
> > >
> > > /usr/bin/ld: test: hidden s
On Wed, Dec 17, 2014 at 10:38:16AM +, Bruce Richardson wrote:
> On Wed, Dec 17, 2014 at 12:45:32AM +0100, Thomas Monjalon wrote:
> > 2014-12-11 02:54, Hiroshi Shimamoto:
> > > From: Hiroshi Shimamoto
> > >
> > > The application should be linked to the single combined library in the
> > > cond
2014-12-17 10:38, Bruce Richardson:
> On Wed, Dec 17, 2014 at 12:45:32AM +0100, Thomas Monjalon wrote:
> > 2014-12-11 02:54, Hiroshi Shimamoto:
> > > From: Hiroshi Shimamoto
> > >
> > > The application should be linked to the single combined library in the
> > > condition that both of CONFIG_RTE_
On Wed, Dec 17, 2014 at 11:43:51AM +0100, Thomas Monjalon wrote:
> 2014-12-17 10:38, Bruce Richardson:
> > On Wed, Dec 17, 2014 at 12:45:32AM +0100, Thomas Monjalon wrote:
> > > 2014-12-11 02:54, Hiroshi Shimamoto:
> > > > From: Hiroshi Shimamoto
> > > >
> > > > The application should be linked t
On Wed, Dec 17, 2014 at 05:20:44PM +0800, Marvin Liu wrote:
> From: Yong Liu
>
> main.o: In function `rte_pktmbuf_free':
> main.c:(.text+0x9c): undefined reference to `per_lcore__lcore_id'
>
> Signed-off-by: Marvin liu
Acked-by: Bruce Richardson
> ---
> mk/rte.app.mk | 6 +++---
> 1 file ch
2014-12-17 10:47, Bruce Richardson:
> On Wed, Dec 17, 2014 at 05:20:44PM +0800, Marvin Liu wrote:
> > From: Yong Liu
> >
> > main.o: In function `rte_pktmbuf_free':
> > main.c:(.text+0x9c): undefined reference to `per_lcore__lcore_id'
> >
> > Signed-off-by: Marvin liu
>
> Acked-by: Bruce Richa
Hi Jay,
From: Jay Rolette [mailto:role...@infiniteio.com]
Sent: Tuesday, December 16, 2014 7:21 PM
To: Ananyev, Konstantin
Cc: Dev
Subject: Re: [dpdk-dev] [PATCH] replaced O(n^2) sort in sort_by_physaddr() with
qsort() from standard library
Actually, I just relooked at the email I sent and it lo
> Subject: Re: [dpdk-dev] [PATCH] mk: fix link to combined library
>
> On Wed, Dec 17, 2014 at 11:43:51AM +0100, Thomas Monjalon wrote:
> > 2014-12-17 10:38, Bruce Richardson:
> > > On Wed, Dec 17, 2014 at 12:45:32AM +0100, Thomas Monjalon wrote:
> > > > 2014-12-11 02:54, Hiroshi Shimamoto:
> > >
Hello,
I'm trying the test-pmd on intel 2 * Xeon 5650 2.67GHz 12 cores server.
When I send 10G on one port handled by one core - i can get line rate (no
misses).
But when I use ip-rss and receive the traffic by 2 queues and 2 cores (on
the same socket) - I get many rx-misses.
[I can see the traff
2014-12-17 08:59, Zhang, XiaonanX:
> Hi Pablo and Thomas,
>We use latest package DPDK-1.8-rc5, and we found some compiled errors,
>
> Our Test Environment setup as follows:
>
> - OS: Fedora20 3.11.10-301.fc20.x86_64
> - GCC: gcc version 4.8.2 20131017 (Red Hat 4.8.2-1)
> - CPU: Intel(R) Xeon
-v3:
Split patches
-v2:
Incorporates Pawel's comments regarding assertion's check on activate_slave
array indexing
Fixes for link bonding library identified by static analysis tool
- Overflow assert for active_slaves array in activate_slave function
- Allocation check of pci_id_table in rte_et
Signed-off-by: Declan Doherty
---
lib/librte_pmd_bond/rte_eth_bond_api.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/librte_pmd_bond/rte_eth_bond_api.c
b/lib/librte_pmd_bond/rte_eth_bond_api.c
index b124784..c2a99a3 100644
--- a/lib/librte_pmd_bond/rte_eth_bond_api.c
Signed-off-by: Declan Doherty
---
lib/librte_pmd_bond/rte_eth_bond_api.c | 4
1 file changed, 4 insertions(+)
diff --git a/lib/librte_pmd_bond/rte_eth_bond_api.c
b/lib/librte_pmd_bond/rte_eth_bond_api.c
index ef5ddf4..b124784 100644
--- a/lib/librte_pmd_bond/rte_eth_bond_api.c
+++ b/lib/l
Signed-off-by: Declan Doherty
---
lib/librte_pmd_bond/rte_eth_bond_pmd.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/librte_pmd_bond/rte_eth_bond_pmd.c
b/lib/librte_pmd_bond/rte_eth_bond_pmd.c
index 3db473b..bb4a537 100644
--- a/lib/librte_pmd_bond/rte_eth_bo
This series are compilation fixes seen with clang-3.5 on linux.
Olivier Matz (5):
test-devargs: fix misplaced braces in strncmp call
examples/l3fwd: fix compilation with clang 3.5
examples/netmap: fix overflow in ioctl operation
examples/vm_power_manager: move -lvirt in LDLIBS
examples/v
One occurrence call to strncmp had the closing brace in the wrong
place. Changing this form:
if (strncmp(X, Y, sizeof(X) != 0))
which does a comparison of length 1, to
if (strncmp(X, Y, sizeof(X)) != 0)
which does the correct length comparison and then compares the result
to zero in
Fix the following error:
error: unused function 'l3fwd_simple_forward'
The l3fwd_simple_forward() is maybe unused, due to compilation options
(APP_LOOKUP_METHOD, ENABLE_MULTI_BUFFER_OPTIMIZE). As the combinatorial
is quite big, it looks simpler to add the __attribute__((unused)) on
this function
Compiling the netmap example with clang-3.5 triggered the following
warning:
compat_netmap.c:783:11: error: overflow converting case value to
switch condition type (3225184658 to 18446744072639768978)
[-Werror,-Wswitch]
case NIOCREGIF:
^
Indeed, an ioctl va
The argument -lvirt is a linker parameter, not a CFLAG.
Signed-off-by: Olivier Matz
---
examples/vm_power_manager/Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/examples/vm_power_manager/Makefile
b/examples/vm_power_manager/Makefile
index b0a1037..113dbc4 100644
Fix a typo: cmdline_parse_token_string_t was used in place of
cmdline_parse_num_string_t.
Seen with clang-3.5.
Signed-off-by: Olivier Matz
---
examples/vm_power_manager/vm_power_cli.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/vm_power_manager/vm_power_cli.c
b
app/test/test_sched.c:
-Fix several checking for NULL pointer
lib/librte_pmd_af_packet/rte_eth_af_packet.c:
-Not munmaped queue area
-Fix several checking for NULL pointer
Signed-off-by: Daniel Mrzyglod
---
app/test/test_sched.c| 2 ++
lib/librte_pmd_af_packet/rte_eth_af
Hi Helmut,
On 12/17/2014 08:17 AM, Helmut Sim wrote:
> While working on TSO based solution I faced the following two questions:
>
> 1.
> is there a maximum pkt_len to be used with TSO?, e.g. let's say if
> seg_sz
> is 1400 can the entire segmented pkt be 256K (higer than 64
On 12/17/2014 7:01 PM, Ananyev, Konstantin wrote:
> Hi Jay,
>
> From: Jay Rolette [mailto:rolette at infiniteio.com]
> Sent: Tuesday, December 16, 2014 7:21 PM
> To: Ananyev, Konstantin
> Cc: Dev
> Subject: Re: [dpdk-dev] [PATCH] replaced O(n^2) sort in sort_by_physaddr()
> with qsort() from stand
From: Reshma Pattan
v2 changes:
fixed setup menu options in linux gsg to
keep in synch with setup.sh
Signed-off-by: Reshma Pattan
---
doc/guides/linux_gsg/quick_start.rst | 62 ++
1 files changed, 33 insertions(+), 29 deletions(-)
diff --git a/doc/gu
Hi Daniel,
2014-12-17 12:56, Daniel Mrzyglod:
> app/test/test_sched.c:
> -Fix several checking for NULL pointer
> lib/librte_pmd_af_packet/rte_eth_af_packet.c:
> -Not munmaped queue area
> -Fix several checking for NULL pointer
These several fixes should be better explained and referenced
if you
This patch fixes checking the link state of a virtual function. If the
state has already been checked, it does not need to be checked
again. Previously, get_link_status in the ixgbe_hw struct was
used to track if the information had already been updated, but this
field was always set to false.
Sig
2014-12-17 13:22, Balazs Nemeth:
> This patch fixes checking the link state of a virtual function. If the
> state has already been checked, it does not need to be checked
> again. Previously, get_link_status in the ixgbe_hw struct was
> used to track if the information had already been updated, but
Signed-off-by: Jay Rolette
---
lib/librte_eal/linuxapp/eal/eal_memory.c | 59 +++-
1 file changed, 20 insertions(+), 39 deletions(-)
diff --git a/lib/librte_eal/linuxapp/eal/eal_memory.c
b/lib/librte_eal/linuxapp/eal/eal_memory.c
index bae2507..3656515 100644
--- a/l
Thanks to some help from Matthew Hall, it looks like I have it working now.
I just resent the patch directly from git. Please let me know if it looks
ok now?
Sorry for the hassles. We use Mercurial internally, so while there is a lot
of overlap, sending patches isn't something I have to worry abou
self-NAK now that I know that gmail web client borks up the patches. I'll
re-submit.
Jay
On Fri, Dec 12, 2014 at 7:28 PM, Jay Rolette wrote:
>
> Fixed spam from kni_allocate_mbufs() when no mbufs are free.
> If mbufs exhausted, 'out of memory' message logged at EXTREMELY high
> rates. Now logs n
Signed-off-by: Jay Rolette
---
lib/librte_kni/rte_kni.c | 21 -
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/lib/librte_kni/rte_kni.c b/lib/librte_kni/rte_kni.c
index fdb7509..f89319c 100644
--- a/lib/librte_kni/rte_kni.c
+++ b/lib/librte_kni/rte_kni.c
@@ -40,
2014-12-17 10:41, Gonzalez Monroy, Sergio:
> > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> > 2014-12-16 19:48, Thomas Monjalon:
> > > 2014-10-28 15:48, Sergio Gonzalez Monroy:
> > > > Fix: link combined shared lib using CC if LINK_USING_CC is enabled.
> > > >
> > > > Signed-off-by
On Wed, Dec 17, 2014 at 01:55:20PM +0100, Olivier Matz wrote:
> This series are compilation fixes seen with clang-3.5 on linux.
>
> Olivier Matz (5):
> test-devargs: fix misplaced braces in strncmp call
> examples/l3fwd: fix compilation with clang 3.5
> examples/netmap: fix overflow in ioctl
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Reshma Pattan
> Sent: Wednesday, December 17, 2014 1:11 PM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH v2] doc: fix setup menu options in linux gsg
>
> From: Reshma Pattan
>
> v2 changes:
> fixed se
On Wed, Dec 17, 2014 at 02:08:27PM +, Bruce Richardson wrote:
> On Wed, Dec 17, 2014 at 01:55:20PM +0100, Olivier Matz wrote:
> > This series are compilation fixes seen with clang-3.5 on linux.
> >
> > Olivier Matz (5):
> > test-devargs: fix misplaced braces in strncmp call
> > examples/l3
Hi Jay,
Please read http://dpdk.org/dev#send for submission guidelines.
A description of why you do it would be welcome in the commit log.
> +static int
> +cmp_physaddr(const void *a, const void *b)
> +{
> +#ifndef RTE_ARCH_PPC_64
> + const struct hugepage_file *p1 = (const struct hugepage_f
Hi,
While working with the i40e adaptor on dpdk-1.7.1 I've run into an issue
where it only supports Intel QSFPs. There is a compilation option of
CONFIG_RTE_LIBRTE_I40E_ALLOW_UNSUPPORTED_SFP which would seem to indicate
that this is possible, but the flag (or a derivative) isn't referenced
anywher
Hi Thomas,
Please read http://dpdk.org/dev#send for submission guidelines.
>
I did when I was figuring out how to submit the patch, but possible I'm
missing something on the tools to get it to include the commit comment
correctly.
A description of why you do it would be welcome in the commit log
I could see that .id_table is assigned NULL in igbuio_pci_driver structure.
if so Then pci_probe will be called for all devices right ? If some
interfaces are already controlled some other kernel mode driver, how
dpdk omits them out ?
-Ratheesh
On Wed, Dec 17, 2014 at 09:07:45AM -0600, Jay Rolette wrote:
>
> > Comments shall be C-style (/* */).
> >
>
> Single line comments ('//') have been part of the C standard since C99. Is
> DPDK following C89 or is this just a style thing? If it is a style thing, a
> link to a page with the rubric wo
On Tue, Dec 16, 2014 at 04:16:48PM +, Ananyev, Konstantin wrote:
>
>
> > -Original Message-
> > From: Neil Horman [mailto:nhorman at tuxdriver.com]
> > Sent: Monday, December 15, 2014 8:21 PM
> > To: Ananyev, Konstantin
> > Cc: dev at dpdk.org
> > Subject: Re: [dpdk-dev] [PATCH 10/17]
On Tue, Dec 16, 2014 at 5:05 PM, Ananyev, Konstantin <
konstantin.ananyev at intel.com> wrote:
>
>
>
> >
> > From: Ravi Kerur [mailto:rkerur at gmail.com]
> > Sent: Tuesday, December 16, 2014 8:14 PM
> > To: Ananyev, Konstantin
> > Cc: Neil Horman; dev at dpdk.org
> > Subject: Re: [dpdk-dev] [PATCH
On Tue, Dec 16, 2014 at 1:40 PM, Neil Horman wrote:
>
> On Tue, Dec 16, 2014 at 08:46:51AM -0800, Ravi Kerur wrote:
> > On Sat, Dec 13, 2014 at 2:39 AM, Neil Horman
> wrote:
> > >
> > > On Fri, Dec 12, 2014 at 03:04:34PM -0800, r k wrote:
> > > > Subject: [PATCH] Minor fixes in rte_common.h file.
Hi,
DPDK 1.8.0 removes the data pointer from the mbuf structure, such that the
start of the data in the segment buffer must be calculated (i.e. buf_addr +
data_off = 'data').
Given this, what is the best approach to set the mbuf data to NULL (previously
mbuf.data = NULL)?
As I see it, given a
On Wed, Dec 17, 2014 at 04:44:15PM +, Kavanagh, Mark B wrote:
> Hi,
>
> DPDK 1.8.0 removes the data pointer from the mbuf structure, such that the
> start of the data in the segment buffer must be calculated (i.e. buf_addr +
> data_off = 'data').
>
> Given this, what is the best approach to
Removed Intel(R) DPDK references from sample app guide.
Removed Intel legal blurb from sample app guide.
Siobhan Butler (2):
doc: remove intel dpdk in sample app ug
doc: remove intel legal blurb from sample app ug
doc/guides/sample_app_ug/cmd_line.rst | 10 ++--
doc/guides/sampl
Removed Legal blurb from sample applications guide.
Signed-off-by: Siobhan Butler
---
doc/guides/sample_app_ug/index.rst | 35 ---
1 file changed, 35 deletions(-)
diff --git a/doc/guides/sample_app_ug/index.rst
b/doc/guides/sample_app_ug/index.rst
index c3b50e2.
From: Siobhan Butler
Signed-off-by: Siobhan Butler
---
doc/guides/rel_notes/new_features.rst | 17 -
doc/guides/rel_notes/supported_features.rst | 22 ++
2 files changed, 22 insertions(+), 17 deletions(-)
diff --git a/doc/guides/rel_notes/new_features.
From: Siobhan Butler
Signed-off-by: Siobhan Butler
---
doc/guides/rel_notes/resolved_issues.rst | 30 ++
1 file changed, 30 insertions(+)
diff --git a/doc/guides/rel_notes/resolved_issues.rst
b/doc/guides/rel_notes/resolved_issues.rst
index f9ddb7f..66afc25 100644
Removed redundant references to Intel(R) DPDK in Sample App UG.
Signed-off-by: Siobhan Butler
---
doc/guides/sample_app_ug/cmd_line.rst | 10 ++--
doc/guides/sample_app_ug/exception_path.rst| 8 ++--
doc/guides/sample_app_ug/hello_world.rst | 8 ++--
doc/guides/s
From: Siobhan Butler
Signed-off-by: Siobhan Butler
---
doc/guides/rel_notes/new_features.rst | 24
1 file changed, 24 insertions(+)
diff --git a/doc/guides/rel_notes/new_features.rst
b/doc/guides/rel_notes/new_features.rst
index a93aa3c..00895ce 100644
--- a/doc/guide
From: Siobhan Butler
Added new and existing names of sample apps to list of
sample apps in release notes.
Signed-off-by: Siobhan Butler
---
doc/guides/rel_notes/rel_description.rst | 6 ++
1 file changed, 6 insertions(+)
diff --git a/doc/guides/rel_notes/rel_description.rst
b/doc/guides/
From: Siobhan Butler
Removed multiple references to Intel(R) DPDK where no longer
relevant.
Signed-off-by: Siobhan Butler
---
doc/guides/rel_notes/faq.rst| 14 +++---
doc/guides/rel_notes/known_issues.rst | 30 ++---
doc/guides/rel_notes/rel_description.rst| 3
From: Siobhan Butler
Removed resolved issues from known issues section.
Added new resolved issues to resolved issues section.
Signed-off-by: Siobhan Butler
---
doc/guides/rel_notes/known_issues.rst| 225 ---
doc/guides/rel_notes/resolved_issues.rst | 171 +++
Removed Intel DPDK references from testpmd User Guide.
Removed Intel legal blurb from testpmd User Guide.
Siobhan Butler (2):
doc: removed intel references from testpmd_ug
doc: removed intel legal blurb from testpmd_ug
doc/guides/testpmd_app_ug/build_app.rst | 4 +--
doc/guides/testpmd_app_
Removed Intel Legal blurb from TestPMD User Guide.
Signed-off-by: Siobhan Butler
---
doc/guides/testpmd_app_ug/index.rst | 46 -
1 file changed, 46 deletions(-)
diff --git a/doc/guides/testpmd_app_ug/index.rst
b/doc/guides/testpmd_app_ug/index.rst
index d1ad
1 - 100 of 131 matches
Mail list logo