Skip to content

Commit

Permalink
Disable Linux XDP HPS (#4292)
Browse files Browse the repository at this point in the history
  • Loading branch information
nibanks committed May 9, 2024
1 parent b4b3f98 commit d677687
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/secnetperf-helpers.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,9 @@ function Invoke-Secnetperf {
continue
}

if ($io -eq "wsk" -and $metric -eq "hps") { # TODO - Figure out why this is crashing, and fix it.
# These scenarios are currently broken! TODO - Figure out why and fix them.
if (($io -eq "wsk" -and $metric -eq "hps") -or
(!$isWindows -and $io -eq "xdp" -and $metric -eq "hps")) {
Write-Host "> secnetperf $clientArgs BROKEN!"
continue
}
Expand Down

0 comments on commit d677687

Please sign in to comment.