Hi Nelio,
On 12/14/2017 08:44 PM, Nelio Laranjeiro wrote:
Mellanox INNOVA NIC needs to have final target queue actions to perform
inline crypto.
Signed-off-by: Nelio Laranjeiro
---
Changes in v4:
* remove Egress code.
Changes in v3:
* removed PASSTHRU test for ingress.
* removed ch
-Original Message-
> Date: Fri, 15 Dec 2017 15:54:42 +0530
> From: Hemant Agrawal
> To: olivier.m...@6wind.com, santosh.shu...@caviumnetworks.com
> CC: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 1/2] mbuf: update default Mempool ops with HW
> active pool
> X-Mailer: git-send-email 2.7.4
>
-Original Message-
> Date: Fri, 15 Dec 2017 15:54:43 +0530
> From: Hemant Agrawal
> To: olivier.m...@6wind.com, santosh.shu...@caviumnetworks.com
> CC: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 2/2] dpaa2: register dpaa2 mempool ops as active
> mempool
> X-Mailer: git-send-email 2.7.4
>
-Original Message-
> Date: Fri, 15 Dec 2017 16:11:22 +0530
> From: Hemant Agrawal
> To: olivier.m...@6wind.com
> CC: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH v2] doc: announce ABI change for pktmbuf pool
> create API
> X-Mailer: git-send-email 2.7.4
>
> Introduce a new argument ops_name
On Thursday 14 December 2017 02:01 PM, Pavan Nikhilesh wrote:
> Advertise mempool/octeontx as the only supported mempool ops when the
> application checks using `rte_eth_dev_pool_ops_supported`.
>
> Signed-off-by: Pavan Nikhilesh
> ---
Acked-by: Santosh Shukla
-Original Message-
> Date: Fri, 15 Dec 2017 18:29:27 +0530
> From: Sunil Kumar Kori
> To: jerin.ja...@caviumnetworks.com
> CC: dev@dpdk.org, hemant.agra...@nxp.com
> Subject: [PATCH 0/6] event/dpaa: Support for eventdev
> X-Mailer: git-send-email 2.9.3
>
> Event device support for atomic
-Original Message-
> Date: Fri, 15 Dec 2017 11:26:21 +
> From: Liang Ma
> To: jerin.ja...@caviumnetworks.com
> CC: dev@dpdk.org, harry.van.haa...@intel.com, bruce.richard...@intel.com,
> deepak.k.j...@intel.com, john.ge...@intel.com, peter.mccar...@intel.com,
> sea...@gmail.com
> Sub
On 12/18/2017 2:27 PM, Jerin Jacob wrote:
...
diff --git a/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c
b/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c
index 334e1f5..5a6f292 100644
--- a/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c
+++ b/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c
@@ -64,6 +64,7 @@ dpaa2_cre
On 12/15/2017 9:22 PM, Stephen Hemminger wrote:
On Fri, 15 Dec 2017 15:54:42 +0530
Hemant Agrawal wrote:
+ if ((strcmp(default_ops, RTE_MBUF_DEFAULT_MEMPOOL_OPS) == 0) &&
+ (active_mbuf_pool_ops_name != NULL))
Why not have less parenthesis () in conditionals?
I will cha
On 12/18/2017 2:25 PM, Jerin Jacob wrote:
-Original Message-
Date: Fri, 15 Dec 2017 15:54:42 +0530
From: Hemant Agrawal
To: olivier.m...@6wind.com, santosh.shu...@caviumnetworks.com
CC: dev@dpdk.org
Subject: [dpdk-dev] [PATCH 1/2] mbuf: update default Mempool ops with HW
active pool
X-
On Saturday 09 December 2017 06:25 PM, Pavan Nikhilesh wrote:
> The channel to port id map is used by event octeontx to map the received
> wqe to the respective ethdev port.
>
> Signed-off-by: Pavan Nikhilesh
> ---
>
> v2 changes:
> - Used extern instead of defining global variable
>
> driver
On Saturday 09 December 2017 06:25 PM, Pavan Nikhilesh wrote:
> When octeontx event dev receives a packet for the event Rx adapter, the
> mbuf port id should contain the appropriate ethdev id instead of
> internal channel info.
>
> Fixes: 45a914c5bd71 ("event/octeontx: support event Rx adapter")
>
Hi Anoob,
On Mon, Dec 18, 2017 at 01:53:50PM +0530, Anoob Joseph wrote:
> Hi Nelio,
>
>
> On 12/14/2017 08:44 PM, Nelio Laranjeiro wrote:
> > Mellanox INNOVA NIC needs to have final target queue actions to perform
> > inline crypto.
> >
> > Signed-off-by: Nelio Laranjeiro
> >
> > ---
> >
> >
Generic flow API have both direction bits, ingress and egress for rules
which may work on both sides.
Fixes: ec17993a145a ("examples/ipsec-secgw: support security offload")
Cc: akhil.go...@nxp.com
Signed-off-by: Nelio Laranjeiro
Acked-by: Radu Nicolau
Acked-by: Anoob Joseph
---
examples/ipsec
Mellanox INNOVA NIC needs to have final target queue actions to perform
inline crypto.
Signed-off-by: Nelio Laranjeiro
---
Changes in v5:
* Add back default second action.
Changes in v4:
* remove Egress code.
Changes in v3:
* removed PASSTHRU test for ingress.
* removed check on config
Add Egress flow create for devices supporting
RTE_SECURITY_TX_HW_TRAILER_OFFLOAD.
Signed-off-by: Nelio Laranjeiro
--
Changes in v5:
* removed default second end actions wrongly added in this patch.
---
examples/ipsec-secgw/ipsec.c | 7 +++
1 file changed, 7 insertions(+)
diff --git a/ex
On 12/14/2017 08:15 PM, Olivier Matz wrote:
From: Laurent Hardy
When a new mac address is set, it is saved in dev->data->mac_addrs
before the ethdev handler is called.
First, it is inconsistent with the other ethdev functions
rte_eth_dev_mac_addr_remove() and rte_eth_dev_mac_addr_add().
Moreo
On Thu, Dec 14, 2017 at 04:35:45PM +0100, Olivier MATZ wrote:
> Hi Xueming,
>
> On Sat, Dec 09, 2017 at 11:39:23PM +0800, Xueming Li wrote:
> > Initialize result memory every time before parsing. Also save
> > successfully parsed result before further ambiguous command detection to
> > avoid resul
Hello Andrew,
Don't you think that it's not correct that net/sfc works that way?
If we go further, dev->dev_ops->mac_addr_set not only should be called
before ether_addr_copy.
It should return status code, and in case of error ether_addr_copy
shouldn't be called at all.
Am I wrong?
Best regards,
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jasvinder Singh
> Sent: Friday, December 15, 2017 10:39 AM
> To: dev@dpdk.org
> Cc: Iremonger, Bernard
> Subject: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow classify
> lib
>
> Updates the docum
On 15 Dec 16:23, Neil Horman wrote:
> On Fri, Dec 15, 2017 at 01:50:41PM +, Ma, Liang wrote:
> > On 15 Dec 07:38, Neil Horman wrote:
> > > On Fri, Dec 15, 2017 at 11:26:22AM +, Liang Ma wrote:
> > > > OPDL ring is the core infrastructure of OPDL PMD. OPDL ring library
> > > > provide the co
On 16-Dec-17 2:35 PM, liupan1234 wrote:
Hi All,
struct malloc_heap {
rte_spinlock_t lock;
LIST_HEAD(, malloc_elem) free_head[RTE_HEAP_NUM_FREELISTS];
unsigned alloc_count;
size_t total_size;
} __rte_cache_aligned;
I found there are free list of one malloc h
On 15-Dec-17 3:39 AM, liupan1234 wrote:
Hi all,
I have an urgent question:
1) when an app runs, how to get the really memory it used in real time? for
example, it use -m param to specify 1G memory, but it only used 500 MB, how to
get this info
2) When several apps runs with shared memory: s
On 12/18/2017 01:53 PM, Igor Ryzhov wrote:
On Mon, Dec 18, 2017 at 1:35 PM, Andrew Rybchenko
mailto:arybche...@solarflare.com>> wrote:
On 12/14/2017 08:15 PM, Olivier Matz wrote:
From: Laurent Hardy mailto:laurent.ha...@6wind.com>>
When a new mac address is set, it is sa
This patchset adds the test/test/test app to the Meson build.
In doing so, the test app is improved to allow running a unit
test by setting an environment variable. This allows the meson
test infrastructure to integrate with the DPDK tests. Some nice
improvements from the above integration, includi
This patch enables the test/test app to be built. It also adds
the test binary to be a meson-test, which allows the meson test
infrastructure to be used to run tests.
Tests are listed using the same test binary, however each test
sets a different DPDK_TEST environment variable. The string contents
This commit paves the way for the meson tests in the next
patch. With this patch the test binary checks the DPDK_TEST
environment variable and if set, the contents of the var
are inserted on the test app command line, and run.
This allows testing of various different unit tests without
manual inte
The DPDK uses the Open Source BSD-3-Clause license for the core libraries
and drivers. The kernel components are naturally GPLv2 licensed.
Many of the files in the DPDK source code contain the full text of the
applicable license. For example, most of the BSD-3-Clause files contain a
full copy of t
Signed-off-by: Hemant Agrawal
---
GNUmakefile | 29 +
Makefile| 29 +
2 files changed, 2 insertions(+), 56 deletions(-)
diff --git a/GNUmakefile b/GNUmakefile
index 45b7fbb..2ff3e4b 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,33 +1
Signed-off-by: Hemant Agrawal
---
config/defconfig_arm64-dpaa-linuxapp-gcc | 30 ++---
doc/guides/cryptodevs/dpaa_sec.rst| 31 +++---
doc/guides/nics/dpaa.rst | 31 +++---
doc/guides/prog_guide/rte_security.rst
The next techboard meeting will take place on 2017-12-20 i.e. this Wednesday,
at 3pm UTC.
Meeting place: IRC #dpdk-board
Please send on any items requiring techboard attention.
Regards,
/Hemant
> -Original Message-
> From: techboard [mailto:techboard-boun...@dpdk.org] On Behalf Of
>
> -Original Message-
> From: Kovacevic, Marko
> Sent: Monday, December 18, 2017 11:05 AM
> To: Singh, Jasvinder ; dev@dpdk.org
> Cc: Iremonger, Bernard
> Subject: RE: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow
> classify lib
>
>
>
> > -Original Message-
> > F
No problem, make enough sense for v3.
> -Original Message-
> From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com]
> Sent: Monday, December 18, 2017 6:51 PM
> To: Olivier MATZ
> Cc: Xueming(Steven) Li ; dev@dpdk.org
> Subject: Re: [PATCH v2] lib/cmdline: init CLI parsing memory
>
>
On Mon, Dec 18, 2017 at 11:53:57AM +, Harry van Haaren wrote:
> This commit paves the way for the meson tests in the next
> patch. With this patch the test binary checks the DPDK_TEST
> environment variable and if set, the contents of the var
> are inserted on the test app command line, and run
> On Dec 15, 2017, at 4:41 AM, Hemant Agrawal wrote:
>
> Introduce a new argument ops_name in rte_mempool_set_ops_byname
> for allowing the application to optionally specify the mempool ops.
>
> Signed-off-by: Hemant Agrawal
> ---
> v2: fix checkpatch error
>
> doc/guides/rel_notes/deprecati
On Mon, Dec 18, 2017 at 11:53:58AM +, Harry van Haaren wrote:
> This patch enables the test/test app to be built. It also adds
> the test binary to be a meson-test, which allows the meson test
> infrastructure to be used to run tests.
>
> Tests are listed using the same test binary, however ea
On Mon, Dec 18, 2017 at 11:53:56AM +, Harry van Haaren wrote:
> This patchset adds the test/test/test app to the Meson build.
> In doing so, the test app is improved to allow running a unit
> test by setting an environment variable. This allows the meson
> test infrastructure to integrate with
I will not be directly working on the DPDK project anymore.
Signed-off-by: Sergio Gonzalez Monroy
---
MAINTAINERS | 8 ++--
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index f0baeb4..64f154a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -113,7 +113
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Amr Mokhtar
> Sent: Thursday, December 7, 2017 9:41 PM
> To: dev@dpdk.org
> Cc: tho...@monjalon.net; Burakov, Anatoly ; De
> Lara Guarch, Pablo ; Power, Niall
> ; Macnamara, Chris ;
> Mokhtar, Amr
> Subject: [dpd
On Mon, Dec 18, 2017 at 02:02:06PM +, Sergio Gonzalez Monroy wrote:
> I will not be directly working on the DPDK project anymore.
>
> Signed-off-by: Sergio Gonzalez Monroy
> ---
With regret.
Acked-by: Bruce Richardson
On Mon, Dec 18, 2017 at 06:09:02PM +0530, Hemant Agrawal wrote:
> Signed-off-by: Hemant Agrawal
> ---
> GNUmakefile | 29 +
> Makefile| 29 +
> 2 files changed, 2 insertions(+), 56 deletions(-)
>
Acked-by: Bruce Richardson
On Mon, Dec 18, 2017 at 01:51:52PM +, Wiles, Keith wrote:
>
>
> > On Dec 15, 2017, at 4:41 AM, Hemant Agrawal wrote:
> >
> > Introduce a new argument ops_name in rte_mempool_set_ops_byname
> > for allowing the application to optionally specify the mempool ops.
> >
> > Signed-off-by: Hemant
-Original Message-
> Date: Mon, 18 Dec 2017 11:53:57 +
> From: Harry van Haaren
> To: dev@dpdk.org
> CC: bruce.richard...@intel.com, Harry van Haaren
>
> Subject: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if set
> X-Mailer: git-send-email 2.7.4
>
> This commit paves
Hi Maxime,
apologies for the late answer.
Yes I would think that it would solve the problem that we had. But
there is a slight risk that a driver in a VM (not within our area of
influence) was partly responsible for the severity of the fault and
that we might again experience some difficulties
On 11/30/2017 11:49 AM, Vipin Varghese wrote:
> One of the uses cases from customer site is use TAP PMD to intake user
> specific MAC address during probe. This allows applications make use
> of interfaces with desired MAC.
>
> Extending MAC argumentinfrastructure for tap PMD; we pass custom MAC
> From: Richardson, Bruce
> Sent: Monday, December 18, 2017 1:57 PM
> To: Van Haaren, Harry
> Cc: dev@dpdk.org
> Subject: Re: [PATCH 0/2] next-build: add test app to build
>
> On Mon, Dec 18, 2017 at 11:53:56AM +, Harry van Haaren wrote:
> > This patchset adds the test/test/test app to the Me
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Monday, December 18, 2017 2:59 PM
> To: Van Haaren, Harry
> Cc: dev@dpdk.org; Richardson, Bruce
> Subject: Re: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if
> set
>
> -Original Message-
> > Date: Mon, 18 D
> From: Richardson, Bruce
> Sent: Monday, December 18, 2017 1:55 PM
> To: Van Haaren, Harry
> Cc: dev@dpdk.org
> Subject: Re: [PATCH 2/2] meson: add tests app to build
>
> On Mon, Dec 18, 2017 at 11:53:58AM +, Harry van Haaren wrote:
> > This patch enables the test/test app to be built. It al
On x86 it is possible to use lock-prefixed instructions to get
the similar effect as mfence.
As pointed by Java guys, on most modern HW that gives a better
performance than using mfence:
https://shipilev.net/blog/2014/on-the-fence-with-dependencies/
That patch adopts that technique for rte_smp_mb(
Simple functional test for rte_smp_mb() implementations.
Also when executed on a single lcore could be used as rough
estimation how many cycles particular implementation of rte_smp_mb()
might take.
Signed-off-by: Konstantin Ananyev
---
test/test/Makefile | 1 +
test/test/test_mb.c | 315 +
v2 changes:
Address Bruce code-review comments:
- get rid of macros to simplify the code
- add more comments to the test case
Konstantin Ananyev (2):
test/test: introduce new test-case for rte_smp_mb()
eal/x86: Use lock-prefixed instructions to reduce cost of rte_smp_mb()
.../common/in
-Original Message-
> Date: Mon, 18 Dec 2017 15:24:22 +
> From: "Van Haaren, Harry"
> To: Jerin Jacob
> CC: "dev@dpdk.org" , "Richardson, Bruce"
>
> Subject: RE: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if
> set
>
> > From: Jerin Jacob [mailto:jerin.ja...@caviumnet
On Mon, Dec 18, 2017 at 03:34:13PM +, Konstantin Ananyev wrote:
> On x86 it is possible to use lock-prefixed instructions to get
> the similar effect as mfence.
> As pointed by Java guys, on most modern HW that gives a better
> performance than using mfence:
> https://shipilev.net/blog/2014/on
On Mon, Dec 18, 2017 at 06:09:02PM +0530, Hemant Agrawal wrote:
> Signed-off-by: Hemant Agrawal
> ---
> GNUmakefile | 29 +
> Makefile| 29 +
> 2 files changed, 2 insertions(+), 56 deletions(-)
>
> diff --git a/GNUmakefile b/GNUmakefile
Hi,
> -Original Message-
> From: Stephen Hemminger [mailto:step...@networkplumber.org]
> Sent: Tuesday, December 12, 2017 9:39 AM
> To: Wang, Xiao W
> Cc: Yigit, Ferruh ; dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] igb_uio: allow multi-process access
>
> On Fri, 8 Dec 2017 17:57:33 -
18/12/2017 16:52, Bruce Richardson:
> On Mon, Dec 18, 2017 at 06:09:02PM +0530, Hemant Agrawal wrote:
> > --- a/GNUmakefile
> > +++ b/GNUmakefile
> > @@ -1,33 +1,6 @@
> > -# BSD LICENSE
> > +# SPDX-License-Identifier: BSD-3-Clause
> > #
> > # Copyright(c) 2010-2015 Intel Corporation. All righ
> -Original Message-
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Monday, December 18, 2017 12:30 AM
> To: Eads, Gage
> Cc: Gujjar, Abhinandan S ; dev@dpdk.org;
> Vangati, Narender ; Rao, Nikhil
> ; hemant.agra...@nxp.com; Doherty, Declan
> ; nidadavolu.mur...@cavi
-Original Message-
> Date: Thu, 14 Dec 2017 13:57:02 +
> From: "Ananyev, Konstantin"
> To: Jerin Jacob
> CC: "dev@dpdk.org" , "shah...@mellanox.com"
>
> Subject: RE: [dpdk-dev] [RFC PATCH 0/3] ethdev: few changes in rte_ethdev
> layer
>
> Hi Jerin,
Hi Konstantin,
>
> >
> > Hi
Virtual machines hosted by Hyper-V/Azure platforms are fitted with
simplified virtual network devices named NetVSC that are used for fast
communication between VM to VM, VM to hypervisor, and the outside.
They appear as standard system netdevices to user-land applications, the
main difference bein
As described in more details in the attached documentation (see patch
contents), this virtual device driver manages NetVSC interfaces in virtual
machines hosted by Hyper-V/Azure platforms.
This driver does not manage traffic nor Ethernet devices directly; it acts
as a thin configuration layer that
This patch lays the groundwork for this PMD (draft documentation, copyright
notices, code base skeleton and build system hooks). While it can be
successfully compiled and invoked, it's an empty shell at this stage.
Signed-off-by: Adrien Mazarguil
---
MAINTAINERS
This parameter allows specifying any non-NetVSC interface to use with tap
sub-devices for development purposes.
Signed-off-by: Adrien Mazarguil
---
doc/guides/nics/hyperv.rst | 5 +
drivers/net/hyperv/hyperv.c | 26 +++---
2 files changed, 24 insertions(+), 7 deletions(
> On Dec 18, 2017, at 10:46 AM, Adrien Mazarguil
> wrote:
>
> As described in more details in the attached documentation (see patch
> contents), this virtual device driver manages NetVSC interfaces in virtual
> machines hosted by Hyper-V/Azure platforms.
>
> This driver does not manage traffi
On Mon, Dec 18, 2017 at 04:27:48PM +, Luca Boccassi wrote:
> On Mon, 2017-12-18 at 16:00 +, Bruce Richardson wrote:
> > Signed-off-by: Bruce Richardson
> > ---
> > app/meson.build| 32 ++
> >
>
> Reviewed-by: Luca Boccassi
>
> LG
On Mon, Dec 18, 2017 at 04:27:48PM +, Luca Boccassi wrote:
> On Mon, 2017-12-18 at 16:00 +, Bruce Richardson wrote:
> > Signed-off-by: Bruce Richardson
> > ---
>
> Reviewed-by: Luca Boccassi
>
Applied to dpdk-next-build.
On Mon, 2017-12-18 at 17:41 +, Bruce Richardson wrote:
> On Mon, Dec 18, 2017 at 04:27:48PM +, Luca Boccassi wrote:
> > On Mon, 2017-12-18 at 16:00 +, Bruce Richardson wrote:
> > > Signed-off-by: Bruce Richardson
> > > ---
> > > app/meson.build| 32
On Mon, Dec 18, 2017 at 05:04:23PM +, Wiles, Keith wrote:
> > On Dec 18, 2017, at 10:46 AM, Adrien Mazarguil
> > wrote:
> >
> > As described in more details in the attached documentation (see patch
> > contents), this virtual device driver manages NetVSC interfaces in virtual
> > machines ho
Luca Boccassi writes:
> On Tue, 2017-12-12 at 17:14 +, Bruce Richardson wrote:
>> On Tue, Dec 12, 2017 at 04:59:34PM +, Bruce Richardson wrote:
>> > This patchset changes the meson+ninja build system to always create
>> > both
>> > static and shared libraries when doing a build. The appli
On Mon, 18 Dec 2017 17:46:19 +0100
Adrien Mazarguil wrote:
> Virtual machines hosted by Hyper-V/Azure platforms are fitted with
> simplified virtual network devices named NetVSC that are used for fast
> communication between VM to VM, VM to hypervisor, and the outside.
>
> They appear as standar
On Mon, 18 Dec 2017 17:46:23 +0100
Adrien Mazarguil wrote:
> +static int
> +ether_addr_from_str(struct ether_addr *eth_addr, const char *str)
> +{
> + static const uint8_t conv[0x100] = {
> + ['0'] = 0x80, ['1'] = 0x81, ['2'] = 0x82, ['3'] = 0x83,
> + ['4'] = 0x84, ['5
On Mon, 18 Dec 2017 17:46:21 +0100
Adrien Mazarguil wrote:
> +#ifdef RTE_LIBRTE_HYPERV_DEBUG
> +
> +#define PMD_DRV_LOG(level, ...) \
> + RTE_LOG(level, PMD, \
> + RTE_FMT("%s:%u: %s(): " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
> + strrchr("/" __FILE__, '/') + 1, \
On Mon, 18 Dec 2017 17:46:23 +0100
Adrien Mazarguil wrote:
>
> /**
> + * Destroy a hyperv context instance.
> + *
> + * @param ctx
> + * Context to destroy.
> + */
> +static void
> +hyperv_ctx_destroy(struct hyperv_ctx *ctx)
> +{
> + if (ctx->pipe[0] != -1)
> + close(ctx->pip
> On Dec 18, 2017, at 11:59 AM, Adrien Mazarguil
> wrote:
>> Not to criticize style, but a few blank lines could help in readability for
>> these files IMHO. Unless blank lines are illegal :-)
>
> It's a matter of taste, I think people tend to add random blank lines where
> they think doing
18/12/2017 19:23, Stephen Hemminger:
> Please don't call this drivers/net/hyperv/
> that name conflicts with the real netvsc PMD that I am working on.
>
> Maybe vdev-netvsc?
I expect your PMD to be in drivers/net/netvsc/
Why is it conflicting with drivers/net/hyperv/ ?
On Mon, Dec 18, 2017 at 10:23:04AM -0800, Stephen Hemminger wrote:
> On Mon, 18 Dec 2017 17:46:19 +0100
> Adrien Mazarguil wrote:
>
> > Virtual machines hosted by Hyper-V/Azure platforms are fitted with
> > simplified virtual network devices named NetVSC that are used for fast
> > communication b
On Mon, Dec 18, 2017 at 10:26:29AM -0800, Stephen Hemminger wrote:
> On Mon, 18 Dec 2017 17:46:23 +0100
> Adrien Mazarguil wrote:
>
> > +static int
> > +ether_addr_from_str(struct ether_addr *eth_addr, const char *str)
> > +{
> > + static const uint8_t conv[0x100] = {
> > + ['0'] = 0x
On Mon, Dec 18, 2017 at 10:34:12AM -0800, Stephen Hemminger wrote:
> On Mon, 18 Dec 2017 17:46:23 +0100
> Adrien Mazarguil wrote:
>
> >
> > /**
> > + * Destroy a hyperv context instance.
> > + *
> > + * @param ctx
> > + * Context to destroy.
> > + */
> > +static void
> > +hyperv_ctx_destroy(
18/12/2017 19:28, Stephen Hemminger:
> On Mon, 18 Dec 2017 17:46:21 +0100
> Adrien Mazarguil wrote:
>
> > +#ifdef RTE_LIBRTE_HYPERV_DEBUG
> > +
> > +#define PMD_DRV_LOG(level, ...) \
> > + RTE_LOG(level, PMD, \
> > + RTE_FMT("%s:%u: %s(): " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
> > +
18/12/2017 21:21, Adrien Mazarguil:
> On Mon, Dec 18, 2017 at 10:26:29AM -0800, Stephen Hemminger wrote:
> > On Mon, 18 Dec 2017 17:46:23 +0100
> > Adrien Mazarguil wrote:
> >
> > > +static int
> > > +ether_addr_from_str(struct ether_addr *eth_addr, const char *str)
> > > +{
> > > + static const
Signed-off-by: Ferruh Yigit
---
doc/guides/nics/pcap_ring.rst | 29 +
drivers/net/pcap/Makefile | 35 ---
drivers/net/pcap/rte_eth_pcap.c | 35 ---
3 files changed, 9 insertions(+), 90 deletions(-)
Hi Fiona,
On 12/15/2017 11:16 PM, Trahe, Fiona wrote:
> With the vast amounts of data being transported around networks and stored in
> storage systems, reducing data size is becoming ever more important. There
> are both software libraries and hardware devices available that provide
> compressio
Signed-off-by: Ferruh Yigit
---
doc/guides/prog_guide/kernel_nic_interface.rst | 29 +--
doc/guides/sample_app_ug/kernel_nic_interface.rst | 29 +--
examples/kni/Makefile | 32 +---
examples/kni/main.c| 32 +
Signed-off-by: Ferruh Yigit
---
doc/guides/nics/kni.rst | 29 +
drivers/net/kni/Makefile | 31 ++-
drivers/net/kni/rte_eth_kni.c | 32 ++--
3 files changed, 5 insertions(+), 87 deletions(-)
diff --git
Signed-off-by: Ferruh Yigit
---
lib/librte_eal/linuxapp/igb_uio/Makefile | 32 ++-
lib/librte_eal/linuxapp/igb_uio/igb_uio.c | 23 ++
2 files changed, 4 insertions(+), 51 deletions(-)
diff --git a/lib/librte_eal/linuxapp/igb_uio/Makefile
b/lib/li
Signed-off-by: Ferruh Yigit
---
doc/guides/nics/build_and_test.rst | 28 +---
doc/guides/nics/features.rst | 29 +
doc/guides/nics/overview.rst | 28 +---
3 files changed, 3 insertions(+), 82 deletions(-)
dif
On Mon, 18 Dec 2017 20:54:16 +0100
Thomas Monjalon wrote:
> > > +#endif /* RTE_LIBRTE_HYPERV_DEBUG */
> > > +
> > > +#define DEBUG(...) PMD_DRV_LOG(DEBUG, __VA_ARGS__)
> > > +#define INFO(...) PMD_DRV_LOG(INFO, __VA_ARGS__)
> > > +#define WARN(...) PMD_DRV_LOG(WARNING, __VA_ARGS__)
> > > +#define
On 12/18/2017 1:06 PM, Ferruh Yigit wrote:
> Signed-off-by: Ferruh Yigit
<...>
> + * SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
> + * Copyright(c) 2014 6WIND S.A.
> + * All rights reserved.
> */
Hi Hemant, Thomas,
Can you please
On Mon, 18 Dec 2017 22:03:55 +0100
Thomas Monjalon wrote:
> >
> > Good question. For the following reasons:
> >
> > - I forgot about the existence of ether_ntoa() and didn't look it up seeing
> > struct ether_addr is (re-)defined by rte_ether.h. What happens when one
> > includes netinet/et
18/12/2017 22:18, Ferruh Yigit:
> On 12/18/2017 1:06 PM, Ferruh Yigit wrote:
> > Signed-off-by: Ferruh Yigit
>
> <...>
>
> > + * SPDX-License-Identifier: BSD-3-Clause
> > + * Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
> > + * Copyright(c) 2014 6WIND S.A.
> > + * All rights re
On 12/15/2017 11:19 PM, Trahe, Fiona wrote:
..
> +
> +/** Compression Algorithms */
> +enum rte_comp_algorithm {
> + RTE_COMP_NULL = 0,
> + /**< No compression.
> + * Pass-through, data is copied unchanged from source buffer to
> + * destination buffer.
> + */
> + RTE_C
Add logs for packet distribution across worker cores to be printed
along with the test results.
Signed-off-by: Pavan Nikhilesh
Acked-by: Jerin Jacob
---
app/test-eventdev/evt_main.c | 3 +++
app/test-eventdev/test_perf_common.c | 12
2 files changed, 15 insertions(+)
diff
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/test_pipeline_common.c | 29 +
app/test-eventdev/test_pipeline_common.h | 2 ++
2 files changed, 31 insertions(+)
diff --git a/app/test-eventdev/test_pipeline_common.c
b/app/test-eventdev/test_pipeline_common.c
in
Pipeline test has the queue and all types queue variants.
Introduce test_pipeline_common* to share the common code between those
tests.
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/Makefile | 2 +
app/test-eventdev/test_pipeline_common.c | 71 +++
a
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/test_pipeline_common.c | 84
app/test-eventdev/test_pipeline_common.h | 3 ++
2 files changed, 87 insertions(+)
diff --git a/app/test-eventdev/test_pipeline_common.c
b/app/test-eventdev/test_pipeline_common.c
Add common ethdev port setup and destroy along with event dev destroy.
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/test_pipeline_common.c | 98
app/test-eventdev/test_pipeline_common.h | 3 +
2 files changed, 101 insertions(+)
diff --git a/app/test-eve
Setup one port per worker and link to all queues and setup producer port
based on Rx adapter capabilities.
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/test_pipeline_common.c | 102 +++
app/test-eventdev/test_pipeline_common.h | 4 ++
2 files changed, 106 in
This is a pipeline queue test case that aims at testing the following:
1. Measure the end-to-end performance of an event dev with a ethernet dev.
2. Maintain packet ordering from Rx to Tx.
The pipeline queue test configures the eventdev with Q queues and P ports,
where Q is (nb_ethdev * nb_stages)
The event master lcore's test termination and the logic to print the mpps
are common for the queue and all types queue test.
Move them as the common function.
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/test_pipeline_common.c | 64
app/test-eventdev/tes
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/test_pipeline_common.h | 80 +++
app/test-eventdev/test_pipeline_queue.c | 367 ++-
2 files changed, 446 insertions(+), 1 deletion(-)
diff --git a/app/test-eventdev/test_pipeline_common.h
b/app/test-eventdev/
This is a pipeline test case that aims at testing the following with
``all types queue`` eventdev scheme.
1. Measure the end-to-end performance of an event dev with a ethernet dev.
2. Maintain packet ordering from Rx to Tx.
The atq queue test functions as same as ``pipeline_queue`` test.
The diffe
1 - 100 of 142 matches
Mail list logo