mbox series

[ovs-dev] OVS DPDK: dpdk_merge pull request for master

Message ID 9022d9ab-91aa-12ce-61cc-15b7cd2094a7@intel.com
State Accepted
Headers show
Series [ovs-dev] OVS DPDK: dpdk_merge pull request for master | expand

Pull-request

https://github.com/istokes/ovs dpdk_merge

Message

Stokes, Ian July 6, 2018, 2:55 p.m. UTC
Hi Ben,

The following changes since commit 23626bcf3bd987f7a5e03b93bec8450b10421c31:

   OVN: add ICMPv6 time exceeded support to OVN logical router 
(2018-07-05 15:46:09 -0700)

are available in the git repository at:

   https://github.com/istokes/ovs dpdk_merge

for you to fetch changes up to 43307ad0e2543c9c8443f3ab1150ab03f4eb551c:

   dpdk: Support both shared and per port mempools. (2018-07-06 12:46:26 
+0100)

----------------------------------------------------------------
Finn Christensen (1):
       netdev-dpdk: implement flow offload with rte flow

Ian Stokes (2):
       dpdk: Use DPDK 17.11.3 release.
       dpdk: Support both shared and per port mempools.

Yuanhan Liu (6):
       dpif-netdev: associate flow with a mark id
       flow: Introduce IP packet sanity checks
       dpif-netdev: retrieve flow directly from the flow mark
       netdev-dpdk: add debug for rte flow patterns
       dpif-netdev: do hw flow offload in a thread
       Documentation: document ovs-dpdk flow offload

  .travis/linux-build.sh                   |    2 +-
  Documentation/automake.mk                |    1 +
  Documentation/faq/releases.rst           |    4 +-
  Documentation/howto/dpdk.rst             |   22 ++++
  Documentation/intro/install/dpdk.rst     |   14 ++-
  Documentation/topics/dpdk/index.rst      |    1 +
  Documentation/topics/dpdk/memory.rst     |  216 
++++++++++++++++++++++++++++++++++++++++
  Documentation/topics/dpdk/vhost-user.rst |    6 +-
  NEWS                                     |    3 +-
  lib/dp-packet.h                          |   13 +++
  lib/dpdk-stub.c                          |    6 ++
  lib/dpdk.c                               |   12 +++
  lib/dpdk.h                               |    1 +
  lib/dpif-netdev.c                        |  499 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
  lib/flow.c                               |  168 
+++++++++++++++++++++++++------
  lib/flow.h                               |    1 +
  lib/netdev-dpdk.c                        | 1029 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------
  lib/netdev.h                             |    6 ++
  vswitchd/vswitch.xml                     |   17 ++++
  19 files changed, 1873 insertions(+), 148 deletions(-)
  create mode 100644 Documentation/topics/dpdk/memory.rst

Thanks
Ian

Comments

0-day Robot July 6, 2018, 3:55 p.m. UTC | #1
Bleep bloop.  Greetings Ian Stokes, I am a robot and I have tried out your patch.
Thanks for your contribution.

I encountered some error that I wasn't expecting.  See the details below.


checkpatch:
ERROR: Too many signoffs; are you missing Co-authored-by lines?
Lines checked: 92, Warnings: 0, Errors: 1


Please check this out.  If you feel there has been an error, please email aconole@bytheb.org

Thanks,
0-day Robot
Ben Pfaff July 6, 2018, 9:02 p.m. UTC | #2
On Fri, Jul 06, 2018 at 03:55:50PM +0100, Ian Stokes wrote:
> The following changes since commit 23626bcf3bd987f7a5e03b93bec8450b10421c31:
> 
>   OVN: add ICMPv6 time exceeded support to OVN logical router (2018-07-05
> 15:46:09 -0700)
> 
> are available in the git repository at:
> 
>   https://github.com/istokes/ovs dpdk_merge
> 
> for you to fetch changes up to 43307ad0e2543c9c8443f3ab1150ab03f4eb551c:
> 
>   dpdk: Support both shared and per port mempools. (2018-07-06 12:46:26
> +0100)

Thanks, merged into master.
Stokes, Ian July 10, 2018, 9:35 a.m. UTC | #3
> On Fri, Jul 06, 2018 at 03:55:50PM +0100, Ian Stokes wrote:
> > The following changes since commit
> 23626bcf3bd987f7a5e03b93bec8450b10421c31:
> >
> >   OVN: add ICMPv6 time exceeded support to OVN logical router (2018-07-
> 05
> > 15:46:09 -0700)
> >
> > are available in the git repository at:
> >
> >   https://github.com/istokes/ovs dpdk_merge
> >
> > for you to fetch changes up to 43307ad0e2543c9c8443f3ab1150ab03f4eb551c:
> >
> >   dpdk: Support both shared and per port mempools. (2018-07-06 12:46:26
> > +0100)
> 
> Thanks, merged into master.

Thanks Ben.

Ian