From 289fbb2eaa601c7cc84a27f0ed7f079f95a9b265 Mon Sep 17 00:00:00 2001 From: Mikko Ylinen Date: Tue, 1 Mar 2022 07:39:18 +0200 Subject: [PATCH] qat: update default devices in QatDevicePlugin controller The default -kernelVfDrivers parameter set by QatDevicePlugin controller was not in sync with the plugin parameters. Update. Signed-off-by: Mikko Ylinen --- pkg/controllers/qat/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controllers/qat/controller.go b/pkg/controllers/qat/controller.go index 5547d5df..49b91230 100644 --- a/pkg/controllers/qat/controller.go +++ b/pkg/controllers/qat/controller.go @@ -182,7 +182,7 @@ func getPodArgs(qdp *devicepluginv1.QatDevicePlugin) []string { args = append(args, "-kernel-vf-drivers", strings.Join(drvs, ",")) } else { - args = append(args, "-kernel-vf-drivers", "dh895xccvf,c6xxvf,c3xxxvf,d15xxvf") + args = append(args, "-kernel-vf-drivers", "c6xxvf,4xxxvf") } if qdp.Spec.MaxNumDevices > 0 {