Skip to content

Commit aaa720a

Browse files
committed
qat: drop setupDeviceIDs()
setupDeviceIDs() is obsoleted and the preferred approach is driver_override already implemented in qat-init.sh initcontainer. The new_id mechanism was added way before we had the initcontainer support in place. Furthermore, at least for vfio-pci we don't need it at all if the driver uses ids=8086:<qat VF dev IDs>. Drop write attemps to new_id in favor of the initcontainer functionality. Signed-off-by: Mikko Ylinen <[email protected]>
1 parent 1a62423 commit aaa720a

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

cmd/qat_plugin/dpdkdrv/dpdkdrv.go

-22
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const (
4444
pciDriverDirectory = "/sys/bus/pci/drivers"
4545
uioSuffix = "uio"
4646
iommuGroupSuffix = "iommu_group"
47-
vendorPrefix = "8086 "
4847
envVarPrefix = "QAT"
4948

5049
igbUio = "igb_uio"
@@ -187,31 +186,10 @@ func newDevicePlugin(pciDriverDir, pciDeviceDir string, maxDevices int, kernelVf
187186
}
188187
}
189188

190-
func (dp *DevicePlugin) setupDeviceIDs() error {
191-
for devID, driver := range qatDeviceDriver {
192-
for _, enabledDriver := range dp.kernelVfDrivers {
193-
if driver != enabledDriver {
194-
continue
195-
}
196-
197-
err := writeToDriver(filepath.Join(dp.pciDriverDir, dp.dpdkDriver, "new_id"), vendorPrefix+devID)
198-
if err != nil && !errors.Is(err, os.ErrExist) {
199-
return errors.WithMessagef(err, "failed to set device ID %s for %s. Driver module not loaded?", devID, dp.dpdkDriver)
200-
}
201-
}
202-
}
203-
204-
return nil
205-
}
206-
207189
// Scan implements Scanner interface for vfio based QAT plugin.
208190
func (dp *DevicePlugin) Scan(notifier dpapi.Notifier) error {
209191
defer dp.scanTicker.Stop()
210192

211-
if err := dp.setupDeviceIDs(); err != nil {
212-
return err
213-
}
214-
215193
for {
216194
devTree, err := dp.scan()
217195
if err != nil {

0 commit comments

Comments
 (0)