From 9527113c350f92b2293f596b6153f9c9d626f2af Mon Sep 17 00:00:00 2001 From: ahothan Date: Tue, 13 Nov 2018 15:34:29 -0800 Subject: NFVBENCH-108 Adjust exact frame size to take into account FCS field Minimum L2 frame size is now set to 64 bytes. If VLAN tagging, min frame size for the latency stream is 68 bytes. Also fix issue with interface baseline. Change-Id: If6ff7515c0112ab419070c86f7094ff88930d33b Signed-off-by: ahothan --- nfvbench/stats_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nfvbench/stats_manager.py') diff --git a/nfvbench/stats_manager.py b/nfvbench/stats_manager.py index a1fb497..98ac413 100644 --- a/nfvbench/stats_manager.py +++ b/nfvbench/stats_manager.py @@ -73,9 +73,9 @@ class StatsManager(object): def _update_interface_stats(self, diff=False): """Update interface stats for both the traffic generator and the worker.""" - self.traffic_client.update_interface_stats(diff=True) + self.traffic_client.update_interface_stats(diff) if self.worker: - self.worker.update_interface_stats(diff=True) + self.worker.update_interface_stats(diff) def run_fixed_rate(self): """Run a fixed rate and analyze results.""" -- cgit 1.2.3-korg