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
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ The QAT plugin can take a number of command line arguments, summarised in the fo
44
44
|:---- |:-------- |:------- |
45
45
| -dpdk-driver | string | DPDK Device driver for configuring the QAT device (default: `vfio-pci`) |
46
46
| -kernel-vf-drivers | string | Comma separated VF Device Driver of the QuickAssist Devices in the system. Devices supported: DH895xCC, C62x, C3xxx, 4xxx/401xx/402xx, C4xxx and D15xx (default: `c6xxvf,4xxxvf`) |
47
-
| -max-num-devices | int | maximum number of QAT devices to be provided to the QuickAssist device plugin (default: `32`) |
47
+
| -max-num-devices | int | maximum number of QAT devices to be provided to the QuickAssist device plugin (default: `64`) |
48
48
| -mode | string | 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.) |
50
50
@@ -136,12 +136,11 @@ In addition to the default configuration, you can add device-specific configurat
| 4xxx, 401xx,402xx |[cfg_services](https://github.com/torvalds/linux/blob/42e66b1cc3a070671001f8a1e933a80818a192bf/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`| Linux 6.0+ kernel is required. |
138
138
139
-
To create a provisioning config after customizing, run as follows:
139
+
To create a provisioning `configMap`, run the following command before deploying initcontainer:
> **Note**: When deploying the overlay qat_initcontainer, such a manual creation is not necessary since ConfigMap is generated automatically. Just set the values in the config file and deploy the overlay.
145
144
146
145
When using the operator for deploying the plugin with provisioning config, use `provisioningConfig` field for the name of the ConfigMap, then the config is passed to initcontainer through the volume mount.
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
@@ -42,7 +42,7 @@ func main() {
42
42
dpdkDriver:=flag.String("dpdk-driver", "vfio-pci", "DPDK Device driver for configuring the QAT device")
43
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")
44
44
preferredAllocationPolicy:=flag.String("allocation-policy", "", "Modes of allocating QAT devices: balanced and packed")
45
-
maxNumDevices:=flag.Int("max-num-devices", 32, "maximum number of QAT devices to be provided to the QuickAssist device plugin")
45
+
maxNumDevices:=flag.Int("max-num-devices", 64, "maximum number of QAT devices to be provided to the QuickAssist device plugin")
0 commit comments