Report: Meltdown/Spectre disabled 18/10318/1
authorTibor Frank <tifrank@cisco.com>
Tue, 30 Jan 2018 05:27:57 +0000 (06:27 +0100)
committerTibor Frank <tifrank@cisco.com>
Tue, 30 Jan 2018 05:27:57 +0000 (06:27 +0100)
Change-Id: Ia69fb79e9c182c71972ea4e530990d40f3dcb0e8
Signed-off-by: Tibor Frank <tifrank@cisco.com>
docs/report/vpp_performance_tests/index.rst
resources/tools/presentation/generator_tables.py

index d26addc..971b31d 100644 (file)
@@ -8,7 +8,5 @@ VPP Performance Tests
     packet_throughput_graphs/index
     packet_latency_graphs/index
     throughput_speedup_multi_core/index
-    impact_meltdown/index
-    impact_spectreandmeltdown/index
     test_environment
     documentation/index
index f621c56..65917bd 100644 (file)
@@ -194,10 +194,10 @@ def table_performance_improvements(table, input_data):
         line_lst = list()
         for item in data:
             if isinstance(item["data"], str):
-                line_lst.append(item["data"])
                 # Remove -?drdisc from the end
                 if item["data"].endswith("drdisc"):
                     item["data"] = item["data"][:-8]
+                line_lst.append(item["data"])
             elif isinstance(item["data"], float):
                 line_lst.append("{:.1f}".format(item["data"]))
             elif item["data"] is None: