From f291972a7ea9dc267783d0f2ca2394a14b427cd7 Mon Sep 17 00:00:00 2001 From: Fred Rolland Date: Thu, 14 Apr 2022 13:45:26 +0300 Subject: [PATCH] Fix log message in mellanox_plugin Signed-off-by: Fred Rolland --- pkg/plugins/mellanox/mellanox_plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugins/mellanox/mellanox_plugin.go b/pkg/plugins/mellanox/mellanox_plugin.go index a6910925f..27f52c5ef 100644 --- a/pkg/plugins/mellanox/mellanox_plugin.go +++ b/pkg/plugins/mellanox/mellanox_plugin.go @@ -371,7 +371,7 @@ func handleTotalVfs(fwCurrent, fwNext, attrs *mlnxNic, ifaceSpec sriovnetworkv1. // Remove policy then re-apply it if !needReboot && fwNext.totalVfs != totalVfs { - glog.V(2).Infof("Changing TotalVfs %d to 0, doesn't require rebooting", fwCurrent.totalVfs) + glog.V(2).Infof("Changing TotalVfs %d to same as Next Boot value, doesn't require rebooting", fwCurrent.totalVfs) attrs.totalVfs = totalVfs changeWithoutReboot = true }