diff mbox series

[ovs-dev,v2,5/5] Documentation: Remove experimental tag for PMD ALB.

Message ID 20211217163823.455394-6-ktraynor@redhat.com
State Superseded
Headers show
Series PMD docs and ALB status. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed

Commit Message

Kevin Traynor Dec. 17, 2021, 4:38 p.m. UTC
PMD Auto Load Balance was introduced as an experimental feature in OVS
2.11. It is used to detect that the Rx queue to PMD assignments are no
longer balanced and it would be better to reassign.

It is disabled by default, and can be enabled with:
$ ovs-vsctl set open_vswitch . other_config:pmd-auto-lb="true"

Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
Acked-by: Sunil Pai G <sunil.pai.g@intel.com>
---
 Documentation/topics/dpdk/pmd.rst | 4 ++--
 NEWS                              | 2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/Documentation/topics/dpdk/pmd.rst b/Documentation/topics/dpdk/pmd.rst
index d8151f095..002a1ea75 100644
--- a/Documentation/topics/dpdk/pmd.rst
+++ b/Documentation/topics/dpdk/pmd.rst
@@ -242,6 +242,6 @@  The Rx queues may be assigned to the cores in the following order::
     Core 8: P1Q0 |
 
-PMD Automatic Load Balance (experimental)
------------------------------------------
+PMD Automatic Load Balance
+--------------------------
 
 Cycle or utilization based allocation of Rx queues to PMDs is done to give an
diff --git a/NEWS b/NEWS
index 5f9b8aa09..72eae32f8 100644
--- a/NEWS
+++ b/NEWS
@@ -27,4 +27,6 @@  Post-v2.16.0
        now dp_hash.  Previously this was limited to 64 buckets.  This change
        is mainly for the benefit of OVN load balancing configurations.
+   - Userspace datapath:
+     * Removed experimental tag for PMD Auto Load Balance.