mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 14:25:26 +00:00
dpif-netdev: Fix typo in function name.
Rename pmd_reblance_dry_run_needed() to
pmd_rebalance_dry_run_needed().
Fixes: a83a406096
("dpif-netdev: Sync PMD ALB state with user commands.")
Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
Acked-by: Mike Pattrick <mkp@redhat.com>
Acked-by: David Marchand <david.marchand@redhat.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
This commit is contained in:
committed by
Ilya Maximets
parent
8ff9dec468
commit
4b5c3b66aa
@@ -6110,7 +6110,7 @@ sched_numa_list_variance(struct sched_numa_list *numa_list)
|
||||
* pmd_rebalance_dry_run() can be avoided when it is not needed.
|
||||
*/
|
||||
static bool
|
||||
pmd_reblance_dry_run_needed(struct dp_netdev *dp)
|
||||
pmd_rebalance_dry_run_needed(struct dp_netdev *dp)
|
||||
OVS_REQ_RDLOCK(dp->port_rwlock)
|
||||
{
|
||||
struct dp_netdev_pmd_thread *pmd;
|
||||
@@ -6680,7 +6680,7 @@ dpif_netdev_run(struct dpif *dpif)
|
||||
if (pmd_rebalance &&
|
||||
!dp_netdev_is_reconf_required(dp) &&
|
||||
!ports_require_restart(dp) &&
|
||||
pmd_reblance_dry_run_needed(dp) &&
|
||||
pmd_rebalance_dry_run_needed(dp) &&
|
||||
pmd_rebalance_dry_run(dp)) {
|
||||
VLOG_INFO("PMD auto load balance dry run. "
|
||||
"Requesting datapath reconfigure.");
|
||||
|
Reference in New Issue
Block a user