From patchwork Thu Aug 8 08:22:05 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thierry Herbelot X-Patchwork-Id: 57555 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id ACA392952; Thu, 8 Aug 2019 10:22:53 +0200 (CEST) Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id 3059D137C for ; Thu, 8 Aug 2019 10:22:52 +0200 (CEST) Received: by mail-wm1-f67.google.com with SMTP id v19so1477425wmj.5 for ; Thu, 08 Aug 2019 01:22:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=2hiuPEM8UuvlNK9ecrGf2z2FbhCMDZCq7iVPxJjAXcc=; b=bwiFeN/i51R/PB5NVIQX0N82sjf0xaAjnT7dA0D368A/oP11zZXpyFEqHqFId6PwEz h9tJBaGevnlUnUMVNXOMZAW1W/qV92+hxA/NuUV+mZhSeF3UMIARg0wk3xcYbhCJQA4f +Hq8U3Cnzdrs+ZNIEooKYfhi3Q8/PPDVoNdXAP+3t3q6qUdvw40+yFsJCTAtY+J2LBmr KGtrOtGLy723kxfqE2AympVDuEAG9+Rual8WBZqd9mRE/IXDWa+bqCwwN8k8SGcvPpJg mWyzAs6DLKMMwnkIVMNRITvwVI0Li5x+numQpmzbHOxVO7GtEsD7vqmsdA50LLyP+Jzr hEUg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=2hiuPEM8UuvlNK9ecrGf2z2FbhCMDZCq7iVPxJjAXcc=; b=L383fznHaLJvOMETsiqlXzLCcij1mCyF4TB7sCP9XfyAwSt3mmZvVCFRO16pv7SV4a 6LSNRvp0XzlQTEOYWRJGtOOTIGN+YthtPs1mq8ntmSY67KSk+U2Qon8By3/d2v88Bqyt uTSyjuW1z/Nz/fKpg9c4wqgyUmOE9P6XZ9hKb4gaYxaoMULDTVlb/exVTDkk1C3M+tT4 D7snO2fv8YCLzcnOxPdIXxj3MGEnR81AFOs0cJAjMrJ6Q0DUxWikFpAJBovHH2MMs2oT JdoCTBRFVuy8YkaBTsZtyUSgC+Sl9RPd7setSy95n9jBdJQPe9EhTWkzuA/dqRfZ93w2 lB8w== X-Gm-Message-State: APjAAAXNnZHtOiKTy2D81Vf8nMsXn1kWq1YTsAlxCHgPdSzvTpBPpgda P//me2t/whLJWgbjg8q2J51khEISmA== X-Google-Smtp-Source: APXvYqwNVtEeCNIjBDoLpCSuLkUrpFCs0qwbDUuuR3JYXSLOWk7d/X5NpD4MaX5vUeQu6p2rMKhi4Q== X-Received: by 2002:a1c:7fc3:: with SMTP id a186mr3025142wmd.151.1565252571661; Thu, 08 Aug 2019 01:22:51 -0700 (PDT) Received: from ascain.dev.6wind.com. (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id t13sm111437018wrr.0.2019.08.08.01.22.50 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 08 Aug 2019 01:22:51 -0700 (PDT) From: Thierry Herbelot To: dev@dpdk.org Cc: stable@dpdk.org, Thomas Monjalon Date: Thu, 8 Aug 2019 10:22:05 +0200 Message-Id: X-Mailer: git-send-email 2.11.0 In-Reply-To: References: Subject: [dpdk-dev] [PATCH 19.11 V3 00/12] Miscellaneous fixes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This series of patches includes fixes for issues seen with 6WIND fast path, built on DPDK. The patches are in 6WIND version of DPDK, and should have been upstreamed a long time ago. V3 changes: fix double increment of stats in virtio vectorized functions V2 changes: fix checkpatch issues Guo Fengtian (1): net/ixgbevf: fix stats update after a PF reset Laurent Hardy (1): net/i40e: set speed to undefined for default case in link update Olivier Matz (5): ethdev: fix description of tx descriptor status net/e1000: fix Tx descriptor status api (igb) net/e1000: fix Tx descriptor status api (em) net/ixgbe: fix Tx descriptor status api net/i40e: fix Tx descriptor status api Thibaut Collet (2): virtio: fix rx stats with vectorized functions virtio: get all pending rx packets with vectorized functions Thierry Herbelot (3): drivers/crypto/openssl: use a local copy for the session contexts drivers/crypto/dpaa_sec: update DPAA iova table in dpaa_mem_vtop drivers/crypto/octeontx: enable unbinding for the OcteonTx crypto engines drivers/crypto/dpaa_sec/dpaa_sec.c | 5 +++- drivers/crypto/octeontx/otx_cryptodev.c | 1 + drivers/crypto/openssl/rte_openssl_pmd.c | 34 +++++++++++++++------ drivers/net/e1000/em_rxtx.c | 33 +++++++++++++------- drivers/net/e1000/igb_rxtx.c | 9 +++--- drivers/net/i40e/i40e_ethdev.c | 4 +-- drivers/net/i40e/i40e_ethdev_vf.c | 8 +++-- drivers/net/i40e/i40e_rxtx.c | 37 ++++++++++++++++------- drivers/net/ixgbe/ixgbe_ethdev.c | 6 ++-- drivers/net/ixgbe/ixgbe_rxtx.c | 45 ++++++++++++++++++++-------- drivers/net/ixgbe/ixgbe_rxtx.h | 1 + drivers/net/virtio/virtio_rxtx.c | 2 +- drivers/net/virtio/virtio_rxtx.h | 2 ++ drivers/net/virtio/virtio_rxtx_simple_neon.c | 10 +++++-- drivers/net/virtio/virtio_rxtx_simple_sse.c | 10 +++++-- lib/librte_ethdev/rte_ethdev.h | 4 +-- 16 files changed, 151 insertions(+), 60 deletions(-)