patches for DPDK stable branches
 help / color / mirror / Atom feed
From: luca.boccassi@gmail.com
To: David Marchand <david.marchand@redhat.com>
Cc: Kevin Traynor <ktraynor@redhat.com>, dpdk stable <stable@dpdk.org>
Subject: [dpdk-stable] patch 'doc: prefer https when pointing to dpdk.org' has been queued to stable release 19.11.3
Date: Wed, 27 May 2020 10:24:22 +0100	[thread overview]
Message-ID: <20200527092422.258652-19-luca.boccassi@gmail.com> (raw)
In-Reply-To: <20200527092422.258652-1-luca.boccassi@gmail.com>

Hi,

FYI, your patch has been queued to stable release 19.11.3

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 05/29/20. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Thanks.

Luca Boccassi

---
From 106dddaf877636331d25b24a0e7085c544e84ed2 Mon Sep 17 00:00:00 2001
From: David Marchand <david.marchand@redhat.com>
Date: Thu, 19 Mar 2020 09:28:59 +0100
Subject: [PATCH] doc: prefer https when pointing to dpdk.org

[ upstream commit 3d4b2afb73f7f0988f8e66ba1b37f2a446e33868 ]

for file in $(git grep -l http://.*dpdk.org doc/); do
  sed -i -e 's#http://\(.*dpdk.org\)#https://\1#g' $file;
done

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Kevin Traynor <ktraynor@redhat.com>
---
 devtools/checkpatches.sh                         |  8 ++++++++
 doc/guides/contributing/documentation.rst        | 12 ++++++------
 doc/guides/contributing/patches.rst              | 16 ++++++++--------
 doc/guides/contributing/stable.rst               |  8 ++++----
 doc/guides/contributing/vulnerability.rst        |  6 +++---
 doc/guides/freebsd_gsg/install_from_ports.rst    |  2 +-
 doc/guides/linux_gsg/nic_perf_intel_platform.rst |  2 +-
 doc/guides/nics/enic.rst                         |  2 +-
 doc/guides/prog_guide/cryptodev_lib.rst          |  2 +-
 9 files changed, 33 insertions(+), 25 deletions(-)

diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh
index b16bace927..9902e2a9bc 100755
--- a/devtools/checkpatches.sh
+++ b/devtools/checkpatches.sh
@@ -70,6 +70,14 @@ check_forbidden_additions() { # <patch>
 		-f $(dirname $(readlink -f $0))/check-forbidden-tokens.awk \
 		"$1" || res=1
 
+	# links must prefer https over http
+	awk -v FOLDERS='doc' \
+		-v EXPRESSIONS='http://.*dpdk.org' \
+		-v RET_ON_FAIL=1 \
+		-v MESSAGE='Using non https link to dpdk.org' \
+		-f $(dirname $(readlink -f $0))/check-forbidden-tokens.awk \
+		"$1" || res=1
+
 	return $res
 }
 
diff --git a/doc/guides/contributing/documentation.rst b/doc/guides/contributing/documentation.rst
index 27e4b13be1..3924771cf0 100644
--- a/doc/guides/contributing/documentation.rst
+++ b/doc/guides/contributing/documentation.rst
@@ -82,7 +82,7 @@ added to by the developer.
 * **API documentation**
 
   The API documentation explains how to use the public DPDK functions.
-  The `API index page <http://doc.dpdk.org/api/>`_ shows the generated API documentation with related groups of functions.
+  The `API index page <https://doc.dpdk.org/api/>`_ shows the generated API documentation with related groups of functions.
 
   The API documentation should be updated via Doxygen comments when new functions are added.
 
@@ -561,14 +561,14 @@ Hyperlinks
 ~~~~~~~~~~
 
 * Links to external websites can be plain URLs.
-  The following is rendered as http://dpdk.org::
+  The following is rendered as https://dpdk.org::
 
-     http://dpdk.org
+     https://dpdk.org
 
 * They can contain alternative text.
-  The following is rendered as `Check out DPDK <http://dpdk.org>`_::
+  The following is rendered as `Check out DPDK <https://dpdk.org>`_::
 
-     `Check out DPDK <http://dpdk.org>`_
+     `Check out DPDK <https://dpdk.org>`_
 
 * An internal link can be generated by placing labels in the document with the format ``.. _label_name``.
 
@@ -666,7 +666,7 @@ The following are some guidelines for use of Doxygen in the DPDK API documentati
        */
 
   In the API documentation the functions will be rendered as links, see the
-  `online section of the rte_ethdev.h docs <http://doc.dpdk.org/api/rte__ethdev_8h.html>`_ that contains the above text.
+  `online section of the rte_ethdev.h docs <https://doc.dpdk.org/api/rte__ethdev_8h.html>`_ that contains the above text.
 
 * The ``@see`` keyword can be used to create a *see also* link to another file or library.
   This directive should be placed on one line at the bottom of the documentation section.
diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst
index e5c565b984..5ca037757e 100644
--- a/doc/guides/contributing/patches.rst
+++ b/doc/guides/contributing/patches.rst
@@ -28,9 +28,9 @@ The DPDK development process has the following features:
 * All sub-repositories are merged into main repository for ``-rc1`` and ``-rc2`` versions of the release.
 * After the ``-rc2`` release all patches should target the main repository.
 
-The mailing list for DPDK development is `dev@dpdk.org <http://mails.dpdk.org/archives/dev/>`_.
-Contributors will need to `register for the mailing list <http://mails.dpdk.org/listinfo/dev>`_ in order to submit patches.
-It is also worth registering for the DPDK `Patchwork <http://patches.dpdk.org/project/dpdk/list/>`_
+The mailing list for DPDK development is `dev@dpdk.org <https://mails.dpdk.org/archives/dev/>`_.
+Contributors will need to `register for the mailing list <https://mails.dpdk.org/listinfo/dev>`_ in order to submit patches.
+It is also worth registering for the DPDK `Patchwork <https://patches.dpdk.org/project/dpdk/list/>`_
 
 If you are using the GitHub service, you can link your repository to
 the ``travis-ci.org`` build service.  When you push patches to your GitHub
@@ -130,12 +130,12 @@ The source code can be cloned using either of the following:
 main repository::
 
     git clone git://dpdk.org/dpdk
-    git clone http://dpdk.org/git/dpdk
+    git clone https://dpdk.org/git/dpdk
 
-sub-repositories (`list <http://git.dpdk.org/next>`_)::
+sub-repositories (`list <https://git.dpdk.org/next>`_)::
 
     git clone git://dpdk.org/next/dpdk-next-*
-    git clone http://dpdk.org/git/next/dpdk-next-*
+    git clone https://dpdk.org/git/next/dpdk-next-*
 
 Make your Changes
 -----------------
@@ -320,7 +320,7 @@ Patch for Stable Releases
 ~~~~~~~~~~~~~~~~~~~~~~~~~
 
 All fix patches to the master branch that are candidates for backporting
-should also be CCed to the `stable@dpdk.org <http://mails.dpdk.org/listinfo/stable>`_
+should also be CCed to the `stable@dpdk.org <https://mails.dpdk.org/listinfo/stable>`_
 mailing list.
 In the commit message body the Cc: stable@dpdk.org should be inserted as follows::
 
@@ -548,7 +548,7 @@ If the patch is in relation to a previous email thread you can add it to the sam
    git send-email --to dev@dpdk.org --in-reply-to <1234-foo@bar.com> 000*.patch
 
 The Message ID can be found in the raw text of emails or at the top of each Patchwork patch,
-`for example <http://patches.dpdk.org/patch/7646/>`_.
+`for example <https://patches.dpdk.org/patch/7646/>`_.
 Shallow threading (``--thread --no-chain-reply-to``) is preferred for a patch series.
 
 Once submitted your patches will appear on the mailing list and in Patchwork.
diff --git a/doc/guides/contributing/stable.rst b/doc/guides/contributing/stable.rst
index 4d38bb8606..021c762fc6 100644
--- a/doc/guides/contributing/stable.rst
+++ b/doc/guides/contributing/stable.rst
@@ -51,7 +51,7 @@ agreement and a commitment from a maintainer. The current policy is that each
 year's November (X.11) release will be maintained as an LTS for 2 years.
 
 After the X.11 release, an LTS branch will be created for it at
-http://git.dpdk.org/dpdk-stable where bugfixes will be backported to.
+https://git.dpdk.org/dpdk-stable where bugfixes will be backported to.
 
 A LTS release may align with the declaration of a new major ABI version,
 please read the :doc:`abi_policy` for more information.
@@ -107,7 +107,7 @@ The Stable and LTS release are coordinated on the stable@dpdk.org mailing
 list.
 
 All fix patches to the master branch that are candidates for backporting
-should also be CCed to the `stable@dpdk.org <http://mails.dpdk.org/listinfo/stable>`_
+should also be CCed to the `stable@dpdk.org <https://mails.dpdk.org/listinfo/stable>`_
 mailing list.
 
 
@@ -118,7 +118,7 @@ A Stable Release will be released by:
 
 * Tagging the release with YY.MM.n (year, month, number).
 * Uploading a tarball of the release to dpdk.org.
-* Sending an announcement to the `announce@dpdk.org <http://mails.dpdk.org/listinfo/announce>`_
+* Sending an announcement to the `announce@dpdk.org <https://mails.dpdk.org/listinfo/announce>`_
   list.
 
-Stable releases are available on the `dpdk.org download page <http://core.dpdk.org/download/>`_.
+Stable releases are available on the `dpdk.org download page <https://core.dpdk.org/download/>`_.
diff --git a/doc/guides/contributing/vulnerability.rst b/doc/guides/contributing/vulnerability.rst
index 5484119d19..da00acd4f0 100644
--- a/doc/guides/contributing/vulnerability.rst
+++ b/doc/guides/contributing/vulnerability.rst
@@ -36,11 +36,11 @@ Report
 
 Do not use Bugzilla (unsecured).
 Instead, send GPG-encrypted emails
-to `security@dpdk.org <http://core.dpdk.org/security#contact>`_.
+to `security@dpdk.org <https://core.dpdk.org/security#contact>`_.
 Anyone can post to this list.
 In order to reduce the disclosure of a vulnerability in the early stages,
 membership of this list is intentionally limited to a `small number of people
-<http://mails.dpdk.org/roster/security>`_.
+<https://mails.dpdk.org/roster/security>`_.
 
 It is additionally encouraged to GPG-sign one-on-one conversations
 as part of the security process.
@@ -188,7 +188,7 @@ Downstream stakeholders are expected not to deploy or disclose patches
 until the embargo is passed, otherwise they will be removed from the list.
 
 Downstream stakeholders (in `security-prerelease list
-<http://mails.dpdk.org/roster/security-prerelease>`_), are:
+<https://mails.dpdk.org/roster/security-prerelease>`_), are:
 
 * Operating system vendors known to package DPDK
 * Major DPDK users, considered trustworthy by the technical board, who
diff --git a/doc/guides/freebsd_gsg/install_from_ports.rst b/doc/guides/freebsd_gsg/install_from_ports.rst
index 29f16cc6c5..dce028bc62 100644
--- a/doc/guides/freebsd_gsg/install_from_ports.rst
+++ b/doc/guides/freebsd_gsg/install_from_ports.rst
@@ -62,7 +62,7 @@ environmental variables should be set as below:
 .. note::
 
    To install a copy of the DPDK compiled using gcc, please download the
-   official DPDK package from http://core.dpdk.org/download/ and install manually using
+   official DPDK package from https://core.dpdk.org/download/ and install manually using
    the instructions given in the next chapter, :ref:`building_from_source`
 
 An example application can therefore be copied to a user's home directory and
diff --git a/doc/guides/linux_gsg/nic_perf_intel_platform.rst b/doc/guides/linux_gsg/nic_perf_intel_platform.rst
index c554c2159c..1dabbce244 100644
--- a/doc/guides/linux_gsg/nic_perf_intel_platform.rst
+++ b/doc/guides/linux_gsg/nic_perf_intel_platform.rst
@@ -64,7 +64,7 @@ This aligns with the previous output which showed that each channel has one memo
 Network Interface Card Requirements
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Use a `DPDK supported <http://core.dpdk.org/supported/>`_ high end NIC such as the Intel XL710 40GbE.
+Use a `DPDK supported <https://core.dpdk.org/supported/>`_ high end NIC such as the Intel XL710 40GbE.
 
 Make sure each NIC has been flashed the latest version of NVM/firmware.
 
diff --git a/doc/guides/nics/enic.rst b/doc/guides/nics/enic.rst
index 65e536d422..24d2b5713a 100644
--- a/doc/guides/nics/enic.rst
+++ b/doc/guides/nics/enic.rst
@@ -14,7 +14,7 @@ How to obtain ENIC PMD integrated DPDK
 --------------------------------------
 
 ENIC PMD support is integrated into the DPDK suite. dpdk-<version>.tar.gz
-should be downloaded from http://core.dpdk.org/download/
+should be downloaded from https://core.dpdk.org/download/
 
 
 Configuration information
diff --git a/doc/guides/prog_guide/cryptodev_lib.rst b/doc/guides/prog_guide/cryptodev_lib.rst
index ac16437740..c839379885 100644
--- a/doc/guides/prog_guide/cryptodev_lib.rst
+++ b/doc/guides/prog_guide/cryptodev_lib.rst
@@ -1097,4 +1097,4 @@ Asymmetric Crypto Device API
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 The cryptodev Library API is described in the
-`DPDK API Reference <http://doc.dpdk.org/api/>`_
+`DPDK API Reference <https://doc.dpdk.org/api/>`_
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2020-05-27 10:23:32.282826964 +0100
+++ 0019-doc-prefer-https-when-pointing-to-dpdk.org.patch	2020-05-27 10:23:31.659934021 +0100
@@ -1,14 +1,14 @@
-From 3d4b2afb73f7f0988f8e66ba1b37f2a446e33868 Mon Sep 17 00:00:00 2001
+From 106dddaf877636331d25b24a0e7085c544e84ed2 Mon Sep 17 00:00:00 2001
 From: David Marchand <david.marchand@redhat.com>
 Date: Thu, 19 Mar 2020 09:28:59 +0100
 Subject: [PATCH] doc: prefer https when pointing to dpdk.org
 
+[ upstream commit 3d4b2afb73f7f0988f8e66ba1b37f2a446e33868 ]
+
 for file in $(git grep -l http://.*dpdk.org doc/); do
   sed -i -e 's#http://\(.*dpdk.org\)#https://\1#g' $file;
 done
 
-Cc: stable@dpdk.org
-
 Signed-off-by: David Marchand <david.marchand@redhat.com>
 Acked-by: Kevin Traynor <ktraynor@redhat.com>
 ---
@@ -21,14 +21,13 @@
  doc/guides/linux_gsg/nic_perf_intel_platform.rst |  2 +-
  doc/guides/nics/enic.rst                         |  2 +-
  doc/guides/prog_guide/cryptodev_lib.rst          |  2 +-
- doc/guides/rel_notes/deprecation.rst             |  2 +-
- 10 files changed, 34 insertions(+), 26 deletions(-)
+ 9 files changed, 33 insertions(+), 25 deletions(-)
 
 diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh
-index 42b833e0d7..158087f1ca 100755
+index b16bace927..9902e2a9bc 100755
 --- a/devtools/checkpatches.sh
 +++ b/devtools/checkpatches.sh
-@@ -78,6 +78,14 @@ check_forbidden_additions() { # <patch>
+@@ -70,6 +70,14 @@ check_forbidden_additions() { # <patch>
  		-f $(dirname $(readlink -f $0))/check-forbidden-tokens.awk \
  		"$1" || res=1
  
@@ -44,7 +43,7 @@
  }
  
 diff --git a/doc/guides/contributing/documentation.rst b/doc/guides/contributing/documentation.rst
-index 550d8dec28..375ea64ba8 100644
+index 27e4b13be1..3924771cf0 100644
 --- a/doc/guides/contributing/documentation.rst
 +++ b/doc/guides/contributing/documentation.rst
 @@ -82,7 +82,7 @@ added to by the developer.
@@ -85,7 +84,7 @@
  * The ``@see`` keyword can be used to create a *see also* link to another file or library.
    This directive should be placed on one line at the bottom of the documentation section.
 diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst
-index 01e0a2f6ba..16b40225f2 100644
+index e5c565b984..5ca037757e 100644
 --- a/doc/guides/contributing/patches.rst
 +++ b/doc/guides/contributing/patches.rst
 @@ -28,9 +28,9 @@ The DPDK development process has the following features:
@@ -126,7 +125,7 @@
  mailing list.
  In the commit message body the Cc: stable@dpdk.org should be inserted as follows::
  
-@@ -565,7 +565,7 @@ If the patch is in relation to a previous email thread you can add it to the sam
+@@ -548,7 +548,7 @@ If the patch is in relation to a previous email thread you can add it to the sam
     git send-email --to dev@dpdk.org --in-reply-to <1234-foo@bar.com> 000*.patch
  
  The Message ID can be found in the raw text of emails or at the top of each Patchwork patch,
@@ -136,7 +135,7 @@
  
  Once submitted your patches will appear on the mailing list and in Patchwork.
 diff --git a/doc/guides/contributing/stable.rst b/doc/guides/contributing/stable.rst
-index 626cebf655..890bbeccc3 100644
+index 4d38bb8606..021c762fc6 100644
 --- a/doc/guides/contributing/stable.rst
 +++ b/doc/guides/contributing/stable.rst
 @@ -51,7 +51,7 @@ agreement and a commitment from a maintainer. The current policy is that each
@@ -148,7 +147,7 @@
  
  A LTS release may align with the declaration of a new major ABI version,
  please read the :doc:`abi_policy` for more information.
-@@ -108,7 +108,7 @@ The Stable and LTS release are coordinated on the stable@dpdk.org mailing
+@@ -107,7 +107,7 @@ The Stable and LTS release are coordinated on the stable@dpdk.org mailing
  list.
  
  All fix patches to the master branch that are candidates for backporting
@@ -157,7 +156,7 @@
  mailing list.
  
  
-@@ -119,7 +119,7 @@ A Stable Release will be released by:
+@@ -118,7 +118,7 @@ A Stable Release will be released by:
  
  * Tagging the release with YY.MM.n (year, month, number).
  * Uploading a tarball of the release to dpdk.org.
@@ -195,10 +194,10 @@
  * Operating system vendors known to package DPDK
  * Major DPDK users, considered trustworthy by the technical board, who
 diff --git a/doc/guides/freebsd_gsg/install_from_ports.rst b/doc/guides/freebsd_gsg/install_from_ports.rst
-index 36dc4a417b..d946f3f3b2 100644
+index 29f16cc6c5..dce028bc62 100644
 --- a/doc/guides/freebsd_gsg/install_from_ports.rst
 +++ b/doc/guides/freebsd_gsg/install_from_ports.rst
-@@ -72,7 +72,7 @@ These examples can be compiled and run as described in :ref:`compiling_sample_ap
+@@ -62,7 +62,7 @@ environmental variables should be set as below:
  .. note::
  
     To install a copy of the DPDK compiled using gcc, please download the
@@ -221,7 +220,7 @@
  Make sure each NIC has been flashed the latest version of NVM/firmware.
  
 diff --git a/doc/guides/nics/enic.rst b/doc/guides/nics/enic.rst
-index aa4fdc0e39..a28a7f4e47 100644
+index 65e536d422..24d2b5713a 100644
 --- a/doc/guides/nics/enic.rst
 +++ b/doc/guides/nics/enic.rst
 @@ -14,7 +14,7 @@ How to obtain ENIC PMD integrated DPDK
@@ -234,28 +233,15 @@
  
  Configuration information
 diff --git a/doc/guides/prog_guide/cryptodev_lib.rst b/doc/guides/prog_guide/cryptodev_lib.rst
-index b91f7c8b7f..c14f750fa8 100644
+index ac16437740..c839379885 100644
 --- a/doc/guides/prog_guide/cryptodev_lib.rst
 +++ b/doc/guides/prog_guide/cryptodev_lib.rst
-@@ -1128,4 +1128,4 @@ Asymmetric Crypto Device API
+@@ -1097,4 +1097,4 @@ Asymmetric Crypto Device API
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
  The cryptodev Library API is described in the
 -`DPDK API Reference <http://doc.dpdk.org/api/>`_
 +`DPDK API Reference <https://doc.dpdk.org/api/>`_
-diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
-index cf8b1eb7b0..e8fd441696 100644
---- a/doc/guides/rel_notes/deprecation.rst
-+++ b/doc/guides/rel_notes/deprecation.rst
-@@ -43,7 +43,7 @@ Deprecation Notices
-   kernel module to the dpdk-kmods repository in the /linux/igb_uio/ directory
-   in 20.11.
-   Minutes of Technical Board Meeting of `2019-11-06
--  <http://mails.dpdk.org/archives/dev/2019-November/151763.html>`_.
-+  <https://mails.dpdk.org/archives/dev/2019-November/151763.html>`_.
- 
- * lib: will fix extending some enum/define breaking the ABI. There are multiple
-   samples in DPDK that enum/define terminated with a ``.*MAX.*`` value which is
 -- 
 2.20.1
 

      parent reply	other threads:[~2020-05-27  9:25 UTC|newest]

Thread overview: 371+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-19 12:53 [dpdk-stable] patch 'crypto/octeontx2: fix build with gcc 10' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'test: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'app/pipeline: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'examples/vhost_blk: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'examples/eventdev: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'examples/qos_sched: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'drivers: add crypto as dependency for event drivers' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'drivers/crypto: fix build with make 4.3' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'eal: fix log message print for regex' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'eal/arm64: fix precise TSC' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'mem: mark pages as not accessed when reserving VA' " luca.boccassi
2020-06-09 13:45   ` Kevin Traynor
2020-06-09 14:14     ` Luca Boccassi
2020-06-12  8:00       ` Luca Boccassi
2020-06-16  8:13         ` David Marchand
2020-06-16 10:41           ` Luca Boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'service: fix crash on exit' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'telemetry: fix port stats retrieval' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'pci: remove unneeded includes in public header file' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'pci: fix build on FreeBSD' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'pci: fix build on ppc' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'build: fix linker warnings with clang on Windows' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/octeontx2: fix link information for loopback port' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/i40e: relax barrier in Tx' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix VLAN PCP item calculation' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/i40e: fix X722 performance' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/ice: fix hash flow crash' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/enetc: fix Rx lock-up' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/ice: remove unnecessary variable' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'doc: fix number of failsafe sub-devices' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix reported promiscuous/multicast mode' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/vmxnet3: fix RSS setting on v4' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix initialization error path' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix Rx queue start failure " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/ice: remove bulk alloc option' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix mask used for IPv6 item validation' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'build: support MinGW-w64 with Meson' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/memif: fix init when already connected' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hinic: fix snprintf length of cable info' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hinic: fix repeating cable log and length check' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hns3: fix promiscuous mode for PF' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'ethdev: fix spelling' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix promiscuous and allmulticast toggles errors' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: set priority of created filters to manual' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: reduce filter priorities to implemented only' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: reject automatic filter creation by users' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: refactor filter lookup loop in EF10' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: handle manual and auto filter clashes " luca.boccassi
2020-05-20  9:53   ` Igor Romanov
2020-05-20 11:57     ` Luca Boccassi
2020-05-20 12:12       ` Igor Romanov
2020-05-20 16:50         ` Luca Boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix zero metadata action' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hinic: allocate IO memory with socket id' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix CVLAN tag set in IP item translation' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: reduce Tx completion index memory loads' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'contigmem: cleanup properly when load fails' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'devtools: fix symbol map change check' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test: load drivers when required' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test: skip some subtests in no-huge mode' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'eal/freebsd: fix queuing duplicate alarm callbacks' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'mem: preallocate VA space in no-huge mode' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/kvargs: fix to consider empty elements as valid' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/kvargs: fix invalid cases check' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'kvargs: fix buffer overflow when parsing list' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'bus/pci: fix devargs on probing again' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'ci: fix telemetry dependency in Travis' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'fib: fix headers for C++ support' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'cryptodev: fix missing device id range checking' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'common/qat: fix GEN3 marketing name' " luca.boccassi
2020-06-04 17:13   ` Trahe, Fiona
2020-06-05  7:52     ` Luca Boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/ipsec: fix crash in session destroy' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'baseband/turbo_sw: fix exposed LLR decimals assumption' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'crypto/nitrox: fix CSR register address generation' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'crypto/nitrox: fix oversized device name' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'event/dsw: remove redundant control ring poll' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'event/dsw: remove unnecessary read barrier' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'doc: fix sphinx compatibility' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'ipsec: fix build dependency on hash lib' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'log: fix level picked with globbing on type register' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'doc: fix matrix CSS for recent sphinx' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'eal: fix PRNG init with HPET enabled' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'vfio: fix race condition with sysfs' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'vfio: fix use after free with multiprocess' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'drivers: fix log type variables for -fno-common' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'cryptodev: add asymmetric session-less feature name' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'drivers/crypto: fix log type variables for -fno-common' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/crypto: fix flag check' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'crypto/openssl: fix out-of-place encryption' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'security: fix verification of parameters' " luca.boccassi
2020-05-19 13:02 ` [dpdk-stable] patch 'security: fix return types in documentation' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'security: fix session counter' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'test: remove redundant macro' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix packets offload features flags in Rx' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix default error code of command interface' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix crash when flushing RSS flow rules with FLR' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix configuring illegal VLAN PVID' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix status after repeated resets' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hinic: fix LRO' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hinic/base: fix port start during FW hot update' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ipn3ke: use control thread to check link status' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix configuring RSS hash when rules are flushed' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix mailbox opcode data type' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix return value of setting VLAN offload' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: fix uninitialized stack variables' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: read PSM clock frequency from register' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: minor fixes' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: fix MAC write command' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ixgbe: fix link status inconsistencies' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix validation of VXLAN/VXLAN-GPE specs' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix metadata for compressed Rx CQEs' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: update VLAN and encap actions validation' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix call to modify action without init item' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix zero value validation for metadata' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'examples/vmdq: fix output of pools/queues' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mvneta: do not use PMD log type' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/virtio: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/tap: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/pfe: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/bnxt: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/dpaa: use dynamic " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/thunderx: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix imissed counter overflow' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: fix binary order for GTPU filter' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: check memory pointer before copying' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/tap: remove unused assert' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/octeontx: fix meson build for disabled drivers' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/octeontx2: fix device configuration sequence' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice: change default tunnel type' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice: add action number check for switch' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice: fix input set of VLAN item' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/netvsc: propagate descriptor limits from VF' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/netvsc: handle Rx packets during multi-channel setup' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/netvsc: split send buffers from Tx descriptors' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: fix memory free on device close' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: remove process event optimization' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: handle Tx completions based on burst size' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: avoid possible live lock' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/memif: fix resource leak' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'ethdev: fix build when vtune profiling is on' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'examples/vmdq: fix RSS configuration' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/nfp: fix log format specifiers' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/nfp: fix dangling pointer on probe failure' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ice: fix RSS advanced rule' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ice/base: remove unused code in switch " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: make allocation macros thread-safe' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: prevent allocation of zero sized memory' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: fix documentation of functions' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: fix indentation in CQ polling' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: fix indentation of multiple defines' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena: set IO ring size to valid value' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix counter container usage' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'app/testpmd: fix PPPoE flow command' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/pfe: fix double free of MAC address' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/null: fix secondary burst function selection' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/null: remove redundant check' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hinic/base: fix PF firmware hot-active problem' " luca.boccassi
2020-05-20 12:29     ` Wangxiaoyun (Cloud)
2020-05-20 12:48       ` Kevin Traynor
2020-05-20 16:55       ` Luca Boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost/crypto: add missing user protocol flag' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: fix packed ring zero-copy' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/vhost: fix potential memory leak on close' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/virtio: fix outdated comment' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: remove unused variable' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: make IOTLB cache name unique among processes' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: clear residual flow rules on init' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: add RSS hash offload to capabilities' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: fix RSS key length' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: fix default VLAN filter configuration for PF' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: fix VLAN filter when setting promisucous mode' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'common/mlx5: fix build with -fno-common' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx4: " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: use open/read/close for ib stats query' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/octeontx2: enable error and RAS interrupt in configure' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/octeontx2: disable unnecessary error interrupts' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/i40e: relax barrier in Tx for NEON' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: add device parameter for MPRQ stride size' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: enable MPRQ multi-stride operations' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: add multi-segment packets in MPRQ mode' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix meter suffix table leak' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix jump " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/enic: fix flow action reordering' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix push VLAN action to use item info' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix validation of push VLAN without full mask' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix mbuf double free when writev fails' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix mbuf and mem leak during queue release' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix check for mbuf number of segment' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix file close on remove' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix fd leak on creation failure' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix unexpected link handler' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: fix shadow update' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: fix shadowed descriptors not flushed' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/virtio-user: fix devargs parsing' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix queues fd check before close' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/i40e: fix flow director initialisation' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'common/mlx5: fix build with rdma-core 21' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix crash when releasing meter table' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix header modify action validation' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: set dynamic flow metadata in Rx queues' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: improve logging of MPRQ selection' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/ixgbe: fix resource leak after thread exits normally' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/ixgbe: fix link status after port reset' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/iavf: fix stats query error code' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix HWRM command during FW reset' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: use true/false for bool types' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix port start failure handling' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix VLAN add when port is stopped' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'security: fix crash at accessing non-implemented ops' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'mempool: remove inline functions from export list' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'lpm6: fix size of tbl8 group' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'lpm6: fix comments spelling' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal: " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'timer: protect initialization with lock' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'fix various typos found by Lintian' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'app: fix usage help of options separated by dashes' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'usertools: check for pci.ids in /usr/share/misc' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'bus/pci: fix UIO resource access from secondary process' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix memory leak during queue restart' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix VNIC Rx queue count on VNIC free' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'app/testpmd: add parsing for QinQ VLAN headers' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'doc: fix log level example in Linux guide' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal: fix typo in endian conversion macros' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/avp: fix gcc 10 maybe-uninitialized warning' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'examples/ipsec-gw: " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal/x86: ignore gcc 10 stringop-overflow warnings' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'kvargs: fix invalid token parsing on FreeBSD' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal/ppc: fix build with gcc 9.3' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix max ring count' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/i40e: fix flow director for ARP packets' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'doc: add i40e limitation for flow director' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/i40e: fix flush of flow director filter' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix assert in doorbell lookup' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'vhost: fix peer close check' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'vhost: prevent zero-copy with incompatible client mode' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix assert in dynamic metadata handling' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix actions validation on root table' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/sfc/base: use simpler EF10 family conditional check' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/sfc/base: use simpler EF10 family run-time checks' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/sfc/base: fix build when EVB is enabled' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/softnic: fix memory leak for thread' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/softnic: fix resource leak for pipeline' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/hns3: fix VLAN PVID when configuring device' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/hns3: fix return value when clearing statistics' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/octeontx: fix dangling pointer on init failure' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix RSS enablement' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix assert in modify converting' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix VLAN ID check' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix gcc 10 enum-conversion warning' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'event/octeontx2: fix queue removal from Rx adapter' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eventdev: fix probe and remove for secondary process' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'event/dsw: avoid reusing previously recorded events' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'common/octeontx: fix gcc 9.1 ABI break' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'mk: fix static linkage of mlx dependency' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'service: fix race condition for MT unsafe service' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'service: fix identification of service running on other lcore' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'service: remove rte prefix from static functions' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'remove references to private PCI probe function' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples/l2fwd-keepalive: fix mbuf pool size' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'mem: fix overflow on allocation' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples/eventdev: fix crash on exit' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'mempool/octeontx2: fix build for gcc O1 optimization' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ena: fix build for " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'event/octeontx2: " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'test/flow_classify: enable multi-sockets system' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bbdev: fix doxygen comments' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/ccp: fix fd leak on probe failure' " luca.boccassi
2020-05-19 13:20     ` Kumar, Ravi1
2020-05-19 13:05   ` [dpdk-stable] patch 'app/crypto-perf: fix display of sample test vector' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/qat: fix cipher descriptor for ZUC and SNOW' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/kasumi: fix extern declaration' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples/fips_validation: fix parsing of algorithms' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'drivers/crypto: disable gcc 10 no-common errors' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'ipsec: check SAD lookup error' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/failsafe: fix fd leak' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'app/testpmd: fix statistics after reset' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/netvsc: fix comment spelling' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bus/vmbus: " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/netvsc: do RSS across Rx queue only' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/netvsc: do not configure RSS if disabled' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix possible stack smashing' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/iavf: fix link speed' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ixgbe: fix link status synchronization on BSD' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ice: support mark only action for flow director' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ice: fix crash in switch filter' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/tap: fix crash in flow destroy' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix number of TQM ring' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix TQM ring context memory size' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/virtio: fix crash when device reconnecting' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix FW version query' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'app/testpmd: fix memory failure handling for i40e DDP' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bus/fslmc: fix dereferencing null pointer' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/dpaa2: fix 10G port negotiation' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/dpaa2: fix congestion ID for multiple traffic classes' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bus/fslmc: fix size of qman fq descriptor' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ixgbe: fix link state timing on fiber ports' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'Revert "net/bnxt: fix TQM ring context memory size"' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'Revert "net/bnxt: fix number of TQM ring"' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ice: fix variable initialization' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ring: fix device pointer on allocation' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix match on empty VLAN item in DV mode' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix matching for UDP tunnels with Verbs' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix meter color register consideration' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx4: fix drop queue error handling' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix Tx queue release debug log timing' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'app: remove extra new line after link duplex' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples: " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/qat: support plain SHA1..SHA512 hashes' " luca.boccassi
2020-05-22  9:39     ` [dpdk-stable] patch 'event/dsw: fix enqueue burst return value' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'app/eventdev: check Tx adapter service ID' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'crypto/caam_jr: fix check of file descriptors' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'crypto/caam_jr: fix IRQ functions return type' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'build: disable gcc 10 zero-length-bounds warning' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix LTO config option' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix default symbol binding in ABI guide' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'eal: fix C++17 compilation' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix build issue in ABI guide' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/e1000: fix port hotplug for multi-process' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix multicast filter feature announcement' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'common/mlx5: fix umem buffer alignment' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/ixgbe: fix statistics in flow control mode' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/qede: fix link state configuration' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/mlx5: fix VLAN flow action with wildcard VLAN item' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/vmxnet3: handle bad host framing' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/hinic: fix queues resource free' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/hinic: fix Tx mbuf length while copying' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'vhost: handle mbuf allocation failure' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/virtio: fix unexpected event after reconnect' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/qede: fix port reconfiguration' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/bnxt: fix error log for command timeout' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/bnxt: fix using RSS config struct' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/bnxt: fix storing MAC address twice' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e: fix queue region in RSS flow' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/mlx5: fix doorbell bitmap management offsets' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'common/mlx5: fix netlink buffer allocation from stack' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'app/testpmd: fix DCB set' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/ixgbe/base: update copyright' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e/base: " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'common/iavf: " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/ice/base: " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'pci: accept 32-bit domain numbers' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'pci: reject negative values in PCI id' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'doc: fix typos in ABI policy' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'kvargs: fix strcmp helper documentation' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'mempool/dpaa2: install missing header with meson' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'fix same typo in multiple places' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'examples/kni: fix MTU change to setup Tx queue' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e: fix wild pointer' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/ice: fix RSS for GTPU' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e: fix queue related exception handling' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'vhost: fix zero-copy server mode' " luca.boccassi
2020-05-27  9:24         ` [dpdk-stable] patch 'net/mvpp2: fix build with gcc 10' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/vm_power: fix build with -fno-common' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/vm_power: drop Unix path limit redefinition' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'doc: fix build with doxygen 1.8.18' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'cryptodev: fix SHA-1 digest enum comment' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/bnxt: fix Rx ring producer index' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/octeontx2: fix buffer size assignment' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/hinic: fix TSO' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/sfc/base: fix manual filter delete in EF10' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/i40e: fix setting L2TAG' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/iavf: " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/ice: " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/i40e: fix flow director enabling' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/ixgbe: check driver type in MACsec API' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/kni: fix crash during MTU set' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/ip_pipeline: remove check of null response' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'doc: fix typo in contributors guide' " luca.boccassi
2020-05-27  9:24           ` luca.boccassi
2020-05-27  9:24           ` luca.boccassi [this message]

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=20200527092422.258652-19-luca.boccassi@gmail.com \
    --to=luca.boccassi@gmail.com \
    --cc=david.marchand@redhat.com \
    --cc=ktraynor@redhat.com \
    --cc=stable@dpdk.org \
    /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).