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/summarizer.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'nfvbench/summarizer.py') diff --git a/nfvbench/summarizer.py b/nfvbench/summarizer.py index 0d84ab2..f03d3bc 100644 --- a/nfvbench/summarizer.py +++ b/nfvbench/summarizer.py @@ -350,12 +350,6 @@ class NFVBenchSummarizer(Summarizer): def __chain_analysis_summarize(self, frame_size, analysis): self._put() self._put('L2 frame size:', frame_size) - if 'actual_l2frame_size' in analysis: - self._put('Actual l2 frame size:', analysis['actual_l2frame_size']) - elif self.config['ndr_run'] and 'actual_l2frame_size' in analysis['ndr']: - self._put('Actual l2 frame size:', analysis['ndr']['actual_l2frame_size']) - elif self.config['pdr_run'] and 'actual_l2frame_size' in analysis['pdr']: - self._put('Actual l2 frame size:', analysis['pdr']['actual_l2frame_size']) if self.config['ndr_run']: self._put('NDR search duration:', Formatter.float(0)(analysis['ndr']['time_taken_sec']), 'seconds') -- cgit 1.2.3-korg