When one adds multiple post-RX-burst callbacks to a queue, their execution
order is the opposite of the order in which they are added. For example, we add
callback A( ), and then we add callback B( ). When we call rte_eth_rx_burst,
after invoking the device's rx_pkt_burst function, it will invok
2015-07-02 14:50, John McNamara:
> Added guidelines on the purpose and structure of the DPDK
> documentation, how to build it and guidelines for creating it.
>
> Also added guidelines on how to format and submit a documentation patch.
Good idea to have guidelines for doc.
But I think the submissi
There is a global variable 'device_in_use' which is used to make sure
only one instance is using /dev/kni device. If you were using LXC, you
will find there is only one instance of KNI example could be run even
differnt namespaces were created.
In order to have /dev/kni used simultaneously in diff
Hi Jaffar,
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Abdul, Jaffar
> Sent: Thursday, July 02, 2015 6:38 PM
> To: Richardson, Bruce
> Cc: dev at dpdk.org
> Subject: Re: [dpdk-dev] DPDK Hash library
>
> HI Bruce,
>
> Thanks for your inputs. I am wonderi
> -Original Message-
> From: Mcnamara, John
> Sent: Thursday, July 2, 2015 2:51 PM
> To: dev at dpdk.org
> Cc: Mcnamara, John
> Subject: [PATCH 2/3] doc: added guidelines on dpdk documentation
>
> diff --git a/doc/guides/guidelines/documentation.rst
> b/doc/guides/guidelines/documentation.
Hello,
I have got my hands on Intel? Ethernet Server Bypass Adapter X540-T2
(device_id 0x155C, copper). Unfortunately the only bypass device currently
supported by DPDK is 0x155D (fiber).
Does anyone know about the plans of adding 0x155C support?
Thank you,
Alexander Belyakov
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zoltan Kiss
> Sent: Wednesday, July 01, 2015 10:04 AM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH v2] mempool: improve cache search
>
> The current way has a few problems:
>
> - if cache->len < n, we c
HI
Thanks guys for helping me on this one! Your suggestions are very good and it
is very helpful!
Thanks
Jaffar
-Original Message-
From: Matthew Hall [mailto:mh...@mhcomputing.net]
Sent: Thursday, July 02, 2015 12:27 PM
To: De Lara Guarch, Pablo
Cc: Abdul, Jaffar; Richardson, Bruce; d
> -Original Message-
> From: Ananyev, Konstantin
> Sent: Thursday, July 02, 2015 4:52 PM
> To: 'WangDong'; dev at dpdk.org
> Subject: RE: [dpdk-dev] [PATCH 1/2] eal:Introduce rte_dma_wmb/rte_dma_rmb.
>
> Hi Dong,
>
> > -Original Message-
> > From: dev [mailto:dev-bounces at dpdk
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of WangDong
> Sent: Sunday, June 28, 2015 4:23 PM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH 2/2] ixgbe:replace compiler memory barrier and
> rte_wmb with rte_dma_rmb and rte_dma_wmb.
>
> ---
> drivers/
Add announcement of a dedicated additional field in the mbuf
to support ieee1588 in DPDK 2.2.
Signed-off-by: John McNamara
---
doc/guides/rel_notes/abi.rst | 5 +
1 file changed, 5 insertions(+)
diff --git a/doc/guides/rel_notes/abi.rst b/doc/guides/rel_notes/abi.rst
index f00a6ee..51dacb2
Document the optional ieee1588 forwarding mode.
Signed-off-by: John McNamara
---
doc/guides/testpmd_app_ug/run_app.rst | 2 +-
doc/guides/testpmd_app_ug/testpmd_funcs.rst | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/doc/guides/testpmd_app_ug/run_app.rst
b/doc/guid
Refactor the ieee1588_fwd mode in testpmd to use the new ethdev
APIs to enable and read IEEE1588 PTP timestamps.
Signed-off-by: John McNamara
---
app/test-pmd/ieee1588fwd.c | 466 +++--
1 file changed, 27 insertions(+), 439 deletions(-)
diff --git a/app/t
Add ixgbe support for new ethdev APIs to enable and read IEEE1588/
802.1AS PTP timestamps.
Signed-off-by: John McNamara
---
drivers/net/i40e/i40e_ethdev.c | 143 +
drivers/net/i40e/i40e_rxtx.c | 39 ++-
2 files changed, 181 insertions(+), 1 dele
Add ixgbe support for new ethdev APIs to enable and read IEEE1588
PTP timestamps.
Signed-off-by: John McNamara
---
drivers/net/ixgbe/ixgbe_ethdev.c | 122 +++
1 file changed, 122 insertions(+)
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/
Add e1000/igb support for new ethdev APIs to enable and read
IEEE1588 PTP timestamps.
Signed-off-by: John McNamara
---
drivers/net/e1000/igb_ethdev.c | 115 +
1 file changed, 115 insertions(+)
diff --git a/drivers/net/e1000/igb_ethdev.c b/drivers/net/e100
Add ethdev API to enable and read IEEE1588/802.1AS PTP timestamps
from devices that support it. The following functions are added:
rte_eth_timesync_enable()
rte_eth_timesync_disable()
rte_eth_timesync_read_rx_timestamp()
rte_eth_timesync_read_tx_timestamp()
Signed-off-by: John McN
This patchset adds ethdev API to enable and read IEEE1588/802.1AS PTP
timestamps from devices that support it. The following functions are added:
rte_eth_timesync_enable()
rte_eth_timesync_disable()
rte_eth_timesync_read_rx_timestamp()
rte_eth_timesync_read_tx_timestamp()
The "ie
On 7/2/2015 11:33 AM, Ouyang, Changchun wrote:
> The commit will break vhost sample when it runs in second time:
> 292959c71961acde0cda6e77e737bb0a4df1559c
>
> It should call api to unregister vhost driver when sample exit/quit, then
> the socket file will be removed(by calling unlink), and thus ma
Hi Dong,
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of WangDong
> Sent: Sunday, June 28, 2015 4:23 PM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH 1/2] eal:Introduce rte_dma_wmb/rte_dma_rmb.
>
> These macro can be used to replace current PMD's compil
add ixgbe_dev_free_queues() function and call it from close() functions.
Signed-off-by: Bernard Iremonger
---
drivers/net/ixgbe/ixgbe_ethdev.c |4
drivers/net/ixgbe/ixgbe_ethdev.h |2 ++
drivers/net/ixgbe/ixgbe_rxtx.c | 19 +++
3 files changed, 25 insertions(+),
Changes in v2:
do not free mac_addrs and hash_mac_addrs here.
Signed-off-by: Bernard Iremonger
---
lib/librte_ether/rte_ethdev.c |6 +-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c
index e13fde5..7ae101a 1006
This patch depends on the Port Hotplug Framework.
It implements the eth_dev_uninit functions for rte_ixgbe_pmd and
rte_ixgbevf_pmd.
Signed-off-by: Bernard Iremonger
---
drivers/net/ixgbe/ixgbe_ethdev.c | 98 --
drivers/net/ixgbe/ixgbe_ethdev.h |2 +
driv
Changes in V6:
Rebased to latest code.
Remove release of queue memory form dev_uninit() functions.
Add ixgbe_dev_free_queues() function and call it from close() functions.
Changes in V5:
Set nb_rx_queues and nb_tx_queues to 0 in uninit functions.
Rebased to latest ixgbe code.
Changes in V4:
Relea
Fix for a minor Sphinx build warning in the ABI guidelines docs:
versioning.rst:126: WARNING: Bullet list ends without a
blank line; unexpected unindent.
Signed-off-by: John McNamara
---
doc/guides/guidelines/versioning.rst | 6 +++---
1 file changed, 3 insertions(+)
> -Original Message-
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> Sent: Thursday, July 2, 2015 11:18 AM
> To: Mcnamara, John
> Cc: dev at dpdk.org
> Subject: Re: [dpdk-dev] [PATCH v2 1/7] ethdev: add support for ieee1588
> timestamping
>
> No, you cannot add new symbols
> -Original Message-
> From: Iremonger, Bernard
> Sent: Thursday, July 02, 2015 3:37 PM
> To: dev at dpdk.org
> Cc: Zhang, Helin; Qiu, Michael; Ananyev, Konstantin; Iremonger, Bernard
> Subject: [PATCH v6 0/2] PCI Port Hotplug
>
> Changes in V6:
> Rebased to latest code.
> Remove release
2015-06-26 00:57, Harish Patil:
>
> >From: Stephen Hemminger
> >
> >Changes since last time:
> > 1. Support pci_config on BSD. Although since BSD probably doesn't
> >have same filesystem (/lib/firmware) the driver won't work.
> > 2. Change location of driver to match new filesystem hierarchy
Moved and refactored the Doxygen guidelines from the Coding Style doc
to the Documentation Guidelines doc. Replaced the existing section
with a link.
Signed-off-by: John McNamara
---
doc/guides/guidelines/coding_style.rst | 126 ++---
1 file changed, 7 insertions(+),
Added guidelines on the purpose and structure of the DPDK
documentation, how to build it and guidelines for creating it.
Also added guidelines on how to format and submit a documentation patch.
Signed-off-by: John McNamara
---
doc/guides/guidelines/documentation.rst | 1005 +
Set the default literal block format for Sphinx docs
to 'none' instead of the implicit default of 'python'.
This means that default :: blocks won't have any
highlighting applied. Explicit highlighting via
the code-block:: directive is already available and
in use in the docs.
Signed-off-by: John
This patchset:
* Adds guidelines on the purpose and structure of the DPDK documentation,
how to build it and guidelines for creating it and adding to it.
* Also adds guidelines on how to format and submit a documentation patch.
* Moves and refactores the Doxygen guidelines from the Coding Styl
On 26/05/15 16:41, Eric Kinzie wrote:
> From: Eric Kinzie
>
>Provide functions to allow an external 802.3ad state machine to transmit
>and recieve LACPDUs and to set the collection/distribution flags on
>slave interfaces.
>
>Size of struct rte_eth_bond_8023ad_conf changed. Increme
2015-07-02 12:52, John McNamara:
> Also added a RST label to the start of the doc to allow it
> to be linked to from other docs.
We don't really need to have a label at the top of the doc.
It can be linked with :doc: role:
dpdk.org/browse/dpdk/commit/?id=7cc2bdedd3812998078
But it could b
2015-06-26 16:29, Sergio Gonzalez Monroy:
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -73,6 +73,7 @@ F: lib/librte_eal/common/*
> F: lib/librte_eal/common/include/*
> F: lib/librte_eal/common/include/generic/
> F: doc/guides/prog_guide/env_abstraction_layer.rst
> +F: doc/guides/prog_guide/mallo
If using linux bridge, there is no problem also.
ping from host to guest, when ovs call "eventfd_write((int)vq->callfd,
1)", guest crash and cpu usagerate of qemu is 100%
#0 rte_vhost_enqueue_burst (dev=0x7fe97900, queue_id=0,
pkts=0x7fff12521870, count=1) at
/usr/src/dpdk/lib/librte_vhos
2015-07-02 11:35, Bruce Richardson:
> When a target is finished building, it reports just "Build complete".
> When building multiple targets simultaneously, e.g.
> make install T=x86_64-native-linuxapp-*
> and one target fails, it's not always obvious which of the builds
> failed. To help thi
2015-07-02 10:28, Gajdzica, MaciejX T:
> For me it compiles. Could you provide build log?
OK. I think the problem is seen with GCC 5 (I use 5.1.0):
/home/thomas/projects/dpdk/dpdk/examples/ip_pipeline/app.h:587:49: error: array
subscript is above array bounds [-Werror=array-bounds]
struct ap
HI Bruce,
Thanks for your inputs. I am wondering why Cuckoo hash is pushing the entry
into new bucket why not add a new entry in the same bucket ?
Do we see this is better or faster compared to creating one more new entry in
the same bucket
Thanks
Jaffar
-Original Message-
From: Bru
> -Original Message-
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> Sent: Thursday, July 2, 2015 1:18 PM
> To: Mcnamara, John
> Cc: dev at dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] doc: fix minor sphinx build warning
>
> But it could be useful in case new versioning chapt
Fix for a minor Sphinx build warning in the ABI guidelines docs:
versioning.rst:126: WARNING: Bullet list ends without a
blank line; unexpected unindent.
Also added a RST label to the start of the doc to allow it
to be linked to from other docs.
Signed-off-by: John Mc
2015-06-26 17:01, Stephen Hemminger:
> The recent work on ethtool like API exposed some of the stylistic
> ugliness and waste in the current rte_ethdev code.
>
> Stephen Hemminger (4):
> rte_ethdev: remove impossible condition
> rte_ethdev: fix comment spelling
> rte_ethdev: fix code style
>
On Tue, Jun 30, 2015 at 05:24:16PM +0900, Tetsuya Mukawa wrote:
> Currently Linux implementation and BSD implementation have almost same
> code about pci uio. This patch series cleans up it.
>
Overall, patchset looks a good idea. I've made some comments on some of the
individual patches. Quick tes
On Thu, Jul 02, 2015 at 05:55:20PM +, De Lara Guarch, Pablo wrote:
> You are probably talking about extendable buckets here.
> The downsize of that approach is that you have to allocate memory on the fly,
> whereas with the cuckoo hash implementation, the entry can be stored in an
> alternativ
On 6/26/2015 10:37 AM, He, Shaopeng wrote:
> The default MAC address is directly copied to Device Ethernet
> Link address array in the device initialize phase, which
> bypasses fm10k MAC address number check mechanism, and will
> cause an error message when adding default VLAN. Fix it by
> moving d
2015-06-29 14:42, John McNamara:
> --- a/lib/librte_ether/rte_ether_version.map
> +++ b/lib/librte_ether/rte_ether_version.map
> @@ -98,6 +98,10 @@ DPDK_2.0 {
> rte_eth_stats;
> rte_eth_stats_get;
> rte_eth_stats_reset;
> + rte_eth_timesync_disable;
> + rte_eth_timesync_en
2015-06-29 16:38, Maciej Gajdzica:
> From: Jasvinder Singh
>
> After loading configuration from a file, data integrity is checked.
>
> Signed-off-by: Jasvinder Singh
> ---
> examples/ip_pipeline/Makefile |1 +
> examples/ip_pipeline/config_check.c | 396
> ++
On Tue, Jun 30, 2015 at 05:24:25PM +0900, Tetsuya Mukawa wrote:
> From: "Tetsuya.Mukawa"
>
> The patch consolidates below functions, and implemented in common
> eal code.
> - pci_map_resource()
> - pci_unmap_resource()
>
> Signed-off-by: Tetsuya Mukawa
> ---
> lib/librte_eal/bsdapp/eal/eal_p
Hi, all
Any comments on this patch?
Thanks,
Michael
On 6/22/2015 8:47 PM, Iremonger, Bernard wrote:
>> -Original Message-
>> From: Qiu, Michael
>> Sent: Thursday, June 11, 2015 8:30 AM
>> To: dev at dpdk.org
>> Cc: Iremonger, Bernard; thomas.monjalon at 6wind.com; Qiu, Michael
>> Subjec
On Tue, Jun 30, 2015 at 05:24:22PM +0900, Tetsuya Mukawa wrote:
> From: "Tetsuya.Mukawa"
>
> This patch adds a new function called pci_uio_alloc_resource().
> The function hides how to prepare uio resource in linuxapp and bsdapp.
> With the function, pci_uio_map_resource() will be more abstracted
When a target is finished building, it reports just "Build complete".
When building multiple targets simultaneously, e.g.
make install T=x86_64-native-linuxapp-*
and one target fails, it's not always obvious which of the builds
failed. To help this, we add the actual target that is complete
The commit will break vhost sample when it runs in second time:
292959c71961acde0cda6e77e737bb0a4df1559c
It should call api to unregister vhost driver when sample exit/quit, then
the socket file will be removed(by calling unlink), and thus make vhost sample
work correctly in second time startup.
It fixes the wrong log info when fails to unregister vhost driver.
Signed-off-by: Changchun Ouyang
---
examples/vhost/main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/examples/vhost/main.c b/examples/vhost/main.c
index 7863dcf..72c4773 100644
--- a/examples/vhost/ma
It adds more readable log info if a socket fails to bind to local device file
name.
Signed-off-by: Changchun Ouyang
---
lib/librte_vhost/vhost_user/vhost-net-user.c | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lib/librte_vhost/vhost_user/vhost-net-user.c
b/lib/librte
The commit breaks vhost sample when it runs in second time:
292959c71961acde0cda6e77e737bb0a4df1559c
It should call api to unregister vhost driver when sample exit/quit, then
the socket file will be removed(by calling unlink), and thus make vhost sample
work correctly in second time startup.
Also
Hi Helin,
On 07/02/2015 03:30 AM, Zhang, Helin wrote:
> Hi Oliver
>
> Thanks for your helps!
>
>> -Original Message-
>> From: Olivier MATZ [mailto:olivier.matz at 6wind.com]
>> Sent: Tuesday, June 30, 2015 4:44 PM
>> To: Zhang, Helin; dev at dpdk.org
>> Cc: Cao, Waterman; Liang, Cunming; L
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Bruce Richardson
> Sent: Thursday, July 2, 2015 10:36 AM
> To: Abdul, Jaffar
> Cc: dev at dpdk.org
> Subject: Re: [dpdk-dev] DPDK Hash library
>
> On Wed, Jul 01, 2015 at 07:56:28PM -0400, Abdul, Jaffar wrote:
On Tue, Jun 30, 2015 at 05:24:21PM +0900, Tetsuya Mukawa wrote:
> From: "Tetsuya.Mukawa"
>
> This patch fixes below.
> - bsdapp
> - Use map_id in pci_uio_map_resource().
> - Fix interface of pci_map_resource().
> - Move path variable of mapped_pci_resource structure to pci_map.
> - linuxapp
>
2015-06-23 09:50, Helin Zhang:
> In order to unify the packet type, the field of 'packet_type' in
> 'struct rte_mbuf' needs to be extended from 16 to 32 bits.
> Accordingly, some fields in 'struct rte_mbuf' are re-organized to
> support this change for Vector PMD. As 'struct rte_kni_mbuf' for
> KNI
On Tue, Jun 30, 2015 at 05:24:19PM +0900, Tetsuya Mukawa wrote:
> From: "Tetsuya.Mukawa"
>
> This patch fixes following memory leaks.
> - When open() is failed, uio_res and fds won't be freed in
> pci_uio_map_resource().
> - When pci_map_resource() is failed but path is allocated correctly,
>
On Wed, Jul 01, 2015 at 07:56:28PM -0400, Abdul, Jaffar wrote:
> Hi,
>
> I am wondering how can I use the hash library if I don't know the number of
> entries in the bucket (number of entries in the bucket can grow dynamically)
> I am trying to use the DPDK hash library for MAC table where I can'
Hi Thomas
For me it compiles. Could you provide build log?
Best Regards
Maciek
> -Original Message-
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> Sent: Thursday, July 02, 2015 12:15 PM
> To: Gajdzica, MaciejX T; Singh, Jasvinder
> Cc: dev at dpdk.org
> Subject: Re: [dpd
On Wed, Jul 01, 2015 at 10:50:49AM -0700, Gopakumar Choorakkot Edakkunni wrote:
> rte_ring_create() needs a socket-id though and seems to be allocating
> core-specific memory pools for the ring ? But my non-EAL app thread is
> not bound to any core, so now I am wondering if that will work.
>
> Rgd
Dear all,
The issue was resolved.
I want to see packet receive on host, but failed.
Should launch VM with VF PCI passthrough, then we can see traffic in VM VF
interface.
-Tianlin
From: Zhou, Tianlin
Sent: Wednesday, July 01, 2015 6:02 PM
To: dev at dpdk.org
Subject: [dpdk-dev] How to set pool m
On 7/2/2015 11:33 AM, Ouyang, Changchun wrote:
>
> /* Start CUSE session. */
> rte_vhost_driver_session_start();
> +
> + /* Unregister vhost driver. */
> + ret = rte_vhost_driver_unregister((char *)&dev_basename);
> + if (ret != 0)
> + rte_exit(EXIT_FAILURE,"vh
On 7/2/2015 11:33 AM, Ouyang, Changchun wrote:
> It fixes the wrong log info when fails to unregister vhost driver.
As commented elsewhere, fails in unregistering, not fails to unregister. :).
On 7/2/2015 11:33 AM, Ouyang, Changchun wrote:
> It adds more readable log info if a socket fails to bind to local device file
> name.
fails in binding, not fail to bind, :).
>
On Jul 2, 2015, at 4:20 AM, Dumitrescu, Cristian wrote:
> I am wondering how can I use the hash library if I don't know the number
> of entries in the bucket (number of entries in the bucket can grow
> dynamically)
> I am trying to use the DPDK hash library for MAC table where I can't give
> the f
On 7/2/2015 11:33 AM, Ouyang, Changchun wrote:
> It adds more readable log info if a socket fails to bind to local device file
> name.
local socket file, not device file. :).
>
> Signed-off-by: Changchun Ouyang
> ---
> lib/librte_vhost/vhost_user/vhost-net-user.c | 5 -
> 1 file changed, 4 i
On 7/2/2015 11:33 AM, Ouyang, Changchun wrote:
> It fixes the wrong log info when fails to unregister vhost driver.
>
> Signed-off-by: Changchun Ouyang
> ---
> examples/vhost/main.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/examples/vhost/main.c b/examples/vhos
On 7/2/2015 10:16 AM, Ouyang, Changchun wrote:
>
>> -Original Message-
>> From: Xie, Huawei
>> Sent: Thursday, July 2, 2015 10:02 AM
>> To: Ouyang, Changchun; dev at dpdk.org; Thomas Monjalon
>> Subject: Re: [dpdk-dev] [PATCH] virtio: fix the vq size issue
>>
>> On 7/2/2015 8:29 AM, Ouyang,
Tested-by: Yong Liu
- Tested Commit: 7e1fa1de8a536c68f6af76cf8d222a9e948c93ba
- OS: Fedora20 3.15.5
- GCC: gcc version 4.8.3 20140911
- CPU: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
- NIC: Intel Corporation XL710 10-Gigabit SFI/SFP+ [8086:1572]
- NIC: Intel Corporation 82599ES 10-Gigabit SFI/SFP
Cross posting to OVDK list.
On a side point, Have you looked at the DPDK enabled build in upstream OVS?
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of sai kiran
> Sent: Wednesday, July 1, 2015 1:02 PM
> To: dev at dpdk.org
> Subject: [dpdk-dev] OVDK userspa
Hi Thomas,
> -Original Message-
> From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com]
> Sent: Wednesday, July 01, 2015 9:12 PM
> To: He, Shaopeng
> Cc: dev at dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] fm10k: fix an error message when adding
> default VLAN
>
> 2015-06-26 10:37, Sh
> -Original Message-
> From: Liu, Yong
> Sent: Thursday, July 2, 2015 11:47 AM
> To: Liu, Jijiang; dev at dpdk.org
> Subject: RE: [dpdk-dev] [PATCH] doc/sample_app_ug:add a VXLAN sample guide
>
> Hi Jijiang,
> After build out dpdk doc, vxlan sample section not included in the contents of
Hi Jijiang,
After build out dpdk doc, vxlan sample section not included in the contents of
"Sample Applications User Guide".
And in chapter "Running the Sample Code", vhost cuse command look like no
difference from vhost use command.
We may need to inform user that the difference between cuse and
Hi:
If INTX fails, igb_uio falls back to running without IRQ ( refer to the
implementation in igbuio_pci_probe).
On QEMU 0.12.0, the INTX seems to have broken, and the intr_mode falls to
RTE_INTR_MODE_NONE
However this sets the udev->info.irq = 0;
Setting of udev->info.irq to '0' does not work
> -Original Message-
> From: Xie, Huawei
> Sent: Thursday, July 2, 2015 10:02 AM
> To: Ouyang, Changchun; dev at dpdk.org; Thomas Monjalon
> Subject: Re: [dpdk-dev] [PATCH] virtio: fix the vq size issue
>
> On 7/2/2015 8:29 AM, Ouyang, Changchun wrote:
> > Hi huawei,
> >
> >> -Origin
On 7/2/2015 8:29 AM, Ouyang, Changchun wrote:
> Hi huawei,
>
>> -Original Message-
>> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Xie, Huawei
>> Sent: Wednesday, July 1, 2015 11:53 PM
>> To: dev at dpdk.org; Thomas Monjalon
>> Subject: Re: [dpdk-dev] [PATCH] virtio: fix the vq s
Hi Oliver
Thanks for your helps!
> -Original Message-
> From: Olivier MATZ [mailto:olivier.matz at 6wind.com]
> Sent: Tuesday, June 30, 2015 4:44 PM
> To: Zhang, Helin; dev at dpdk.org
> Cc: Cao, Waterman; Liang, Cunming; Liu, Jijiang; Ananyev, Konstantin;
> Richardson,
> Bruce; yongwang
Hi,
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of John McNamara
> Sent: Monday, June 29, 2015 9:42 PM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH v2 0/7] ethdev: add support for ieee1588
> timestamping
>
> This patchset adds ethdev API to enable and
Hi huawei,
> -Original Message-
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Xie, Huawei
> Sent: Wednesday, July 1, 2015 11:53 PM
> To: dev at dpdk.org; Thomas Monjalon
> Subject: Re: [dpdk-dev] [PATCH] virtio: fix the vq size issue
>
> On 7/1/2015 3:49 PM, Ouyang Changchun w
82 matches
Mail list logo