diff options
author | Robert Wojciechowicz <robertx.wojciechowicz@intel.com> | 2015-12-09 10:07:38 +0000 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2016-01-21 09:41:05 +0000 |
commit | 9a054248197bdaed71b32e9d9c0ac621bf89c1cd (patch) | |
tree | c186250f91e658845cd8f3a985517c33a9ba0220 /src/dpdk/__init__.py | |
parent | 7caf7a6be0fae6b341181b3e6286372e2e93b4b8 (diff) |
Add testpmd as vswitch class
The purpose of using testpmd instead of OVS is to get the baseline
of the DUT when performing hardware offloading operations.
There are supported different checksum calculation
and txq flags settings.
Change-Id: I93c9b45dcb31eaa1f610b7e061f3dd5936b0e6ec
JIRA: VSPERF-193
Signed-off-by: Robert Wojciechowicz <robertx.wojciechowicz@intel.com>
Reviewed-by: Dino Simeon Madarang <dino.simeonx.madarang@intel.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Reviewed-by: Brian Castelli <brian.castelli@spirent.com>
Diffstat (limited to 'src/dpdk/__init__.py')
-rw-r--r-- | src/dpdk/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dpdk/__init__.py b/src/dpdk/__init__.py index 4be1e215..fdbc5414 100644 --- a/src/dpdk/__init__.py +++ b/src/dpdk/__init__.py @@ -19,3 +19,5 @@ and removing drivers and binding/unbinding NICs. """ from src.dpdk.dpdk import * +from src.dpdk.testpmd_proc import TestPMDProcess + |