DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: Thomas Monjalon <thomas@monjalon.net>
Cc: dev@dpdk.org, Ferruh Yigit <ferruh.yigit@intel.com>
Subject: [dpdk-dev] [pull-request] next-net 17.11 RC3
Date: Fri,  3 Nov 2017 23:56:11 +0000	[thread overview]
Message-ID: <20171103235611.25444-1-ferruh.yigit@intel.com> (raw)

The following changes since commit 6fb00f8baefa03b9cfd1b2dfc1787258b8459601:

  bus/pci: fix VFIO device reset (2017-10-31 19:23:36 +0100)

are available in the git repository at:

  http://dpdk.org/git/next/dpdk-next-net 

for you to fetch changes up to c531000113f5f111ac21d1a0b91073a34d0470b0:

  net/failsafe: fix VLAN stripping configuration (2017-11-03 23:22:51 +0000)

----------------------------------------------------------------
Adrien Mazarguil (5):
      net/mlx4: fix Rx after updating number of queues
      net/mlx4: fix queue index check on flow rules
      net/mlx4: fix missing include
      net/mlx4: fix function prototypes
      net/mlx4: share memory region resources

Ajit Khaparde (4):
      net/bnxt: do not set hash type unnecessarily
      net/bnxt: fix FDIR filter code
      net/bnxt: fix HWRM command failures during VF unload
      net/bnxt: fix VLAN spoof configuration

Akhil Goyal (1):
      net/dpaa2: set queues after reconfiguration

Alejandro Lucero (1):
      net/nfp: avoid unplug if multiport

Beilei Xing (1):
      doc: add i40e limitation of VF VLAN strip function

Chas Williams (1):
      net/vmxnet3: fix memory leak when releasing queues

Daniel Mrzyglod (1):
      net/bonding: fix setting default aggregator mode to stable

Jerin Jacob (1):
      doc: update release note for octeontx support

Jianbo Liu (1):
      net/i40e: fix received packets number for NEON Rx

John Daley (1):
      net/enic: fix TSO for packets greater than 9208 bytes

Matan Azrad (7):
      net/mlx4: remove error flows from Tx fast path
      net/mlx4: fix ring wraparound compiler hint
      net/mlx4: merge Tx path functions
      net/mlx4: remove duplicate handling in Tx burst
      net/mlx4: separate Tx segment cases
      net/mlx4: fix HW memory optimizations careless
      net/mlx4: mitigate Tx path memory barriers

Nélio Laranjeiro (6):
      net/mlx5: fix flow director matching rules
      net/mlx5: fix parser inner value
      net/mlx5: fix flows when VXLAN tunnel is 0
      net/mlx5: fix FDIR flow removal
      net/mlx5: fix FDIR TCPv6 filter
      net/mlx5: fix segfault due to array overflow

Ophir Munk (2):
      net/mlx4: associate MR to MP in a short function
      net/failsafe: fix VLAN stripping configuration

Ori Kam (2):
      net/mlx5: fix adding counter when dev not started
      net/mlx5: fix counter set destroy order

Qi Zhang (1):
      net/i40e: fix mirror for new FW

Radu Nicolau (1):
      net/ixgbe: fix IPsec Rx with SSE on

Shahaf Shuler (1):
      net/mlx5: fix RSS action for tunneled packets

Thomas Monjalon (1):
      net/mlx5: fix some typos

Tomasz Duszynski (1):
      net/mrvl: reset errno before library call

Wei Dai (2):
      net/i40e: fix VFIO interrupt mapping in VF
      net/i40e: fix Rx queue interrupt mapping in VF

Wei Zhao (1):
      net/ixgbe: fix filter parser error in L2 tunnel

Wenzhuo Lu (2):
      doc: add how to set VF MAC address on ixgbe
      doc: more clarification for i40e 16 byte desc

 doc/guides/nics/i40e.rst               |  28 ++-
 doc/guides/nics/ixgbe.rst              |  11 +
 doc/guides/nics/mlx5.rst               |   2 +
 doc/guides/rel_notes/release_17_11.rst |  11 +
 drivers/net/bnxt/bnxt_ethdev.c         |   4 +-
 drivers/net/bnxt/bnxt_rxq.c            |   2 +-
 drivers/net/bnxt/rte_pmd_bnxt.c        |   3 -
 drivers/net/bonding/rte_eth_bond_pmd.c |  21 +-
 drivers/net/dpaa2/dpaa2_ethdev.c       |   4 +-
 drivers/net/enic/enic_rxtx.c           |  25 ++-
 drivers/net/failsafe/failsafe_ops.c    | 118 ----------
 drivers/net/i40e/i40e_ethdev.c         |   2 +-
 drivers/net/i40e/i40e_ethdev_vf.c      |  18 +-
 drivers/net/i40e/i40e_rxtx_vec_neon.c  |  19 +-
 drivers/net/ixgbe/ixgbe_flow.c         |  29 ++-
 drivers/net/ixgbe/ixgbe_rxtx_vec_sse.c |  80 +++----
 drivers/net/mlx4/mlx4.h                |  20 +-
 drivers/net/mlx4/mlx4_flow.c           |  31 ++-
 drivers/net/mlx4/mlx4_mr.c             | 132 ++++++++++-
 drivers/net/mlx4/mlx4_prm.h            |  20 +-
 drivers/net/mlx4/mlx4_rxq.c            |  14 +-
 drivers/net/mlx4/mlx4_rxtx.c           | 397 ++++++++++++++++-----------------
 drivers/net/mlx4/mlx4_rxtx.h           |  35 ++-
 drivers/net/mlx4/mlx4_txq.c            |   2 +-
 drivers/net/mlx4/mlx4_utils.h          |   1 +
 drivers/net/mlx5/mlx5_flow.c           |  82 ++++---
 drivers/net/mlx5/mlx5_rxtx_vec_neon.h  |   2 +-
 drivers/net/mlx5/mlx5_rxtx_vec_sse.h   |   2 +-
 drivers/net/mlx5/mlx5_socket.c         |   2 +-
 drivers/net/mlx5/mlx5_vlan.c           |   8 +-
 drivers/net/mrvl/mrvl_qos.c            |   1 +
 drivers/net/nfp/nfp_net.c              |   2 +-
 drivers/net/vmxnet3/vmxnet3_rxtx.c     |   5 +
 33 files changed, 656 insertions(+), 477 deletions(-)

             reply	other threads:[~2017-11-03 23:56 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-03 23:56 Ferruh Yigit [this message]
2017-11-07 11:48 ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171103235611.25444-1-ferruh.yigit@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=dev@dpdk.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).