-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from lnst.Common.Parameters import ConstParam | ||
from lnst.Recipes.ENRT.ConfigMixins.MultiDevInterruptHWConfigMixin import ( | ||
MultiDevInterruptHWConfigMixin, | ||
) | ||
from lnst.Recipes.ENRT.SimpleNetworkRecipe import SimpleNetworkRecipe | ||
from lnst.Recipes.ENRT.MeasurementGenerators.XDPFlowMeasurementGenerator import ( | ||
XDPFlowMeasurementGenerator, | ||
) | ||
|
||
|
||
class XDPTxRecipe( | ||
XDPFlowMeasurementGenerator, MultiDevInterruptHWConfigMixin, SimpleNetworkRecipe | ||
): | ||
xdp_command = ConstParam(value="tx") | ||
# NOTE: Receiver's IRQs needs to be pinned to single CPU (due to test stability) | ||
# Generator needs to reach line rate, therefore its' IRQ CPUs should not be limited. | ||
# Simply use `multi_dev_interrupt_config` with single host. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters