You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/qat_plugin/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ The QAT plugin can take a number of command line arguments, summarised in the fo
43
43
| Flag | Argument | Meaning |
44
44
|:---- |:-------- |:------- |
45
45
| -dpdk-driver | string | DPDK Device driver for configuring the QAT device (default: `vfio-pci`) |
46
-
| -kernel-vf-drivers | string | Comma separated list of the QuickAssist VFs to search and use in the system. Devices supported: DH895xCC, C62x, C3xxx, 4xxx/401xx/402xx, C4xxx and D15xx (default: `c6xxvf,4xxxvf`) |
46
+
| -kernel-vf-drivers | string | Comma separated list of the QuickAssist VFs to search and use in the system. Devices supported: DH895xCC, C62x, C3xxx, 4xxx/401xx/402xx, 420xx, C4xxx and D15xx (default: `c6xxvf,4xxxvf,420xxvf`) |
47
47
| -max-num-devices | int | maximum number of QAT devices to be provided to the QuickAssist device plugin (default: `64`) |
48
48
| -mode | string | Deprecated: plugin mode which can be either `dpdk` or `kernel` (default: `dpdk`).|
49
49
| -allocation-policy | string | 2 possible values: balanced and packed. Balanced mode spreads allocated QAT VF resources balanced among QAT PF devices, and packed mode packs one QAT PF device full of QAT VF resources before allocating resources from the next QAT PF. (There is no default.) |
@@ -132,7 +132,7 @@ In addition to the default configuration, you can add device-specific configurat
132
132
133
133
| Device | Possible Configuration | How To Customize | Options | Notes |
| 4xxx, 401xx,402xx |[cfg_services](https://github.com/torvalds/linux/blob/v6.6-rc5/Documentation/ABI/testing/sysfs-driver-qat) reports the configured services (crypto services or compression services) of the QAT device. |`ServicesEnabled=<value>`| compress:`dc`, crypto:`sym;asym`, <br>crypto+compress:`asym;dc`,<br>crypto+compress:`sym;dc`| Linux 6.0+ kernel is required. |
135
+
| 4xxx, 401xx,402xx, 420xx|[cfg_services](https://github.com/torvalds/linux/blob/v6.6-rc5/Documentation/ABI/testing/sysfs-driver-qat) reports the configured services (crypto services or compression services) of the QAT device. |`ServicesEnabled=<value>`| compress:`dc`, crypto:`sym;asym`, <br>crypto+compress:`asym;dc`,<br>crypto+compress:`sym;dc`| Linux 6.0+ kernel is required. |
136
136
137
137
To create a provisioning `configMap`, run the following command before deploying initcontainer:
138
138
@@ -247,7 +247,7 @@ In order to utilise the QAT device plugin, QuickAssist SR-IOV virtual functions
247
247
You can verify this on your nodes by checking for the relevant PCI identifiers:
Copy file name to clipboardExpand all lines: cmd/qat_plugin/qat_plugin.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ func main() {
40
40
mode:=flag.String("mode", "dpdk", "plugin mode which can be either dpdk (default) or kernel")
41
41
42
42
dpdkDriver:=flag.String("dpdk-driver", "vfio-pci", "DPDK Device driver for configuring the QAT device")
43
-
kernelVfDrivers:=flag.String("kernel-vf-drivers", "c6xxvf,4xxxvf", "Comma separated VF Device Driver of the QuickAssist Devices in the system. Devices supported: DH895xCC, C62x, C3xxx, C4xxx, 4xxx, and D15xx")
43
+
kernelVfDrivers:=flag.String("kernel-vf-drivers", "c6xxvf,4xxxvf,420xxvf", "Comma separated VF Device Driver of the QuickAssist Devices in the system. Devices supported: DH895xCC, C62x, C3xxx, C4xxx, 4xxx, 420xxx, and D15xx")
44
44
preferredAllocationPolicy:=flag.String("allocation-policy", "", "Modes of allocating QAT devices: balanced and packed")
45
45
maxNumDevices:=flag.Int("max-num-devices", 64, "maximum number of QAT devices to be provided to the QuickAssist device plugin")
0 commit comments