On 11/16/2018 4:52 PM, Anatoly Burakov wrote:
> Currently, the most complete (but still incomplete) user guide for
> EAL command-line parameters resides in user guide for testpmd.
> This is wrong on multiple levels, and should not be the case.
>
> To fix it, we have to create a document that lists
On 2018-11-15 07:11, Burakov, Anatoly wrote:
On 14-Nov-18 8:40 PM, David Wilder wrote:
Please include this patch in 18.11 as well, this patch is not suitable
for 17.11.
Small note: while this patch is not suitable for 17.11 as is, it can
be made suitable if you drop the memalloc part. I copied
Hi Yanglong:
> -Original Message-
> From: Wu, Yanglong
> Sent: Thursday, November 15, 2018 6:32 PM
> To: dev@dpdk.org
> Cc: Zhang, Qi Z ; Wu, Jingjing ;
> Byrne, Stephen1 ; Wu, Yanglong
>
> Subject: [PATCH] net/ixgbe: fix TDH register setting issue
>
> The only time that software should
> -Original Message-
> From: Kovacevic, Marko
> Sent: Friday, November 16, 2018 1:41 AM
> To: Guo, Jia ; Xing, Beilei ;
> Mcnamara, John ; Zhang, Qi Z
>
> Cc: dev@dpdk.org; Zhang, Helin ; Wu, Jingjing
>
> Subject: RE: [PATCH V3] doc: add known PHY link up issue for i40e
>
> One very s
The documentation specifies the DEST_DIR parameter to ninja to override the
install directory, but it's actually DESTDIR.
Signed-off-by: Cliff Burdick
---
doc/build-sdk-meson.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/build-sdk-meson.txt b/doc/build-sdk-meson.t
On 11/16/2018 4:48 PM, Lee Daly wrote:
> This patch checks the return value of function
> rte_eth_bond_8023ad_agg_selection_set() in bond_ethdev_configure
> for error return value.
>
> Fixes: 6d72657ce379 ("net/bonding: add other aggregator modes")
> Cc: sta...@dpdk.org
>
> V2:
> syntax changes.
Removed the use of MAP_HUGETLB for anonymous mapping on ppc64. The
MAP_HUGETLB had previously been added to workaround issues on IBM Power8
systems when mapping /dev/zero (see: commit
284ae3e9ff9a92575c28c858efd2c85c8de6d440). In the current code the
MAP_HUGETLB flag will cause the anonymous mapp
On 11/16/2018 4:52 PM, Anatoly Burakov wrote:
> Currently, the most complete (but still incomplete) user guide for
> EAL command-line parameters resides in user guide for testpmd.
> This is wrong on multiple levels, and should not be the case.
>
> To fix it, we have to create a document that lists
On 11/15/2018 7:02 PM, Lam, Tiago wrote:
> Hi guys,
>
> OvS-DPDK has recently had small a change that changed the data room
> available in an mbuf (commit dfaf00e in OvS). This seems to have had the
> consequence of breaking the initialisation of eth_af_packets interfaces,
> when using default val
When compiling with -O1, this error can appear:
app/test-eventdev/test_pipeline_common.c:332:6: error:
‘ret’ may be used uninitialized in this function
If there is no device, then ret is returned without being initialized.
It is fixed by setting 0 as initial value.
Fixes: 032a965a
When compiling with -O1, this error can appear:
lib/librte_eventdev/rte_event_eth_tx_adapter.c:705:6: error:
‘ret’ may be used uninitialized in this function
If tx_queue_id is -1 and nb_queues is 0, then ret is returned
without being initialized.
It is fixed by setting 0 as initial
When compiling with gcc -O1, this error appears:
drivers/net/mlx4/mlx4_ethdev.c: In function ‘mlx4_rxmode_toggle’:
rte_log.h:321:3: error:
‘mode’ may be used uninitialized in this function
The function mlx4_rxmode_toggle is never called with a value which
is not in the swit
This error can be raised:
lib/librte_kni/rte_kni.c:531:15: error:
'req' may be used uninitialized in this function
It should not happen because kni_fifo_get() would return 0 if
req is not initialized, so the function would return before using req.
But GCC complains about it in -O1
In case of optimized compilation, RTE_BUILD_BUG_ON use an external
variable which is neither defined, nor used.
It seems not optimized out in case of OPDL compiled with clang -O1:
opdl_ring.c: undefined reference to `RTE_BUILD_BUG_ON_detected_error'
clang-6.0: fatal error: linker co
When trying to compile with -O1, the compiler
shows some errors. Some are justified, others look like
compiler bug. Anyway, it's better to fix all of them.
Thomas Monjalon (5):
eal: fix build with -O1
kni: fix possible uninitialized variable
net/mlx4: fix possible uninitialized variable
e
Reviewed-by: Rami Rosen
On Tue, 13 Nov 2018 at 18:06, Anatoly Burakov wrote:
>
> On some distributions (such as CentOS 7) lspci may not be installed
> by default, causing exceptions which are difficult to interpret.
>
> Fix devbind script to check if lspci is installed at script startup.
>
> Cc:
Currently, the most complete (but still incomplete) user guide for
EAL command-line parameters resides in user guide for testpmd.
This is wrong on multiple levels, and should not be the case.
To fix it, we have to create a document that lists all supported
EAL command-line arguments. However, beca
This patch checks the return value of function
rte_eth_bond_8023ad_agg_selection_set() in bond_ethdev_configure
for error return value.
Fixes: 6d72657ce379 ("net/bonding: add other aggregator modes")
Cc: sta...@dpdk.org
V2:
syntax changes.
commit message update.
Signed-off-by: Lee Daly
---
dri
DCR is Intel internal information, no need to be in public code.
Fixes: de2cd512b176 ("net/i40e/base: new AQ commands for cloud filter")
Cc: sta...@dpdk.org
Signed-off-by: Ferruh Yigit
---
Cc: jingjing...@intel.com
Cc: Qi Zhang
---
drivers/net/i40e/base/i40e_adminq_cmd.h | 3 +--
1 file change
On 11/16/2018 2:54 PM, Ferruh Yigit wrote:
> On 11/15/2018 1:37 AM, Qi Zhang wrote:
>> Private vdev was the way previously, when pdump developed, now with
>> shared device mode on virtual devices, pcap data path in secondary is
>> not working.
>>
>> When secondary adds a virtual device, related dat
On Fri, Nov 16, 2018 at 04:58:10PM +0100, Thomas Monjalon wrote:
> 16/11/2018 16:43, Burakov, Anatoly:
> > On 16-Nov-18 2:55 PM, Thomas Monjalon wrote:
> > > 16/11/2018 15:37, Burakov, Anatoly:
> > >> On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
> > >>> From: Wiles, Keith
> > > On Nov 16, 201
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jasvinder Singh
> Sent: Wednesday, November 14, 2018 3:37 PM
> To: dev@dpdk.org
> Cc: Dumitrescu, Cristian
> Subject: [dpdk-dev] [PATCH] doc: deprecation notice for sched API change
>
> There will be change in
On Fri, Nov 16, 2018 at 03:43:57PM +, Burakov, Anatoly wrote:
> On 16-Nov-18 2:55 PM, Thomas Monjalon wrote:
> > 16/11/2018 15:37, Burakov, Anatoly:
> > > On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
> > > > From: Wiles, Keith
> > > > > > On Nov 16, 2018, at 5:49 AM, Burakov, Anatoly
> > > >
16/11/2018 16:43, Burakov, Anatoly:
> On 16-Nov-18 2:55 PM, Thomas Monjalon wrote:
> > 16/11/2018 15:37, Burakov, Anatoly:
> >> On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
> >>> From: Wiles, Keith
> > On Nov 16, 2018, at 5:49 AM, Burakov, Anatoly
> > On 16-Nov-18 12:45 AM, Stephen Hemmin
On 11/15/2018 1:37 AM, Qi Zhang wrote:
> This is prework for data path enabling for secondary process.
> To prevent pcap handler opened by one process be overwritten by
> another process, each process should have their private copy,
> `rte_eth_dev->process_private` is exactly what we needed.
>
> S
On 16-Nov-18 2:42 PM, Alejandro Lucero wrote:
On Fri, Nov 16, 2018 at 1:35 PM Burakov, Anatoly
mailto:anatoly.bura...@intel.com>> wrote:
On 16-Nov-18 12:49 PM, Alejandro Lucero wrote:
>
>
> On Thu, Nov 15, 2018 at 1:16 PM Burakov, Anatoly
> mailto:anatoly.bura...@inte
Acked-by: Marko Kovacevic
Add more info to the docs on how to set environmental variable to
correctly build the vm_power_manager sample app in a cross compile
or multilib environment by setting PKG_CONFIG_LIBDIR.
Signed-off-by: David Hunt
---
v2:
Changed the note to be shown using the ``.. Note::`` tag.
---
.../sample
On 16-Nov-18 2:55 PM, Thomas Monjalon wrote:
16/11/2018 15:37, Burakov, Anatoly:
On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
From: Wiles, Keith
On Nov 16, 2018, at 5:49 AM, Burakov, Anatoly
On 16-Nov-18 12:45 AM, Stephen Hemminger wrote:
Anatoly Burakov wrote:
This is a placeholder for P
On 11/16/2018 2:54 PM, Lee Daly wrote:
> This patch checks the return value of function
> rte_eth_bond_8023ad_agg_selection_set() in bond_ethdev_configure
> for error return value.
Thanks Lee, just a few minor syntax comment below.
>
> Signed-off-by: Lee Daly
> ---
> drivers/net/bonding/rte_et
> On Nov 16, 2018, at 8:55 AM, Thomas Monjalon wrote:
>
> 16/11/2018 15:37, Burakov, Anatoly:
>> On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
>>> From: Wiles, Keith
> On Nov 16, 2018, at 5:49 AM, Burakov, Anatoly
> On 16-Nov-18 12:45 AM, Stephen Hemminger wrote:
>> Anatoly Burako
> On Nov 16, 2018, at 8:37 AM, Burakov, Anatoly
> wrote:
>
> On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
>>> -Original Message-
>>> From: Wiles, Keith
>>> Sent: Friday, November 16, 2018 2:10 PM
>>> To: Burakov, Anatoly
>>> Cc: Stephen Hemminger ; dev ;
>>> Mcnamara, John ; Richar
On 11/16/2018 3:25 PM, Zhirun Yan wrote:
> Tx offload mask is updated in following commit 1037ed842c37
> ("mbuf: fix Tx offload mask"). Currently, the new added offload
> flags are not supported in PMD and application will fail to call
> PMD transmit prepare function.
>
> This patch updates AVF_TX
On 11/16/2018 10:48 AM, Maxime Coquelin wrote:
>
>
> On 11/14/18 12:16 PM, Fan Zhang wrote:
>> This patch fixes the zero copy enable problem for vhost crypto
>> sample application.
>>
>> For some Crypto PMDs such as AESNI-MB and AESNI-GCM the data to
>> be processed will be made a copy in the sam
16/11/2018 15:37, Burakov, Anatoly:
> On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
> > From: Wiles, Keith
> >>> On Nov 16, 2018, at 5:49 AM, Burakov, Anatoly
> >>> On 16-Nov-18 12:45 AM, Stephen Hemminger wrote:
> Anatoly Burakov wrote:
> > This is a placeholder for Python library abstr
On 11/15/2018 1:37 AM, Qi Zhang wrote:
> Private vdev was the way previously, when pdump developed, now with
> shared device mode on virtual devices, pcap data path in secondary is
> not working.
>
> When secondary adds a virtual device, related data transferred to
> primary and primary creates th
This patch checks the return value of function
rte_eth_bond_8023ad_agg_selection_set() in bond_ethdev_configure
for error return value.
Signed-off-by: Lee Daly
---
drivers/net/bonding/rte_eth_bond_pmd.c | 11 ---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/drivers/net/b
On Fri, Nov 16, 2018 at 1:35 PM Burakov, Anatoly
wrote:
> On 16-Nov-18 12:49 PM, Alejandro Lucero wrote:
> >
> >
> > On Thu, Nov 15, 2018 at 1:16 PM Burakov, Anatoly
> > mailto:anatoly.bura...@intel.com>> wrote:
> >
> > On 12-Nov-18 11:18 AM, Alejandro Lucero wrote:
> > > When using larg
Hi all,
I'm Pei Zhang from Red Hat. We have tested dpdk 18.11-rc3 and we would like to
share our testing results.
Here are 10 testing scenarios we have covered and all get PASS result:
(1)Guest with device assignment(PF) throughput testing(1G hugepage size) PASS
(2)Guest with device assignm
On 16-Nov-18 2:13 PM, Richardson, Bruce wrote:
-Original Message-
From: Wiles, Keith
Sent: Friday, November 16, 2018 2:10 PM
To: Burakov, Anatoly
Cc: Stephen Hemminger ; dev ;
Mcnamara, John ; Richardson, Bruce
; De Lara Guarch, Pablo
; Hunt, David ;
Awal, Mohammad Abdul ; tho...@monj
Hi Fan,
>
> This patch changes the symmetric session structure of cryptodev.
> The symmetric session now contains extra information for secure
> access purposes. The patch also includes the updates to the
> PMDs, test applications, and examples to fit the change.
Few more comments from me in-lin
> On Nov 16, 2018, at 3:51 AM, Ananyev, Konstantin
> wrote:
>
> Hi everyone,
>
>>
>> Hi,
>>
>> 16/11/2018 09:42, Ilya Maximets:
>>> Hi,
>>> While discussing the ways to enable DPDK 18.11 new features in OVS
>>> there was suggestions to use 'rte_eth_devices[]' array directly.
>>> But this a
On Nov 16, 2018, at 3:51 AM, Ananyev, Konstantin
mailto:konstantin.anan...@intel.com>> wrote:
Hi everyone,
Hi,
16/11/2018 09:42, Ilya Maximets:
Hi,
While discussing the ways to enable DPDK 18.11 new features in OVS
there was suggestions to use 'rte_eth_devices[]' array directly.
But this ar
> -Original Message-
> From: Wiles, Keith
> Sent: Friday, November 16, 2018 2:10 PM
> To: Burakov, Anatoly
> Cc: Stephen Hemminger ; dev ;
> Mcnamara, John ; Richardson, Bruce
> ; De Lara Guarch, Pablo
> ; Hunt, David ;
> Awal, Mohammad Abdul ; tho...@monjalon.net;
> Yigit, Ferruh
> Su
> On Nov 16, 2018, at 5:49 AM, Burakov, Anatoly
> wrote:
>
> On 16-Nov-18 12:45 AM, Stephen Hemminger wrote:
>> On Thu, 15 Nov 2018 15:47:13 +
>> Anatoly Burakov wrote:
>>> This is a placeholder for Python library abstracting away many of
>>> mundane details DPDK configuration scripts ha
On 11/14/2018 11:24 AM, Chaitanya Babu Talluri wrote:
> In rte_efd_create() write lock has already been unlocked
> before ring creation itself.
> So second unlock after the ring creation has been removed.
>
> Fixes: 56b6ef874f80 ("efd: new Elastic Flow Distributor library")
> Cc: sta...@dpdk.org
>
On 16-Nov-18 12:49 PM, Alejandro Lucero wrote:
On Thu, Nov 15, 2018 at 1:16 PM Burakov, Anatoly
mailto:anatoly.bura...@intel.com>> wrote:
On 12-Nov-18 11:18 AM, Alejandro Lucero wrote:
> When using large amount of hugepage based memory, doing all the
> hugepages mapping can tak
On Thu, Nov 15, 2018 at 1:16 PM Burakov, Anatoly
wrote:
> On 12-Nov-18 11:18 AM, Alejandro Lucero wrote:
> > When using large amount of hugepage based memory, doing all the
> > hugepages mapping can take quite significant time.
> >
> > The problem is hugepages being initially mmaped to virtual ad
Hi Fan,
> --- a/config/common_base
> +++ b/config/common_base
> @@ -446,7 +446,7 @@ CONFIG_RTE_LIBRTE_VDEV_NETVSC_PMD=n
> #
> # Compile null PMD
> #
> -CONFIG_RTE_LIBRTE_PMD_NULL=y
> +CONFIG_RTE_LIBRTE_PMD_NULL=n
>
> #
> # Compile software PMD backed by PCAP files
> @@ -525,13 +525,13 @@ CON
On 16-Nov-18 12:45 AM, Stephen Hemminger wrote:
On Thu, 15 Nov 2018 15:47:13 +
Anatoly Burakov wrote:
This is a placeholder for Python library abstracting away many of
mundane details DPDK configuration scripts have to deal with. We
need __init__.py file to make the subdirectory a package
> -Original Message-
> From: Luca Boccassi [mailto:bl...@debian.org]
> Sent: Friday, November 16, 2018 10:58 AM
> To: dev@dpdk.org
> Cc: Richardson, Bruce ; tho...@monjalon.net;
> Luca Boccassi
> Subject: [PATCH v2] build: document that Meson < 0.46 will fail to list
> private deps
>
>
On 11/14/2018 6:17 PM, Mody, Rasesh wrote:
> Reduced number of INFO logs in BNX2X PMD by converting some INFO
> logs to DEBUG and few NOTICE logs to INFO, removing extra new lines,
> printing banner bar once for the adapter and device specific info.
>
> Fixes: ba7eeb035a5f ("net/bnx2x: fix logging
On 11/14/2018 10:40 AM, Jerin Jacob wrote:
> -Original Message-
>> Date: Wed, 14 Nov 2018 14:52:03 +0530
>> From: "Joseph, Anoob"
>> To: Ferruh Yigit , "Jacob, Jerin"
>>
>> CC: "Joseph, Anoob" , "Athreya, Narayana Prasad"
>> , "Bhagavatula, Pavan"
>> , "dev@dpdk.org" ,
>> "sta...@dpd
Meson can generate the list of private dependencies of libraries
automatically for the pkgconfig file only since version 0.46.0.
Signed-off-by: Luca Boccassi
---
v2: corrected version, minimum required is meson 0.46
doc/build-sdk-meson.txt | 6 ++
1 file changed, 6 insertions(+)
diff --git
On 11/14/2018 9:59 AM, Rafal Kozik wrote:
> When queues are stoped release tx buffers.
> During start initialize array of empty
> tx/rx reqs with default values.
>
> Fixes: df238f84c0a2 ("net/ena: recreate HW IO rings on start and stop")
>
> Signed-off-by: Rafal Kozik
> Acked-by: Michal Krawczyk
On Fri, 2018-11-16 at 10:52 +, Luca Boccassi wrote:
> On Fri, 2018-11-16 at 10:26 +, Bruce Richardson wrote:
> > On Thu, Nov 15, 2018 at 06:26:28PM +, Luca Boccassi wrote:
> > > Meson can generate the list of private dependencies of libraries
> > > automatically for the pkgconfig file o
On Fri, 2018-11-16 at 10:26 +, Bruce Richardson wrote:
> On Thu, Nov 15, 2018 at 06:26:28PM +, Luca Boccassi wrote:
> > Meson can generate the list of private dependencies of libraries
> > automatically for the pkgconfig file only since version 0.45.0.
> >
> > Signed-off-by: Luca Boccassi
On 11/14/18 12:16 PM, Fan Zhang wrote:
This patch fixes the zero copy enable problem for vhost crypto
sample application.
For some Crypto PMDs such as AESNI-MB and AESNI-GCM the data to
be processed will be made a copy in the same buffer but next to the
data. For example, to encrypt 64 bytes
On Thu, Nov 15, 2018 at 07:02:37PM +, Lam, Tiago wrote:
> Hi guys,
>
> OvS-DPDK has recently had small a change that changed the data room
> available in an mbuf (commit dfaf00e in OvS). This seems to have had the
> consequence of breaking the initialisation of eth_af_packets interfaces,
> whe
On 11/15/2018 2:38 PM, Tomasz Duszynski wrote:
> On Mon, Nov 05, 2018 at 03:25:22PM +, Ferruh Yigit wrote:
>> Fixes: cdb53f8da628 ("net/mvpp2: support metering")
>>
>> Signed-off-by: Ferruh Yigit
>
> Acked-by: Tomasz Duszynski
Applied to dpdk-next-net/master, thanks.
On 16-Nov-18 2:34 AM, Tone Zhang (Arm Technology China) wrote:
Hi Anatoly,
I have some comments.
-Original Message-
From: Tone Zhang (Arm Technology China)
Sent: Thursday, November 15, 2018 8:49 AM
To: Burakov, Anatoly ; dev@dpdk.org
Cc: Gavin Hu (Arm Technology China) ; Honnappa
Nagar
On 16-Nov-18 10:15 AM, Burakov, Anatoly wrote:
On 07-Nov-18 6:10 AM, Li Han wrote:
parse_portmask return type is int,but global variable
"enabled_port_mask" type is uint32_t.so in proc_info_parse_args
function,when parse_portmask return -1,"enabled_port_mask" will
get a huge value and "if (enabl
On 15-Nov-18 7:02 PM, Lam, Tiago wrote:
Hi guys,
OvS-DPDK has recently had small a change that changed the data room
available in an mbuf (commit dfaf00e in OvS). This seems to have had the
consequence of breaking the initialisation of eth_af_packets interfaces,
when using default values ("optio
On 15-Nov-18 6:31 PM, Ananyev, Konstantin wrote:
Meeting notes for the DPDK technical board meeting
held on 2018-11-07
Attendees:
- Bruce Richardson
- Ferruh Yigit
- Konstantin Ananyev
- Maxime Coquelin
- Olivier Matz
- Thomas Monjalon
0) I
On Thu, Nov 15, 2018 at 06:26:28PM +, Luca Boccassi wrote:
> Meson can generate the list of private dependencies of libraries
> automatically for the pkgconfig file only since version 0.45.0.
>
> Signed-off-by: Luca Boccassi
> ---
> doc/build-sdk-meson.txt | 6 ++
> 1 file changed, 6 ins
On 15/11/2018 23:53, Konstantin Ananyev wrote:
Add 'uint64_t opaque_data' inside struct rte_security_session.
That allows upper layer to easily associate some user defined
data with the session.
Signed-off-by: Konstantin Ananyev
---
lib/librte_security/rte_security.h | 2 ++
1 file change
On Thu, Nov 15, 2018 at 06:22:07PM +, Luca Boccassi wrote:
> On Thu, 2018-11-15 at 17:17 +, Bruce Richardson wrote:
> > On Thu, Nov 15, 2018 at 05:05:16PM +, Luca Boccassi wrote:
> > > On Thu, 2018-11-15 at 17:01 +, Richardson, Bruce wrote:
> > > > > -Original Message-
> > >
On 15/11/2018 23:53, Konstantin Ananyev wrote:
Add 'uint64_t opaque_data' inside struct rte_cryptodev_sym_session.
That allows upper layer to easily associate some user defined
data with the session.
Signed-off-by: Konstantin Ananyev
---
lib/librte_cryptodev/rte_cryptodev.h | 2 ++
1 file
On 15/11/2018 23:53, Konstantin Ananyev wrote:
Signed-off-by: Konstantin Ananyev
---
lib/librte_net/rte_esp.h | 10 +-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/lib/librte_net/rte_esp.h b/lib/librte_net/rte_esp.h
index f77ec2eb2..8e1b3d2dd 100644
--- a/lib/librte
On Thu, Nov 15, 2018 at 05:36:06PM +, Burdick, Cliff wrote:
>
>
> -Original Message-
> From: Bruce Richardson [mailto:bruce.richard...@intel.com]
> Sent: Thursday, November 15, 2018 9:17 AM
> To: Luca Boccassi
> Cc: Burdick, Cliff; Thomas Monjalon; Burakov, Anatoly; dev@dpdk.org
> Su
> -Ãüþüþ-
> ·¢¼þÃÃ: David Wilder
> ·¢ÃÃñ¼ä: 2018Ãê11ÃÃ16Ãà 10:08
> ÃüþÃÃ: dev@dpdk.org
> ³ÂÃÃ: sta...@dpdk.org; prad...@us.ibm.com; chao...@linux.vnet.ibm.com;
> tho...@monjalon.net
> Ã÷Ãâ: [PATCH v2] mem: Fix anonymous mapping on Power9.
>
On 07-Nov-18 6:10 AM, Li Han wrote:
parse_portmask return type is int,but global variable
"enabled_port_mask" type is uint32_t.so in proc_info_parse_args
function,when parse_portmask return -1,"enabled_port_mask" will
get a huge value and "if (enabled_port_mask == 0)" will never happen.
Fixes: 2
Hi networking driver maintainers,
I suggest that the TX functions of Ethernet interface drivers accept packets
with less than 60 byte payload, and transmit them on the medium as valid
Ethernet frames, i.e. by padding the packets up to the minimum Ethernet packet
size of 64 bytes incl. Ethernet
Hi everyone,
>
> Hi,
>
> 16/11/2018 09:42, Ilya Maximets:
> > Hi,
> > While discussing the ways to enable DPDK 18.11 new features in OVS
> > there was suggestions to use 'rte_eth_devices[]' array directly.
> > But this array is marked as '@internal' and also it located in
> > the internal header
Hi, Player, Timmons
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Player, Timmons
> Sent: Thursday, November 8, 2018 2:31 AM
> To: Lu, Wenzhuo
> Cc: dev@dpdk.org; Player, Timmons
> Subject: [dpdk-dev] [PATCH] net/igb: fix LSC interrupt when using MSI-X
>
>
One very small spelling fix
> +PHY link up fails when rebinding i40e NICs to kernel driver
> +---
> +
> +**Description**:
> + Some kernel drivers are not able to handle the link status correctly
> + after DPDK application sets the PHY to
Fixed the interrupt type using error. Check valid alarm should use
TEST_INTERRUPT_HANDLE_VALID_ALARM.
Fixes: 493b8e173fe6 ("eal: add device event handle in interrupt thread")
Signed-off-by: Qiming Yang
---
test/test/test_interrupts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -
On 11/16/2018 8:42 AM, Ilya Maximets wrote:
> Hi,
> While discussing the ways to enable DPDK 18.11 new features in OVS
> there was suggestions to use 'rte_eth_devices[]' array directly.
> But this array is marked as '@internal' and also it located in
> the internal header 'lib/librte_ethdev/rte_eth
Hi,
16/11/2018 09:42, Ilya Maximets:
> Hi,
> While discussing the ways to enable DPDK 18.11 new features in OVS
> there was suggestions to use 'rte_eth_devices[]' array directly.
> But this array is marked as '@internal' and also it located in
> the internal header 'lib/librte_ethdev/rte_ethdev_co
Hi,
While discussing the ways to enable DPDK 18.11 new features in OVS
there was suggestions to use 'rte_eth_devices[]' array directly.
But this array is marked as '@internal' and also it located in
the internal header 'lib/librte_ethdev/rte_ethdev_core.h' with the
following disclaimer:
/**
* @fi
80 matches
Mail list logo