This patch enables the new VIRTIO_NET_F_MTU feature,
which makes possible for the host to advise the guest
with its maximum supported MTU.
MTU value is set via QEMU parameters, either via Libvirt XML, or
directly in virtio-net device command line arguments.
Signed-off-by: Maxime Coquelin
---
li
This patch implements the vhost-user MTU protocol feature support.
When VIRTIO_NET_F_MTU is negotiated, QEMU notifies the vhost-user
backend with the configured MTU if dedicated protocol feature is
supported.
The value can be used by the application to ensure consistency with
value set by the user
This series adds support to new Virtio's MTU feature[1]. The MTU
value is set via QEMU parameters.
If the feature is negotiated (i.e supported by both host andcguest,
and valid MTU value is set in QEMU via its host_mtu parameter), QEMU
shares the configured MTU value throught dedicated Vhost proto
This patch implements the function for the application to
get the MTU value.
rte_vhost_mtu_get() fills the mtu parameter with the MTU value
set in QEMU if VIRTIO_NET_F_MTU has been negotiated and returns 0,
-ENOTSUP otherwise.
The function returns -EAGAIN if Virtio feature negotiation
didn't happ
This patch adds a new status flag indicating the Virtio device
is ready to operate.
This is required to be able to call rte_vhost_mtu_get() in the
.new_device() callback, as rte_vhost_mtu_get needs that the
negotiation is done, but it is too early to rely on running status
flag, which is set just
This patch adds a call to rte_vhost_mtu_get() at device creation
time to fill device's MTU property when available.
This makes the MTU value defined in QEMU cmdline accessible to the
application by calling rte_eth_dev_get_mtu().
Signed-off-by: Maxime Coquelin
---
drivers/net/vhost/rte_eth_vhost
This patch adds MTU display to "show port info" command.
Signed-off-by: Maxime Coquelin
---
app/test-pmd/config.c | 5 +
1 file changed, 5 insertions(+)
diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 80491fc..73d9603 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/co
This patch implements support for the Virtio MTU feature.
When negotiated, the host shares its maximum supported MTU,
which is used as initial MTU and as maximum MTU the application
can set.
Signed-off-by: Maxime Coquelin
---
doc/guides/nics/features/virtio.ini | 1 +
drivers/net/virtio/virtio_
On Sun, Mar 05, 2017 at 02:02:48PM +0200, Shahaf Shuler wrote:
> Checking whether the counter is IB counter was performed with the
> wrong index.
>
> Fixes: a4e3056b7018 ("net/mlx5: add out of buffer counter to extended
> statistic")
> Cc: sta...@dpdk.org
>
> Signed-off-by: Shahaf Shuler
Acked
On Wed, Mar 01, 2017 at 08:36:24AM +0100, Maxime Coquelin wrote:
>
>
> On 02/23/2017 06:49 AM, Yuanhan Liu wrote:
> >On Wed, Feb 22, 2017 at 10:36:36AM +0100, Maxime Coquelin wrote:
> >>
> >>
> >>On 02/22/2017 02:37 AM, Yuanhan Liu wrote:
> >>>On Tue, Feb 21, 2017 at 06:32:43PM +0100, Maxime Coqu
On 3/2/2017 9:01 AM, Shahaf Shuler wrote:
> Implement support for hardware TSO.
>
> Signed-off-by: Shahaf Shuler
> ---
> on v3:
> * fix alignment issues
> * for warn log
> on v2:
> * Instead of exposing capability, TSO checks on data path.
> * PMD specific parameter to enable TSO.
> * differ
On 2/23/2017 10:44 AM, Vasily Philipov wrote:
> Hi Ferruh,
>
>> -Original Message-
>> From: Ferruh Yigit [mailto:ferruh.yi...@intel.com]
>> Sent: Wednesday, February 22, 2017 21:05
>> To: Vasily Philipov ; dev@dpdk.org
>> Cc: Adrien Mazarguil ; Nélio Laranjeiro
>>
>> Subject: Re: [dpdk-de
On 3/6/2017 8:50 AM, Ferruh Yigit wrote:
> On 3/2/2017 9:01 AM, Shahaf Shuler wrote:
>> Implement support for hardware TSO.
>>
>> Signed-off-by: Shahaf Shuler
>> ---
>> on v3:
>> * fix alignment issues
>> * for warn log
>> on v2:
>> * Instead of exposing capability, TSO checks on data path.
>>
On 3/2/2017 9:15 AM, Nélio Laranjeiro wrote:
> On Thu, Mar 02, 2017 at 11:01:31AM +0200, Shahaf Shuler wrote:
>> Implement support for hardware TSO.
>>
>> Signed-off-by: Shahaf Shuler
> Acked-by: Nelio Laranjeiro
Applied to dpdk-next-net/master, thanks.
On 3/2/2017 9:17 AM, Nélio Laranjeiro wrote:
> On Thu, Mar 02, 2017 at 11:05:44AM +0200, Shahaf Shuler wrote:
>> Prior to this commit Tx checksum offload was supported only for the
>> inner headers.
>> This commit adds support for the hardware to compute the checksum for the
>> outer headers as wel
Hi all.
So, what about this change?
Best regards, Ilya Maximets.
On 16.02.2017 16:01, Ilya Maximets wrote:
> Currently EAL allocates hugepages one by one not paying
> attention from which NUMA node allocation was done.
>
> Such behaviour leads to allocation failure if number of
> available huge
On 3/6/2017 8:43 AM, Adrien Mazarguil wrote:
> On Sun, Mar 05, 2017 at 02:02:48PM +0200, Shahaf Shuler wrote:
>> Checking whether the counter is IB counter was performed with the
>> wrong index.
>>
>> Fixes: a4e3056b7018 ("net/mlx5: add out of buffer counter to extended
>> statistic")
>> Cc: sta..
This adds a name field to the generic struct rte_device. The EAL is
checking for the name being populated when registering a device but
doesn't enforce global unique names as this is left to the bus
implementations.
Signed-off-by: Jan Blunck
---
lib/librte_eal/bsdapp/eal/eal_pci.c | 3 +++
l
This series is removing the PCI specific struct eth_driver from rte_ether. The
PCI drivers are changed to use the newly introduced header-only helpers
instead. Although the virtual drivers did not make use of the ethdev's driver
field they are converted to use the VDEV specific allocation helpers.
This driver can use the library function rte_eth_dma_zone_reserve()
instead of duplicating the code.
Signed-off-by: Jan Blunck
---
drivers/net/nfp/nfp_net.c | 30 ++
1 file changed, 6 insertions(+), 24 deletions(-)
diff --git a/drivers/net/nfp/nfp_net.c b/drivers/net
In some cases the virtual device name should be totally different than
the driver being used for the device. Therefore lets parse the devargs for
the "driver" argument before probing drivers in vdev_probe_all_drivers().
Signed-off-by: Jan Blunck
---
lib/librte_eal/common/eal_common_vdev.c | 48 +
This helper should be used by ethdev drivers supporting virtual devices
to help allocating a new ethdev and properly filling the default fields.
Signed-off-by: Jan Blunck
---
lib/librte_ether/Makefile | 1 +
lib/librte_ether/rte_ethdev_vdev.h | 85 ++
This driver can use the library function rte_eth_dma_zone_reserve()
instead of duplicating the code.
Signed-off-by: Jan Blunck
---
drivers/net/vmxnet3/vmxnet3_rxtx.c | 30 --
1 file changed, 4 insertions(+), 26 deletions(-)
diff --git a/drivers/net/vmxnet3/vmxnet3_rx
Signed-off-by: Jan Blunck
---
drivers/net/tap/rte_eth_tap.c | 37 +++--
1 file changed, 11 insertions(+), 26 deletions(-)
diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c
index 941150f..f6f025f 100644
--- a/drivers/net/tap/rte_eth_tap.c
+
Signed-off-by: Jan Blunck
---
drivers/net/vhost/rte_eth_vhost.c | 54 +++
1 file changed, 26 insertions(+), 28 deletions(-)
diff --git a/drivers/net/vhost/rte_eth_vhost.c
b/drivers/net/vhost/rte_eth_vhost.c
index d0d0474..e2dae6f 100644
--- a/drivers/net/vhos
Signed-off-by: Jan Blunck
---
drivers/net/virtio/virtio_user_ethdev.c | 20 +---
1 file changed, 5 insertions(+), 15 deletions(-)
diff --git a/drivers/net/virtio/virtio_user_ethdev.c
b/drivers/net/virtio/virtio_user_ethdev.c
index 42ad8a2..15e3a93 100644
--- a/drivers/net/virtio
Signed-off-by: Jan Blunck
---
drivers/net/af_packet/rte_eth_af_packet.c | 42 ++-
1 file changed, 19 insertions(+), 23 deletions(-)
diff --git a/drivers/net/af_packet/rte_eth_af_packet.c
b/drivers/net/af_packet/rte_eth_af_packet.c
index 77536e8..6f6ba0c 100644
--- a/
A virtual device should get initialized through the rte_eal_vdev_init()
function to properly initialize the driver.
Signed-off-by: Jan Blunck
---
drivers/net/null/rte_eth_null.c | 1 +
test/test/test_link_bonding_rssconf.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --gi
There is no need to export this API. Remaining users should use the
rte_eal_vdev_init() function instead.
Signed-off-by: Jan Blunck
---
drivers/net/null/Makefile | 7 +-
drivers/net/null/rte_eth_null.c | 4 +---
drivers/net/null/rte_eth_null.h | 40 -
Signed-off-by: Jan Blunck
---
drivers/net/null/rte_eth_null.c | 50 ++---
1 file changed, 17 insertions(+), 33 deletions(-)
diff --git a/drivers/net/null/rte_eth_null.c b/drivers/net/null/rte_eth_null.c
index 14f35d7..226c2e4 100644
--- a/drivers/net/null/rte_
To properly embed the generic rte_device into the rte_eth_dev this reworks
the bonding API to call through rte_eal_vdev_init().
Signed-off-by: Jan Blunck
---
drivers/net/bonding/rte_eth_bond_api.c | 171 +--
drivers/net/bonding/rte_eth_bond_args.c | 2 +-
drivers/n
Signed-off-by: Jan Blunck
---
drivers/net/bonding/rte_eth_bond_pmd.c | 20 +++-
1 file changed, 3 insertions(+), 17 deletions(-)
diff --git a/drivers/net/bonding/rte_eth_bond_pmd.c
b/drivers/net/bonding/rte_eth_bond_pmd.c
index c0d08a8..3c80ff5 100644
--- a/drivers/net/bonding/r
This adds the following helper intended to be used by rte_pci_driver
implementations working with ethdev:
- rte_eth_dev_pci_allocate
- rte_eth_dev_pci_release
- rte_eth_dev_pci_generic_probe
- rte_eth_dev_pci_generic_remove
Signed-off-by: Jan Blunck
---
lib/librte_ether/Makefile | 1 +
Signed-off-by: Jan Blunck
---
drivers/net/bnx2x/bnx2x_ethdev.c | 64 +++-
1 file changed, 44 insertions(+), 20 deletions(-)
diff --git a/drivers/net/bnx2x/bnx2x_ethdev.c b/drivers/net/bnx2x/bnx2x_ethdev.c
index a0b0dfa..e295951 100644
--- a/drivers/net/bnx2x/b
Signed-off-by: Jan Blunck
---
drivers/net/virtio/virtio_ethdev.c | 34 +-
1 file changed, 21 insertions(+), 13 deletions(-)
diff --git a/drivers/net/virtio/virtio_ethdev.c
b/drivers/net/virtio/virtio_ethdev.c
index 4dc03b9..a600ca5 100644
--- a/drivers/net/virtio
Signed-off-by: Jan Blunck
---
drivers/net/cxgbe/cxgbe_ethdev.c | 29 +++--
drivers/net/cxgbe/sge.c | 6 +++---
2 files changed, 22 insertions(+), 13 deletions(-)
diff --git a/drivers/net/cxgbe/cxgbe_ethdev.c b/drivers/net/cxgbe/cxgbe_ethdev.c
index 4d543a7..34fe
Signed-off-by: Jan Blunck
---
drivers/net/bnxt/bnxt_ethdev.c | 36 +++-
1 file changed, 23 insertions(+), 13 deletions(-)
diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c
index 6167443..5dc3ff0 100644
--- a/drivers/net/bnxt/bnxt_ethdev.
Signed-off-by: Jan Blunck
---
drivers/net/e1000/em_ethdev.c | 30 +++---
1 file changed, 19 insertions(+), 11 deletions(-)
diff --git a/drivers/net/e1000/em_ethdev.c b/drivers/net/e1000/em_ethdev.c
index 4066ef9..39a62a3 100644
--- a/drivers/net/e1000/em_ethdev.c
+++ b/dr
Signed-off-by: Jan Blunck
---
drivers/net/ena/ena_ethdev.c | 29 +++--
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c
index b5e6db6..41573ae 100644
--- a/drivers/net/ena/ena_ethdev.c
+++ b/drivers
Signed-off-by: Jan Blunck
---
drivers/net/fm10k/fm10k_ethdev.c | 30 +++---
1 file changed, 19 insertions(+), 11 deletions(-)
diff --git a/drivers/net/fm10k/fm10k_ethdev.c b/drivers/net/fm10k/fm10k_ethdev.c
index c4fe746..5bb0426 100644
--- a/drivers/net/fm10k/fm10k_ethde
Signed-off-by: Jan Blunck
---
drivers/net/e1000/igb_ethdev.c | 60 ++
1 file changed, 38 insertions(+), 22 deletions(-)
diff --git a/drivers/net/e1000/igb_ethdev.c b/drivers/net/e1000/igb_ethdev.c
index a112b38..1a162cc 100644
--- a/drivers/net/e1000/igb_e
Signed-off-by: Jan Blunck
---
drivers/net/enic/enic_ethdev.c | 29 +++--
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/drivers/net/enic/enic_ethdev.c b/drivers/net/enic/enic_ethdev.c
index bffa870..57f71c7 100644
--- a/drivers/net/enic/enic_ethdev.c
+++ b
Signed-off-by: Jan Blunck
---
drivers/net/i40e/i40e_ethdev_vf.c | 31 ---
1 file changed, 20 insertions(+), 11 deletions(-)
diff --git a/drivers/net/i40e/i40e_ethdev_vf.c
b/drivers/net/i40e/i40e_ethdev_vf.c
index 55fd344..2a10ad5 100644
--- a/drivers/net/i40e/i40e_et
The eth_driver concept is unused in the mlx drivers so don't reference it.
Signed-off-by: Jan Blunck
---
drivers/net/mlx4/mlx4.c | 17 +++--
drivers/net/mlx5/mlx5.c | 19 ---
2 files changed, 15 insertions(+), 21 deletions(-)
diff --git a/drivers/net/mlx4/mlx4.c b/dr
Signed-off-by: Jan Blunck
---
drivers/net/ixgbe/ixgbe_ethdev.c | 66
1 file changed, 40 insertions(+), 26 deletions(-)
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 7169007..de5e3c2 100644
--- a/drivers/net/ixgbe/i
Signed-off-by: Jan Blunck
---
drivers/net/i40e/i40e_ethdev.c | 36 ++--
drivers/net/i40e/i40e_fdir.c | 2 +-
2 files changed, 23 insertions(+), 15 deletions(-)
diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index 303027b..8d4e509 1
Signed-off-by: Jan Blunck
---
drivers/net/nfp/nfp_net.c | 29 +++--
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/drivers/net/nfp/nfp_net.c b/drivers/net/nfp/nfp_net.c
index b9dfe80..4cc003e 100644
--- a/drivers/net/nfp/nfp_net.c
+++ b/drivers/net/nfp/nfp
Signed-off-by: Jan Blunck
---
drivers/net/qede/qede_ethdev.c | 60 +-
drivers/net/qede/qede_ethdev.h | 1 +
2 files changed, 37 insertions(+), 24 deletions(-)
diff --git a/drivers/net/qede/qede_ethdev.c b/drivers/net/qede/qede_ethdev.c
index 0494dbd..8dfd
Signed-off-by: Jan Blunck
---
drivers/net/thunderx/nicvf_ethdev.c | 29 +++--
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/drivers/net/thunderx/nicvf_ethdev.c
b/drivers/net/thunderx/nicvf_ethdev.c
index 1060319..fa17f10 100644
--- a/drivers/net/thunderx
Signed-off-by: Jan Blunck
---
drivers/net/szedata2/rte_eth_szedata2.c | 29 +++--
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/drivers/net/szedata2/rte_eth_szedata2.c
b/drivers/net/szedata2/rte_eth_szedata2.c
index fe7a6b3..54212b7 100644
--- a/drivers/
Signed-off-by: Jan Blunck
---
drivers/net/sfc/sfc_ethdev.c | 34 +-
1 file changed, 21 insertions(+), 13 deletions(-)
diff --git a/drivers/net/sfc/sfc_ethdev.c b/drivers/net/sfc/sfc_ethdev.c
index 71587fb..ef8970d 100644
--- a/drivers/net/sfc/sfc_ethdev.c
+++ b/dr
Signed-off-by: Jan Blunck
---
drivers/net/vmxnet3/vmxnet3_ethdev.c | 30 +++---
1 file changed, 19 insertions(+), 11 deletions(-)
diff --git a/drivers/net/vmxnet3/vmxnet3_ethdev.c
b/drivers/net/vmxnet3/vmxnet3_ethdev.c
index b7b5377..9e6fffa 100644
--- a/drivers/net/vmxn
This removes the now unused rte_eth_dev_pci_probe() and
rte_eth_dev_pci_remove() functions.
Signed-off-by: Jan Blunck
---
lib/librte_ether/rte_ethdev.c | 97 --
lib/librte_ether/rte_ethdev.h | 15 --
lib/librte_ether/rte_ethdev_pci.h | 1
Since the PCI functionality has been moved to the PCI specific ethdev
header we don't need to include rte_pci.h from here anymore.
Signed-off-by: Jan Blunck
---
lib/librte_ether/rte_ethdev.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/librte_ether/rte_ethdev.h b/lib
This removes the now unused struct eth_driver.
Signed-off-by: Jan Blunck
---
drivers/net/cxgbe/cxgbe_main.c | 1 -
drivers/net/ring/rte_eth_ring.c| 1 -
lib/librte_ether/rte_ethdev.h | 73 --
lib/librte_ether/rte_ethdev_pci.h | 2 --
lib/librt
This moves the rte_eth_copy_pci_info() into the PCI specific ethdev
header. As a side effect this also removes it from the list of symbols
exported by the rte_ethdev library.
Signed-off-by: Jan Blunck
---
drivers/net/cxgbe/cxgbe_main.c | 1 +
lib/librte_ether/rte_ethdev.c | 20
On 3/2/2017 3:46 PM, Andrew Rybchenko wrote:
> From: Ivan Malov
>
> Signed-off-by: Ivan Malov
> Signed-off-by: Andrew Rybchenko
> Reviewed-by: Andrew Lee
> ---
> drivers/net/sfc/sfc_ethdev.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/net/sfc/sfc_ethdev.c b/drivers/ne
Hi,
2017-03-03 13:54, Kuba Kozak:
> From: Jacek Piasecki
>
> This patch extends library for retriving xstats by specified groups and
> single xstat by given name.
>
> Signed-off-by: Jacek Piasecki
> Signed-off-by: Kuba Kozak
As you probably know, it is difficult to have a good review
(or a s
On 3/2/2017 3:46 PM, Andrew Rybchenko wrote:
> From: Ivan Malov
Hi Ivan,
Can you please update patch title to indicate what has been done,
starting with a verb. It is harder to understand patch content from
statements.
Thanks,
ferruh
>
> If Rx mode is unacceptable, in particular, when promis
Hi Cristian,
2017-03-04 01:10, Cristian Dumitrescu:
> struct rte_flow_ops *eth_flow_ops;
> int rte = rte_eth_dev_filter_ctrl(eth_port_id,
> RTE_ETH_FILTER_GENERIC, RTE_ETH_FILTER_GET, ð_flow_ops);
>
> Unfortunately, the rte_flow opportunistically uses the
> rte_eth_dev_filter_ctrl()
> API
On Fri, Feb 17, 2017 at 02:53:56PM +, Harry van Haaren wrote:
> This commit improves the documentation of the api return
> values for rte_event_dequeue_timeout_ticks(), and allows
> -ENOTSUP to be returned by devices which do not support
> timeouts.
>
> The unit test is modified to accept -ENO
2017-03-04 01:10, Cristian Dumitrescu:
> This patch introduces the generic ethdev API for the traffic manager
> capability, which includes: hierarchical scheduling, traffic shaping,
> congestion management, packet marking.
We already have some API for QoS. Why integrating them in ethdev?
ethdev is
2017-03-02 14:40, Olivier Matz:
> On Wed, 1 Mar 2017 21:02:16 +0300, Andrew Rybchenko
> wrote:
> > On 03/01/2017 08:19 PM, Olivier Matz wrote:
> > > This patchset introduces a new ethdev API:
> > > - rte_eth_rx_descriptor_status()
> > > - rte_eth_tx_descriptor_status()
> >
> > May be correspon
2017-03-02 14:43, Olivier Matz:
> Hi Stephen,
>
> On Wed, 1 Mar 2017 10:07:06 -0800, Stephen Hemminger
> wrote:
> > On Wed, 1 Mar 2017 18:19:06 +0100
> > Olivier Matz wrote:
> >
> > > This patchset introduces a new ethdev API:
> > > - rte_eth_rx_descriptor_status()
> > > - rte_eth_tx_descript
Make sure that the PCI devices are probed before the virtual devices after
the legacy virtual device probing has been moved to a bus.
Signed-off-by: Jan Blunck
Tested-by: Ferruh Yigit
Acked-by: Shreyansh Jain
---
lib/librte_eal/bsdapp/eal/eal.c | 8
lib/librte_eal/linuxapp/eal/eal.c
With the rte_bus infrastructure present in 17.02 it is possible to refactor
the virtual device probing into a bus. This series also introduces the
rte_vdev_device to better keep track of devices.
This patchset depends on:
http://dpdk.org/dev/patchwork/patch/20416/
http://dpdk.org/dev/patchwork/pat
This is a refactoring of the virtual device probing which moves into into
a proper bus structure.
Signed-off-by: Jan Blunck
Tested-by: Ferruh Yigit
Acked-by: Shreyansh Jain
---
lib/librte_eal/common/eal_common_dev.c | 22 -
lib/librte_eal/common/eal_common_vdev.c | 44
Also see commit f4ce209a8ce5 ("eal: postpone vdev initialization").
Signed-off-by: Jan Blunck
---
lib/librte_eal/common/eal_common_bus.c | 16 +++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/lib/librte_eal/common/eal_common_bus.c
b/lib/librte_eal/common/eal_common
This is a preparation for the introduction of the struct rte_vdev_device.
Signed-off-by: Jan Blunck
Tested-by: Ferruh Yigit
Acked-by: Shreyansh Jain
---
lib/librte_eal/common/eal_common_vdev.c | 44 -
1 file changed, 33 insertions(+), 11 deletions(-)
diff --git
Signed-off-by: Jan Blunck
Tested-by: Ferruh Yigit
Acked-by: Shreyansh Jain
---
lib/librte_eal/bsdapp/eal/eal.c | 3 ---
lib/librte_eal/bsdapp/eal/rte_eal_version.map | 1 -
lib/librte_eal/common/eal_common_dev.c | 6 --
lib/librte_eal/common/include/rte_dev.h
This adds the rte_vdev_device structure which embeds a generic rte_device.
Signed-off-by: Jan Blunck
Tested-by: Ferruh Yigit
Acked-by: Shreyansh Jain
---
lib/librte_eal/common/eal_common_vdev.c | 5 +
lib/librte_eal/common/include/rte_vdev.h | 5 +
2 files changed, 10 insertions(+)
d
This adds the rte_vdev_device_name() helper function to retrieve the
rte_vdev_device name which makes moving the name of the low-level
device into struct rte_device easier in the future.
Signed-off-by: Jan Blunck
Acked-by: Shreyansh Jain
---
lib/librte_eal/common/include/rte_vdev.h | 9
This adds the rte_vdev_device_args() helper function to prepare for
changing the virtual drivers probe() functions take a rte_vdev_device
pointer instead of the name+args strings.
Signed-off-by: Jan Blunck
---
lib/librte_eal/common/include/rte_vdev.h | 8
1 file changed, 8 insertions(+)
This is a preparation to embed the generic rte_device into the rte_eth_dev
also for virtual devices.
Signed-off-by: Jan Blunck
---
drivers/crypto/null/null_crypto_pmd.c | 18 --
drivers/net/af_packet/rte_eth_af_packet.c | 11 ++-
drivers/net/bonding/rte_eth_bond_pmd.c
This allows the virtual bus to be rescanned and probed by tracking the
creation of rte_vdev_device.
Signed-off-by: Jan Blunck
Tested-by: Ferruh Yigit
Acked-by: Shreyansh Jain
---
lib/librte_eal/common/eal_common_vdev.c | 195 +---
1 file changed, 155 insertions(+),
2017-03-04 21:45, Olivier Matz:
> "Venkatesan, Venky" wrote:
> > From: Olivier Matz
> > > On Fri, 3 Mar 2017 16:18:52 +, "Venkatesan, Venky" wrote:
> > > > From: Olivier Matz
> > > > > On Thu, 2 Mar 2017 15:32:15 +, Bruce Richardson wrote:
> > > > > > On Wed, Mar 01, 2017 at 06:19:06PM
Monday, March 6, 2017 11:31 AM, Ferruh Yigit:
> On 3/6/2017 8:50 AM, Ferruh Yigit wrote:
> > On 3/2/2017 9:01 AM, Shahaf Shuler wrote:
> >> Implement support for hardware TSO.
> >>
> >> Signed-off-by: Shahaf Shuler
> >> ---
> >> on v3:
> >> * fix alignment issues
> >> * for warn log
> >> on v2:
Signed-off-by: Shahaf Shuler
---
doc/guides/rel_notes/release_17_05.rst | 4
1 file changed, 4 insertions(+)
diff --git a/doc/guides/rel_notes/release_17_05.rst
b/doc/guides/rel_notes/release_17_05.rst
index 05fe784..8c381a8 100644
--- a/doc/guides/rel_notes/release_17_05.rst
+++ b/doc/gui
Siena has limitation on maximum byte count and 4k boundary crosssing
(which is stricter than maximum byte count).
EF10 has limitation on maximum byte count only.
Fixes: f7dc06bf35f2 ("net/sfc/base: import 5xxx/6xxx family support")
Fixes: e7cd430c864f ("net/sfc/base: import SFN7xxx family support"
EF10 supported by the PMD has no limitations on address boundary
crossing by Tx DMA descriptors.
Fixes: 428c7ddd2f16 ("net/sfc: send bursts of packets")
Fixes: fec33d5bb3eb ("net/sfc: support firmware-assisted TSO")
Signed-off-by: Andrew Rybchenko
---
drivers/net/sfc/sfc_tso.c | 11 ---
On Wed, Mar 01, 2017 at 10:47:36PM -0600, Gage Eads wrote:
> This patch initializes the links_map array entries to
> EVENT_QUEUE_SERVICE_PRIORITY_INVALID, as expected by
> rte_event_port_links_get().
>
> Signed-off-by: Gage Eads
> ---
> lib/librte_eventdev/rte_eventdev.c | 17 -
>
On Fri, Feb 10, 2017 at 09:56:50PM +0530, Nipun Gupta wrote:
> Signed-off-by: Nipun Gupta
> Acked-by: Harry van Haaren
Applied to dpdk-next-eventdev/master. Thanks.
> ---
> Changes for v2:
> - Fix errors reported by check-git-log.sh
> Changes for v3:
> - Corrected comment's language
>
> lib
Hi Daniel,
> -Original Message-
> From: Mrzyglod, DanielX T
> Sent: Thursday, February 16, 2017 11:27 AM
> To: Mrozowicz, SlawomirX; Doherty, Declan; De Lara Guarch, Pablo
> Cc: dev@dpdk.org; Mrzyglod, DanielX T
> Subject: [PATCH v2] app/crypto-perf: fix for segfault when bad optype is
> u
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ravi Kerur
> Sent: Sunday, March 5, 2017 7:47 PM
> To: dev@dpdk.org
> Cc: Ananyev, Konstantin ; Richardson, Bruce
> ; Ravi Kerur
> Subject: [dpdk-dev] [v4 0/3] Merge l3fwd-acl and l3fwd
>
> This patchset merges l3
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ravi Kerur
> Sent: Sunday, March 5, 2017 7:47 PM
> To: dev@dpdk.org
> Cc: Ananyev, Konstantin ; Richardson, Bruce
> ; Ravi Kerur
> Subject: [dpdk-dev] [v4 3/3] EM config file read option.
>
> v4:
> > No ch
On Wed, Mar 01, 2017 at 12:49:02PM +, Harry van Haaren wrote:
> PMDs that only do a specific type of scheduling cannot provide
> CFG_ALL_TYPES, so the Eventdev infrastructure should not demand
> that every PMD supports CFG_ALL_TYPES.
Sure. Then I think then we can enumerate CFG_ALL_TYPES as ca
Store the device name in dev->data->name, to have symmetrical behavior
between rte_pmd_tap_probe(name) and rte_pmd_tap_remove(name).
The netdevice name (linux interface name) is stored in the name field of
struct pmd_internals.
There's no need to allocate an rte_eth_dev_data, as it is done in
rte
On Fri, Mar 03, 2017 at 04:14:20PM +, Bruce Richardson wrote:
On Fri, Mar 03, 2017 at 04:40:22PM +0100, Gaetan Rivet wrote:
This PMD intercepts and manages Ethernet device removal events issued by
slave PMDs and re-initializes them transparently when brought back so that
existing application
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ravi Kerur
> Sent: Sunday, March 5, 2017 7:47 PM
> To: dev@dpdk.org
> Cc: Ananyev, Konstantin ; Richardson, Bruce
> ; Ravi Kerur
> Subject: [dpdk-dev] [v4 2/3] LPM config file read option.
>
> ...
> +
> +#define
On Fri, 3 Mar 2017 15:27:12 +
"Wiles, Keith" wrote:
>
> > On Mar 3, 2017, at 3:46 AM, Pascal Mazon
> > wrote:
> >
> > Tap PMD is flexible, it supports any speed.
> >
> > Signed-off-by: Pascal Mazon
> > ---
> > doc/guides/nics/features/tap.ini | 1 +
> > drivers/net/tap/rte_eth_tap.c|
From: Julien Castets
---
doc/guides/linux_gsg/build_dpdk.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guides/linux_gsg/build_dpdk.rst
b/doc/guides/linux_gsg/build_dpdk.rst
index eadade276..9d245737d 100644
--- a/doc/guides/linux_gsg/build_dpdk.rst
+++ b/doc/guides
On Fri, 3 Mar 2017 15:23:28 +
"Wiles, Keith" wrote:
>
> > On Mar 3, 2017, at 3:46 AM, Pascal Mazon
> > wrote:
> >
> > The MTU is assigned to the tap netdevice according to the argument,
> > but packet transmission and reception just write/read on an fd with
> > the default limit being the
On 03/06/2017 01:10 PM, Ferruh Yigit wrote:
On 3/2/2017 3:46 PM, Andrew Rybchenko wrote:
From: Ivan Malov
Signed-off-by: Ivan Malov
Signed-off-by: Andrew Rybchenko
Reviewed-by: Andrew Lee
---
drivers/net/sfc/sfc_ethdev.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/
> -Original Message-
> From: Kulasek, TomaszX
> Sent: Friday, February 24, 2017 3:26 PM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo
> Subject: [PATCH] app/crypto-perf: fix uninitialized values for null operations
>
> Some values are uninitialized for "cipher null" and "auth null"
> op
On Fri, 3 Mar 2017 15:31:14 +
"Wiles, Keith" wrote:
>
> > On Mar 3, 2017, at 3:46 AM, Pascal Mazon
> > wrote:
> >
> > Advertize RTE_PTYPE_UNKNOWN since tap does not report any packet
> > type.
> >
> > Signed-off-by: Pascal Mazon
> > ---
> > doc/guides/nics/features/tap.ini | 1 +
> > dri
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Mcnamara, John
> Sent: Monday, March 6, 2017 1:57 PM
> To: Ravi Kerur ; dev@dpdk.org
> Cc: Ananyev, Konstantin ; Richardson, Bruce
>
> Subject: Re: [dpdk-dev] [v4 2/3] LPM config file read option.
>
>
>
> > --
On 03/06/2017 09:46 AM, Yuanhan Liu wrote:
On Wed, Mar 01, 2017 at 08:36:24AM +0100, Maxime Coquelin wrote:
On 02/23/2017 06:49 AM, Yuanhan Liu wrote:
On Wed, Feb 22, 2017 at 10:36:36AM +0100, Maxime Coquelin wrote:
On 02/22/2017 02:37 AM, Yuanhan Liu wrote:
On Tue, Feb 21, 2017 at 06:3
> On Mar 5, 2017, at 3:35 PM, Yigit, Ferruh wrote:
>
> On 3/3/2017 8:54 AM, Pascal Mazon wrote:
>> The call to rte_eth_dev_allocate(tap_name) sets dev->data->name to
>> tap_name (e.g. "dtap0").
>>
>> A look-up using tap_name is expected to return this device, not a
>> look-up using name (e.g. "
On Fri, 3 Mar 2017 15:38:11 +
"Wiles, Keith" wrote:
>
> > On Mar 3, 2017, at 4:45 AM, Pascal Mazon
> > wrote:
> >
> > In the next patch, access to struct pmd_internals will be necessary
> > in tap_flow.c to store the flows.
> >
> > Signed-off-by: Pascal Mazon
> > Acked-by: Olga Shern
>
On Fri, Mar 03, 2017 at 09:38:11AM -0800, Stephen Hemminger wrote:
On Fri, 3 Mar 2017 16:40:28 +0100
Gaetan Rivet wrote:
+
+static struct rte_eth_dev *
+pci_addr_to_eth_dev(struct rte_pci_addr *addr)
+{
+ uint8_t pid;
+
+ if (addr == NULL)
+ return NULL;
+ for
1 - 100 of 203 matches
Mail list logo