On 6/7/2022 9:32 AM, Huisong Li wrote:
The 'rss_type_table[]' maintains string name and value of RSS types. This
patch unifies a common interface to display or obtain RSS types.
Signed-off-by: Huisong Li <[email protected]>
Signed-off-by: Ferruh Yigit <[email protected]>
<...>
@@ -5669,6 +5681,7 @@ set_record_burst_stats(uint8_t on_off)
record_burst_stats = on_off;
}
+#if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
static char*
flowtype_to_str(uint16_t flow_type)
{
@@ -5712,8 +5725,6 @@ flowtype_to_str(uint16_t flow_type)
return NULL;
}
-#if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
-
I think this change should be in first patch (v1/4) where
'flowtype_to_str' stopped being used.