This patchset makes DPDK vhost library be generic enough, so that we could
build other vhost-user drivers on top of it. For example, SPDK (Storage
Performance Development Kit) is trying to enable vhost-user SCSI.
The basic idea is, let DPDK vhost be a vhost-user agent. It stores all
the info about
Introduce few APIs to set/get/enable/disable driver features.
Signed-off-by: Yuanhan Liu
Reviewed-by: Maxime Coquelin
---
doc/guides/prog_guide/vhost_lib.rst| 10 +++-
lib/librte_vhost/rte_vhost_version.map | 4 ++
lib/librte_vhost/rte_virtio_net.h | 51 +++
lib/librte
Signed-off-by: Yuanhan Liu
---
examples/tep_termination/main.c| 4 +++-
examples/vhost/main.c | 43 +-
lib/librte_vhost/rte_vhost_version.map | 3 ---
lib/librte_vhost/rte_virtio_net.h | 13 --
lib/librte_vhost/socket.c
The rte_eth_vhost_feature_disable/enable/get APIs are just a wrapper of
rte_vhost_feature_disable/enable/get. However, the later are going to
be refactored; it's going to take an extra parameter (socket_file path),
to let it be per-device.
Instead of changing those vhost-pmd APIs to adapt to the n
Assume there is an application both support vhost-user net and
vhost-user scsi, the callback should be different. Making notify
ops per vhost driver allow application define different set of
callbacks for different driver.
Signed-off-by: Yuanhan Liu
---
v2: - check the return value of callback_r
Signed-off-by: Yuanhan Liu
---
lib/librte_vhost/rte_vhost_version.map | 2 ++
lib/librte_vhost/rte_virtio_net.h | 10 ++
lib/librte_vhost/vhost.c | 12
3 files changed, 24 insertions(+)
diff --git a/lib/librte_vhost/rte_vhost_version.map
b/lib/librte_vho
Some vhost-user driver may need this info to setup its own page tables
for GPA (guest physical addr) to HPA (host physical addr) translation.
SPDK (Storage Performance Development Kit) is one example.
Besides, by exporting this memory info, we could also export the
gpa_to_vva() as an inline functi
Signed-off-by: Yuanhan Liu
Reviewed-by: Maxime Coquelin
---
lib/librte_vhost/rte_vhost_version.map | 1 +
lib/librte_vhost/rte_virtio_net.h | 28
lib/librte_vhost/vhost.h | 19 ---
lib/librte_vhost/virtio_net.c | 23 ++
Signed-off-by: Yuanhan Liu
---
v2: - fix off-by-one check
- add API comments
---
lib/librte_vhost/rte_vhost_version.map | 1 +
lib/librte_vhost/rte_virtio_net.h | 26 ++
lib/librte_vhost/vhost.c | 30 ++
lib/librte_vhost
The queue pair is very virtio-net specific, other devices don't have
such concept. To make it generic, we should log the number of vrings
instead of the number of queue pairs.
This patch just does a simple convert, a later patch would export the
number of vrings to applications.
Signed-off-by: Yu
We used to use rte_vhost_get_queue_num() for telling how many vrings.
However, the return value is the number of "queue pairs", which is
very virtio-net specific. To make it generic, we should return the
number of vrings instead, and let the driver do the proper translation.
Say, virtio-net driver
rename "virtio_net_device_ops" to "vhost_device_ops", to not let it
be virtio-net specific.
Signed-off-by: Yuanhan Liu
Reviewed-by: Maxime Coquelin
---
doc/guides/prog_guide/vhost_lib.rst| 2 +-
doc/guides/rel_notes/release_17_05.rst | 3 +++
drivers/net/vhost/rte_eth_vhost.c | 2 +-
e
Currently, we check vq->desc, vq->kickfd and vq->callfd to know whether
a virtio device is ready or not. However, we only do it when handling
SET_VRING_KICK message, which could be wrong if a vhost-user frontend
send SET_VRING_KICK first and SET_VRING_CALL later.
To work for all possible vhost-use
They are virtio-net specific and should be defined inside the virtio-net
driver.
Signed-off-by: Yuanhan Liu
Reviewed-by: Maxime Coquelin
---
v2: - update release note
---
doc/guides/rel_notes/release_17_05.rst | 6 ++
drivers/net/vhost/rte_eth_vhost.c | 2 ++
examples/tep_termination/
Include it internally, at vhost.h.
Signed-off-by: Yuanhan Liu
Reviewed-by: Maxime Coquelin
---
v2: - update release note
---
doc/guides/rel_notes/release_17_05.rst | 7 +++
examples/vhost/main.h | 2 ++
lib/librte_vhost/rte_virtio_net.h | 4
lib/librte_vhost/vhos
Features could be changed after the feature negotiation. For example,
VHOST_F_LOG_ALL will be set/cleared at the start/end of live migration,
respecitively. Thus, we need a new callback to inform the application
on such change.
Signed-off-by: Yuanhan Liu
---
doc/guides/prog_guide/vhost_lib.rst |
Rename "virtio-net" to "vhost" in the API comments and vhost prog guide.
Signed-off-by: Yuanhan Liu
Reviewed-by: Maxime Coquelin
---
doc/guides/prog_guide/vhost_lib.rst | 6 +++---
lib/librte_vhost/rte_virtio_net.h | 14 +++---
2 files changed, 10 insertions(+), 10 deletions(-)
diff
Rename "rte_virtio_net.h" to "rte_vhost.h", to not let it be virtio
net specific.
Signed-off-by: Yuanhan Liu
Reviewed-by: Maxime Coquelin
---
doc/guides/rel_notes/deprecation.rst | 9 -
doc/guides/rel_notes/release_17_05.rst | 3 +
drivers/net/vhost/rte_eth_vhost.c | 2 +-
drivers/
rte_mbuf struct is something more likely will be used only in vhost-user
net driver, while we have made vhost-user generic enough that it can
be used for implementing other drivers (such as vhost-user SCSI), they
have also include . Otherwise, the build will be broken.
We could workaround it by us
Export few APIs for the vhost-user driver to log the guest memory writes,
which is a must for live migration support.
This patch basically moves vhost_log_write() and vhost_log_used_vring()
into vhost.h and then add an wrapper (the public API) to them.
Signed-off-by: Yuanhan Liu
---
lib/librte_
We used to use rte_vhost_driver_session_start() to trigger the vhost-user
session. It takes no argument, thus it's a global trigger. And it could
be problematic.
The issue is, currently, rte_vhost_driver_register(path, flags) actually
tries to put it into the session loop (by fdset_add). However,
It doesn't make any sense to invoke destroy_device() callback at
while handling SET_MEM_TABLE message.
>From the vhost-user spec, it's the GET_VRING_BASE message indicates
the end of a vhost device: the destroy_device() should be invoked
from there (luckily, we already did that).
Signed-off-by: Y
Now DPDK vhost lib has been generic enough, that it can be used to
implement any vhost-user drivers.
For example, this patch implements a very simple vhost-user net driver,
mainly for demonstrating how to use those generic vhost APIs.
And when the --builtin-net-driver option is used, the example
From: Akhil Goyal
HW based crypto drivers may only support limited number of
sessions per queue pair. This requires support for attaching
sessions to specific queue pair. New APIs are introduced to
attach/detach a session with/from a particular queue pair.
These are optional APIs.
Application
From: Akhil Goyal
adding support for attaching session to queue pairs.
This is required as underlying crypto driver may only
support limited number of sessions per queue pair
if max_nb_sessions_per_qp > 0, session should be
attached to a particular qp.
Signed-off-by: Akhil Goyal
---
examples/i
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
Acked-by: Keith Wiles
---
drivers/net/tap/Makefile | 1 +
drivers/net/tap/rte_eth_tap.c | 36 ++---
drivers/net/tap/rte_e
Each kernel netdevice may have queueing disciplines set for it, which
determine how to handle the packet (mostly on egress). That's part of
the TC (Traffic Control) mechanism.
Through TC, it is possible to set filter rules that match specific
packets, and act according to what is in the rule. This
This series adds support for the flow API in tap PMD.
It enables filtering specific packets incoming on the tap netdevice, to
process only desired ones. Under the hood, it uses kernel TC (traffic
control), which takes place very early in the stack, and supports most
common pattern items and action
The flow API provides the ability to classify packets received by a tap
netdevice.
This patch only implements skeleton functions for flow API support, no
patterns are supported yet.
Signed-off-by: Pascal Mazon
Acked-by: Olga Shern
Acked-by: Keith Wiles
---
doc/guides/nics/features/tap.ini |
Supported flow rules are now mapped to TC rules on the tap netdevice.
The netlink message used for creating the TC rule is stored in struct
rte_flow. That way, by simply changing a metadata in it, we can require
for the rule deletion without further parsing.
Supported items:
- eth: src and dst (wi
This patchset adds the special "remote" feature to the tap PMD, that
actually enables capturing traffic from another netdevice. This is
especially useful to get packets into the DPDK app, when the remote
netdevice has no DPDK support.
The "remote" feature requires flow API support as flow rules wi
> -Original Message-
> From: De Lara Guarch, Pablo
> Sent: Wednesday, March 22, 2017 4:15 PM
> To: Mcnamara, John
> Cc: Trahe, Fiona ; dev@dpdk.org; De Lara Guarch,
> Pablo
> Subject: [PATCH] doc: reformat crypto drivers overview
>
> Follow the approach in the network devices overview,
By default, a tap netdevice is of no use when not fed by a separate
process. The ability to automatically feed it from another netdevice
allows applications to capture any kind of traffic normally destined to
the kernel stack.
This patch implements this ability through a new optional "remote"
para
Patch which factors out libefx-based Tx datapath was incorrectly
rebased during development over patch which removes
RTE_LIBRTE_SFC_EFX_TSO config option.
Fixes: c5a7da9b5d10 ("net/sfc: factor out libefx-based Tx datapath")
Signed-off-by: Andrew Rybchenko
---
Please, squash the patch into c5a7da
Due to limited resources of X*710 (parser and analyzer configuration
tables, number of packet classification types, number of packet types,
filters configuration tables, etc.), it's impossible to simultaneously
support all protocols/filters required for different parts on network.
To enable protoco
This patch is to add testpmd CLI for loading a pipeline
personalization profile.
Signed-off-by: Beilei Xing
---
app/test-pmd/cmdline.c | 73 +
app/test-pmd/config.c | 67 +
app/test-pmd/testpmd.h
This patch is to add testpmd CLI for getting all loaded profiles.
Signed-off-by: Beilei Xing
---
app/test-pmd/cmdline.c | 89 ++
app/test-pmd/testpmd.h | 22 +
2 files changed, 111 insertions(+)
diff --git a/app/test-pmd/cmdline.c b/ap
This patch is to add get all loaded profiles function.
Signed-off-by: Beilei Xing
---
drivers/net/i40e/i40e_ethdev.c| 28
drivers/net/i40e/rte_pmd_i40e.h | 12
drivers/net/i40e/rte_pmd_i40e_version.map | 1 +
3 files changed, 41 in
Add support for adding or removing a pipeline personalization
profile package.
Signed-off-by: Beilei Xing
---
app/test-pmd/cmdline.c| 1 +
drivers/net/i40e/i40e_ethdev.c| 200 ++
drivers/net/i40e/i40e_ethdev.h| 5 +
driv
Signed-off-by: Beilei Xing
---
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 3e48224..f17e03b 100644
--- a/doc/guides/rel_notes/release_17_05.rst
+++ b/doc/guide
On 3/23/2017 1:26 AM, Wu, Jingjing wrote:
>
>
>> -Original Message-
>> From: Yigit, Ferruh
>> Sent: Wednesday, March 22, 2017 10:29 PM
>> To: Wu, Jingjing ; dev@dpdk.org
>> Cc: Zhang, Helin ; Xing, Beilei
>>
>> Subject: Re: [dpdk-dev] [PATCH 0/7] net/i40e: base code update
>>
>> On 3/22
On Wed, Mar 15, 2017 at 05:27:15PM +, Van Haaren, Harry wrote:
> > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> > Sent: Friday, March 3, 2017 5:28 PM
> > To: dev@dpdk.org
> > Subject: [dpdk-dev] [PATCH 01/39] eventdev: update PMD dequeue timeout
> > conversion
> > callback
> >
On Wed, Mar 15, 2017 at 05:28:35PM +, Van Haaren, Harry wrote:
> > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> > Sent: Friday, March 3, 2017 5:28 PM
> > To: dev@dpdk.org
> > Subject: [dpdk-dev] [PATCH 02/39] app/test: fix eventdev reconfigure test
> >
> > Minimum value of nb_ev
On Tue, Mar 21, 2017 at 01:51:45PM +0530, Jerin Jacob wrote:
> On Fri, Mar 10, 2017 at 03:19:15PM +, 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
On Mon, Mar 20, 2017 at 10:16:04AM +0530, Jerin Jacob wrote:
> On Fri, Mar 10, 2017 at 07:43:17PM +, Harry van Haaren wrote:
> > The software eventdev can lock-up if not all queues are
> > linked to a port. For this reason, the software evendev
> > fails to start if queues are not linked to any
On Fri, Mar 17, 2017 at 05:52:28PM +0530, Jerin Jacob wrote:
> On Fri, Mar 10, 2017 at 07:43:19PM +, Harry van Haaren wrote:
> > From: Bruce Richardson
> >
> > Add in APIs for extended stats so that eventdev implementations can report
> > out information on their internal state. The APIs are
Hi all,
Following the discussion that took place during the tech board meeting,
it seems that some clarification and some additional discussion is
needed about this series.
As of now, what I plan to do is to:
1. Rebase this series upon the bus framework [1][2][3].
2. Write further documentation
That was simpler than I thought.
For some reason I understood that the device will support thousands of
queues and single session per queue which would have needed more app
changes.
On 23/03/2017 08:06, akhil.go...@nxp.com wrote:
From: Akhil Goyal
adding support for attaching session to qu
On 3/23/2017 8:24 AM, Andrew Rybchenko wrote:
> Patch which factors out libefx-based Tx datapath was incorrectly
> rebased during development over patch which removes
> RTE_LIBRTE_SFC_EFX_TSO config option.
>
> Fixes: c5a7da9b5d10 ("net/sfc: factor out libefx-based Tx datapath")
>
> Signed-off-by
On 3/23/2017 4:00 PM, Sergio Gonzalez Monroy wrote:
That was simpler than I thought.
For some reason I understood that the device will support thousands of
queues and single session per queue which would have needed more app
changes.
On 23/03/2017 08:06, akhil.go...@nxp.com wrote:
From: Akhil
Hi Billy,
On Wed, 15 Mar 2017 14:02:24 -0400, Billy McFall wrote:
> Add a new API to force free consumed buffers on Tx ring. API will return
> the number of packets freed (0-n) or error code if feature not supported
> (-ENOTSUP) or input invalid (-ENODEV).
>
> Signed-off-by: Billy McFall
> ---
On 23/03/2017 10:38, Akhil Goyal wrote:
On 3/23/2017 4:00 PM, Sergio Gonzalez Monroy wrote:
That was simpler than I thought.
For some reason I understood that the device will support thousands of
queues and single session per queue which would have needed more app
changes.
On 23/03/2017 08:06,
1. Rework tunnel filter functions to align with the new
added cloud filer command buffer structure.
2. Support tunnel filter to VF for consistent filter API.
v2 changes:
Remove replace cloud filter function as it's in share code.
Beilei Xing (4):
net/i40e: rework tunnel filter functions
n
Rework tunnel filter functions to align with the
new command buffer for add/remove cloud filter.
Signed-off-by: Beilei Xing
---
drivers/net/i40e/i40e_ethdev.c | 100 +++--
drivers/net/i40e/i40e_ethdev.h | 1 +
drivers/net/i40e/i40e_flow.c | 28 +++
Add i40e_tunnel_type enumeration type to refine consistent
tunnel filter, it will be esay to add new tunnel type for
i40e.
Signed-off-by: Beilei Xing
---
drivers/net/i40e/i40e_ethdev.c | 8
drivers/net/i40e/i40e_ethdev.h | 18 --
drivers/net/i40e/i40e_flow.c | 6 +++-
Previously, only tunnel filter to PF is supported.
This patch adds i40e_dev_consistent_tunnel_filter_set
function for consistent filter API to support tunnel
filter to VF.
Signed-off-by: Beilei Xing
---
drivers/net/i40e/i40e_ethdev.c | 145 +
drivers/net/i
Change tunnel filter function name to VXLAN filter
function, prepare for other tunnel filter function.
Signed-off-by: Beilei Xing
---
drivers/net/i40e/i40e_flow.c | 58
1 file changed, 21 insertions(+), 37 deletions(-)
diff --git a/drivers/net/i40e/i
Hi,
Below are the minutes of the last DPDK technical board meeting that occurred at
2017-03-20.
Please note that meetings are open to all to attend.
The next meeting is planned for the first week of April, any topics to be
referred
to the tech board for discussion at that meeting should be emai
This patchset adds support for MPLSoGRE and MPLSoUDP
tunnel filters.
I40e NICs can't recongnize MPLS tunnel packets by
default, so need to load a profile to FW first, then
MPLS tunnel packets can be recongnized with packet
type 61 and 63.
It depends on pipeline personalization profile support
and c
This patch adds sopport for MPLS and GRE items to generic filter
API.
Signed-off-by: Beilei Xing
---
app/test-pmd/cmdline_flow.c | 46 +
app/test-pmd/config.c | 2 ++
doc/guides/prog_guide/rte_flow.rst | 20 +++--
This patch add MPLS parsing function to support
MPLS filtering.
Signed-off-by: Beilei Xing
---
drivers/net/i40e/i40e_ethdev.h | 5 +
drivers/net/i40e/i40e_flow.c | 217 +
2 files changed, 222 insertions(+)
diff --git a/drivers/net/i40e/i40e_ethdev.h b
This patch enables MPLS tunnel filter by replacing
inner_mac filter.
This configuration will be set when adding MPLSoUDP
and MPLSoGRE filter rules, and it will be invalid
only by NIC core reset.
Signed-off-by: Beilei Xing
---
drivers/net/i40e/i40e_ethdev.c | 45 +++--
drivers/net/i4
This patch enables the packet size based scheduling mode in scheduler PMD.
Signed-off-by: Fan Zhang
---
drivers/crypto/scheduler/Makefile | 1 +
drivers/crypto/scheduler/rte_cryptodev_scheduler.c | 7 +++
drivers/crypto/scheduler/rte_cryptodev_scheduler.h | 3 +++
3 files ch
This patch updates packet size based scheduling mode description.
Signed-off-by: Fan Zhang
---
doc/guides/cryptodevs/scheduler.rst | 14 ++
1 file changed, 14 insertions(+)
diff --git a/doc/guides/cryptodevs/scheduler.rst
b/doc/guides/cryptodevs/scheduler.rst
index 70fb62e..51f2a78
This patch adds the packet size based distribution mode main source
file.
Signed-off-by: Fan Zhang
---
.../crypto/scheduler/scheduler_pkt_size_distr.c| 427 +
1 file changed, 427 insertions(+)
create mode 100644 drivers/crypto/scheduler/scheduler_pkt_size_distr.c
diff -
Packet-size based distribution mode, which works with 2 slaves, primary
slave and secondary slave, and distribute the enqueued crypto ops to them
based on their data lengths. A crypto op will be distributed to the primary
slave if its data length equals or bigger than the designated threshold,
othe
This patch series submits an initial version of the AVP PMD from Wind River
Systems. The series includes shared header files, driver implementation,
and changes to documentation files in support of this new driver. The AVP
driver is a shared memory based device. It is intended to be used as a PM
Adds a header file with log macros for the AVP PMD
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
config/common_base | 4
drivers/net/avp/avp_logs.h | 59 ++
2 files changed, 63 insertions(+)
create mode 100644 drivers/net/
Adds the initial framework for registering the driver against the support
PCI device identifiers.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
config/common_linuxapp | 1 +
config/defconfig_i686-native-linuxapp-gcc| 5 +
config/defconfig_i686-native-
Adds public/exported header files for the AVP PMD. The AVP device is a
shared memory based device. The structures and constants that define the
method of operation of the device must be visible by both the PMD and the
host DPDK application. They must not change without proper version
controls an
Adds support for "dev_configure" operations to allow an application to
configure the device.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
doc/guides/nics/features/avp.ini | 4 +
drivers/net/avp/avp_ethdev.c | 241 +++
2 files changed, 245
Adds queue management operations so that an appliation can setup and
release the transmit and receive queues.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
drivers/net/avp/avp_ethdev.c | 180 ++-
1 file changed, 179 insertions(+), 1 deletion
Adds support for initialization newly probed AVP PCI devices. Initial
queue translations are setup in preparation for device configuration.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
drivers/net/avp/avp_ethdev.c | 315 +++
1 file changed
This commit introduces the AVP PMD file structure without adding any actual
driver functionality. Functional blocks will be added in later patches.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
MAINTAINERS | 5
config/common_base
Adds device functions to query and reset statistics.
Signed-off-by: Allain Legacy
---
doc/guides/nics/features/avp.ini | 2 ++
drivers/net/avp/avp_ethdev.c | 67
2 files changed, 69 insertions(+)
diff --git a/doc/guides/nics/features/avp.ini b/doc/g
Adds support for packet transmit functions so that an application can send
packets to the host application via an AVP device queue. Both the simple
and scattered functions are supported.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
drivers/net/avp/avp_ethdev.c | 335
Adds support for setting and clearing promiscuous mode on an AVP device.
When enabled the _mac_filter function will allow packets destined to any
MAC address to be processed by the receive functions.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
doc/guides/nics/features/avp.ini |
This commit introduces changes required to support VM live-migration. This
is done by registering and responding to interrupts coming from the host to
signal that the memory is about to be made invalid and replaced with a new
memory zone on the destination compute node.
Enabling and disabling of
Adds support for device start and stop functions. This allows an
application to control the administrative state of an AVP device. Stopping
the device will notify the host application to stop sending packets on that
device's receive queues.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peter
Updates the documentation and feature lists for the AVP PMD device.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
Acked-by: John McNamara
---
MAINTAINERS| 1 +
doc/guides/nics/avp.rst| 107 +
doc/guides/nic
Adds function required for receiving packets from the host application via
AVP device queues. Both the simple and scattered functions are supported.
Signed-off-by: Allain Legacy
Signed-off-by: Matt Peters
---
doc/guides/nics/features/avp.ini | 3 +
drivers/net/avp/Makefile | 1 +
d
On 3/23/2017 1:03 AM, Ed Czeck wrote:
> Enable Arkville on supported configurations
> Add overview documentation
> Minimum driver support for valid compile
> Arkville PMD is not supported on ARM or PowerPC at this time
Can you please send new version of patchset as reply to previous
version, using
On 3/23/2017 1:03 AM, Ed Czeck wrote:
> Provide C-level interface for Arkville's internal HW resources
> mpu, pktdir, and rqp modules
For patch title, instead of using " HW API part x of y", can you please
describe the content of the patch, like:
" net/ark: HW API for MPU, pktdir, and RQP modules
Follow the approach in the network devices overview,
for the feature matrix, so it improves readibility
and maintainability.
Signed-off-by: Pablo de Lara
Acked-by: John McNamara
---
Changes in v2:
- Added missing algorithms
- Fixed PEP8 errors
.gitignore |
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
Hi Alejandro,
I think the documentation should also be updated to reflect the fact that this
patch adds VFIO support for hotplug.
Thanks,
Anatoly
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Friday, March 3, 2017 5:28 PM
> To: dev@dpdk.org
> Cc: thomas.monja...@6wind.com; Richardson, Bruce
> ; Van Haaren,
> Harry ; hemant.agra...@nxp.com; Eads, Gage
> ;
> nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin
1 - 100 of 212 matches
Mail list logo