Skip to content

Commit dd0b6d0

Browse files
committed
qat: add support for new capabilities
Signed-off-by: Tuomas Katila <[email protected]>
1 parent e787f54 commit dd0b6d0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

cmd/qat_plugin/dpdkdrv/dpdkdrv.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,14 @@ func getDeviceCapabilities(device string) (string, error) {
455455
return "sym", nil
456456
case "asym":
457457
return "asym", nil
458+
case "asym;dc":
459+
return "asym-dc", nil
460+
case "dc;asym":
461+
return "asym-dc", nil
462+
case "sym;dc":
463+
return "sym-dc", nil
464+
case "dc;sym":
465+
return "sym-dc", nil
458466
default:
459467
return defaultCapabilities, nil
460468
}

0 commit comments

Comments
 (0)